From c6726245c28e9335ba7f54c2ccd32d840db29d98 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Sat, 19 Nov 2016 10:44:59 +0100 Subject: [PATCH 01/17] Initial playing around --- rowers/urls.py | 47 ++++++++++++++++++++++++++++++++++++++ rowsandall_app/settings.py | 17 +++++++++++++- rowsandall_app/urls.py | 1 + 3 files changed, 64 insertions(+), 1 deletion(-) diff --git a/rowers/urls.py b/rowers/urls.py index d87dfd17..c6126cb1 100644 --- a/rowers/urls.py +++ b/rowers/urls.py @@ -1,5 +1,10 @@ from django.conf import settings from django.conf.urls import url, include +from django.contrib.auth.models import User + +from models import Workout + +from rest_framework import routers, serializers, viewsets from . import views from django.contrib.auth import views as auth_views @@ -8,6 +13,46 @@ from django.conf.urls import ( handler400, handler403, handler404, handler500, ) +# Serializers define the API representation. +class UserSerializer(serializers.HyperlinkedModelSerializer): + class Meta: + model = User + fields = ('url', 'username', 'email', 'is_staff') + +class WorkoutSerializer(serializers.HyperlinkedModelSerializer): + class Meta: + model = Workout + fields = ( + 'name', + 'date', + 'workouttype', + 'boattype', + 'starttime', + 'startdatetime', + 'distance', + 'duration', + 'weightcategory', + 'weightvalue', + 'averagehr', + 'maxhr', + 'notes', + 'summary', + ) + +# ViewSets define the view behavior. +class UserViewSet(viewsets.ModelViewSet): + queryset = User.objects.all() + serializer_class = UserSerializer + +class WorkoutViewSet(viewsets.ModelViewSet): + queryset = Workout.objects.all() + serializer_class = WorkoutSerializer + +# Routers provide an easy way of automatically determining the URL conf. +router = routers.DefaultRouter() +router.register(r'users', UserViewSet) +router.register(r'workouts',WorkoutViewSet) + handler500 = 'views.error500_view' handler404 = 'views.error404_view' handler400 = 'views.error400_view' @@ -16,6 +61,8 @@ handler403 = 'views.error403_view' urlpatterns = [ # url(r'^password_change/$',auth_views.password_change), # url(r'^password_change_done/$',auth_views.password_change_done), + url(r'^', include(router.urls)), + url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework')), url(r'^testbokeh$',views.testbokeh), url(r'^500/$', TemplateView.as_view(template_name='500.html'),name='500'), url(r'^404/$', TemplateView.as_view(template_name='404.html'),name='404'), diff --git a/rowsandall_app/settings.py b/rowsandall_app/settings.py index 732345a4..b34f8238 100644 --- a/rowsandall_app/settings.py +++ b/rowsandall_app/settings.py @@ -47,6 +47,9 @@ INSTALLED_APPS = [ 'translation_manager', 'debug_toolbar', 'django_mailbox', + 'rest_framework', + 'provider', + 'provider.oauth2', ] MIDDLEWARE_CLASSES = [ @@ -230,5 +233,17 @@ EMAIL_USE_TLS = True FORECAST_IO_KEY = "bc8196fbd89f11375c7dfc8aa6323c72" GMAPIKEY = "AIzaSyAgu1w9QSthaGPMLp8y9JedPoMc9sfEgJ8" -# test +# REST Framework +REST_FRAMEWORK = { + # Use Django's standard `django.contrib.auth` permissions, + # or allow read-only access for unauthenticated users. + 'DEFAULT_PERMISSION_CLASSES': [ + 'rest_framework.permissions.DjangoModelPermissionsOrAnonReadOnly' + ], + 'DEFAULT_AUTHENTICATION_CLASSES': ( + 'rest_framework.authentication.BasicAuthentication', + 'rest_framework.authentication.SessionAuthentication', + 'rest_framework.authentication.OAuth2Authentication', + ), +} diff --git a/rowsandall_app/urls.py b/rowsandall_app/urls.py index 70ee15dc..c99e49a0 100644 --- a/rowsandall_app/urls.py +++ b/rowsandall_app/urls.py @@ -26,6 +26,7 @@ from rowers import views as rowersviews urlpatterns = [ url(r'^admin/', admin.site.urls), + url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework')), # url('^', include('django.contrib.auth.urls')), url(r'^$',rootview), url(r'^version/$',version), From eb055d5f3268c6ec0dbb65d4bce39eb0117887c3 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Sat, 19 Nov 2016 11:20:51 +0100 Subject: [PATCH 02/17] Adding swagger --- rowers/urls.py | 1 + rowers/views.py | 4 ++++ rowsandall_app/settings.py | 5 ++--- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/rowers/urls.py b/rowers/urls.py index c6126cb1..c7a583d1 100644 --- a/rowers/urls.py +++ b/rowers/urls.py @@ -62,6 +62,7 @@ urlpatterns = [ # url(r'^password_change/$',auth_views.password_change), # url(r'^password_change_done/$',auth_views.password_change_done), url(r'^', include(router.urls)), + url(r'^api-docs$', views.schema_view), url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework')), url(r'^testbokeh$',views.testbokeh), url(r'^500/$', TemplateView.as_view(template_name='500.html'),name='500'), diff --git a/rowers/views.py b/rowers/views.py index 53cde3e0..9f2623e5 100644 --- a/rowers/views.py +++ b/rowers/views.py @@ -61,6 +61,8 @@ queue = django_rq.get_queue('default') queuelow = django_rq.get_queue('low') queuehigh = django_rq.get_queue('low') +from rest_framework_swagger.views import get_swagger_view + import plots import mailprocessing @@ -74,6 +76,8 @@ USER_LANGUAGE = 'en-US' from interactiveplots import * +schema_view = get_swagger_view(title='Rowsandall API') + def error500_view(request): response = render_to_response('500.html', {}, context_instance = RequestContext(request)) diff --git a/rowsandall_app/settings.py b/rowsandall_app/settings.py index b34f8238..d0a82b84 100644 --- a/rowsandall_app/settings.py +++ b/rowsandall_app/settings.py @@ -48,8 +48,7 @@ INSTALLED_APPS = [ 'debug_toolbar', 'django_mailbox', 'rest_framework', - 'provider', - 'provider.oauth2', + 'rest_framework_swagger', ] MIDDLEWARE_CLASSES = [ @@ -244,6 +243,6 @@ REST_FRAMEWORK = { 'DEFAULT_AUTHENTICATION_CLASSES': ( 'rest_framework.authentication.BasicAuthentication', 'rest_framework.authentication.SessionAuthentication', - 'rest_framework.authentication.OAuth2Authentication', +# 'rest_framework.authentication.OAuth2Authentication', ), } From 60edc3f3c2f27d6c52a0a42438a06406e706f313 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Sat, 19 Nov 2016 14:22:34 +0100 Subject: [PATCH 03/17] further playing --- rowers/urls.py | 1 + rowsandall_app/settings.py | 2 ++ 2 files changed, 3 insertions(+) diff --git a/rowers/urls.py b/rowers/urls.py index c7a583d1..1f21578f 100644 --- a/rowers/urls.py +++ b/rowers/urls.py @@ -61,6 +61,7 @@ handler403 = 'views.error403_view' urlpatterns = [ # url(r'^password_change/$',auth_views.password_change), # url(r'^password_change_done/$',auth_views.password_change_done), + url(r'^oauth2/', include('provider.oauth2.urls', namespace = 'oauth2')), url(r'^', include(router.urls)), url(r'^api-docs$', views.schema_view), url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework')), diff --git a/rowsandall_app/settings.py b/rowsandall_app/settings.py index d0a82b84..6b79a370 100644 --- a/rowsandall_app/settings.py +++ b/rowsandall_app/settings.py @@ -49,6 +49,8 @@ INSTALLED_APPS = [ 'django_mailbox', 'rest_framework', 'rest_framework_swagger', + 'provider', +# 'provider.oauth2', ] MIDDLEWARE_CLASSES = [ From d57ecb495b0f44c598c16bc4f9cb0ffbd15d1ea6 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Sun, 20 Nov 2016 14:46:46 +0100 Subject: [PATCH 04/17] Oauth2 provider and initial api --- media/20160916-145919-marco.csv | 4566 ------------------------------- rowers/permissions.py | 21 + rowers/serializers.py | 36 + rowers/urls.py | 48 +- rowers/views.py | 20 +- rowsandall_app/settings.py | 9 +- 6 files changed, 89 insertions(+), 4611 deletions(-) delete mode 100644 media/20160916-145919-marco.csv create mode 100644 rowers/permissions.py create mode 100644 rowers/serializers.py diff --git a/media/20160916-145919-marco.csv b/media/20160916-145919-marco.csv deleted file mode 100644 index e28d457e..00000000 --- a/media/20160916-145919-marco.csv +++ /dev/null @@ -1,4566 +0,0 @@ -index, AverageDriveForce (lbs), Cadence (stokes/min), DriveLength (meters), DriveTime (ms), ElapsedTime (sec), HRCur (bpm), Horizontal (meters), PeakDriveForce (lbs), Power (watts), Stroke500mPace (sec/500m), StrokeDistance (meters), StrokeRecoveryTime (ms), lapIdx, latitude, longitude,TimeStamp (sec),originalvelo -0,0.0,0.0,0.0,0.0,0,104.0,0.0,0.0,0.0,inf,0.0,0.0,0,38.9042343479,-77.0700304862,1473235080.0,0.0 -1,0.0,0.0,0.0,0.0,1,105.0,0.0,0.0,0.0,inf,0.0,0.0,0,38.9042331744,-77.0700261276,1473235081.0,0.0 -2,0.0,0.0,0.0,0.0,921,76.0,0.0,0.0,0.0,inf,0.0,0.0,0,38.9040209446,-77.0703534409,1473236001.0,0.0 -3,0.0,0.0,0.0,0.0,922,75.0,0.15,0.0,0.0,inf,0.0,0.0,0,38.9040222857,-77.070352938,1473236002.0,0.0 -4,0.0,0.0,0.0,0.0,923,74.0,0.19,0.0,0.0,inf,0.0,0.0,0,38.9040237945,-77.0703548659,1473236003.0,0.0 -5,0.0,0.0,0.0,0.0,924,73.0,0.19,0.0,0.0,inf,0.0,0.0,0,38.9040237945,-77.0703548659,1473236004.0,0.0 -6,0.0,0.0,0.0,0.0,925,73.0,0.19,0.0,0.0,inf,0.0,0.0,0,38.9040227048,-77.0703615714,1473236005.0,0.0 -7,0.0,0.0,0.0,0.0,926,73.0,0.19,0.0,0.0,inf,0.0,0.0,0,38.904017508,-77.0703666843,1473236006.0,0.0 -8,0.0,0.0,0.0,0.0,927,72.0,0.19,0.0,0.0,inf,0.0,0.0,0,38.9040131494,-77.070373809,1473236007.0,0.0 -9,0.0,0.0,0.0,0.0,928,71.0,0.19,0.0,0.0,inf,0.0,0.0,0,38.9040073659,-77.0703749824,1473236008.0,0.0 -10,0.0,0.0,0.0,0.0,929,71.0,0.19,0.0,0.0,inf,0.0,0.0,0,38.9039982297,-77.0703762397,1473236009.0,0.0 -11,0.0,0.0,0.0,0.0,930,71.0,0.19,0.0,0.0,inf,0.0,0.0,0,38.9039924461,-77.0703764074,1473236010.0,0.0 -12,0.0,0.0,0.0,0.0,931,71.0,0.19,0.0,0.0,inf,0.0,0.0,0,38.9039884228,-77.0703740604,1473236011.0,0.0 -13,0.0,0.0,0.0,0.0,932,71.0,0.19,0.0,0.0,inf,0.0,0.0,0,38.9039838966,-77.0703707077,1473236012.0,0.0 -14,0.0,0.0,0.0,0.0,933,73.0,0.19,0.0,0.0,inf,0.0,0.0,0,38.9039816335,-77.0703681931,1473236013.0,0.0 -15,0.0,0.0,0.0,0.0,934,74.0,0.22,0.0,0.0,inf,0.0,0.0,0,38.9039811306,-77.0703666843,1473236014.0,0.0 -16,0.0,0.0,0.0,0.0,935,76.0,0.34,0.0,0.0,inf,0.0,0.0,0,38.9039805438,-77.0703630801,1473236015.0,0.0 -17,0.0,0.0,0.0,0.0,936,77.0,0.34,0.0,0.0,inf,0.0,0.0,0,38.9039802086,-77.0703629125,1473236016.0,0.0 -18,0.0,0.0,0.0,0.0,937,78.0,0.35,0.0,0.0,inf,0.0,0.0,0,38.9039793704,-77.0703610685,1473236017.0,0.0 -19,0.0,0.0,0.0,0.0,938,79.0,0.4,0.0,0.0,inf,0.0,0.0,0,38.9039790351,-77.0703595597,1473236018.0,0.0 -20,0.0,0.0,0.0,0.0,939,79.0,0.4,0.0,0.0,inf,0.0,0.0,0,38.9039787836,-77.0703595597,1473236019.0,0.0 -21,0.0,0.0,0.0,0.0,940,79.0,0.42,0.0,0.0,inf,0.0,0.0,0,38.9039784484,-77.0703584701,1473236020.0,0.0 -22,0.0,0.0,0.0,0.0,941,80.0,0.57,0.0,0.0,inf,0.0,0.0,0,38.9039791189,-77.0703566261,1473236021.0,0.0 -23,0.0,0.0,0.0,0.0,942,80.0,0.65,0.0,0.0,inf,0.0,0.0,0,38.9039798733,-77.0703562908,1473236022.0,0.0 -24,0.0,0.0,0.0,0.0,943,79.0,0.65,0.0,0.0,inf,0.0,0.0,0,38.9039798733,-77.0703565422,1473236023.0,0.0 -25,0.0,0.0,0.0,0.0,944,79.0,0.71,0.0,0.0,inf,0.0,0.0,0,38.903979538,-77.0703546982,1473236024.0,0.0 -26,0.0,0.0,0.0,0.0,945,78.0,0.71,0.0,0.0,inf,0.0,0.0,0,38.9039786998,-77.0703539439,1473236025.0,0.0 -27,0.0,0.0,0.0,0.0,946,78.0,0.71,0.0,0.0,inf,0.0,0.0,0,38.9039773587,-77.0703533571,1473236026.0,0.0 -28,0.0,0.0,0.0,0.0,947,78.0,0.71,0.0,0.0,inf,0.0,0.0,0,38.9039755985,-77.0703518484,1473236027.0,0.0 -29,0.0,0.0,0.0,0.0,948,78.0,0.71,0.0,0.0,inf,0.0,0.0,0,38.9039755147,-77.0703522675,1473236028.0,0.0 -30,0.0,0.0,0.0,0.0,949,78.0,0.73,0.0,0.0,inf,0.0,0.0,0,38.9039760176,-77.070352938,1473236029.0,0.0 -31,0.0,0.0,0.0,0.0,950,80.0,0.73,0.0,0.0,inf,0.0,0.0,0,38.9039760176,-77.0703534409,1473236030.0,0.0 -32,0.0,0.0,0.0,0.0,951,81.0,0.73,0.0,0.0,inf,0.0,0.0,0,38.90397585,-77.0703541115,1473236031.0,0.0 -33,0.0,0.0,0.0,0.0,953,83.0,0.73,0.0,0.0,3311.25827814,0.0,0.0,0,38.9039289113,-77.0702799316,1473236033.0,0.0 -34,0.0,0.0,0.0,0.0,955,86.0,2.7,0.0,0.0,9933.77483442,0.0,0.0,0,38.9039812982,-77.0703387726,1473236035.0,0.0 -35,0.0,0.0,0.0,0.0,957,87.0,3.08,0.0,0.0,1706.98904866,0.0,0.0,0,38.9039831422,-77.0703344978,1473236037.0,0.0 -36,0.0,0.0,0.0,0.0,958,87.0,3.08,0.0,0.0,729.876268594,0.0,0.0,0,38.9039858244,-77.0703453943,1473236038.0,0.0 -37,0.0,0.0,0.0,0.0,960,86.0,3.08,0.0,0.0,497.713963138,0.0,0.0,0,38.9040166698,-77.0704044867,1473236040.0,1.661 -38,0.0,0.0,0.0,0.0,961,86.0,3.08,0.0,0.0,447.178708873,0.0,0.0,0,38.9040166698,-77.0704044867,1473236041.0,1.661 -39,0.0,0.0,0.0,0.0,962,86.0,5.36,0.0,0.0,487.504273576,0.0,0.0,0,38.9040004928,-77.0703857951,1473236042.0,0.97 -40,0.0,0.0,0.0,0.0,963,86.0,5.78,0.0,0.0,687.639165068,0.0,0.0,0,38.9039981458,-77.070382107,1473236043.0,0.467000000001 -41,0.0,0.0,0.0,0.0,964,86.0,6.19,0.0,0.0,2246.16401859,0.0,0.0,0,38.9039957989,-77.0703783352,1473236044.0,0.0 -42,0.0,0.0,0.0,0.0,965,86.0,6.62,0.0,0.0,37402.8497409,0.0,0.0,0,38.9039927814,-77.0703752339,1473236045.0,0.0 -43,0.0,0.0,0.0,0.0,966,86.0,6.96,0.0,0.0,8350.20242917,0.0,0.0,0,38.9039922785,-77.0703704562,1473236046.0,0.0 -44,0.0,0.0,0.0,0.0,967,85.0,6.96,0.0,0.0,11777.3019272,0.0,0.0,0,38.9039922785,-77.0703704562,1473236047.0,0.0 -45,0.0,0.0,0.0,0.0,968,84.0,7.01,0.0,0.0,inf,0.0,0.0,0,38.9040001575,-77.0703604817,1473236048.0,0.0 -46,0.0,0.0,0.0,0.0,969,84.0,7.63,0.0,0.0,12276.7857143,0.0,0.0,0,38.9039949607,-77.0703568775,1473236049.0,0.0 -47,0.0,0.0,0.0,0.0,970,84.0,8.21,0.0,0.0,18415.1785714,0.0,0.0,0,38.9039909374,-77.0703525189,1473236050.0,0.0 -48,0.0,0.0,0.0,0.0,971,84.0,8.71,0.0,0.0,6610.57692307,0.0,0.0,0,38.9039868303,-77.0703495014,1473236051.0,0.0 -49,0.0,0.0,0.0,0.0,972,84.0,9.14,0.0,0.0,4774.30555555,0.0,0.0,0,38.903979538,-77.0703512616,1473236052.0,0.0 -50,0.0,0.0,0.0,0.0,973,84.0,9.9,0.0,0.0,4369.70338982,0.0,0.0,0,38.9039726648,-77.0703526866,1473236053.0,0.448000000001 -51,0.0,0.0,0.0,0.0,974,85.0,10.29,0.0,0.0,4774.30555555,0.0,0.0,0,38.9039699826,-77.0703563746,1473236054.0,0.0 -52,0.0,0.0,0.0,0.0,975,85.0,10.5,0.0,0.0,6610.57692307,0.0,0.0,0,38.9039694797,-77.0703614876,1473236055.0,0.0 -53,0.0,0.0,0.0,0.0,976,86.0,10.67,0.0,0.0,18415.1785714,0.0,0.0,0,38.9039690606,-77.0703656785,1473236056.0,0.0 -54,0.0,0.0,0.0,0.0,977,86.0,10.71,0.0,0.0,12276.7857143,0.0,0.0,0,38.9039696474,-77.0703689475,1473236057.0,0.0 -55,0.0,0.0,0.0,0.0,978,86.0,10.71,0.0,0.0,inf,0.0,0.0,0,38.9039711561,-77.0703721326,1473236058.0,0.0 -56,0.0,0.0,0.0,0.0,979,86.0,10.71,0.0,0.0,inf,0.0,0.0,0,38.9039720781,-77.0703740604,1473236059.0,0.0 -57,0.0,0.0,0.0,0.0,980,86.0,10.74,0.0,0.0,inf,0.0,0.0,0,38.9039722458,-77.0703757368,1473236060.0,0.0 -58,0.0,0.0,0.0,0.0,981,86.0,10.8,0.0,0.0,inf,0.0,0.0,0,38.9039718267,-77.0703764074,1473236061.0,0.0 -59,0.0,0.0,0.0,0.0,982,86.0,10.93,0.0,0.0,inf,0.0,0.0,0,38.9039709885,-77.0703779161,1473236062.0,0.0 -60,0.0,0.0,0.0,0.0,983,85.0,11.08,0.0,0.0,inf,0.0,0.0,0,38.9039696474,-77.0703779999,1473236063.0,0.0 -61,0.0,0.0,0.0,0.0,984,83.0,11.22,0.0,0.0,inf,0.0,0.0,0,38.9039683063,-77.0703782514,1473236064.0,0.0 -62,0.0,0.0,0.0,0.0,985,82.0,11.32,0.0,0.0,inf,0.0,0.0,0,38.9039677195,-77.070379341,1473236065.0,0.0 -63,0.0,0.0,0.0,0.0,986,80.0,11.37,0.0,0.0,21072.7969349,0.0,0.0,0,38.9039673004,-77.0703797601,1473236066.0,0.0 -64,0.0,0.0,0.0,0.0,987,79.0,11.42,0.0,0.0,25229.3577981,0.0,0.0,0,38.9039669652,-77.0703800116,1473236067.0,0.0 -65,0.0,0.0,0.0,0.0,988,78.0,11.42,0.0,0.0,12302.9399233,0.0,0.0,0,38.9039669652,-77.0703792572,1473236068.0,0.0 -66,0.0,0.0,0.0,0.0,989,78.0,11.53,0.0,0.0,3896.62966836,0.0,0.0,0,38.9039653726,-77.070377497,1473236069.0,0.0 -67,0.0,0.0,0.0,0.0,990,78.0,11.78,0.0,0.0,2271.5651182,0.0,0.0,0,38.9039630257,-77.0703779999,1473236070.0,0.261 -68,0.0,0.0,0.0,0.0,991,78.0,12.16,0.0,0.0,1904.02400224,0.0,0.0,0,38.9039597567,-77.0703795087,1473236071.0,0.392000000001 -69,0.0,0.0,0.0,0.0,992,79.0,12.55,0.0,0.0,1954.77778154,0.0,0.0,0,38.9039572421,-77.0703828614,1473236072.0,0.298999999999 -70,0.0,0.0,0.0,0.0,993,79.0,12.8,0.0,0.0,2926.71802149,0.0,0.0,0,38.9039556496,-77.0703852084,1473236073.0,0.187 -71,0.0,0.0,0.0,0.0,994,80.0,12.97,0.0,0.0,6717.06891539,0.0,0.0,0,38.9039545599,-77.0703868009,1473236074.0,0.0 -72,0.0,0.0,0.0,0.0,995,80.0,13.1,0.0,0.0,11947.8638668,0.0,0.0,0,38.9039538056,-77.0703882258,1473236075.0,0.0 -73,0.0,0.0,0.0,0.0,996,81.0,13.16,0.0,0.0,4964.53900709,0.0,0.0,0,38.9039537217,-77.0703895669,1473236076.0,0.0 -74,0.0,0.0,0.0,0.0,997,82.0,13.3,0.0,0.0,2123.43500083,0.0,0.0,0,38.9039544761,-77.070390908,1473236077.0,0.316999999999 -75,0.0,0.0,0.0,0.0,998,82.0,13.68,0.0,0.0,1249.54021248,0.0,0.0,0,38.9039563201,-77.0703949314,1473236078.0,0.429 -76,0.0,0.0,0.0,0.0,999,82.0,14.16,0.0,0.0,884.332386473,0.0,0.0,0,38.9039584156,-77.0703998767,1473236079.0,0.569 -77,0.0,0.0,0.0,0.0,1000,82.0,14.82,0.0,0.0,725.967642585,0.0,0.0,0,38.9039606787,-77.0704070013,1473236080.0,0.709 -78,0.0,0.0,0.0,0.0,1001,82.0,15.6,0.0,0.0,640.194219961,0.0,0.0,0,38.9039625227,-77.0704157185,1473236081.0,0.746 -79,0.0,0.0,0.0,0.0,1002,83.0,16.49,0.0,0.0,572.643979058,0.0,0.0,0,38.9039643668,-77.0704257768,1473236082.0,0.896 -80,0.0,0.0,0.0,0.0,1003,83.0,17.43,0.0,0.0,537.912341246,0.0,0.0,0,38.9039649535,-77.0704365056,1473236083.0,0.877 -81,0.0,0.0,0.0,0.0,1004,83.0,18.48,0.0,0.0,515.885245682,0.0,0.0,0,38.9039657079,-77.0704486594,1473236084.0,1.054 -82,0.0,0.0,0.0,0.0,1005,84.0,19.57,0.0,0.0,500.62198489,0.0,0.0,0,38.9039657079,-77.0704612322,1473236085.0,0.989 -83,0.0,0.0,0.0,0.0,1006,84.0,20.61,0.0,0.0,489.319697342,0.0,0.0,0,38.9039653726,-77.0704732183,1473236086.0,0.97 -84,0.0,0.0,0.0,0.0,1007,84.0,21.68,0.0,0.0,510.127465616,0.0,0.0,0,38.9039649535,-77.0704856236,1473236087.0,1.026 -85,0.0,0.0,0.0,0.0,1008,83.0,22.77,0.0,0.0,504.516625024,0.0,0.0,0,38.9039638638,-77.0704981126,1473236088.0,1.036 -86,0.0,0.0,0.0,0.0,1009,83.0,23.86,0.0,0.0,448.232102733,0.0,0.0,0,38.9039625227,-77.0705106016,1473236089.0,1.073 -87,0.0,0.0,0.0,0.0,1010,83.0,24.92,0.0,0.0,419.813755352,0.0,0.0,0,38.9039607625,-77.0705226716,1473236090.0,0.951999999999 -88,0.0,0.0,0.0,0.0,1011,83.0,26.24,0.0,0.0,376.747963767,0.0,0.0,0,38.9039581642,-77.0705375075,1473236091.0,1.549 -89,0.0,0.0,0.0,0.0,1012,83.0,27.9,0.0,0.0,333.552813973,0.0,0.0,0,38.9039548114,-77.0705561154,1473236092.0,1.614 -90,0.0,0.0,0.0,0.0,1013,83.0,29.43,0.0,0.0,301.474484296,0.0,0.0,0,38.9039517939,-77.0705733821,1473236093.0,1.372 -91,0.0,0.0,0.0,0.0,1014,83.0,31.11,0.0,0.0,284.680492362,0.0,0.0,0,38.9039484411,-77.0705922414,1473236094.0,1.866 -92,0.0,0.0,0.0,0.0,1015,83.0,33.03,0.0,0.0,293.994120117,0.0,0.0,0,38.9039444178,-77.0706137829,1473236095.0,1.801 -93,0.0,0.0,0.0,0.0,1016,84.0,34.86,0.0,0.0,309.461483432,0.0,0.0,0,38.9039403107,-77.0706342347,1473236096.0,1.67 -94,0.0,0.0,0.0,0.0,1017,84.0,36.5,0.0,0.0,333.473844679,0.0,0.0,0,38.9039367065,-77.0706525911,1473236097.0,1.456 -95,0.0,0.0,0.0,0.0,1018,83.0,37.94,0.0,0.0,390.219840736,0.0,0.0,0,38.9039333537,-77.0706686005,1473236098.0,1.232 -96,0.0,0.0,0.0,0.0,1019,83.0,39.19,0.0,0.0,451.281169659,0.0,0.0,0,38.9039304201,-77.0706825145,1473236099.0,1.045 -97,0.0,0.0,0.0,0.0,1020,83.0,40.32,0.0,0.0,506.910217642,0.0,0.0,0,38.9039279055,-77.0706951711,1473236100.0,1.045 -98,0.0,0.0,0.0,0.0,1021,83.0,41.39,0.0,0.0,552.185075226,0.0,0.0,0,38.9039258938,-77.0707071573,1473236101.0,0.914 -99,0.0,0.0,0.0,0.0,1022,83.0,42.31,0.0,0.0,585.189388566,0.0,0.0,0,38.9039242174,-77.0707176346,1473236102.0,0.784 -100,0.0,0.0,0.0,0.0,1023,84.0,43.2,0.0,0.0,648.009964205,0.0,0.0,0,38.9039229602,-77.0707277767,1473236103.0,0.84 -101,0.0,0.0,0.0,0.0,1024,83.0,44.07,0.0,0.0,707.425827474,0.0,0.0,0,38.9039215352,-77.0707375836,1473236104.0,0.728 -102,0.0,0.0,0.0,0.0,1025,83.0,44.85,0.0,0.0,749.85392456,0.0,0.0,0,38.9039201941,-77.0707463846,1473236105.0,0.662 -103,0.0,0.0,0.0,0.0,1026,82.0,45.49,0.0,0.0,794.065477745,0.0,0.0,0,38.9039191883,-77.0707536768,1473236106.0,0.513 -104,0.0,0.0,0.0,0.0,1027,81.0,46.14,0.0,0.0,865.213906347,0.0,0.0,0,38.903917931,-77.0707610529,1473236107.0,0.681 -105,0.0,0.0,0.0,0.0,1028,80.0,46.81,0.0,0.0,899.953249182,0.0,0.0,0,38.9039167576,-77.0707685966,1473236108.0,0.56 -106,0.0,0.0,0.0,0.0,1029,80.0,47.4,0.0,0.0,929.427858694,0.0,0.0,0,38.9039155841,-77.0707752183,1473236109.0,0.523 -107,0.0,0.0,0.0,0.0,1030,79.0,47.92,0.0,0.0,973.459531896,0.0,0.0,0,38.9039144944,-77.0707810856,1473236110.0,0.485000000001 -108,0.0,0.0,0.0,0.0,1031,79.0,48.45,0.0,0.0,1103.45750017,0.0,0.0,0,38.903913321,-77.070786953,1473236111.0,0.485000000001 -109,0.0,0.0,0.0,0.0,1032,79.0,49.0,0.0,0.0,1144.85657078,0.0,0.0,0,38.9039120637,-77.0707931556,1473236112.0,0.448000000001 -110,0.0,0.0,0.0,0.0,1033,79.0,49.49,0.0,0.0,1206.68219856,0.0,0.0,0,38.9039111417,-77.0707986038,1473236113.0,0.383 -111,0.0,0.0,0.0,0.0,1034,79.0,49.92,0.0,0.0,1271.78832157,0.0,0.0,0,38.9039103035,-77.0708034653,1473236114.0,0.372999999999 -112,0.0,0.0,0.0,0.0,1035,79.0,50.4,0.0,0.0,1398.30508475,0.0,0.0,0,38.9039090462,-77.0708087459,1473236115.0,0.400999999999 -113,0.0,0.0,0.0,0.0,1036,78.0,50.8,0.0,0.0,1522.80248395,0.0,0.0,0,38.9039080404,-77.0708132721,1473236116.0,0.335999999999 -114,0.0,0.0,0.0,0.0,1037,78.0,51.17,0.0,0.0,1664.69689545,0.0,0.0,0,38.9039067831,-77.0708172116,1473236117.0,0.298999999999 -115,0.0,0.0,0.0,0.0,1038,77.0,51.47,0.0,0.0,1838.93771494,0.0,0.0,0,38.9039061125,-77.0708205644,1473236118.0,0.233 -116,0.0,0.0,0.0,0.0,1039,77.0,51.73,0.0,0.0,2071.60024393,0.0,0.0,0,38.9039051905,-77.0708233304,1473236119.0,0.252 -117,0.0,0.0,0.0,0.0,1040,78.0,52.0,0.0,0.0,2060.10880228,0.0,0.0,0,38.9039042685,-77.0708262641,1473236120.0,0.233 -118,0.0,0.0,0.0,0.0,1041,78.0,52.3,0.0,0.0,2467.21066347,0.0,0.0,0,38.9039032627,-77.0708294492,1473236121.0,0.233 -119,0.0,0.0,0.0,0.0,1042,78.0,52.56,0.0,0.0,2630.20062396,0.0,0.0,0,38.9039025083,-77.0708322152,1473236122.0,0.187 -120,0.0,0.0,0.0,0.0,1043,78.0,52.56,0.0,0.0,3291.44225014,0.0,0.0,0,38.9039032627,-77.0708326343,1473236123.0,0.187 -121,0.0,0.0,0.0,0.0,1044,78.0,52.62,0.0,0.0,4561.97171972,0.0,0.0,0,38.9039031789,-77.0708333049,1473236124.0,0.0 -122,0.0,0.0,0.0,0.0,1045,78.0,52.72,0.0,0.0,7470.40941723,0.0,0.0,0,38.9039030112,-77.0708344784,1473236125.0,0.177 -123,0.0,0.0,0.0,0.0,1046,77.0,52.83,0.0,0.0,14001.6971754,0.0,0.0,0,38.9039028436,-77.0708358195,1473236126.0,0.0 -124,0.0,0.0,0.0,0.0,1047,76.0,52.92,0.0,0.0,38810.483871,0.0,0.0,0,38.9039027598,-77.0708369091,1473236127.0,0.0 -125,0.0,0.0,0.0,0.0,1048,76.0,52.97,0.0,0.0,46610.1694915,0.0,0.0,0,38.903902676,-77.0708374958,1473236128.0,0.0 -126,0.0,0.0,0.0,0.0,1049,76.0,53.02,0.0,0.0,31073.4463277,0.0,0.0,0,38.903902676,-77.0708381664,1473236129.0,0.0 -127,0.0,0.0,0.0,0.0,1050,76.0,53.07,0.0,0.0,inf,0.0,0.0,0,38.903902173,-77.0708385017,1473236130.0,0.0 -128,0.0,0.0,0.0,0.0,1051,76.0,53.11,0.0,0.0,inf,0.0,0.0,0,38.9039018378,-77.0708387531,1473236131.0,0.0 -129,0.0,0.0,0.0,0.0,1052,76.0,53.15,0.0,0.0,inf,0.0,0.0,0,38.9039016701,-77.0708391722,1473236132.0,0.0 -130,0.0,0.0,0.0,0.0,1053,77.0,53.16,0.0,0.0,inf,0.0,0.0,0,38.9039015025,-77.070839256,1473236133.0,0.0 -131,0.0,0.0,0.0,0.0,1054,77.0,53.16,0.0,0.0,inf,0.0,0.0,0,38.9039014187,-77.0708390884,1473236134.0,0.0 -132,0.0,0.0,0.0,0.0,1055,78.0,53.16,0.0,0.0,inf,0.0,0.0,0,38.9039013349,-77.0708389208,1473236135.0,0.0 -133,0.0,0.0,0.0,0.0,1056,78.0,53.17,0.0,0.0,inf,0.0,0.0,0,38.903901251,-77.0708389208,1473236136.0,0.0 -134,0.0,0.0,0.0,0.0,1057,79.0,53.2,0.0,0.0,inf,0.0,0.0,0,38.9039011672,-77.070839256,1473236137.0,0.0 -135,0.0,0.0,0.0,0.0,1058,79.0,53.21,0.0,0.0,inf,0.0,0.0,0,38.9039010834,-77.0708394237,1473236138.0,0.0 -136,0.0,0.0,0.0,0.0,1059,79.0,53.21,0.0,0.0,inf,0.0,0.0,0,38.9039006643,-77.0708391722,1473236139.0,0.0 -137,0.0,0.0,0.0,0.0,1060,79.0,53.22,0.0,0.0,inf,0.0,0.0,0,38.903900329,-77.0708390884,1473236140.0,0.0 -138,0.0,0.0,0.0,0.0,1061,79.0,53.23,0.0,0.0,inf,0.0,0.0,0,38.9039000776,-77.0708390046,1473236141.0,0.0 -139,0.0,0.0,0.0,0.0,1062,79.0,53.23,0.0,0.0,inf,0.0,0.0,0,38.9038999937,-77.0708389208,1473236142.0,0.0 -140,0.0,0.0,0.0,0.0,1063,79.0,53.23,0.0,0.0,inf,0.0,0.0,0,38.9039000776,-77.070838837,1473236143.0,0.0 -141,0.0,0.0,0.0,0.0,1064,80.0,53.23,0.0,0.0,inf,0.0,0.0,0,38.9038999937,-77.0708387531,1473236144.0,0.0 -142,0.0,0.0,0.0,0.0,1065,80.0,53.23,0.0,0.0,inf,0.0,0.0,0,38.9039001614,-77.070838837,1473236145.0,0.0 -143,0.0,0.0,0.0,0.0,1066,80.0,53.23,0.0,0.0,inf,0.0,0.0,0,38.903900329,-77.070838837,1473236146.0,0.0 -144,0.0,0.0,0.0,0.0,1067,79.0,53.23,0.0,0.0,inf,0.0,0.0,0,38.9039004128,-77.0708386693,1473236147.0,0.0 -145,0.0,0.0,0.0,0.0,1068,79.0,53.23,0.0,0.0,inf,0.0,0.0,0,38.9039004128,-77.0708385017,1473236148.0,0.0 -146,0.0,0.0,0.0,0.0,1069,78.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.903900329,-77.0708387531,1473236149.0,0.0 -147,0.0,0.0,0.0,0.0,1070,77.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9039004128,-77.0708385017,1473236150.0,0.0 -148,0.0,0.0,0.0,0.0,1071,77.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9039005805,-77.0708379988,1473236151.0,0.0 -149,0.0,0.0,0.0,0.0,1072,77.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9039006643,-77.0708369929,1473236152.0,0.0 -150,0.0,0.0,0.0,0.0,1073,77.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9039006643,-77.0708361547,1473236153.0,0.0 -151,0.0,0.0,0.0,0.0,1074,77.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9039006643,-77.0708354004,1473236154.0,0.0 -152,0.0,0.0,0.0,0.0,1075,77.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9039006643,-77.0708348136,1473236155.0,0.0 -153,0.0,0.0,0.0,0.0,1076,77.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9039004967,-77.0708338078,1473236156.0,0.0 -154,0.0,0.0,0.0,0.0,1077,78.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9039004967,-77.0708331373,1473236157.0,0.0 -155,0.0,0.0,0.0,0.0,1078,78.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9039004128,-77.0708323829,1473236158.0,0.0 -156,0.0,0.0,0.0,0.0,1079,79.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.903900329,-77.0708315447,1473236159.0,0.0 -157,0.0,0.0,0.0,0.0,1080,80.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9039001614,-77.0708308741,1473236160.0,0.0 -158,0.0,0.0,0.0,0.0,1081,80.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9039000776,-77.0708297007,1473236161.0,0.0 -159,0.0,0.0,0.0,0.0,1082,80.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9038999937,-77.0708288625,1473236162.0,0.0 -160,0.0,0.0,0.0,0.0,1083,79.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9038999099,-77.0708278567,1473236163.0,0.0 -161,0.0,0.0,0.0,0.0,1084,79.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9038999099,-77.0708266832,1473236164.0,0.0 -162,0.0,0.0,0.0,0.0,1085,77.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9038998261,-77.0708257612,1473236165.0,0.0 -163,0.0,0.0,0.0,0.0,1086,75.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9038996585,-77.0708247554,1473236166.0,0.0 -164,0.0,0.0,0.0,0.0,1087,75.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9038994908,-77.0708239172,1473236167.0,0.0 -165,0.0,0.0,0.0,0.0,1088,74.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9038994908,-77.0708231628,1473236168.0,0.0 -166,0.0,0.0,0.0,0.0,1089,74.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9038994908,-77.070822157,1473236169.0,0.0 -167,0.0,0.0,0.0,0.0,1090,73.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.903899407,-77.0708208159,1473236170.0,0.0 -168,0.0,0.0,0.0,0.0,1091,73.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9038993232,-77.0708195586,1473236171.0,0.0 -169,0.0,0.0,0.0,0.0,1092,72.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9038991556,-77.0708182175,1473236172.0,0.0 -170,0.0,0.0,0.0,0.0,1093,72.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9038989879,-77.0708171278,1473236173.0,0.0 -171,0.0,0.0,0.0,0.0,1094,72.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9038989041,-77.0708160382,1473236174.0,0.0 -172,0.0,0.0,0.0,0.0,1095,71.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9038988203,-77.0708147809,1473236175.0,0.0 -173,0.0,0.0,0.0,0.0,1096,71.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9038985688,-77.0708135236,1473236176.0,0.0 -174,0.0,0.0,0.0,0.0,1097,71.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9038985688,-77.0708122663,1473236177.0,0.0 -175,0.0,0.0,0.0,0.0,1098,71.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.903898485,-77.0708109252,1473236178.0,0.0 -176,0.0,0.0,0.0,0.0,1099,71.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9038983174,-77.0708095841,1473236179.0,0.0 -177,0.0,0.0,0.0,0.0,1100,72.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9038980659,-77.0708081592,1473236180.0,0.0 -178,0.0,0.0,0.0,0.0,1101,73.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9038978983,-77.0708068181,1473236181.0,0.0 -179,0.0,0.0,0.0,0.0,1102,73.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9038978145,-77.0708053932,1473236182.0,0.0 -180,0.0,0.0,0.0,0.0,1103,73.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9038977306,-77.0708040521,1473236183.0,0.0 -181,0.0,0.0,0.0,0.0,1104,73.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.903897563,-77.0708030462,1473236184.0,0.0 -182,0.0,0.0,0.0,0.0,1105,73.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9038974792,-77.0708020404,1473236185.0,0.0 -183,0.0,0.0,0.0,0.0,1106,72.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9038974792,-77.0708008669,1473236186.0,0.0 -184,0.0,0.0,0.0,0.0,1107,71.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9038973115,-77.0707996096,1473236187.0,0.0 -185,0.0,0.0,0.0,0.0,1108,71.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9038973115,-77.0707983524,1473236188.0,0.0 -186,0.0,0.0,0.0,0.0,1109,71.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9038972277,-77.0707970951,1473236189.0,0.0 -187,0.0,0.0,0.0,0.0,1110,70.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9038971439,-77.0707960892,1473236190.0,0.0 -188,0.0,0.0,0.0,0.0,1111,70.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9038970601,-77.0707949158,1473236191.0,0.0 -189,0.0,0.0,0.0,0.0,1112,70.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9038969763,-77.0707937423,1473236192.0,0.0 -190,0.0,0.0,0.0,0.0,1113,70.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9038968924,-77.070792485,1473236193.0,0.0 -191,0.0,0.0,0.0,0.0,1114,70.0,53.25,0.0,0.0,inf,0.0,0.0,0,38.9038968086,-77.0707912277,1473236194.0,0.0 -192,0.0,0.0,0.0,0.0,1115,70.0,53.25,0.0,0.0,32738.0952381,0.0,0.0,0,38.9038967248,-77.0707898028,1473236195.0,0.0 -193,0.0,0.0,0.0,0.0,1116,70.0,53.25,0.0,0.0,31073.4463277,0.0,0.0,0,38.903896641,-77.0707883779,1473236196.0,0.0 -194,0.0,0.0,0.0,0.0,1117,70.0,53.25,0.0,0.0,22571.8194255,0.0,0.0,0,38.9038964733,-77.0707870368,1473236197.0,0.0 -195,0.0,0.0,0.0,0.0,1118,71.0,53.25,0.0,0.0,6589.08095156,0.0,0.0,0,38.9038962219,-77.0707857795,1473236198.0,0.0 -196,0.0,0.0,0.0,0.0,1119,71.0,53.25,0.0,0.0,3774.38645796,0.0,0.0,0,38.9038959704,-77.0707846899,1473236199.0,0.168 -197,0.0,0.0,0.0,0.0,1120,71.0,53.5,0.0,0.0,2352.67757114,0.0,0.0,0,38.9038962219,-77.07078184,1473236200.0,0.289 -198,0.0,0.0,0.0,0.0,1121,71.0,53.78,0.0,0.0,1695.38795761,0.0,0.0,0,38.9038968086,-77.0707786549,1473236201.0,0.261 -199,0.0,0.0,0.0,0.0,1122,72.0,54.09,0.0,0.0,1412.96502453,0.0,0.0,0,38.9038973954,-77.0707752183,1473236202.0,0.307999999999 -200,0.0,0.0,0.0,0.0,1123,72.0,54.49,0.0,0.0,1246.78857488,0.0,0.0,0,38.9038978983,-77.0707706083,1473236203.0,0.448000000001 -201,0.0,0.0,0.0,0.0,1124,72.0,54.97,0.0,0.0,1107.78615411,0.0,0.0,0,38.9038988203,-77.0707652438,1473236204.0,0.448000000001 -202,0.0,0.0,0.0,0.0,1125,71.0,55.46,0.0,0.0,993.18955732,0.0,0.0,0,38.9038999937,-77.0707597956,1473236205.0,0.467000000001 -203,0.0,0.0,0.0,0.0,1126,71.0,56.01,0.0,0.0,914.243196605,0.0,0.0,0,38.9039009158,-77.070753593,1473236206.0,0.588 -204,0.0,0.0,0.0,0.0,1127,71.0,56.61,0.0,0.0,885.11851392,0.0,0.0,0,38.9039020892,-77.0707468037,1473236207.0,0.56 -205,0.0,0.0,0.0,0.0,1128,71.0,57.2,0.0,0.0,843.274973351,0.0,0.0,0,38.9039032627,-77.070740182,1473236208.0,0.569 -206,0.0,0.0,0.0,0.0,1129,70.0,57.82,0.0,0.0,822.954370565,0.0,0.0,0,38.9039041847,-77.0707330573,1473236209.0,0.634 -207,0.0,0.0,0.0,0.0,1130,71.0,58.46,0.0,0.0,839.133404048,0.0,0.0,0,38.9039049391,-77.0707257651,1473236210.0,0.579 -208,0.0,0.0,0.0,0.0,1131,71.0,59.1,0.0,0.0,835.412824129,0.0,0.0,0,38.9039055258,-77.0707184728,1473236211.0,0.616 -209,0.0,0.0,0.0,0.0,1132,71.0,59.73,0.0,0.0,853.885734563,0.0,0.0,0,38.9039057773,-77.0707111806,1473236212.0,0.588 -210,0.0,0.0,0.0,0.0,1133,71.0,60.34,0.0,0.0,874.814433302,0.0,0.0,0,38.9039061125,-77.0707041398,1473236213.0,0.551 -211,0.0,0.0,0.0,0.0,1134,71.0,60.96,0.0,0.0,859.963665604,0.0,0.0,0,38.9039061964,-77.0706970152,1473236214.0,0.588 -212,0.0,0.0,0.0,0.0,1135,71.0,61.57,0.0,0.0,855.416154404,0.0,0.0,0,38.9039061964,-77.0706898905,1473236215.0,0.56 -213,0.0,0.0,0.0,0.0,1136,71.0,62.2,0.0,0.0,829.479187613,0.0,0.0,0,38.9039057773,-77.0706826821,1473236216.0,0.606 -214,0.0,0.0,0.0,0.0,1137,71.0,62.87,0.0,0.0,815.326730716,0.0,0.0,0,38.9039048553,-77.0706750546,1473236217.0,0.625 -215,0.0,0.0,0.0,0.0,1138,71.0,63.51,0.0,0.0,835.793678361,0.0,0.0,0,38.9039040171,-77.0706676785,1473236218.0,0.579 -216,0.0,0.0,0.0,0.0,1139,71.0,64.12,0.0,0.0,965.073529412,0.0,0.0,0,38.9039031789,-77.0706608053,1473236219.0,0.56 -217,0.0,0.0,0.0,0.0,1140,72.0,64.64,0.0,0.0,1354.6162507,0.0,0.0,0,38.903902676,-77.0706547704,1473236220.0,0.439 -218,0.0,0.0,0.0,0.0,1141,72.0,65.02,0.0,0.0,2392.44360669,0.0,0.0,0,38.9039030112,-77.070650328,1473236221.0,0.271000000001 -219,0.0,0.0,0.0,0.0,1142,72.0,65.17,0.0,0.0,3698.36695485,0.0,0.0,0,38.9039038494,-77.0706488192,1473236222.0,0.0 -220,0.0,0.0,0.0,0.0,1143,73.0,65.17,0.0,0.0,5064.90089457,0.0,0.0,0,38.90390452,-77.0706494059,1473236223.0,0.0 -221,0.0,0.0,0.0,0.0,1144,73.0,65.31,0.0,0.0,2441.70560007,0.0,0.0,0,38.9039049391,-77.0706509147,1473236224.0,0.196 -222,0.0,0.0,0.0,0.0,1145,74.0,65.66,0.0,0.0,1177.88633142,0.0,0.0,0,38.9039052743,-77.070654938,1473236225.0,0.523 -223,0.0,0.0,0.0,0.0,1146,75.0,66.19,0.0,0.0,772.224005135,0.0,0.0,0,38.9039047714,-77.0706610568,1473236226.0,0.532 -224,0.0,0.0,0.0,0.0,1147,75.0,66.96,0.0,0.0,618.513639431,0.0,0.0,0,38.9039028436,-77.0706695225,1473236227.0,0.979999999999 -225,0.0,0.0,0.0,0.0,1148,76.0,67.97,0.0,0.0,520.317145689,0.0,0.0,0,38.9038997423,-77.0706805028,1473236228.0,1.026 -226,0.0,0.0,0.0,0.0,1149,77.0,68.94,0.0,0.0,460.214368251,0.0,0.0,0,38.9038968924,-77.070691064,1473236229.0,0.905 -227,0.0,0.0,0.0,0.0,1150,77.0,69.94,0.0,0.0,419.438714738,0.0,0.0,0,38.9038936235,-77.0707017928,1473236230.0,1.11 -228,0.0,0.0,0.0,0.0,1151,77.0,71.19,0.0,0.0,412.441079846,0.0,0.0,0,38.9038893487,-77.0707152039,1473236231.0,1.39 -229,0.0,0.0,0.0,0.0,1152,78.0,72.53,0.0,0.0,403.675368113,0.0,0.0,0,38.9038846549,-77.0707294531,1473236232.0,1.288 -230,0.0,0.0,0.0,0.0,1153,78.0,73.78,0.0,0.0,406.061032204,0.0,0.0,0,38.9038802963,-77.0707426965,1473236233.0,1.176 -231,0.0,0.0,0.0,0.0,1154,78.0,74.94,0.0,0.0,435.295492148,0.0,0.0,0,38.9038761053,-77.0707549341,1473236234.0,1.11 -232,0.0,0.0,0.0,0.0,1155,78.0,76.04,0.0,0.0,480.511214008,0.0,0.0,0,38.9038719144,-77.0707665011,1473236235.0,1.045 -233,0.0,0.0,0.0,0.0,1156,78.0,77.09,0.0,0.0,505.043879786,0.0,0.0,0,38.9038680587,-77.0707774814,1473236236.0,0.989 -234,0.0,0.0,0.0,0.0,1157,78.0,78.09,0.0,0.0,535.970338334,0.0,0.0,0,38.9038642868,-77.0707879588,1473236237.0,0.941999999999 -235,0.0,0.0,0.0,0.0,1158,77.0,79.02,0.0,0.0,579.327779143,0.0,0.0,0,38.9038607664,-77.0707976818,1473236238.0,0.868000000001 -236,0.0,0.0,0.0,0.0,1159,77.0,79.89,0.0,0.0,602.466199299,0.0,0.0,0,38.9038573299,-77.0708066504,1473236239.0,0.868000000001 -237,0.0,0.0,0.0,0.0,1160,78.0,80.71,0.0,0.0,606.538007089,0.0,0.0,0,38.9038540609,-77.0708152,1473236240.0,0.746 -238,0.0,0.0,0.0,0.0,1161,78.0,81.48,0.0,0.0,603.937357839,0.0,0.0,0,38.903850792,-77.0708229952,1473236241.0,0.774 -239,0.0,0.0,0.0,0.0,1162,78.0,82.34,0.0,0.0,604.199579414,0.0,0.0,0,38.9038468525,-77.0708316285,1473236242.0,0.923999999999 -240,0.0,0.0,0.0,0.0,1163,78.0,83.26,0.0,0.0,613.946961361,0.0,0.0,0,38.9038432483,-77.0708412677,1473236243.0,0.877 -241,0.0,0.0,0.0,0.0,1164,78.0,84.11,0.0,0.0,658.630049497,0.0,0.0,0,38.9038406499,-77.0708504878,1473236244.0,0.802 -242,0.0,0.0,0.0,0.0,1165,78.0,84.92,0.0,0.0,593.531279869,0.0,0.0,0,38.9038384706,-77.0708593726,1473236245.0,0.774 -243,0.0,21.0,0.0,0.0,1166,77.0,85.76,0.0,0.0,507.966944765,0.0,0.0,0,38.9038362913,-77.0708686765,1473236246.0,0.84 -244,0.0,36.0,0.0,0.0,1167,77.0,86.74,0.0,0.0,396.593757511,0.0,0.0,0,38.9038336929,-77.0708794892,1473236247.0,1.008 -245,0.0,36.0,0.0,0.0,1168,77.0,88.24,0.0,0.0,353.050139233,0.0,0.0,0,38.9038303401,-77.070896253,1473236248.0,1.866 -246,0.0,36.0,0.0,0.0,1169,77.0,90.07,0.0,0.0,308.169287662,0.0,0.0,0,38.9038273226,-77.0709170401,1473236249.0,1.717 -247,0.0,25.0,0.0,0.0,1170,78.0,91.92,0.0,0.0,262.749014407,0.0,0.0,0,38.9038241375,-77.0709379949,1473236250.0,1.875 -248,0.0,25.0,0.0,0.0,1171,78.0,93.65,0.0,0.0,252.411568536,0.0,0.0,0,38.9038209524,-77.0709574409,1473236251.0,1.456 -249,0.0,25.0,0.0,0.0,1172,80.0,95.63,0.0,0.0,245.164111371,0.0,0.0,0,38.9038175996,-77.0709799044,1473236252.0,2.398 -250,0.0,0.0,0.0,0.0,1173,81.0,98.15,0.0,0.0,218.555038971,0.0,0.0,0,38.9038140792,-77.0710086543,1473236253.0,2.55699999999 -251,0.0,0.0,0.0,0.0,1174,82.0,100.43,0.0,0.0,203.624336899,0.0,0.0,0,38.9038106427,-77.0710345544,1473236254.0,1.95 -252,0.0,0.0,0.0,0.0,1175,82.0,102.83,0.0,0.0,193.948797517,0.0,0.0,0,38.9038071223,-77.0710618794,1473236255.0,2.76199999999 -253,0.0,0.0,0.0,0.0,1176,83.0,105.68,0.0,0.0,194.459830997,0.0,0.0,0,38.9038029313,-77.0710942335,1473236256.0,2.84600000001 -254,0.0,0.0,0.0,0.0,1177,83.0,108.39,0.0,0.0,182.983341387,0.0,0.0,0,38.9037987404,-77.0711249951,1473236257.0,2.463 -255,0.0,0.0,0.0,0.0,1178,84.0,110.98,0.0,0.0,181.935605822,0.0,0.0,0,38.9037944656,-77.0711544156,1473236258.0,2.622 -256,0.0,0.0,0.0,0.0,1179,84.0,113.83,0.0,0.0,186.883224682,0.0,0.0,0,38.9037896041,-77.0711866021,1473236259.0,2.948 -257,0.0,0.0,0.0,0.0,1180,84.0,116.83,0.0,0.0,181.619479672,0.0,0.0,0,38.9037844073,-77.0712205488,1473236260.0,2.911 -258,0.0,0.0,0.0,0.0,1181,85.0,119.42,0.0,0.0,178.789802016,0.0,0.0,0,38.9037795458,-77.0712498017,1473236261.0,2.211 -259,0.0,0.0,0.0,0.0,1182,85.0,122.13,0.0,0.0,181.756094337,0.0,0.0,0,38.9037741814,-77.0712803118,1473236262.0,3.10699999999 -260,0.0,24.0,0.0,0.0,1183,85.0,125.23,0.0,0.0,178.332108426,0.0,0.0,0,38.903768314,-77.0713151805,1473236263.0,2.96700000001 -261,0.0,24.0,0.0,0.0,1184,85.0,128.04,0.0,0.0,174.065059642,0.0,0.0,0,38.903762782,-77.0713468641,1473236264.0,2.57499999999 -262,0.0,24.0,0.0,0.0,1185,87.0,130.84,0.0,0.0,169.677773828,0.0,0.0,0,38.9037570823,-77.0713782124,1473236265.0,2.911 -263,0.0,0.0,0.0,0.0,1186,87.0,133.97,0.0,0.0,170.14017783,0.0,0.0,0,38.9037509635,-77.0714135002,1473236266.0,3.25599999999 -264,0.0,0.0,0.0,0.0,1187,88.0,137.06,0.0,0.0,163.967938944,0.0,0.0,0,38.9037448447,-77.0714482013,1473236267.0,2.78100000001 -265,0.0,0.0,0.0,0.0,1188,89.0,140.0,0.0,0.0,160.797220088,0.0,0.0,0,38.9037386421,-77.0714811422,1473236268.0,2.986 -266,0.0,0.0,0.0,0.0,1189,90.0,143.17,0.0,0.0,168.586804689,0.0,0.0,0,38.903732188,-77.0715167653,1473236269.0,3.28399999999 -267,0.0,0.0,0.0,0.0,1190,93.0,146.3,0.0,0.0,181.13441899,0.0,0.0,0,38.9037256502,-77.0715518855,1473236270.0,2.84600000001 -268,0.0,0.0,0.0,0.0,1191,93.0,148.98,0.0,0.0,193.353656393,0.0,0.0,0,38.9037199505,-77.0715819765,1473236271.0,2.473 -269,0.0,0.0,0.0,0.0,1192,93.0,151.26,0.0,0.0,218.033956665,0.0,0.0,0,38.9037154242,-77.0716076251,1473236272.0,2.127 -270,0.0,0.0,0.0,0.0,1193,91.0,153.35,0.0,0.0,252.221404535,0.0,0.0,0,38.9037114847,-77.0716310944,1473236273.0,2.034 -271,0.0,0.0,0.0,0.0,1194,90.0,155.33,0.0,0.0,283.374387862,0.0,0.0,0,38.9037070423,-77.0716532227,1473236274.0,1.885 -272,0.0,0.0,0.0,0.0,1195,88.0,157.08,0.0,0.0,301.581540599,0.0,0.0,0,38.9037031867,-77.0716727525,1473236275.0,1.633 -273,0.0,0.0,0.0,0.0,1196,87.0,158.55,0.0,0.0,343.699877101,0.0,0.0,0,38.9036998339,-77.071689181,1473236276.0,1.418 -274,0.0,0.0,0.0,0.0,1197,86.0,159.88,0.0,0.0,350.53429925,0.0,0.0,0,38.9036971517,-77.0717041846,1473236277.0,1.409 -275,0.0,0.0,0.0,0.0,1198,86.0,161.4,0.0,0.0,315.700568261,0.0,0.0,0,38.9036947209,-77.0717213675,1473236278.0,1.642 -276,0.0,0.0,0.0,0.0,1199,87.0,162.83,0.0,0.0,275.017679708,0.0,0.0,0,38.9036919549,-77.0717374608,1473236279.0,1.278 -277,0.0,0.0,0.0,0.0,1200,87.0,164.68,0.0,0.0,247.85088604,0.0,0.0,0,38.903688686,-77.0717584994,1473236280.0,2.435 -278,0.0,0.0,0.0,0.0,1201,88.0,167.13,0.0,0.0,235.643111876,0.0,0.0,0,38.9036853332,-77.0717863273,1473236281.0,2.389 -279,0.0,0.0,0.0,0.0,1202,89.0,169.33,0.0,0.0,238.250437308,0.0,0.0,0,38.9036819804,-77.0718113892,1473236282.0,2.053 -280,0.0,0.0,0.0,0.0,1203,89.0,171.23,0.0,0.0,254.004697438,0.0,0.0,0,38.903678963,-77.0718329307,1473236283.0,1.81 -281,0.0,0.0,0.0,0.0,1204,89.0,172.92,0.0,0.0,304.850689147,0.0,0.0,0,38.9036763646,-77.0718521252,1473236284.0,1.67 -282,0.0,0.0,0.0,0.0,1205,89.0,174.48,0.0,0.0,339.982868396,0.0,0.0,0,38.9036741015,-77.0718698949,1473236285.0,1.446 -283,0.0,0.0,0.0,0.0,1206,89.0,175.79,0.0,0.0,374.594999562,0.0,0.0,0,38.903672006,-77.0718847308,1473236286.0,1.278 -284,0.0,28.0,0.0,0.0,1207,89.0,177.05,0.0,0.0,394.812404288,0.0,0.0,0,38.9036697429,-77.0718989801,1473236287.0,1.325 -285,0.0,28.0,0.0,0.0,1208,89.0,178.3,0.0,0.0,450.846068271,0.0,0.0,0,38.9036677312,-77.0719131455,1473236288.0,1.25 -286,0.0,28.0,0.0,0.0,1209,88.0,179.45,0.0,0.0,426.101777453,0.0,0.0,0,38.9036657196,-77.0719261374,1473236289.0,1.101 -287,0.0,0.0,0.0,0.0,1210,88.0,180.69,0.0,0.0,342.695395717,0.0,0.0,0,38.9036642946,-77.0719403867,1473236290.0,1.344 -288,0.0,0.0,0.0,0.0,1211,89.0,181.93,0.0,0.0,302.982608012,0.0,0.0,0,38.9036627021,-77.0719544683,1473236291.0,1.222 -289,0.0,0.0,0.0,0.0,1212,89.0,183.81,0.0,0.0,250.202002916,0.0,0.0,0,38.9036606066,-77.0719760098,1473236292.0,2.52899999999 -290,0.0,0.0,0.0,0.0,1213,90.0,186.46,0.0,0.0,203.318581734,0.0,0.0,0,38.9036583435,-77.0720064361,1473236293.0,2.678 -291,0.0,0.0,0.0,0.0,1214,91.0,188.87,0.0,0.0,187.52344043,0.0,0.0,0,38.9036559127,-77.0720340125,1473236294.0,2.109 -292,0.0,0.0,0.0,0.0,1215,92.0,191.56,0.0,0.0,175.049862688,0.0,0.0,0,38.9036537334,-77.0720649417,1473236295.0,3.172 -293,0.0,0.0,0.0,0.0,1216,92.0,194.8,0.0,0.0,169.940160465,0.0,0.0,0,38.9036513865,-77.0721021574,1473236296.0,3.163 -294,0.0,0.0,0.0,0.0,1217,93.0,197.65,0.0,0.0,168.848540666,0.0,0.0,0,38.9036491234,-77.0721349306,1473236297.0,2.463 -295,0.0,0.0,0.0,0.0,1218,94.0,200.6,0.0,0.0,163.602831816,0.0,0.0,0,38.9036469441,-77.0721687935,1473236298.0,3.32199999999 -296,0.0,0.0,0.0,0.0,1219,94.0,203.97,0.0,0.0,162.758581816,0.0,0.0,0,38.9036443457,-77.0722075179,1473236299.0,3.275 -297,0.0,0.0,0.0,0.0,1220,95.0,206.92,0.0,0.0,164.211549972,0.0,0.0,0,38.9036421664,-77.0722413808,1473236300.0,2.53800000001 -298,0.0,0.0,0.0,0.0,1221,95.0,209.94,0.0,0.0,160.659440933,0.0,0.0,0,38.9036396518,-77.0722760819,1473236301.0,3.415 -299,0.0,0.0,0.0,0.0,1222,96.0,213.38,0.0,0.0,160.576127682,0.0,0.0,0,38.9036367182,-77.0723154768,1473236302.0,3.34000000001 -300,0.0,0.0,0.0,0.0,1223,96.0,216.35,0.0,0.0,163.364719161,0.0,0.0,0,38.9036339521,-77.0723495912,1473236303.0,2.55699999999 -301,0.0,0.0,0.0,0.0,1224,96.0,219.36,0.0,0.0,160.464583174,0.0,0.0,0,38.9036305994,-77.0723840408,1473236304.0,3.39600000001 -302,0.0,0.0,0.0,0.0,1225,96.0,222.75,0.0,0.0,159.813592319,0.0,0.0,0,38.9036268275,-77.0724227652,1473236305.0,3.32199999999 -303,0.0,0.0,0.0,0.0,1226,97.0,225.71,0.0,0.0,160.826998885,0.0,0.0,0,38.9036230557,-77.0724565443,1473236306.0,2.585 -304,0.0,0.0,0.0,0.0,1227,97.0,228.79,0.0,0.0,157.242765131,0.0,0.0,0,38.9036187809,-77.0724916644,1473236307.0,3.48999999999 -305,0.0,0.0,0.0,0.0,1228,97.0,232.33,0.0,0.0,156.919540355,0.0,0.0,0,38.9036141708,-77.0725320652,1473236308.0,3.45199999999 -306,0.0,0.0,0.0,0.0,1229,98.0,235.42,0.0,0.0,158.63249178,0.0,0.0,0,38.9036099799,-77.0725672692,1473236309.0,2.64100000001 -307,0.0,0.0,0.0,0.0,1230,98.0,238.51,0.0,0.0,156.356818443,0.0,0.0,0,38.9036057889,-77.0726024732,1473236310.0,3.424 -308,0.0,0.0,0.0,0.0,1231,99.0,241.98,0.0,0.0,157.726983468,0.0,0.0,0,38.9036012627,-77.0726421196,1473236311.0,3.415 -309,0.0,0.0,0.0,0.0,1232,99.0,245.04,0.0,0.0,158.90748695,0.0,0.0,0,38.9035969879,-77.0726769045,1473236312.0,2.669 -310,0.0,0.0,0.0,0.0,1233,99.0,248.12,0.0,0.0,156.143327408,0.0,0.0,0,38.9035927132,-77.0727120247,1473236313.0,3.43399999999 -311,0.0,0.0,0.0,0.0,1234,100.0,251.58,0.0,0.0,156.983310839,0.0,0.0,0,38.9035881869,-77.0727515034,1473236314.0,3.415 -312,0.0,0.0,0.0,0.0,1235,100.0,254.66,0.0,0.0,157.44188963,0.0,0.0,0,38.903583996,-77.0727866236,1473236315.0,2.76199999999 -313,0.0,0.0,0.0,0.0,1236,100.0,257.72,0.0,0.0,156.157260502,0.0,0.0,0,38.9035802241,-77.0728214923,1473236316.0,3.35000000001 -314,0.0,0.0,0.0,0.0,1237,99.0,261.11,0.0,0.0,158.787332208,0.0,0.0,0,38.9035762008,-77.0728603005,1473236317.0,3.415 -315,0.0,0.0,0.0,0.0,1238,100.0,264.19,0.0,0.0,159.498663249,0.0,0.0,0,38.9035721775,-77.0728954207,1473236318.0,2.799 -316,0.0,0.0,0.0,0.0,1239,99.0,267.17,0.0,0.0,159.341553794,0.0,0.0,0,38.9035681542,-77.0729293674,1473236319.0,3.172 -317,0.0,0.0,0.0,0.0,1240,100.0,270.44,0.0,0.0,161.297305148,0.0,0.0,0,38.9035640471,-77.0729666669,1473236320.0,3.35000000001 -318,0.0,0.0,0.0,0.0,1241,99.0,273.58,0.0,0.0,159.861370434,0.0,0.0,0,38.903559437,-77.0730023738,1473236321.0,2.865 -319,0.0,0.0,0.0,0.0,1242,99.0,276.58,0.0,0.0,158.762886598,0.0,0.0,0,38.9035554975,-77.073036572,1473236322.0,3.098 -320,0.0,0.0,0.0,0.0,1243,100.0,279.83,0.0,0.0,162.082514735,0.0,0.0,0,38.9035510551,-77.0730737038,1473236323.0,3.40600000001 -321,0.0,0.0,0.0,0.0,1244,100.0,283.08,0.0,0.0,159.988253676,0.0,0.0,0,38.9035466965,-77.073110668,1473236324.0,2.986 -322,0.0,0.0,0.0,0.0,1245,101.0,286.01,0.0,0.0,163.537044326,0.0,0.0,0,38.9035425056,-77.0731441118,1473236325.0,2.883 -323,0.0,0.0,0.0,0.0,1246,101.0,289.08,0.0,0.0,167.578555168,0.0,0.0,0,38.9035380632,-77.0731789805,1473236326.0,3.191 -324,0.0,0.0,0.0,0.0,1247,101.0,292.29,0.0,0.0,165.236287892,0.0,0.0,0,38.9035335369,-77.0732155256,1473236327.0,3.14400000001 -325,0.0,0.0,0.0,0.0,1248,101.0,295.1,0.0,0.0,165.359065399,0.0,0.0,0,38.9035290107,-77.0732473768,1473236328.0,2.519 -326,0.0,0.0,0.0,0.0,1249,102.0,298.06,0.0,0.0,163.879299703,0.0,0.0,0,38.9035244845,-77.0732809883,1473236329.0,3.39600000001 -327,0.0,0.0,0.0,0.0,1250,102.0,301.42,0.0,0.0,159.576011373,0.0,0.0,0,38.9035198744,-77.0733193774,1473236330.0,3.30299999999 -328,0.0,0.0,0.0,0.0,1251,102.0,304.42,0.0,0.0,161.922773352,0.0,0.0,0,38.9035159349,-77.0733535755,1473236331.0,2.678 -329,0.0,0.0,0.0,0.0,1252,103.0,307.51,0.0,0.0,159.468053234,0.0,0.0,0,38.9035119116,-77.0733887795,1473236332.0,3.415 -330,0.0,0.0,0.0,0.0,1253,103.0,310.91,0.0,0.0,159.581082388,0.0,0.0,0,38.9035081398,-77.0734276716,1473236333.0,3.28399999999 -331,0.0,0.0,0.0,0.0,1254,104.0,313.85,0.0,0.0,162.169448118,0.0,0.0,0,38.9035048708,-77.073461283,1473236334.0,2.54699999999 -332,0.0,0.0,0.0,0.0,1255,104.0,316.89,0.0,0.0,160.149306297,0.0,0.0,0,38.9035019372,-77.0734961517,1473236335.0,3.47100000001 -333,0.0,0.0,0.0,0.0,1256,104.0,320.37,0.0,0.0,160.09469844,0.0,0.0,0,38.903498752,-77.0735360496,1473236336.0,3.35900000001 -334,0.0,0.0,0.0,0.0,1257,105.0,323.32,0.0,0.0,162.213633248,0.0,0.0,0,38.9034964051,-77.0735699963,1473236337.0,2.55699999999 -335,0.0,0.0,0.0,0.0,1258,105.0,326.32,0.0,0.0,160.93075101,0.0,0.0,0,38.9034938067,-77.0736043621,1473236338.0,3.37799999999 -336,0.0,0.0,0.0,0.0,1259,105.0,329.71,0.0,0.0,163.011722731,0.0,0.0,0,38.9034909569,-77.0736432541,1473236339.0,3.29399999999 -337,0.0,0.0,0.0,0.0,1260,105.0,332.65,0.0,0.0,165.506212574,0.0,0.0,0,38.9034881908,-77.0736770332,1473236340.0,2.55699999999 -338,0.0,0.0,0.0,0.0,1261,106.0,335.58,0.0,0.0,162.682242846,0.0,0.0,0,38.9034854248,-77.0737105608,1473236341.0,3.28399999999 -339,0.0,0.0,0.0,0.0,1262,105.0,338.9,0.0,0.0,162.976529969,0.0,0.0,0,38.9034822397,-77.0737486146,1473236342.0,3.30299999999 -340,0.0,0.0,0.0,0.0,1263,106.0,341.85,0.0,0.0,163.447713713,0.0,0.0,0,38.9034794737,-77.0737824775,1473236343.0,2.59399999999 -341,0.0,0.0,0.0,0.0,1264,106.0,344.82,0.0,0.0,160.189509043,0.0,0.0,0,38.9034768753,-77.0738165919,1473236344.0,3.35000000001 -342,0.0,0.0,0.0,0.0,1265,106.0,348.2,0.0,0.0,162.183111051,0.0,0.0,0,38.9034738578,-77.0738553163,1473236345.0,3.35000000001 -343,0.0,0.0,0.0,0.0,1266,106.0,351.18,0.0,0.0,160.408646234,0.0,0.0,0,38.9034713432,-77.0738895144,1473236346.0,2.669 -344,0.0,0.0,0.0,0.0,1267,106.0,354.16,0.0,0.0,160.926714949,0.0,0.0,0,38.9034689963,-77.0739237126,1473236347.0,3.25599999999 -345,0.0,0.0,0.0,0.0,1268,105.0,357.45,0.0,0.0,165.459267653,0.0,0.0,0,38.9034669008,-77.0739615988,1473236348.0,3.25599999999 -346,0.0,0.0,0.0,0.0,1269,105.0,360.55,0.0,0.0,160.751118299,0.0,0.0,0,38.9034652244,-77.0739972219,1473236349.0,2.93 -347,0.0,0.0,0.0,0.0,1270,106.0,363.44,0.0,0.0,160.879418438,0.0,0.0,0,38.9034639671,-77.074030498,1473236350.0,2.84600000001 -348,0.0,0.0,0.0,0.0,1271,106.0,366.59,0.0,0.0,164.644368164,0.0,0.0,0,38.9034629613,-77.0740667917,1473236351.0,3.40600000001 -349,0.0,0.0,0.0,0.0,1272,106.0,369.9,0.0,0.0,159.699571231,0.0,0.0,0,38.9034622908,-77.0741050132,1473236352.0,3.21000000001 -350,0.0,0.0,0.0,0.0,1273,106.0,372.81,0.0,0.0,161.782152977,0.0,0.0,0,38.9034613688,-77.074138457,1473236353.0,2.65 -351,0.0,0.0,0.0,0.0,1274,107.0,375.82,0.0,0.0,162.462566796,0.0,0.0,0,38.9034605306,-77.0741732419,1473236354.0,3.37799999999 -352,0.0,0.0,0.0,0.0,1275,107.0,379.14,0.0,0.0,160.540639716,0.0,0.0,0,38.9034593571,-77.0742114633,1473236355.0,3.26599999999 -353,0.0,0.0,0.0,0.0,1276,107.0,382.04,0.0,0.0,161.754284738,0.0,0.0,0,38.9034578484,-77.0742448233,1473236356.0,2.585 -354,0.0,0.0,0.0,0.0,1277,107.0,385.06,0.0,0.0,159.324409327,0.0,0.0,0,38.9034560043,-77.0742795244,1473236357.0,3.47100000001 -355,0.0,0.0,0.0,0.0,1278,108.0,388.51,0.0,0.0,159.800104596,0.0,0.0,0,38.9034539089,-77.0743192546,1473236358.0,3.35000000001 -356,0.0,0.0,0.0,0.0,1279,108.0,391.46,0.0,0.0,163.235425055,0.0,0.0,0,38.903451981,-77.0743532013,1473236359.0,2.585 -357,0.0,0.0,0.0,0.0,1280,108.0,394.42,0.0,0.0,162.625207329,0.0,0.0,0,38.9034496341,-77.074387148,1473236360.0,3.35900000001 -358,0.0,0.0,0.0,0.0,1281,108.0,397.71,0.0,0.0,163.795866388,0.0,0.0,0,38.9034463651,-77.0744248666,1473236361.0,3.2 -359,0.0,0.0,0.0,0.0,1282,108.0,400.54,0.0,0.0,164.66784144,0.0,0.0,0,38.90344318,-77.0744572207,1473236362.0,2.53800000001 -360,0.0,0.0,0.0,0.0,1283,108.0,403.47,0.0,0.0,161.43572971,0.0,0.0,0,38.9034399949,-77.0744907483,1473236363.0,3.35900000001 -361,0.0,0.0,0.0,0.0,1284,108.0,406.86,0.0,0.0,161.344171564,0.0,0.0,0,38.9034363907,-77.0745295566,1473236364.0,3.39600000001 -362,0.0,0.0,0.0,0.0,1285,109.0,409.87,0.0,0.0,161.94752059,0.0,0.0,0,38.9034335408,-77.07456409,1473236365.0,2.64100000001 -363,0.0,0.0,0.0,0.0,1286,109.0,412.86,0.0,0.0,160.342508256,0.0,0.0,0,38.9034307748,-77.074598372,1473236366.0,3.275 -364,0.0,0.0,0.0,0.0,1287,109.0,416.18,0.0,0.0,162.520860361,0.0,0.0,0,38.9034277573,-77.0746364258,1473236367.0,3.312 -365,0.0,0.0,0.0,0.0,1288,109.0,419.16,0.0,0.0,162.007717459,0.0,0.0,0,38.9034253266,-77.074670624,1473236368.0,2.659 -366,0.0,0.0,0.0,0.0,1289,109.0,422.15,0.0,0.0,161.013085973,0.0,0.0,0,38.9034227282,-77.074704906,1473236369.0,3.26599999999 -367,0.0,0.0,0.0,0.0,1290,109.0,425.47,0.0,0.0,163.694884074,0.0,0.0,0,38.9034201298,-77.0747430436,1473236370.0,3.33100000001 -368,0.0,0.0,0.0,0.0,1291,109.0,428.56,0.0,0.0,162.629558028,0.0,0.0,0,38.9034178667,-77.0747785829,1473236371.0,2.818 -369,0.0,0.0,0.0,0.0,1292,109.0,431.43,0.0,0.0,163.064885706,0.0,0.0,0,38.9034159388,-77.0748115238,1473236372.0,2.948 -370,0.0,0.0,0.0,0.0,1293,109.0,434.56,0.0,0.0,165.691881959,0.0,0.0,0,38.9034133404,-77.074847566,1473236373.0,3.312 -371,0.0,0.0,0.0,0.0,1294,110.0,437.72,0.0,0.0,161.74273243,0.0,0.0,0,38.9034108259,-77.0748837758,1473236374.0,2.95799999999 -372,0.0,0.0,0.0,0.0,1295,109.0,440.63,0.0,0.0,160.681121012,0.0,0.0,0,38.9034083113,-77.0749171358,1473236375.0,2.893 -373,0.0,0.0,0.0,0.0,1296,109.0,443.79,0.0,0.0,160.973590575,0.0,0.0,0,38.9034057967,-77.0749535132,1473236376.0,3.44299999999 -374,0.0,0.0,0.0,0.0,1297,109.0,447.1,0.0,0.0,158.861369729,0.0,0.0,0,38.9034035336,-77.0749915671,1473236377.0,3.154 -375,0.0,0.0,0.0,0.0,1298,109.0,450.07,0.0,0.0,160.450762454,0.0,0.0,0,38.9034012705,-77.0750255976,1473236378.0,2.78100000001 -376,0.0,0.0,0.0,0.0,1299,109.0,453.15,0.0,0.0,161.150573236,0.0,0.0,0,38.9033989236,-77.075061053,1473236379.0,3.368 -377,0.0,0.0,0.0,0.0,1300,109.0,456.47,0.0,0.0,159.810054335,0.0,0.0,0,38.9033966605,-77.0750991907,1473236380.0,3.21899999999 -378,0.0,0.0,0.0,0.0,1301,109.0,459.41,0.0,0.0,161.721897145,0.0,0.0,0,38.9033943135,-77.0751329698,1473236381.0,2.678 -379,0.0,0.0,0.0,0.0,1302,108.0,462.46,0.0,0.0,160.919091831,0.0,0.0,0,38.9033926371,-77.0751680061,1473236382.0,3.43399999999 -380,0.0,0.0,0.0,0.0,1303,108.0,465.86,0.0,0.0,160.223952857,0.0,0.0,0,38.9033910446,-77.0752071496,1473236383.0,3.28399999999 -381,0.0,0.0,0.0,0.0,1304,109.0,468.73,0.0,0.0,163.513197851,0.0,0.0,0,38.9033897873,-77.0752402581,1473236384.0,2.566 -382,0.0,0.0,0.0,0.0,1305,108.0,471.69,0.0,0.0,162.054997678,0.0,0.0,0,38.9033884462,-77.0752742887,1473236385.0,3.38699999999 -383,0.0,0.0,0.0,0.0,1306,108.0,475.03,0.0,0.0,161.64607487,0.0,0.0,0,38.9033871889,-77.0753128454,1473236386.0,3.26599999999 -384,0.0,0.0,0.0,0.0,1307,108.0,477.92,0.0,0.0,163.843034118,0.0,0.0,0,38.9033860154,-77.0753460377,1473236387.0,2.54699999999 -385,0.0,0.0,0.0,0.0,1308,108.0,480.91,0.0,0.0,161.298431425,0.0,0.0,0,38.9033847582,-77.0753804874,1473236388.0,3.43399999999 -386,0.0,0.0,0.0,0.0,1309,108.0,484.3,0.0,0.0,162.15851943,0.0,0.0,0,38.9033836685,-77.075419547,1473236389.0,3.30299999999 -387,0.0,0.0,0.0,0.0,1310,108.0,487.18,0.0,0.0,164.829754411,0.0,0.0,0,38.903382495,-77.0754527394,1473236390.0,2.51 -388,0.0,0.0,0.0,0.0,1311,108.0,490.11,0.0,0.0,163.559508047,0.0,0.0,0,38.9033812378,-77.0754865184,1473236391.0,3.34000000001 -389,0.0,0.0,0.0,0.0,1312,108.0,493.43,0.0,0.0,165.152648233,0.0,0.0,0,38.9033793937,-77.0755246561,1473236392.0,3.238 -390,0.0,0.0,0.0,0.0,1313,108.0,496.3,0.0,0.0,166.631561028,0.0,0.0,0,38.903377885,-77.0755576808,1473236393.0,2.52899999999 -391,0.0,0.0,0.0,0.0,1314,109.0,499.22,0.0,0.0,163.751511689,0.0,0.0,0,38.903376041,-77.0755912922,1473236394.0,3.275 -392,0.0,0.0,0.0,0.0,1315,108.0,502.55,0.0,0.0,164.252183274,0.0,0.0,0,38.9033736102,-77.0756295137,1473236395.0,3.29399999999 -393,0.0,0.0,0.0,0.0,1316,109.0,505.49,0.0,0.0,164.561560984,0.0,0.0,0,38.9033714309,-77.0756633766,1473236396.0,2.59399999999 -394,0.0,0.0,0.0,0.0,1317,108.0,508.47,0.0,0.0,162.365047234,0.0,0.0,0,38.9033690002,-77.0756974909,1473236397.0,3.26599999999 -395,0.0,0.0,0.0,0.0,1318,108.0,511.79,0.0,0.0,163.843731382,0.0,0.0,0,38.9033658989,-77.0757356286,1473236398.0,3.312 -396,0.0,0.0,0.0,0.0,1319,109.0,514.81,0.0,0.0,163.175695722,0.0,0.0,0,38.9033632167,-77.0757702459,1473236399.0,2.65 -397,0.0,0.0,0.0,0.0,1320,109.0,517.78,0.0,0.0,162.725332319,0.0,0.0,0,38.9033600315,-77.0758041926,1473236400.0,3.182 -398,0.0,0.0,0.0,0.0,1321,108.0,521.05,0.0,0.0,165.598757794,0.0,0.0,0,38.9033566788,-77.0758417435,1473236401.0,3.30299999999 -399,0.0,0.0,0.0,0.0,1322,108.0,524.13,0.0,0.0,163.261267501,0.0,0.0,0,38.9033532422,-77.0758769475,1473236402.0,2.799 -400,0.0,0.0,0.0,0.0,1323,108.0,526.98,0.0,0.0,163.239577754,0.0,0.0,0,38.9033502247,-77.0759095531,1473236403.0,2.939 -401,0.0,0.0,0.0,0.0,1324,108.0,530.13,0.0,0.0,166.287540672,0.0,0.0,0,38.9033465367,-77.0759455115,1473236404.0,3.34000000001 -402,0.0,0.0,0.0,0.0,1325,107.0,533.29,0.0,0.0,162.05090503,0.0,0.0,0,38.9033432677,-77.0759818051,1473236405.0,2.99500000001 -403,0.0,0.0,0.0,0.0,1326,107.0,536.15,0.0,0.0,162.371438372,0.0,0.0,0,38.903339915,-77.0760144107,1473236406.0,2.79 -404,0.0,0.0,0.0,0.0,1327,107.0,539.21,0.0,0.0,163.119926335,0.0,0.0,0,38.9033361431,-77.0760493632,1473236407.0,3.37799999999 -405,0.0,0.0,0.0,0.0,1328,107.0,542.51,0.0,0.0,158.9332893,0.0,0.0,0,38.9033324551,-77.0760871656,1473236408.0,3.21899999999 -406,0.0,0.0,0.0,0.0,1329,107.0,545.45,0.0,0.0,159.902978349,0.0,0.0,0,38.9033291861,-77.0761207771,1473236409.0,2.678 -407,0.0,0.0,0.0,0.0,1330,107.0,548.54,0.0,0.0,158.981636589,0.0,0.0,0,38.9033258334,-77.0761561487,1473236410.0,3.47999999999 -408,0.0,0.0,0.0,0.0,1331,107.0,551.98,0.0,0.0,158.97113332,0.0,0.0,0,38.9033226483,-77.0761955436,1473236411.0,3.368 -409,0.0,0.0,0.0,0.0,1332,107.0,554.9,0.0,0.0,160.257522044,0.0,0.0,0,38.903319966,-77.0762290712,1473236412.0,2.55699999999 -410,0.0,0.0,0.0,0.0,1333,107.0,557.89,0.0,0.0,160.981667603,0.0,0.0,0,38.9033167809,-77.0762633532,1473236413.0,3.45199999999 -411,0.0,0.0,0.0,0.0,1334,107.0,561.25,0.0,0.0,162.922275495,0.0,0.0,0,38.9033132605,-77.0763018262,1473236414.0,3.21899999999 -412,0.0,0.0,0.0,0.0,1335,107.0,564.18,0.0,0.0,162.480850471,0.0,0.0,0,38.9033095725,-77.0763351861,1473236415.0,2.687 -413,0.0,0.0,0.0,0.0,1336,107.0,567.11,0.0,0.0,160.275979973,0.0,0.0,0,38.9033058845,-77.0763687138,1473236416.0,3.2 -414,0.0,0.0,0.0,0.0,1337,107.0,570.43,0.0,0.0,162.497995154,0.0,0.0,0,38.9033024479,-77.0764066838,1473236417.0,3.40600000001 -415,0.0,0.0,0.0,0.0,1338,107.0,573.56,0.0,0.0,159.33847631,0.0,0.0,0,38.9032992627,-77.0764425583,1473236418.0,2.799 -416,0.0,0.0,0.0,0.0,1339,109.0,576.56,0.0,0.0,159.800546781,0.0,0.0,0,38.9032966644,-77.0764769241,1473236419.0,3.14400000001 -417,0.0,0.0,0.0,0.0,1340,108.0,579.84,0.0,0.0,162.888269929,0.0,0.0,0,38.9032941498,-77.0765146427,1473236420.0,3.35900000001 -418,0.0,0.0,0.0,0.0,1341,109.0,582.97,0.0,0.0,161.025881251,0.0,0.0,0,38.9032924734,-77.0765506849,1473236421.0,2.911 -419,0.0,0.0,0.0,0.0,1342,109.0,585.86,0.0,0.0,162.501653155,0.0,0.0,0,38.9032908808,-77.076583961,1473236422.0,2.883 -420,0.0,0.0,0.0,0.0,1343,110.0,589.0,0.0,0.0,165.593297127,0.0,0.0,0,38.9032896236,-77.076620087,1473236423.0,3.35000000001 -421,0.0,0.0,0.0,0.0,1344,110.0,592.2,0.0,0.0,161.55292222,0.0,0.0,0,38.9032887015,-77.0766569674,1473236424.0,3.098 -422,0.0,0.0,0.0,0.0,1345,110.0,595.04,0.0,0.0,162.715016272,0.0,0.0,0,38.9032883663,-77.0766897406,1473236425.0,2.659 -423,0.0,0.0,0.0,0.0,1346,111.0,598.07,0.0,0.0,162.801941219,0.0,0.0,0,38.9032878634,-77.0767246932,1473236426.0,3.415 -424,0.0,0.0,0.0,0.0,1347,111.0,601.42,0.0,0.0,159.617470858,0.0,0.0,0,38.9032878634,-77.0767632499,1473236427.0,3.29399999999 -425,0.0,0.0,0.0,0.0,1348,111.0,604.34,0.0,0.0,160.758725511,0.0,0.0,0,38.9032879472,-77.0767969452,1473236428.0,2.585 -426,0.0,0.0,0.0,0.0,1349,110.0,607.4,0.0,0.0,159.064398358,0.0,0.0,0,38.9032884501,-77.0768321492,1473236429.0,3.48999999999 -427,0.0,0.0,0.0,0.0,1350,110.0,610.83,0.0,0.0,158.300930755,0.0,0.0,0,38.9032896236,-77.0768717118,1473236430.0,3.35000000001 -428,0.0,0.0,0.0,0.0,1351,110.0,613.78,0.0,0.0,160.30156124,0.0,0.0,0,38.9032903779,-77.0769056585,1473236431.0,2.59399999999 -429,0.0,0.0,0.0,0.0,1352,110.0,616.79,0.0,0.0,158.814405773,0.0,0.0,0,38.9032912999,-77.0769403595,1473236432.0,3.46199999999 -430,0.0,0.0,0.0,0.0,1353,110.0,620.21,0.0,0.0,160.540639716,0.0,0.0,0,38.9032923896,-77.0769797545,1473236433.0,3.35000000001 -431,0.0,0.0,0.0,0.0,1354,111.0,623.14,0.0,0.0,163.356863322,0.0,0.0,0,38.9032936469,-77.0770135336,1473236434.0,2.55699999999 -432,0.0,0.0,0.0,0.0,1355,111.0,626.09,0.0,0.0,161.520615205,0.0,0.0,0,38.9032945689,-77.0770474803,1473236435.0,3.33100000001 -433,0.0,0.0,0.0,0.0,1356,110.0,629.4,0.0,0.0,162.375090677,0.0,0.0,0,38.9032951556,-77.0770857017,1473236436.0,3.312 -434,0.0,0.0,0.0,0.0,1357,110.0,632.33,0.0,0.0,162.316445397,0.0,0.0,0,38.9032961614,-77.0771194808,1473236437.0,2.585 -435,0.0,0.0,0.0,0.0,1358,111.0,635.32,0.0,0.0,159.427771628,0.0,0.0,0,38.9032972511,-77.0771538466,1473236438.0,3.37799999999 -436,0.0,0.0,0.0,0.0,1359,110.0,638.69,0.0,0.0,161.066300747,0.0,0.0,0,38.9032985084,-77.0771926548,1473236439.0,3.38699999999 -437,0.0,0.0,0.0,0.0,1360,111.0,641.74,0.0,0.0,160.870679473,0.0,0.0,0,38.9032993466,-77.077227775,1473236440.0,2.697 -438,0.0,0.0,0.0,0.0,1361,110.0,644.71,0.0,0.0,160.411542409,0.0,0.0,0,38.9033006877,-77.0772619732,1473236441.0,3.21000000001 -439,0.0,0.0,0.0,0.0,1362,110.0,647.99,0.0,0.0,163.072022771,0.0,0.0,0,38.9033026155,-77.0772997756,1473236442.0,3.312 -440,0.0,0.0,0.0,0.0,1363,110.0,651.08,0.0,0.0,160.459901696,0.0,0.0,0,38.9033046272,-77.077335231,1473236443.0,2.83700000001 -441,0.0,0.0,0.0,0.0,1364,110.0,654.03,0.0,0.0,159.036582545,0.0,0.0,0,38.9033068903,-77.0773691777,1473236444.0,3.079 -442,0.0,0.0,0.0,0.0,1365,109.0,657.31,0.0,0.0,159.788829723,0.0,0.0,0,38.9033090696,-77.0774068963,1473236445.0,3.46199999999 -443,0.0,0.0,0.0,0.0,1366,109.0,660.55,0.0,0.0,157.532294121,0.0,0.0,0,38.9033110812,-77.0774441957,1473236446.0,3.042 -444,0.0,0.0,0.0,0.0,1367,109.0,663.56,0.0,0.0,157.28837564,0.0,0.0,0,38.9033139311,-77.0774786454,1473236447.0,2.95799999999 -445,0.0,0.0,0.0,0.0,1368,109.0,666.78,0.0,0.0,156.697069969,0.0,0.0,0,38.9033164456,-77.0775156096,1473236448.0,3.47999999999 -446,0.0,0.0,0.0,0.0,1369,109.0,670.07,0.0,0.0,156.542033908,0.0,0.0,0,38.9033180382,-77.0775534958,1473236449.0,3.126 -447,0.0,0.0,0.0,0.0,1370,109.0,673.15,0.0,0.0,155.948735398,0.0,0.0,0,38.9033201337,-77.0775889512,1473236450.0,2.986 -448,0.0,0.0,0.0,0.0,1371,109.0,676.46,0.0,0.0,154.341609429,0.0,0.0,0,38.903322313,-77.0776270051,1473236451.0,3.555 -449,0.0,0.0,0.0,0.0,1372,109.0,679.8,0.0,0.0,154.999228359,0.0,0.0,0,38.903324157,-77.0776653942,1473236452.0,3.116 -450,0.0,0.0,0.0,0.0,1373,109.0,682.86,0.0,0.0,156.189147086,0.0,0.0,0,38.9033259172,-77.0777005982,1473236453.0,3.014 -451,0.0,0.0,0.0,0.0,1374,109.0,686.1,0.0,0.0,156.018252109,0.0,0.0,0,38.9033274259,-77.0777378976,1473236454.0,3.48999999999 -452,0.0,20.0,0.0,0.0,1375,108.0,689.39,0.0,0.0,156.983524206,0.0,0.0,0,38.9033286832,-77.0777757838,1473236455.0,3.135 -453,0.0,20.0,0.0,0.0,1376,109.0,692.35,0.0,0.0,158.330660219,0.0,0.0,0,38.9033303596,-77.0778098982,1473236456.0,2.883 -454,0.0,20.0,0.0,0.0,1377,108.0,695.51,0.0,0.0,158.448602977,0.0,0.0,0,38.9033321198,-77.0778461918,1473236457.0,3.45199999999 -455,0.0,0.0,0.0,0.0,1378,108.0,698.81,0.0,0.0,156.954298442,0.0,0.0,0,38.90333388,-77.0778841618,1473236458.0,3.191 -456,0.0,0.0,0.0,0.0,1379,108.0,701.77,0.0,0.0,158.299845949,0.0,0.0,0,38.9033353887,-77.0779182762,1473236459.0,2.818 -457,0.0,0.0,0.0,0.0,1380,108.0,704.92,0.0,0.0,158.232400242,0.0,0.0,0,38.9033371489,-77.0779545698,1473236460.0,3.47999999999 -458,0.0,0.0,0.0,0.0,1381,108.0,708.32,0.0,0.0,157.370026665,0.0,0.0,0,38.9033391606,-77.0779936295,1473236461.0,3.29399999999 -459,0.0,0.0,0.0,0.0,1382,108.0,711.31,0.0,0.0,160.02238928,0.0,0.0,0,38.903340837,-77.0780280791,1473236462.0,2.659 -460,0.0,0.0,0.0,0.0,1383,108.0,714.37,0.0,0.0,160.312018544,0.0,0.0,0,38.9033421781,-77.0780632831,1473236463.0,3.415 -461,0.0,24.0,0.0,0.0,1384,108.0,717.74,0.0,0.0,162.106628266,0.0,0.0,0,38.9033437707,-77.0781020913,1473236464.0,3.29399999999 -462,0.0,24.0,0.0,0.0,1385,108.0,720.65,0.0,0.0,165.620841555,0.0,0.0,0,38.9033448603,-77.0781355351,1473236465.0,2.53800000001 -463,0.0,24.0,0.0,0.0,1386,108.0,723.57,0.0,0.0,165.945891582,0.0,0.0,0,38.9033457823,-77.0781692304,1473236466.0,3.312 -464,0.0,0.0,0.0,0.0,1387,108.0,726.79,0.0,0.0,167.2541075,0.0,0.0,0,38.903346369,-77.0782063622,1473236467.0,3.135 -465,0.0,0.0,0.0,0.0,1388,108.0,729.59,0.0,0.0,167.15268783,0.0,0.0,0,38.9033469558,-77.0782386325,1473236468.0,2.52899999999 -466,0.0,0.0,0.0,0.0,1389,109.0,732.46,0.0,0.0,164.495703173,0.0,0.0,0,38.9033474587,-77.0782716572,1473236469.0,3.238 -467,0.0,0.0,0.0,0.0,1390,108.0,735.75,0.0,0.0,164.712459107,0.0,0.0,0,38.9033474587,-77.0783096272,1473236470.0,3.34000000001 -468,0.0,0.0,0.0,0.0,1391,108.0,738.75,0.0,0.0,164.470405295,0.0,0.0,0,38.9033470396,-77.0783441607,1473236471.0,2.678 -469,0.0,0.0,0.0,0.0,1392,108.0,741.64,0.0,0.0,162.874717613,0.0,0.0,0,38.9033470396,-77.0783775207,1473236472.0,3.126 -470,0.0,0.0,0.0,0.0,1393,108.0,744.87,0.0,0.0,163.98889135,0.0,0.0,0,38.9033467881,-77.0784147363,1473236473.0,3.30299999999 -471,0.0,0.0,0.0,0.0,1394,109.0,747.89,0.0,0.0,163.70973343,0.0,0.0,0,38.9033458661,-77.0784495212,1473236474.0,2.687 -472,0.0,0.0,0.0,0.0,1395,109.0,750.85,0.0,0.0,161.922773352,0.0,0.0,0,38.9033452794,-77.0784837194,1473236475.0,3.2 -473,0.0,0.0,0.0,0.0,1396,108.0,754.16,0.0,0.0,162.030444889,0.0,0.0,0,38.903344525,-77.078521857,1473236476.0,3.35000000001 -474,0.0,0.0,0.0,0.0,1397,109.0,757.27,0.0,0.0,161.501643681,0.0,0.0,0,38.9033434354,-77.0785576478,1473236477.0,2.827 -475,0.0,0.0,0.0,0.0,1398,109.0,760.2,0.0,0.0,161.313074459,0.0,0.0,0,38.9033425134,-77.0785914268,1473236478.0,3.032 -476,0.0,0.0,0.0,0.0,1399,108.0,763.42,0.0,0.0,164.019398311,0.0,0.0,0,38.9033414237,-77.0786284748,1473236479.0,3.35900000001 -477,0.0,0.0,0.0,0.0,1400,108.0,766.59,0.0,0.0,161.941389836,0.0,0.0,0,38.9033405855,-77.0786650199,1473236480.0,2.902 -478,0.0,0.0,0.0,0.0,1401,108.0,769.51,0.0,0.0,163.12199972,0.0,0.0,0,38.9033396635,-77.0786986314,1473236481.0,2.902 -479,0.0,0.0,0.0,0.0,1402,108.0,772.66,0.0,0.0,165.698299979,0.0,0.0,0,38.9033387415,-77.078734925,1473236482.0,3.32199999999 -480,0.0,0.0,0.0,0.0,1403,108.0,775.87,0.0,0.0,163.321752336,0.0,0.0,0,38.9033379033,-77.078771973,1473236483.0,3.051 -481,0.0,0.0,0.0,0.0,1404,108.0,778.75,0.0,0.0,165.025932647,0.0,0.0,0,38.9033369813,-77.0788050815,1473236484.0,2.659 -482,0.0,0.0,0.0,0.0,1405,108.0,781.75,0.0,0.0,165.110860149,0.0,0.0,0,38.9033367299,-77.0788396988,1473236485.0,3.312 -483,0.0,0.0,0.0,0.0,1406,107.0,785.0,0.0,0.0,167.479413083,0.0,0.0,0,38.9033368975,-77.0788771659,1473236486.0,3.191 -484,0.0,0.0,0.0,0.0,1407,107.0,787.85,0.0,0.0,163.216971174,0.0,0.0,0,38.9033370651,-77.078910023,1473236487.0,2.519 -485,0.0,0.0,0.0,0.0,1408,107.0,790.78,0.0,0.0,168.885327594,0.0,0.0,0,38.903337568,-77.078943802,1473236488.0,3.312 -486,0.0,0.0,0.0,0.0,1409,107.0,793.89,0.0,0.0,180.204637578,0.0,0.0,0,38.903338071,-77.0789796766,1473236489.0,2.902 -487,0.0,0.0,0.0,0.0,1410,106.0,796.79,0.0,0.0,176.718723463,0.0,0.0,0,38.9033389091,-77.0790131204,1473236490.0,2.85500000001 -488,0.0,0.0,0.0,0.0,1411,107.0,799.35,0.0,0.0,178.784266984,0.0,0.0,0,38.9033396635,-77.0790425409,1473236491.0,2.267 -489,0.0,0.0,0.0,0.0,1412,107.0,801.97,0.0,0.0,185.494789283,0.0,0.0,0,38.903340837,-77.0790727995,1473236492.0,2.96700000001 -490,0.0,21.0,0.0,0.0,1413,107.0,805.03,0.0,0.0,173.798943964,0.0,0.0,0,38.9033418428,-77.0791080035,1473236493.0,3.172 -491,0.0,21.0,0.0,0.0,1414,107.0,807.85,0.0,0.0,172.26593087,0.0,0.0,0,38.9033435192,-77.0791404415,1473236494.0,2.454 -492,0.0,21.0,0.0,0.0,1415,107.0,810.67,0.0,0.0,166.626753187,0.0,0.0,0,38.9033451118,-77.0791728795,1473236495.0,3.182 -493,0.0,20.0,0.0,0.0,1416,106.0,813.92,0.0,0.0,167.5839044,0.0,0.0,0,38.9033465367,-77.0792102627,1473236496.0,3.275 -494,0.0,20.0,0.0,0.0,1417,107.0,816.82,0.0,0.0,166.677730412,0.0,0.0,0,38.9033480454,-77.0792437065,1473236497.0,2.51 -495,0.0,20.0,0.0,0.0,1418,107.0,819.71,0.0,0.0,167.130193697,0.0,0.0,0,38.9033495542,-77.0792769827,1473236498.0,3.22800000001 -496,0.0,0.0,0.0,0.0,1419,106.0,822.9,0.0,0.0,171.670630202,0.0,0.0,0,38.9033512305,-77.0793136116,1473236499.0,3.079 -497,0.0,0.0,0.0,0.0,1420,106.0,825.83,0.0,0.0,170.768562025,0.0,0.0,0,38.9033525717,-77.0793473907,1473236500.0,2.771 -498,0.0,0.0,0.0,0.0,1421,106.0,828.57,0.0,0.0,169.921909481,0.0,0.0,0,38.9033538289,-77.0793789905,1473236501.0,2.715 -499,0.0,0.0,0.0,0.0,1422,106.0,831.55,0.0,0.0,172.403756163,0.0,0.0,0,38.9033547509,-77.0794132724,1473236502.0,3.238 -500,0.0,0.0,0.0,0.0,1423,106.0,834.6,0.0,0.0,165.843432313,0.0,0.0,0,38.9033555891,-77.0794483926,1473236503.0,2.902 -501,0.0,0.0,0.0,0.0,1424,106.0,837.43,0.0,0.0,165.548201043,0.0,0.0,0,38.9033563435,-77.0794809982,1473236504.0,2.818 -502,0.0,0.0,0.0,0.0,1425,106.0,840.5,0.0,0.0,165.380848468,0.0,0.0,0,38.9033570979,-77.0795164537,1473236505.0,3.34000000001 -503,0.0,0.0,0.0,0.0,1426,106.0,843.7,0.0,0.0,164.103992202,0.0,0.0,0,38.903357517,-77.079553334,1473236506.0,3.07000000001 -504,0.0,0.0,0.0,0.0,1427,106.0,846.54,0.0,0.0,166.865798001,0.0,0.0,0,38.9033577684,-77.0795860235,1473236507.0,2.622 -505,0.0,0.0,0.0,0.0,1428,106.0,849.49,0.0,0.0,168.543752791,0.0,0.0,0,38.9033582713,-77.079620054,1473236508.0,3.24700000001 -506,0.0,0.0,0.0,0.0,1429,106.0,852.7,0.0,0.0,167.120762476,0.0,0.0,0,38.903358439,-77.079657102,1473236509.0,3.135 -507,0.0,0.0,0.0,0.0,1430,106.0,855.52,0.0,0.0,168.45280113,0.0,0.0,0,38.903358439,-77.0796896238,1473236510.0,2.491 -508,0.0,0.0,0.0,0.0,1431,106.0,858.46,0.0,0.0,166.3301661,0.0,0.0,0,38.9033589419,-77.0797234867,1473236511.0,3.312 -509,0.0,0.0,0.0,0.0,1432,106.0,861.75,0.0,0.0,164.20641386,0.0,0.0,0,38.9033594448,-77.0797613729,1473236512.0,3.238 -510,0.0,0.0,0.0,0.0,1433,106.0,864.62,0.0,0.0,166.241347893,0.0,0.0,0,38.9033594448,-77.0797944814,1473236513.0,2.53800000001 -511,0.0,0.0,0.0,0.0,1434,105.0,867.54,0.0,0.0,163.346929077,0.0,0.0,0,38.9033599477,-77.0798280928,1473236514.0,3.34000000001 -512,0.0,0.0,0.0,0.0,1435,105.0,870.86,0.0,0.0,163.242807776,0.0,0.0,0,38.9033610374,-77.0798663981,1473236515.0,3.275 -513,0.0,0.0,0.0,0.0,1436,105.0,873.74,0.0,0.0,165.680473373,0.0,0.0,0,38.9033620432,-77.0798995905,1473236516.0,2.501 -514,0.0,0.0,0.0,0.0,1437,105.0,876.71,0.0,0.0,162.004990595,0.0,0.0,0,38.9033629652,-77.0799337886,1473236517.0,3.38699999999 -515,0.0,0.0,0.0,0.0,1438,104.0,880.08,0.0,0.0,161.176884305,0.0,0.0,0,38.9033641387,-77.0799725968,1473236518.0,3.29399999999 -516,0.0,0.0,0.0,0.0,1439,104.0,883.0,0.0,0.0,162.630702988,0.0,0.0,0,38.9033649769,-77.0800062921,1473236519.0,2.57499999999 -517,0.0,0.0,0.0,0.0,1440,105.0,886.01,0.0,0.0,159.413688875,0.0,0.0,0,38.9033660665,-77.0800409093,1473236520.0,3.45199999999 -518,0.0,24.0,0.0,0.0,1441,104.0,889.43,0.0,0.0,160.72382776,0.0,0.0,0,38.9033675753,-77.0800803043,1473236521.0,3.32199999999 -519,0.0,24.0,0.0,0.0,1442,104.0,892.35,0.0,0.0,163.674934495,0.0,0.0,0,38.9033686649,-77.0801139157,1473236522.0,2.57499999999 -520,0.0,24.0,0.0,0.0,1443,105.0,895.29,0.0,0.0,162.67628546,0.0,0.0,0,38.9033699222,-77.0801477786,1473236523.0,3.33100000001 -521,0.0,0.0,0.0,0.0,1444,104.0,898.59,0.0,0.0,164.283255625,0.0,0.0,0,38.9033713471,-77.0801858325,1473236524.0,3.238 -522,0.0,0.0,0.0,0.0,1445,105.0,901.46,0.0,0.0,166.365624109,0.0,0.0,0,38.9033726044,-77.0802188572,1473236525.0,2.54699999999 -523,0.0,0.0,0.0,0.0,1446,105.0,904.34,0.0,0.0,163.651743423,0.0,0.0,0,38.9033734426,-77.0802520495,1473236526.0,3.28399999999 -524,0.0,0.0,0.0,0.0,1447,105.0,907.63,0.0,0.0,163.231733945,0.0,0.0,0,38.9033743646,-77.0802899357,1473236527.0,3.312 -525,0.0,0.0,0.0,0.0,1448,105.0,910.56,0.0,0.0,163.399617461,0.0,0.0,0,38.9033750352,-77.0803237148,1473236528.0,2.585 -526,0.0,0.0,0.0,0.0,1449,105.0,913.52,0.0,0.0,160.882779832,0.0,0.0,0,38.9033757057,-77.0803577453,1473236529.0,3.32199999999 -527,0.0,0.0,0.0,0.0,1450,105.0,916.87,0.0,0.0,161.815018115,0.0,0.0,0,38.903376041,-77.0803964697,1473236530.0,3.35900000001 -528,0.0,0.0,0.0,0.0,1451,106.0,919.88,0.0,0.0,161.638157241,0.0,0.0,0,38.9033762924,-77.0804310869,1473236531.0,2.669 -529,0.0,0.0,0.0,0.0,1452,106.0,922.8,0.0,0.0,160.127991482,0.0,0.0,0,38.9033767115,-77.0804647822,1473236532.0,3.238 -530,0.0,0.0,0.0,0.0,1453,105.0,926.08,0.0,0.0,162.15487686,0.0,0.0,0,38.903376963,-77.0805025846,1473236533.0,3.34000000001 -531,0.0,0.0,0.0,0.0,1454,106.0,929.16,0.0,0.0,160.995804352,0.0,0.0,0,38.9033773821,-77.0805381238,1473236534.0,2.818 -532,0.0,0.0,0.0,0.0,1455,106.0,932.15,0.0,0.0,160.34629246,0.0,0.0,0,38.9033775497,-77.0805725735,1473236535.0,3.098 -533,0.0,0.0,0.0,0.0,1456,106.0,935.44,0.0,0.0,162.776014567,0.0,0.0,0,38.9033772144,-77.0806104597,1473236536.0,3.368 -534,0.0,0.0,0.0,0.0,1457,106.0,938.61,0.0,0.0,161.231332762,0.0,0.0,0,38.9033771306,-77.0806470048,1473236537.0,2.911 -535,0.0,0.0,0.0,0.0,1458,107.0,941.55,0.0,0.0,161.448817929,0.0,0.0,0,38.903376963,-77.0806809515,1473236538.0,2.939 -536,0.0,0.0,0.0,0.0,1459,107.0,944.72,0.0,0.0,162.643985693,0.0,0.0,0,38.9033773821,-77.0807174966,1473236539.0,3.368 -537,0.0,0.0,0.0,0.0,1460,107.0,947.93,0.0,0.0,159.884384902,0.0,0.0,0,38.9033781365,-77.0807544608,1473236540.0,3.051 -538,0.0,0.0,0.0,0.0,1461,107.0,950.91,0.0,0.0,159.817793878,0.0,0.0,0,38.9033791423,-77.0807888266,1473236541.0,2.865 -539,0.0,0.0,0.0,0.0,1462,107.0,954.09,0.0,0.0,160.794533821,0.0,0.0,0,38.9033803996,-77.0808253717,1473236542.0,3.415 -540,0.0,0.0,0.0,0.0,1463,108.0,957.39,0.0,0.0,159.660496814,0.0,0.0,0,38.9033814054,-77.0808634255,1473236543.0,3.2 -541,0.0,0.0,0.0,0.0,1464,108.0,960.34,0.0,0.0,162.967791638,0.0,0.0,0,38.9033829141,-77.0808973722,1473236544.0,2.70600000001 -542,0.0,0.0,0.0,0.0,1465,108.0,963.32,0.0,0.0,164.109588263,0.0,0.0,0,38.9033845905,-77.0809316542,1473236545.0,3.312 -543,0.0,0.0,0.0,0.0,1466,108.0,966.58,0.0,0.0,162.762939654,0.0,0.0,0,38.9033868536,-77.0809691213,1473236546.0,3.191 -544,0.0,0.0,0.0,0.0,1467,109.0,969.45,0.0,0.0,164.400876236,0.0,0.0,0,38.9033890329,-77.081002146,1473236547.0,2.54699999999 -545,0.0,0.0,0.0,0.0,1468,109.0,972.47,0.0,0.0,162.707222792,0.0,0.0,0,38.9033914637,-77.0810367633,1473236548.0,3.424 -546,0.0,0.0,0.0,0.0,1469,108.0,975.85,0.0,0.0,161.449946323,0.0,0.0,0,38.9033943135,-77.0810755715,1473236549.0,3.32199999999 -547,0.0,0.0,0.0,0.0,1470,109.0,978.78,0.0,0.0,162.626352228,0.0,0.0,0,38.903397331,-77.0811091829,1473236550.0,2.55699999999 -548,0.0,0.0,0.0,0.0,1471,108.0,981.75,0.0,0.0,161.667569486,0.0,0.0,0,38.9034003485,-77.0811431296,1473236551.0,3.34000000001 -549,0.0,0.0,0.0,0.0,1472,109.0,985.08,0.0,0.0,163.161173574,0.0,0.0,0,38.9034037013,-77.0811813511,1473236552.0,3.312 -550,0.0,0.0,0.0,0.0,1473,109.0,988.04,0.0,0.0,164.129177478,0.0,0.0,0,38.9034067187,-77.081215214,1473236553.0,2.60300000001 -551,0.0,0.0,0.0,0.0,1474,109.0,990.99,0.0,0.0,161.539591186,0.0,0.0,0,38.9034100715,-77.0812489931,1473236554.0,3.24700000001 -552,0.0,0.0,0.0,0.0,1475,109.0,994.34,0.0,0.0,161.561735467,0.0,0.0,0,38.9034135081,-77.0812872984,1473236555.0,3.35900000001 -553,0.0,0.0,0.0,0.0,1476,110.0,997.35,0.0,0.0,161.637478623,0.0,0.0,0,38.9034162741,-77.0813218318,1473236556.0,2.687 -554,0.0,0.0,0.0,0.0,1477,110.0,1000.35,0.0,0.0,159.373874551,0.0,0.0,0,38.903419124,-77.0813561976,1473236557.0,3.28399999999 -555,0.0,22.0,0.0,0.0,1478,109.0,1003.71,0.0,0.0,159.4559446,0.0,0.0,0,38.9034220576,-77.0813948382,1473236558.0,3.40600000001 -556,0.0,22.0,0.0,0.0,1479,109.0,1006.78,0.0,0.0,161.345073108,0.0,0.0,0,38.9034248237,-77.0814300422,1473236559.0,2.725 -557,0.0,22.0,0.0,0.0,1480,109.0,1009.75,0.0,0.0,160.019728839,0.0,0.0,0,38.9034281764,-77.0814639889,1473236560.0,3.2 -558,0.0,22.0,0.0,0.0,1481,109.0,1013.06,0.0,0.0,161.492611189,0.0,0.0,0,38.9034321159,-77.0815017913,1473236561.0,3.37799999999 -559,0.0,22.0,0.0,0.0,1482,109.0,1016.11,0.0,0.0,164.396898236,0.0,0.0,0,38.9034358039,-77.08153666,1473236562.0,2.70600000001 -560,0.0,22.0,0.0,0.0,1483,108.0,1019.04,0.0,0.0,162.877473834,0.0,0.0,0,38.9034396596,-77.0815701038,1473236563.0,3.163 -561,0.0,0.0,0.0,0.0,1484,108.0,1022.3,0.0,0.0,163.217663119,0.0,0.0,0,38.9034440182,-77.0816072356,1473236564.0,3.275 -562,0.0,0.0,0.0,0.0,1485,108.0,1025.31,0.0,0.0,162.093205698,0.0,0.0,0,38.9034482092,-77.0816415176,1473236565.0,2.725 -563,0.0,0.0,0.0,0.0,1486,108.0,1028.29,0.0,0.0,160.413770307,0.0,0.0,0,38.9034532383,-77.0816752128,1473236566.0,3.21899999999 -564,0.0,0.0,0.0,0.0,1487,108.0,1031.62,0.0,0.0,161.057092299,0.0,0.0,0,38.9034591895,-77.0817129314,1473236567.0,3.38699999999 -565,0.0,0.0,0.0,0.0,1488,108.0,1034.77,0.0,0.0,157.008705487,0.0,0.0,0,38.9034651406,-77.0817483868,1473236568.0,2.95799999999 -566,0.0,0.0,0.0,0.0,1489,108.0,1037.74,0.0,0.0,157.891930834,0.0,0.0,0,38.9034713432,-77.0817817468,1473236569.0,2.986 -567,0.0,0.0,0.0,0.0,1490,109.0,1040.97,0.0,0.0,161.215354402,0.0,0.0,0,38.9034783002,-77.0818178728,1473236570.0,3.44299999999 -568,0.0,0.0,0.0,0.0,1491,108.0,1044.29,0.0,0.0,158.968945313,0.0,0.0,0,38.9034852572,-77.0818550885,1473236571.0,3.172 -569,0.0,0.0,0.0,0.0,1492,109.0,1047.25,0.0,0.0,160.487771666,0.0,0.0,0,38.9034918789,-77.081888197,1473236572.0,2.697 -570,0.0,0.0,0.0,0.0,1493,108.0,1050.34,0.0,0.0,161.676168933,0.0,0.0,0,38.9034989197,-77.0819225628,1473236573.0,3.415 -571,0.0,20.0,0.0,0.0,1494,108.0,1053.66,0.0,0.0,159.545371665,0.0,0.0,0,38.903506631,-77.0819596108,1473236574.0,3.21000000001 -572,0.0,20.0,0.0,0.0,1495,108.0,1056.6,0.0,0.0,161.161816231,0.0,0.0,0,38.9035134204,-77.0819923002,1473236575.0,2.715 -573,0.0,20.0,0.0,0.0,1496,108.0,1059.66,0.0,0.0,159.748164971,0.0,0.0,0,38.9035204612,-77.0820264146,1473236576.0,3.44299999999 -574,0.0,19.0,0.0,0.0,1497,108.0,1063.05,0.0,0.0,158.90748695,0.0,0.0,0,38.9035282563,-77.082064217,1473236577.0,3.30299999999 -575,0.0,19.0,0.0,0.0,1498,108.0,1065.98,0.0,0.0,161.717594875,0.0,0.0,0,38.9035350457,-77.0820969064,1473236578.0,2.585 -576,0.0,19.0,0.0,0.0,1499,108.0,1068.98,0.0,0.0,160.379690238,0.0,0.0,0,38.9035421703,-77.0821302664,1473236579.0,3.43399999999 -577,0.0,0.0,0.0,0.0,1500,108.0,1072.39,0.0,0.0,159.523115659,0.0,0.0,0,38.9035503846,-77.0821680687,1473236580.0,3.35000000001 -578,0.0,0.0,0.0,0.0,1501,108.0,1075.32,0.0,0.0,160.967757671,0.0,0.0,0,38.903557593,-77.0822006743,1473236581.0,2.54699999999 -579,0.0,0.0,0.0,0.0,1502,108.0,1078.36,0.0,0.0,158.678694191,0.0,0.0,0,38.9035647176,-77.0822344534,1473236582.0,3.48999999999 -580,0.0,0.0,0.0,0.0,1503,108.0,1081.83,0.0,0.0,158.727759218,0.0,0.0,0,38.9035725966,-77.0822731778,1473236583.0,3.38699999999 -581,0.0,0.0,0.0,0.0,1504,109.0,1084.85,0.0,0.0,159.590122823,0.0,0.0,0,38.9035799727,-77.0823067054,1473236584.0,2.61299999999 -582,0.0,0.0,0.0,0.0,1505,109.0,1087.9,0.0,0.0,156.869882205,0.0,0.0,0,38.9035869297,-77.0823407359,1473236585.0,3.40600000001 -583,0.0,0.0,0.0,0.0,1506,109.0,1091.36,0.0,0.0,157.445323533,0.0,0.0,0,38.9035944734,-77.0823793765,1473236586.0,3.45199999999 -584,0.0,0.0,0.0,0.0,1507,110.0,1094.42,0.0,0.0,157.450474669,0.0,0.0,0,38.9036009274,-77.0824137423,1473236587.0,2.715 -585,0.0,0.0,0.0,0.0,1508,110.0,1097.48,0.0,0.0,154.678108829,0.0,0.0,0,38.9036075491,-77.0824479405,1473236588.0,3.39600000001 -586,0.0,0.0,0.0,0.0,1509,110.0,1100.92,0.0,0.0,157.495991011,0.0,0.0,0,38.9036144223,-77.0824866649,1473236589.0,3.47999999999 -587,0.0,0.0,0.0,0.0,1510,110.0,1104.02,0.0,0.0,158.354755784,0.0,0.0,0,38.9036205411,-77.0825214498,1473236590.0,2.75299999999 -588,0.0,0.0,0.0,0.0,1511,110.0,1107.04,0.0,0.0,158.613756963,0.0,0.0,0,38.9036268275,-77.0825553965,1473236591.0,3.28399999999 -589,0.0,0.0,0.0,0.0,1512,110.0,1110.34,0.0,0.0,160.973590576,0.0,0.0,0,38.9036332816,-77.0825925283,1473236592.0,3.28399999999 -590,0.0,0.0,0.0,0.0,1513,110.0,1113.43,0.0,0.0,159.555730538,0.0,0.0,0,38.9036390651,-77.082627397,1473236593.0,2.893 -591,0.0,0.0,0.0,0.0,1514,110.0,1116.43,0.0,0.0,157.259892737,0.0,0.0,0,38.9036444295,-77.0826612599,1473236594.0,3.08799999999 -592,0.0,0.0,0.0,0.0,1515,110.0,1119.75,0.0,0.0,158.2512619,0.0,0.0,0,38.9036503807,-77.082698727,1473236595.0,3.51799999999 -593,0.0,0.0,0.0,0.0,1516,111.0,1123.03,0.0,0.0,153.609422442,0.0,0.0,0,38.9036563318,-77.082735775,1473236596.0,3.06000000001 -594,0.0,0.0,0.0,0.0,1517,111.0,1126.08,0.0,0.0,155.108925411,0.0,0.0,0,38.9036620315,-77.0827701408,1473236597.0,3.07000000001 -595,0.0,0.0,0.0,0.0,1518,111.0,1129.31,0.0,0.0,158.203141052,0.0,0.0,0,38.9036680665,-77.0828066021,1473236598.0,3.45199999999 -596,0.0,0.0,0.0,0.0,1519,111.0,1132.6,0.0,0.0,157.432876346,0.0,0.0,0,38.9036739338,-77.0828438178,1473236599.0,3.21899999999 -597,0.0,0.0,0.0,0.0,1520,111.0,1135.53,0.0,0.0,160.88950304,0.0,0.0,0,38.903678963,-77.0828770101,1473236600.0,2.669 -598,0.0,0.0,0.0,0.0,1521,112.0,1138.56,0.0,0.0,164.270638366,0.0,0.0,0,38.9036841597,-77.0829112083,1473236601.0,3.368 -599,0.0,0.0,0.0,0.0,1522,112.0,1141.88,0.0,0.0,163.147806262,0.0,0.0,0,38.9036897756,-77.082948843,1473236602.0,3.24700000001 -600,0.0,0.0,0.0,0.0,1523,112.0,1144.72,0.0,0.0,166.03320089,0.0,0.0,0,38.9036943857,-77.0829810295,1473236603.0,2.491 -601,0.0,0.0,0.0,0.0,1524,112.0,1147.62,0.0,0.0,164.93897258,0.0,0.0,0,38.9036990795,-77.0830138866,1473236604.0,3.34000000001 -602,0.0,0.0,0.0,0.0,1525,111.0,1150.93,0.0,0.0,164.418662586,0.0,0.0,0,38.9037046954,-77.0830513537,1473236605.0,3.25599999999 -603,0.0,0.0,0.0,0.0,1526,111.0,1153.8,0.0,0.0,166.295202059,0.0,0.0,0,38.9037095569,-77.0830839593,1473236606.0,2.501 -604,0.0,0.0,0.0,0.0,1527,111.0,1156.74,0.0,0.0,163.360560093,0.0,0.0,0,38.9037145022,-77.0831171516,1473236607.0,3.34000000001 -605,0.0,0.0,0.0,0.0,1528,111.0,1160.07,0.0,0.0,163.479639354,0.0,0.0,0,38.9037193637,-77.0831551217,1473236608.0,3.29399999999 -606,0.0,0.0,0.0,0.0,1529,111.0,1162.99,0.0,0.0,164.206180407,0.0,0.0,0,38.9037241414,-77.0831881464,1473236609.0,2.53800000001 -607,0.0,0.0,0.0,0.0,1530,111.0,1165.92,0.0,0.0,161.635216605,0.0,0.0,0,38.9037292544,-77.0832213387,1473236610.0,3.34000000001 -608,0.0,0.0,0.0,0.0,1531,111.0,1169.28,0.0,0.0,162.24348322,0.0,0.0,0,38.9037348703,-77.0832593925,1473236611.0,3.34000000001 -609,0.0,0.0,0.0,0.0,1532,111.0,1172.24,0.0,0.0,162.790927119,0.0,0.0,0,38.9037398994,-77.0832929201,1473236612.0,2.631 -610,0.0,0.0,0.0,0.0,1533,111.0,1175.19,0.0,0.0,160.227509191,0.0,0.0,0,38.9037452638,-77.0833262801,1473236613.0,3.26599999999 -611,0.0,0.0,0.0,0.0,1534,110.0,1178.52,0.0,0.0,160.912814512,0.0,0.0,0,38.9037509635,-77.0833639149,1473236614.0,3.37799999999 -612,0.0,0.0,0.0,0.0,1535,110.0,1181.55,0.0,0.0,159.751921173,0.0,0.0,0,38.9037561603,-77.0833981968,1473236615.0,2.725 -613,0.0,0.0,0.0,0.0,1536,110.0,1184.52,0.0,0.0,157.247903021,0.0,0.0,0,38.9037614409,-77.0834318083,1473236616.0,3.28399999999 -614,0.0,0.0,0.0,0.0,1537,110.0,1187.9,0.0,0.0,158.50905423,0.0,0.0,0,38.9037673082,-77.0834700298,1473236617.0,3.44299999999 -615,0.0,0.0,0.0,0.0,1538,110.0,1191.07,0.0,0.0,156.914637079,0.0,0.0,0,38.9037726726,-77.0835059043,1473236618.0,2.883 -616,0.0,0.0,0.0,0.0,1539,110.0,1194.09,0.0,0.0,157.340442488,0.0,0.0,0,38.9037780371,-77.0835400186,1473236619.0,3.154 -617,0.0,0.0,0.0,0.0,1540,110.0,1197.39,0.0,0.0,162.000900473,0.0,0.0,0,38.903784072,-77.0835772343,1473236620.0,3.38699999999 -618,0.0,0.0,0.0,0.0,1541,110.0,1200.53,0.0,0.0,158.032137306,0.0,0.0,0,38.9037896879,-77.0836127736,1473236621.0,2.99500000001 -619,0.0,0.0,0.0,0.0,1542,111.0,1203.4,0.0,0.0,159.210207097,0.0,0.0,0,38.9037948847,-77.0836451277,1473236622.0,2.83700000001 -620,0.0,0.0,0.0,0.0,1543,111.0,1206.47,0.0,0.0,165.334921312,0.0,0.0,0,38.9038006682,-77.083679745,1473236623.0,3.34000000001 -621,0.0,0.0,0.0,0.0,1544,111.0,1209.77,0.0,0.0,172.506496998,0.0,0.0,0,38.9038068708,-77.0837170444,1473236624.0,3.238 -622,0.0,0.0,0.0,0.0,1545,110.0,1212.53,0.0,0.0,175.293749829,0.0,0.0,0,38.9038121514,-77.0837481413,1473236625.0,2.314 -623,0.0,0.0,0.0,0.0,1546,110.0,1215.08,0.0,0.0,188.146601225,0.0,0.0,0,38.9038169291,-77.0837768912,1473236626.0,2.78100000001 -624,0.0,0.0,0.0,0.0,1547,109.0,1217.74,0.0,0.0,206.429888903,0.0,0.0,0,38.9038219582,-77.0838068146,1473236627.0,2.55699999999 -625,0.0,0.0,0.0,0.0,1548,109.0,1220.29,0.0,0.0,206.752482372,0.0,0.0,0,38.9038264845,-77.0838356484,1473236628.0,2.501 -626,0.0,0.0,0.0,0.0,1549,109.0,1222.61,0.0,0.0,197.103012348,0.0,0.0,0,38.9038306754,-77.0838617999,1473236629.0,2.118 -627,0.0,0.0,0.0,0.0,1550,109.0,1224.93,0.0,0.0,202.858638265,0.0,0.0,0,38.9038344473,-77.0838881191,1473236630.0,2.566 -628,0.0,0.0,0.0,0.0,1551,108.0,1227.64,0.0,0.0,195.949694369,0.0,0.0,0,38.9038392249,-77.0839187969,1473236631.0,2.883 -629,0.0,0.0,0.0,0.0,1552,108.0,1230.37,0.0,0.0,183.206252171,0.0,0.0,0,38.9038440865,-77.0839496423,1473236632.0,2.60300000001 -630,0.0,0.0,0.0,0.0,1553,108.0,1232.88,0.0,0.0,182.572902704,0.0,0.0,0,38.9038485289,-77.0839780569,1473236633.0,2.454 -631,0.0,0.0,0.0,0.0,1554,107.0,1235.64,0.0,0.0,186.29422875,0.0,0.0,0,38.9038540609,-77.0840089861,1473236634.0,2.99500000001 -632,0.0,0.0,0.0,0.0,1555,107.0,1238.61,0.0,0.0,181.922710412,0.0,0.0,0,38.9038605988,-77.0840422623,1473236635.0,2.921 -633,0.0,0.0,0.0,0.0,1556,107.0,1241.21,0.0,0.0,182.35325694,0.0,0.0,0,38.9038666338,-77.0840711799,1473236636.0,2.202 -634,0.0,0.0,0.0,0.0,1557,106.0,1243.84,0.0,0.0,183.314710886,0.0,0.0,0,38.9038730878,-77.0841004327,1473236637.0,3.004 -635,0.0,0.0,0.0,0.0,1558,105.0,1246.88,0.0,0.0,183.685835198,0.0,0.0,0,38.9038804639,-77.0841341279,1473236638.0,2.99500000001 -636,0.0,0.0,0.0,0.0,1559,105.0,1249.51,0.0,0.0,176.6362944,0.0,0.0,0,38.9038865827,-77.0841634646,1473236639.0,2.323 -637,0.0,0.0,0.0,0.0,1560,105.0,1252.18,0.0,0.0,175.864400173,0.0,0.0,0,38.9038929529,-77.0841931365,1473236640.0,2.96700000001 -638,0.0,0.0,0.0,0.0,1561,104.0,1255.24,0.0,0.0,182.833009352,0.0,0.0,0,38.9039002452,-77.0842271671,1473236641.0,3.06000000001 -639,0.0,0.0,0.0,0.0,1562,104.0,1258.18,0.0,0.0,176.964032635,0.0,0.0,0,38.9039071184,-77.0842598565,1473236642.0,2.76199999999 -640,0.0,0.0,0.0,0.0,1563,104.0,1260.78,0.0,0.0,179.127254793,0.0,0.0,0,38.9039131533,-77.0842887741,1473236643.0,2.37 -641,0.0,0.0,0.0,0.0,1564,104.0,1263.5,0.0,0.0,187.662071789,0.0,0.0,0,38.903919775,-77.0843189489,1473236644.0,2.976 -642,0.0,21.0,0.0,0.0,1565,103.0,1266.51,0.0,0.0,184.34842011,0.0,0.0,0,38.9039274026,-77.0843523089,1473236645.0,2.939 -643,0.0,21.0,0.0,0.0,1566,103.0,1269.1,0.0,0.0,183.839329201,0.0,0.0,0,38.9039340243,-77.0843808912,1473236646.0,2.193 -644,0.0,21.0,0.0,0.0,1567,103.0,1271.69,0.0,0.0,183.744278871,0.0,0.0,0,38.9039410651,-77.0844093896,1473236647.0,2.96700000001 -645,0.0,0.0,0.0,0.0,1568,102.0,1274.7,0.0,0.0,184.721087152,0.0,0.0,0,38.9039495308,-77.0844424143,1473236648.0,2.95799999999 -646,0.0,0.0,0.0,0.0,1569,102.0,1277.38,0.0,0.0,180.716105169,0.0,0.0,0,38.9039570745,-77.0844716672,1473236649.0,2.379 -647,0.0,0.0,0.0,0.0,1570,102.0,1280.02,0.0,0.0,178.648489376,0.0,0.0,0,38.9039647859,-77.0845005009,1473236650.0,2.85500000001 -648,0.0,0.0,0.0,0.0,1571,102.0,1283.01,0.0,0.0,182.22321792,0.0,0.0,0,38.9039737545,-77.0845330227,1473236651.0,3.042 -649,0.0,0.0,0.0,0.0,1572,101.0,1285.85,0.0,0.0,173.14706407,0.0,0.0,0,38.9039820526,-77.0845639519,1473236652.0,2.669 -650,0.0,0.0,0.0,0.0,1573,102.0,1288.52,0.0,0.0,173.52790494,0.0,0.0,0,38.9039899316,-77.0845930371,1473236653.0,2.659 -651,0.0,0.0,0.0,0.0,1574,102.0,1291.44,0.0,0.0,177.377667,0.0,0.0,0,38.9039988164,-77.0846247207,1473236654.0,3.182 -652,0.0,0.0,0.0,0.0,1575,101.0,1294.58,0.0,0.0,173.624421064,0.0,0.0,0,38.9040083718,-77.0846588351,1473236655.0,3.051 -653,0.0,0.0,0.0,0.0,1576,101.0,1297.23,0.0,0.0,172.510877147,0.0,0.0,0,38.9040166698,-77.0846874174,1473236656.0,2.267 -654,0.0,0.0,0.0,0.0,1577,101.0,1299.93,0.0,0.0,175.959780622,0.0,0.0,0,38.9040249679,-77.0847166702,1473236657.0,3.172 -655,0.0,0.0,0.0,0.0,1578,101.0,1303.02,0.0,0.0,177.666614367,0.0,0.0,0,38.9040342718,-77.0847502816,1473236658.0,3.07000000001 -656,0.0,0.0,0.0,0.0,1579,102.0,1305.8,0.0,0.0,173.308925035,0.0,0.0,0,38.9040422346,-77.0847806241,1473236659.0,2.519 -657,0.0,0.0,0.0,0.0,1580,102.0,1308.48,0.0,0.0,172.580216181,0.0,0.0,0,38.9040498622,-77.0848099608,1473236660.0,2.883 -658,0.0,0.0,0.0,0.0,1581,102.0,1311.5,0.0,0.0,178.634121747,0.0,0.0,0,38.9040581603,-77.0848431531,1473236661.0,3.10699999999 -659,0.0,0.0,0.0,0.0,1582,101.0,1314.46,0.0,0.0,170.796844917,0.0,0.0,0,38.9040659554,-77.0848757587,1473236662.0,2.79 -660,0.0,0.0,0.0,0.0,1583,102.0,1317.19,0.0,0.0,171.349731478,0.0,0.0,0,38.9040731639,-77.0849059336,1473236663.0,2.631 -661,0.0,0.0,0.0,0.0,1584,102.0,1320.13,0.0,0.0,175.594627261,0.0,0.0,0,38.9040807914,-77.0849382877,1473236664.0,3.182 -662,0.0,0.0,0.0,0.0,1585,102.0,1323.27,0.0,0.0,173.302163951,0.0,0.0,0,38.9040886704,-77.0849731565,1473236665.0,3.08799999999 -663,0.0,0.0,0.0,0.0,1586,102.0,1326.0,0.0,0.0,172.680327599,0.0,0.0,0,38.9040957112,-77.0850032475,1473236666.0,2.323 -664,0.0,0.0,0.0,0.0,1587,102.0,1328.75,0.0,0.0,175.457518773,0.0,0.0,0,38.9041028358,-77.08503359,1473236667.0,3.10699999999 -665,0.0,23.0,0.0,0.0,1588,102.0,1331.87,0.0,0.0,176.43096203,0.0,0.0,0,38.904110631,-77.0850681234,1473236668.0,3.079 -666,0.0,23.0,0.0,0.0,1589,102.0,1334.69,0.0,0.0,173.318027326,0.0,0.0,0,38.9041174203,-77.0850994717,1473236669.0,2.55699999999 -667,0.0,23.0,0.0,0.0,1590,102.0,1337.44,0.0,0.0,170.991796835,0.0,0.0,0,38.9041238744,-77.0851301495,1473236670.0,2.902 -668,0.0,0.0,0.0,0.0,1591,103.0,1340.51,0.0,0.0,175.249597912,0.0,0.0,0,38.9041311666,-77.0851642638,1473236671.0,3.182 -669,0.0,0.0,0.0,0.0,1592,103.0,1343.48,0.0,0.0,168.227320991,0.0,0.0,0,38.9041377883,-77.0851973724,1473236672.0,2.74300000001 -670,0.0,0.0,0.0,0.0,1593,103.0,1346.26,0.0,0.0,169.656588625,0.0,0.0,0,38.9041441586,-77.0852283854,1473236673.0,2.799 -671,0.0,0.0,0.0,0.0,1594,104.0,1349.26,0.0,0.0,173.631468336,0.0,0.0,0,38.9041510317,-77.0852618292,1473236674.0,3.172 -672,0.0,0.0,0.0,0.0,1595,104.0,1352.39,0.0,0.0,169.918159764,0.0,0.0,0,38.9041582402,-77.0852967817,1473236675.0,3.079 -673,0.0,0.0,0.0,0.0,1596,104.0,1355.1,0.0,0.0,170.244503535,0.0,0.0,0,38.9041644428,-77.0853269566,1473236676.0,2.351 -674,0.0,0.0,0.0,0.0,1597,104.0,1357.9,0.0,0.0,172.440563992,0.0,0.0,0,38.9041708969,-77.0853581373,1473236677.0,3.22800000001 -675,0.0,23.0,0.0,0.0,1598,104.0,1361.11,0.0,0.0,172.531750323,0.0,0.0,0,38.9041781891,-77.0853940118,1473236678.0,3.182 -676,0.0,23.0,0.0,0.0,1599,104.0,1363.91,0.0,0.0,172.607554681,0.0,0.0,0,38.9041843079,-77.0854252763,1473236679.0,2.445 -677,0.0,23.0,0.0,0.0,1600,103.0,1366.68,0.0,0.0,172.196330653,0.0,0.0,0,38.9041901752,-77.0854562894,1473236680.0,3.07000000001 -678,0.0,0.0,0.0,0.0,1601,103.0,1369.75,0.0,0.0,175.774740485,0.0,0.0,0,38.9041965455,-77.085490739,1473236681.0,3.02299999999 -679,0.0,0.0,0.0,0.0,1602,103.0,1372.55,0.0,0.0,172.508558217,0.0,0.0,0,38.9042022452,-77.0855222549,1473236682.0,2.61299999999 -680,0.0,0.0,0.0,0.0,1603,103.0,1375.31,0.0,0.0,169.863682557,0.0,0.0,0,38.9042077772,-77.085553268,1473236683.0,2.921 -681,0.0,0.0,0.0,0.0,1604,102.0,1378.43,0.0,0.0,170.505626686,0.0,0.0,0,38.9042140637,-77.0855883043,1473236684.0,3.25599999999 -682,0.0,0.0,0.0,0.0,1605,103.0,1381.48,0.0,0.0,165.883209603,0.0,0.0,0,38.9042200148,-77.0856225863,1473236685.0,2.84600000001 -683,0.0,0.0,0.0,0.0,1606,103.0,1384.32,0.0,0.0,165.151231342,0.0,0.0,0,38.904225966,-77.0856544375,1473236686.0,2.83700000001 -684,0.0,0.0,0.0,0.0,1607,102.0,1387.39,0.0,0.0,166.450017438,0.0,0.0,0,38.9042325877,-77.0856888872,1473236687.0,3.312 -685,0.0,0.0,0.0,0.0,1608,102.0,1390.55,0.0,0.0,162.348386988,0.0,0.0,0,38.9042389579,-77.0857243426,1473236688.0,2.99500000001 -686,0.0,0.0,0.0,0.0,1609,103.0,1393.45,0.0,0.0,163.442856557,0.0,0.0,0,38.9042451605,-77.0857567806,1473236689.0,2.799 -687,0.0,0.0,0.0,0.0,1610,103.0,1396.49,0.0,0.0,165.925866334,0.0,0.0,0,38.9042513631,-77.0857908949,1473236690.0,3.312 -688,0.0,0.0,0.0,0.0,1611,103.0,1399.74,0.0,0.0,165.616804298,0.0,0.0,0,38.9042580687,-77.08582744,1473236691.0,3.2 -689,0.0,0.0,0.0,0.0,1612,103.0,1402.52,0.0,0.0,169.400542082,0.0,0.0,0,38.9042633492,-77.0858587883,1473236692.0,2.445 -690,0.0,0.0,0.0,0.0,1613,103.0,1405.34,0.0,0.0,168.149438992,0.0,0.0,0,38.9042687975,-77.0858904719,1473236693.0,3.2 -691,0.0,0.0,0.0,0.0,1614,103.0,1408.56,0.0,0.0,168.727676452,0.0,0.0,0,38.9042748325,-77.0859267656,1473236694.0,3.191 -692,0.0,0.0,0.0,0.0,1615,102.0,1411.4,0.0,0.0,166.452416226,0.0,0.0,0,38.9042797778,-77.0859589521,1473236695.0,2.53800000001 -693,0.0,0.0,0.0,0.0,1616,102.0,1414.41,0.0,0.0,156.389421847,0.0,0.0,0,38.904285226,-77.0859929826,1473236696.0,3.499 -694,0.0,0.0,0.0,0.0,1617,102.0,1417.76,0.0,0.0,156.92700245,0.0,0.0,0,38.904291261,-77.086030785,1473236697.0,3.172 -695,0.0,0.0,0.0,0.0,1618,102.0,1420.91,0.0,0.0,155.056451288,0.0,0.0,0,38.9042968769,-77.0860664081,1473236698.0,3.098 -696,0.0,0.0,0.0,0.0,1619,102.0,1424.3,0.0,0.0,147.444988977,0.0,0.0,0,38.9043033309,-77.0861046296,1473236699.0,3.62000000001 -697,0.0,0.0,0.0,0.0,1620,103.0,1427.69,0.0,0.0,151.542585435,0.0,0.0,0,38.9043098688,-77.0861427672,1473236700.0,3.126 -698,0.0,0.0,0.0,0.0,1621,103.0,1430.93,0.0,0.0,150.068017842,0.0,0.0,0,38.9043162391,-77.0861792285,1473236701.0,3.275 -699,0.0,0.0,0.0,0.0,1622,103.0,1434.46,0.0,0.0,145.157580808,0.0,0.0,0,38.904323196,-77.0862189587,1473236702.0,3.686 -700,0.0,0.0,0.0,0.0,1623,104.0,1437.88,0.0,0.0,148.408559127,0.0,0.0,0,38.9043299854,-77.0862573478,1473236703.0,3.098 -701,0.0,0.0,0.0,0.0,1624,104.0,1441.2,0.0,0.0,146.028222008,0.0,0.0,0,38.9043368585,-77.0862945635,1473236704.0,3.499 -702,0.0,0.0,0.0,0.0,1625,104.0,1444.86,0.0,0.0,142.594881152,0.0,0.0,0,38.9043444861,-77.0863356348,1473236705.0,3.77 -703,0.0,0.0,0.0,0.0,1626,105.0,1448.21,0.0,0.0,147.05339375,0.0,0.0,0,38.9043514431,-77.0863731857,1473236706.0,2.986 -704,0.0,0.0,0.0,0.0,1627,106.0,1451.52,0.0,0.0,145.037094336,0.0,0.0,0,38.9043584,-77.0864104014,1473236707.0,3.65800000001 -705,0.0,0.0,0.0,0.0,1628,106.0,1455.23,0.0,0.0,142.927678595,0.0,0.0,0,38.9043661114,-77.0864519756,1473236708.0,3.71399999999 -706,0.0,0.0,0.0,0.0,1629,106.0,1458.53,0.0,0.0,146.499982243,0.0,0.0,0,38.9043730684,-77.0864889398,1473236709.0,2.902 -707,0.0,0.0,0.0,0.0,1630,107.0,1461.9,0.0,0.0,143.418399277,0.0,0.0,0,38.9043802768,-77.0865266584,1473236710.0,3.79799999999 -708,0.0,0.0,0.0,0.0,1631,107.0,1465.71,0.0,0.0,142.255745039,0.0,0.0,0,38.9043889102,-77.0865691546,1473236711.0,3.742 -709,0.0,0.0,0.0,0.0,1632,108.0,1469.05,0.0,0.0,144.435121119,0.0,0.0,0,38.9043964539,-77.0866065379,1473236712.0,2.93 -710,0.0,0.0,0.0,0.0,1633,109.0,1472.47,0.0,0.0,140.508213952,0.0,0.0,0,38.9044044167,-77.0866445079,1473236713.0,3.844 -711,0.0,0.0,0.0,0.0,1634,109.0,1476.29,0.0,0.0,141.71900863,0.0,0.0,0,38.9044134691,-77.086687088,1473236714.0,3.76000000001 -712,0.0,0.0,0.0,0.0,1635,110.0,1479.68,0.0,0.0,142.680138307,0.0,0.0,0,38.9044215158,-77.0867247228,1473236715.0,3.004 -713,0.0,0.0,0.0,0.0,1636,110.0,1483.15,0.0,0.0,138.006846574,0.0,0.0,0,38.9044298138,-77.0867633633,1473236716.0,3.91899999999 -714,0.0,0.0,0.0,0.0,1637,111.0,1486.94,0.0,0.0,141.874811141,0.0,0.0,0,38.9044386987,-77.0868055243,1473236717.0,3.63 -715,0.0,0.0,0.0,0.0,1638,111.0,1490.4,0.0,0.0,142.933515496,0.0,0.0,0,38.9044469967,-77.0868439972,1473236718.0,3.2 -716,0.0,0.0,0.0,0.0,1639,112.0,1493.96,0.0,0.0,138.303477345,0.0,0.0,0,38.9044552948,-77.0868835598,1473236719.0,3.863 -717,0.0,0.0,0.0,0.0,1640,112.0,1497.57,0.0,0.0,144.731401075,0.0,0.0,0,38.9044633415,-77.0869238768,1473236720.0,3.35000000001 -718,0.0,0.0,0.0,0.0,1641,112.0,1500.94,0.0,0.0,145.116545548,0.0,0.0,0,38.9044708014,-77.0869615953,1473236721.0,3.38699999999 -719,0.0,0.0,0.0,0.0,1642,113.0,1504.54,0.0,0.0,140.618037581,0.0,0.0,0,38.9044784289,-77.0870019123,1473236722.0,3.77900000001 -720,0.0,0.0,0.0,0.0,1643,113.0,1507.95,0.0,0.0,146.978541133,0.0,0.0,0,38.904485302,-77.0870403014,1473236723.0,3.08799999999 -721,0.0,0.0,0.0,0.0,1644,114.0,1511.3,0.0,0.0,146.106730018,0.0,0.0,0,38.9044924267,-77.0870777685,1473236724.0,3.57399999999 -722,0.0,0.0,0.0,0.0,1645,114.0,1514.95,0.0,0.0,143.074098757,0.0,0.0,0,38.9044999704,-77.087118756,1473236725.0,3.742 -723,0.0,0.0,0.0,0.0,1646,115.0,1518.25,0.0,0.0,147.910997279,0.0,0.0,0,38.9045069274,-77.0871557202,1473236726.0,2.883 -724,0.0,0.0,0.0,0.0,1647,115.0,1521.56,0.0,0.0,145.720914799,0.0,0.0,0,38.9045138005,-77.0871928521,1473236727.0,3.69499999999 -725,0.0,0.0,0.0,0.0,1648,115.0,1525.29,0.0,0.0,144.270584165,0.0,0.0,0,38.9045220986,-77.0872345101,1473236728.0,3.704 -726,0.0,0.0,0.0,0.0,1649,115.0,1528.6,0.0,0.0,147.167128342,0.0,0.0,0,38.90452981,-77.0872713905,1473236729.0,2.87400000001 -727,0.0,0.0,0.0,0.0,1650,116.0,1531.94,0.0,0.0,144.752986235,0.0,0.0,0,38.9045377728,-77.0873085223,1473236730.0,3.75099999999 -728,0.0,0.0,0.0,0.0,1651,116.0,1535.66,0.0,0.0,146.410285988,0.0,0.0,0,38.9045469929,-77.0873497613,1473236731.0,3.65800000001 -729,0.0,0.0,0.0,0.0,1652,116.0,1538.93,0.0,0.0,150.177873013,0.0,0.0,0,38.9045552909,-77.0873858873,1473236732.0,2.85500000001 -730,0.0,0.0,0.0,0.0,1653,117.0,1542.16,0.0,0.0,147.898118045,0.0,0.0,0,38.9045638405,-77.0874215104,1473236733.0,3.61099999999 -731,0.0,0.0,0.0,0.0,1654,116.0,1545.71,0.0,0.0,149.551733246,0.0,0.0,0,38.9045737311,-77.0874604862,1473236734.0,3.50799999999 -732,0.0,0.0,0.0,0.0,1655,117.0,1548.88,0.0,0.0,151.855396849,0.0,0.0,0,38.9045826998,-77.0874951873,1473236735.0,2.85500000001 -733,0.0,0.0,0.0,0.0,1656,117.0,1552.16,0.0,0.0,148.431827382,0.0,0.0,0,38.9045920875,-77.087530978,1473236736.0,3.686 -734,0.0,0.0,0.0,0.0,1657,117.0,1555.77,0.0,0.0,148.718127001,0.0,0.0,0,38.9046023134,-77.0875704568,1473236737.0,3.499 -735,0.0,0.0,0.0,0.0,1658,118.0,1558.97,0.0,0.0,150.926334881,0.0,0.0,0,38.9046116173,-77.0876054093,1473236738.0,2.87400000001 -736,0.0,0.0,0.0,0.0,1659,118.0,1562.27,0.0,0.0,148.020371704,0.0,0.0,0,38.9046215918,-77.0876412001,1473236739.0,3.66700000001 -737,0.0,0.0,0.0,0.0,1660,118.0,1565.86,0.0,0.0,149.585047194,0.0,0.0,0,38.9046324883,-77.0876802597,1473236740.0,3.48999999999 -738,0.0,0.0,0.0,0.0,1661,119.0,1569.06,0.0,0.0,150.715408856,0.0,0.0,0,38.9046422951,-77.087714877,1473236741.0,2.883 -739,0.0,0.0,0.0,0.0,1662,119.0,1572.34,0.0,0.0,147.070058828,0.0,0.0,0,38.9046528563,-77.0877502486,1473236742.0,3.704 -740,0.0,0.0,0.0,0.0,1663,119.0,1575.91,0.0,0.0,148.142637632,0.0,0.0,0,38.9046642557,-77.0877887215,1473236743.0,3.43399999999 -741,0.0,0.0,0.0,0.0,1664,119.0,1579.15,0.0,0.0,148.971900417,0.0,0.0,0,38.9046750683,-77.0878234226,1473236744.0,3.032 -742,0.0,0.0,0.0,0.0,1665,119.0,1582.51,0.0,0.0,145.202472591,0.0,0.0,0,38.9046864677,-77.0878592972,1473236745.0,3.732 -743,0.0,0.0,0.0,0.0,1666,120.0,1586.09,0.0,0.0,147.146879339,0.0,0.0,0,38.9046986215,-77.0878975186,1473236746.0,3.424 -744,0.0,0.0,0.0,0.0,1667,120.0,1589.32,0.0,0.0,147.821078902,0.0,0.0,0,38.9047094341,-77.0879321359,1473236747.0,3.07000000001 -745,0.0,0.0,0.0,0.0,1668,120.0,1592.69,0.0,0.0,144.958821654,0.0,0.0,0,38.9047208335,-77.0879680943,1473236748.0,3.742 -746,0.0,0.0,0.0,0.0,1669,120.0,1596.23,0.0,0.0,147.867254892,0.0,0.0,0,38.904732652,-77.0880059805,1473236749.0,3.368 -747,0.0,0.0,0.0,0.0,1670,121.0,1599.44,0.0,0.0,148.140357538,0.0,0.0,0,38.9047436323,-77.0880402625,1473236750.0,3.14400000001 -748,0.0,0.0,0.0,0.0,1671,121.0,1602.86,0.0,0.0,144.612526074,0.0,0.0,0,38.9047551993,-77.0880768076,1473236751.0,3.71399999999 -749,0.0,0.0,0.0,0.0,1672,121.0,1606.37,0.0,0.0,148.346228538,0.0,0.0,0,38.9047666825,-77.0881144423,1473236752.0,3.25599999999 -750,0.0,0.0,0.0,0.0,1673,121.0,1609.65,0.0,0.0,147.374062165,0.0,0.0,0,38.9047776628,-77.0881495625,1473236753.0,3.29399999999 -751,0.0,0.0,0.0,0.0,1674,121.0,1613.18,0.0,0.0,143.659575315,0.0,0.0,0,38.9047897328,-77.0881871972,1473236754.0,3.732 -752,0.0,0.0,0.0,0.0,1675,121.0,1616.62,0.0,0.0,147.677625497,0.0,0.0,0,38.9048013836,-77.0882239938,1473236755.0,3.14400000001 -753,0.0,0.0,0.0,0.0,1676,121.0,1619.94,0.0,0.0,146.883401286,0.0,0.0,0,38.9048129506,-77.0882592816,1473236756.0,3.46199999999 -754,0.0,0.0,0.0,0.0,1677,121.0,1623.52,0.0,0.0,144.509755347,0.0,0.0,0,38.9048255235,-77.0882972516,1473236757.0,3.67599999999 -755,0.0,0.0,0.0,0.0,1678,122.0,1626.84,0.0,0.0,149.537017857,0.0,0.0,0,38.9048372582,-77.0883324556,1473236758.0,3.014 -756,0.0,0.0,0.0,0.0,1679,121.0,1630.09,0.0,0.0,148.636788313,0.0,0.0,0,38.9048488252,-77.0883669052,1473236759.0,3.499 -757,0.0,0.0,0.0,0.0,1680,121.0,1633.65,0.0,0.0,147.249118736,0.0,0.0,0,38.904861398,-77.0884047076,1473236760.0,3.62000000001 -758,0.0,0.0,0.0,0.0,1681,121.0,1636.87,0.0,0.0,151.855396849,0.0,0.0,0,38.9048726298,-77.0884389058,1473236761.0,2.865 -759,0.0,0.0,0.0,0.0,1682,121.0,1640.09,0.0,0.0,150.168305516,0.0,0.0,0,38.9048837777,-77.0884731039,1473236762.0,3.56400000001 -760,0.0,0.0,0.0,0.0,1683,121.0,1643.66,0.0,0.0,149.464064568,0.0,0.0,0,38.9048961829,-77.0885111578,1473236763.0,3.57399999999 -761,0.0,0.0,0.0,0.0,1684,121.0,1646.81,0.0,0.0,152.440432746,0.0,0.0,0,38.9049069956,-77.0885446854,1473236764.0,2.771 -762,0.0,0.0,0.0,0.0,1685,121.0,1650.02,0.0,0.0,149.896046119,0.0,0.0,0,38.904918395,-77.0885787159,1473236765.0,3.62000000001 -763,0.0,0.0,0.0,0.0,1686,121.0,1653.62,0.0,0.0,149.292315647,0.0,0.0,0,38.9049306326,-77.088617105,1473236766.0,3.54599999999 -764,0.0,0.0,0.0,0.0,1687,120.0,1656.83,0.0,0.0,151.841222723,0.0,0.0,0,38.9049418643,-77.0886512194,1473236767.0,2.85500000001 -765,0.0,0.0,0.0,0.0,1688,120.0,1660.07,0.0,0.0,148.54254683,0.0,0.0,0,38.9049532637,-77.0886855852,1473236768.0,3.60200000001 -766,0.0,0.0,0.0,0.0,1689,120.0,1663.7,0.0,0.0,148.843466932,0.0,0.0,0,38.9049658366,-77.0887243096,1473236769.0,3.57399999999 -767,0.0,0.0,0.0,0.0,1690,120.0,1666.92,0.0,0.0,151.656801315,0.0,0.0,0,38.9049774874,-77.0887582563,1473236770.0,2.809 -768,0.0,0.0,0.0,0.0,1691,120.0,1670.19,0.0,0.0,148.552290406,0.0,0.0,0,38.9049893897,-77.0887927897,1473236771.0,3.686 -769,0.0,0.0,0.0,0.0,1692,120.0,1673.81,0.0,0.0,148.321653806,0.0,0.0,0,38.9050020464,-77.0888311788,1473236772.0,3.527 -770,0.0,0.0,0.0,0.0,1693,120.0,1676.98,0.0,0.0,150.139805507,0.0,0.0,0,38.9050133619,-77.0888647903,1473236773.0,2.818 -771,0.0,0.0,0.0,0.0,1694,119.0,1680.29,0.0,0.0,146.317548351,0.0,0.0,0,38.9050250966,-77.0888998266,1473236774.0,3.77 -772,0.0,0.0,0.0,0.0,1695,120.0,1683.94,0.0,0.0,146.932544605,0.0,0.0,0,38.9050377533,-77.0889387187,1473236775.0,3.555 -773,0.0,0.0,0.0,0.0,1696,119.0,1687.19,0.0,0.0,148.401503802,0.0,0.0,0,38.9050490689,-77.0889731683,1473236776.0,2.921 -774,0.0,0.0,0.0,0.0,1697,119.0,1690.52,0.0,0.0,145.164878395,0.0,0.0,0,38.9050606359,-77.0890086237,1473236777.0,3.742 -775,0.0,0.0,0.0,0.0,1698,119.0,1694.16,0.0,0.0,147.518433418,0.0,0.0,0,38.9050728735,-77.0890475996,1473236778.0,3.50799999999 -776,0.0,0.0,0.0,0.0,1699,119.0,1697.4,0.0,0.0,148.840589795,0.0,0.0,0,38.9050841052,-77.0890820492,1473236779.0,2.948 -777,0.0,0.0,0.0,0.0,1700,119.0,1700.75,0.0,0.0,145.729740096,0.0,0.0,0,38.9050958399,-77.0891176723,1473236780.0,3.742 -778,0.0,0.0,0.0,0.0,1701,119.0,1704.33,0.0,0.0,148.056422957,0.0,0.0,0,38.9051079936,-77.08915581,1473236781.0,3.424 -779,0.0,0.0,0.0,0.0,1702,119.0,1707.53,0.0,0.0,149.338450061,0.0,0.0,0,38.9051194768,-77.0891897567,1473236782.0,3.032 -780,0.0,0.0,0.0,0.0,1703,119.0,1710.88,0.0,0.0,146.272705513,0.0,0.0,0,38.9051312953,-77.0892252959,1473236783.0,3.69499999999 -781,0.0,0.0,0.0,0.0,1704,119.0,1714.39,0.0,0.0,150.594162423,0.0,0.0,0,38.9051435329,-77.0892625954,1473236784.0,3.34000000001 -782,0.0,0.0,0.0,0.0,1705,120.0,1717.56,0.0,0.0,150.76695345,0.0,0.0,0,38.905154597,-77.0892962907,1473236785.0,3.051 -783,0.0,0.0,0.0,0.0,1706,119.0,1720.89,0.0,0.0,147.991164095,0.0,0.0,0,38.905166667,-77.0893314108,1473236786.0,3.639 -784,0.0,0.0,0.0,0.0,1707,119.0,1724.27,0.0,0.0,152.692746499,0.0,0.0,0,38.9051785693,-77.0893672016,1473236787.0,3.163 -785,0.0,0.0,0.0,0.0,1708,119.0,1727.47,0.0,0.0,152.567896016,0.0,0.0,0,38.9051903877,-77.0894008968,1473236788.0,3.24700000001 -786,0.0,0.0,0.0,0.0,1709,119.0,1730.85,0.0,0.0,147.764533697,0.0,0.0,0,38.9052028768,-77.0894364361,1473236789.0,3.536 -787,0.0,0.0,0.0,0.0,1710,119.0,1734.13,0.0,0.0,152.76120844,0.0,0.0,0,38.9052146114,-77.0894711372,1473236790.0,3.06000000001 -788,0.0,0.0,0.0,0.0,1711,119.0,1737.34,0.0,0.0,150.147027089,0.0,0.0,0,38.9052265137,-77.0895049162,1473236791.0,3.37799999999 -789,0.0,0.0,0.0,0.0,1712,118.0,1740.9,0.0,0.0,146.177181932,0.0,0.0,0,38.9052400924,-77.0895420481,1473236792.0,3.686 -790,0.0,0.0,0.0,0.0,1713,119.0,1744.2,0.0,0.0,149.708554386,0.0,0.0,0,38.9052527491,-77.0895764139,1473236793.0,2.911 -791,0.0,0.0,0.0,0.0,1714,119.0,1747.51,0.0,0.0,147.414502779,0.0,0.0,0,38.9052659087,-77.0896107797,1473236794.0,3.65800000001 -792,0.0,0.0,0.0,0.0,1715,119.0,1751.18,0.0,0.0,144.547734543,0.0,0.0,0,38.9052810799,-77.0896482468,1473236795.0,3.62000000001 -793,0.0,0.0,0.0,0.0,1716,119.0,1754.47,0.0,0.0,148.184261677,0.0,0.0,0,38.9052950777,-77.0896816906,1473236796.0,2.902 -794,0.0,0.0,0.0,0.0,1717,120.0,1757.83,0.0,0.0,144.292212343,0.0,0.0,0,38.905309746,-77.0897156373,1473236797.0,3.76000000001 -795,0.0,0.0,0.0,0.0,1718,120.0,1761.62,0.0,0.0,143.430153862,0.0,0.0,0,38.9053261746,-77.0897539426,1473236798.0,3.69499999999 -796,0.0,0.0,0.0,0.0,1719,120.0,1764.95,0.0,0.0,145.023253945,0.0,0.0,0,38.9053406753,-77.0897874702,1473236799.0,2.921 -797,0.0,0.0,0.0,0.0,1720,121.0,1768.36,0.0,0.0,141.345783184,0.0,0.0,0,38.9053555112,-77.0898219198,1473236800.0,3.872 -798,0.0,0.0,0.0,0.0,1721,121.0,1772.16,0.0,0.0,143.4828951,0.0,0.0,0,38.9053718559,-77.0898603927,1473236801.0,3.66700000001 -799,0.0,0.0,0.0,0.0,1722,121.0,1775.49,0.0,0.0,144.680275381,0.0,0.0,0,38.9053862728,-77.0898941718,1473236802.0,2.99500000001 -800,0.0,0.0,0.0,0.0,1723,121.0,1778.96,0.0,0.0,140.409997192,0.0,0.0,0,38.9054011926,-77.0899292082,1473236803.0,3.844 -801,0.0,0.0,0.0,0.0,1724,121.0,1782.69,0.0,0.0,144.530370148,0.0,0.0,0,38.905417202,-77.0899670944,1473236804.0,3.499 -802,0.0,0.0,0.0,0.0,1725,121.0,1786.1,0.0,0.0,144.989938577,0.0,0.0,0,38.9054318704,-77.0900016278,1473236805.0,3.22800000001 -803,0.0,0.0,0.0,0.0,1726,120.0,1789.63,0.0,0.0,139.478940491,0.0,0.0,0,38.9054471254,-77.0900373347,1473236806.0,3.80699999999 -804,0.0,0.0,0.0,0.0,1727,120.0,1793.24,0.0,0.0,145.087925795,0.0,0.0,0,38.9054624643,-77.0900739636,1473236807.0,3.33100000001 -805,0.0,0.0,0.0,0.0,1728,121.0,1796.63,0.0,0.0,144.843750588,0.0,0.0,0,38.9054771326,-77.0901082456,1473236808.0,3.38699999999 -806,0.0,0.0,0.0,0.0,1729,121.0,1800.26,0.0,0.0,140.839574579,0.0,0.0,0,38.9054930583,-77.0901447907,1473236809.0,3.83499999999 -807,0.0,0.0,0.0,0.0,1730,121.0,1803.7,0.0,0.0,146.523027585,0.0,0.0,0,38.9055080619,-77.0901795756,1473236810.0,3.042 -808,0.0,0.0,0.0,0.0,1731,121.0,1807.07,0.0,0.0,145.887672808,0.0,0.0,0,38.905522814,-77.0902134385,1473236811.0,3.58299999999 -809,0.0,0.0,0.0,0.0,1732,120.0,1810.75,0.0,0.0,143.630634238,0.0,0.0,0,38.9055390749,-77.0902504865,1473236812.0,3.732 -810,0.0,0.0,0.0,0.0,1733,121.0,1814.06,0.0,0.0,149.175273843,0.0,0.0,0,38.9055534918,-77.0902839303,1473236813.0,2.893 -811,0.0,0.0,0.0,0.0,1734,121.0,1817.36,0.0,0.0,145.955884676,0.0,0.0,0,38.9055681601,-77.090316955,1473236814.0,3.64799999999 -812,0.0,21.0,0.0,0.0,1735,121.0,1821.05,0.0,0.0,146.739337577,0.0,0.0,0,38.9055845886,-77.090354003,1473236815.0,3.639 -813,0.0,21.0,0.0,0.0,1736,122.0,1824.3,0.0,0.0,149.249295427,0.0,0.0,0,38.9055994246,-77.0903862733,1473236816.0,2.865 -814,0.0,21.0,0.0,0.0,1737,122.0,1827.64,0.0,0.0,145.300747387,0.0,0.0,0,38.9056149311,-77.090419298,1473236817.0,3.75099999999 -815,0.0,0.0,0.0,0.0,1738,122.0,1831.25,0.0,0.0,148.115850961,0.0,0.0,0,38.9056319464,-77.0904547535,1473236818.0,3.46199999999 -816,0.0,0.0,0.0,0.0,1739,122.0,1834.48,0.0,0.0,149.549796846,0.0,0.0,0,38.9056476206,-77.0904861018,1473236819.0,3.042 -817,0.0,0.0,0.0,0.0,1740,122.0,1837.8,0.0,0.0,146.722374591,0.0,0.0,0,38.9056640491,-77.0905180369,1473236820.0,3.63 -818,0.0,0.0,0.0,0.0,1741,122.0,1841.25,0.0,0.0,151.005066187,0.0,0.0,0,38.9056811482,-77.090551313,1473236821.0,3.32199999999 -819,0.0,0.0,0.0,0.0,1742,122.0,1844.43,0.0,0.0,152.508064442,0.0,0.0,0,38.9056970738,-77.0905818231,1473236822.0,3.116 -820,0.0,0.0,0.0,0.0,1743,122.0,1847.73,0.0,0.0,149.429451187,0.0,0.0,0,38.9057130832,-77.090613842,1473236823.0,3.48999999999 -821,0.0,0.0,0.0,0.0,1744,122.0,1851.1,0.0,0.0,153.248876175,0.0,0.0,0,38.905728925,-77.0906469505,1473236824.0,3.25599999999 -822,0.0,0.0,0.0,0.0,1745,123.0,1854.3,0.0,0.0,152.295107042,0.0,0.0,0,38.9057438448,-77.0906784665,1473236825.0,3.116 -823,0.0,0.0,0.0,0.0,1746,122.0,1857.65,0.0,0.0,146.197535021,0.0,0.0,0,38.905759519,-77.090711575,1473236826.0,3.639 -824,0.0,0.0,0.0,0.0,1747,122.0,1861.04,0.0,0.0,149.257588876,0.0,0.0,0,38.9057749417,-77.0907452703,1473236827.0,3.14400000001 -825,0.0,0.0,0.0,0.0,1748,123.0,1864.35,0.0,0.0,147.345297006,0.0,0.0,0,38.9057900291,-77.0907782111,1473236828.0,3.47100000001 -826,0.0,0.0,0.0,0.0,1749,122.0,1867.97,0.0,0.0,142.993504009,0.0,0.0,0,38.9058067929,-77.0908140019,1473236829.0,3.76000000001 -827,0.0,0.0,0.0,0.0,1750,123.0,1871.32,0.0,0.0,147.947753307,0.0,0.0,0,38.9058221318,-77.0908471942,1473236830.0,2.911 -828,0.0,0.0,0.0,0.0,1751,123.0,1874.64,0.0,0.0,147.53369644,0.0,0.0,0,38.9058376383,-77.0908799674,1473236831.0,3.65800000001 -829,0.0,0.0,0.0,0.0,1752,123.0,1878.29,0.0,0.0,146.742879794,0.0,0.0,0,38.9058547374,-77.090915842,1473236832.0,3.60200000001 -830,0.0,0.0,0.0,0.0,1753,123.0,1881.53,0.0,0.0,151.472032755,0.0,0.0,0,38.9058695734,-77.0909480285,1473236833.0,2.85500000001 -831,0.0,0.0,0.0,0.0,1754,124.0,1884.76,0.0,0.0,148.666059989,0.0,0.0,0,38.905884577,-77.0909799635,1473236834.0,3.57399999999 -832,0.0,0.0,0.0,0.0,1755,124.0,1888.4,0.0,0.0,148.755093735,0.0,0.0,0,38.9059011731,-77.0910161734,1473236835.0,3.58299999999 -833,0.0,0.0,0.0,0.0,1756,124.0,1891.63,0.0,0.0,150.502325945,0.0,0.0,0,38.9059159253,-77.0910481922,1473236836.0,2.85500000001 -834,0.0,0.0,0.0,0.0,1757,123.0,1894.89,0.0,0.0,146.216042748,0.0,0.0,0,38.9059309289,-77.0910806302,1473236837.0,3.69499999999 -835,0.0,0.0,0.0,0.0,1758,123.0,1898.55,0.0,0.0,147.502796806,0.0,0.0,0,38.9059476927,-77.09111684,1473236838.0,3.58299999999 -836,0.0,0.0,0.0,0.0,1759,123.0,1901.78,0.0,0.0,148.694577476,0.0,0.0,0,38.9059627801,-77.0911487751,1473236839.0,2.921 -837,0.0,0.0,0.0,0.0,1760,122.0,1905.1,0.0,0.0,145.130039028,0.0,0.0,0,38.9059783705,-77.0911813807,1473236840.0,3.732 -838,0.0,0.0,0.0,0.0,1761,122.0,1908.69,0.0,0.0,148.188824638,0.0,0.0,0,38.905994799,-77.0912170876,1473236841.0,3.415 -839,0.0,0.0,0.0,0.0,1762,122.0,1912.0,0.0,0.0,149.667427314,0.0,0.0,0,38.9060099702,-77.0912498608,1473236842.0,3.116 -840,0.0,0.0,0.0,0.0,1763,122.0,1915.38,0.0,0.0,144.711454131,0.0,0.0,0,38.906025812,-77.0912832208,1473236843.0,3.63 -841,0.0,0.0,0.0,0.0,1764,122.0,1918.88,0.0,0.0,148.617089035,0.0,0.0,0,38.9060416538,-77.0913180895,1473236844.0,3.35000000001 -842,0.0,0.0,0.0,0.0,1765,122.0,1922.15,0.0,0.0,148.572163622,0.0,0.0,0,38.9060565736,-77.0913505275,1473236845.0,3.182 -843,0.0,0.0,0.0,0.0,1766,122.0,1925.58,0.0,0.0,145.230224484,0.0,0.0,0,38.9060722478,-77.0913846418,1473236846.0,3.76000000001 -844,0.0,0.0,0.0,0.0,1767,122.0,1929.03,0.0,0.0,148.474568427,0.0,0.0,0,38.9060878381,-77.0914190076,1473236847.0,3.14400000001 -845,0.0,0.0,0.0,0.0,1768,122.0,1932.26,0.0,0.0,148.567385921,0.0,0.0,0,38.9061025903,-77.0914511103,1473236848.0,3.33100000001 -846,0.0,0.0,0.0,0.0,1769,121.0,1935.73,0.0,0.0,145.781978318,0.0,0.0,0,38.9061186835,-77.0914854761,1473236849.0,3.66700000001 -847,0.0,0.0,0.0,0.0,1770,122.0,1939.12,0.0,0.0,148.622634905,0.0,0.0,0,38.9061342739,-77.0915190876,1473236850.0,3.116 -848,0.0,0.0,0.0,0.0,1771,122.0,1942.4,0.0,0.0,147.331200539,0.0,0.0,0,38.9061492775,-77.0915516932,1473236851.0,3.424 -849,0.0,0.0,0.0,0.0,1772,121.0,1945.95,0.0,0.0,145.837016086,0.0,0.0,0,38.9061655384,-77.0915868133,1473236852.0,3.67599999999 -850,0.0,0.0,0.0,0.0,1773,122.0,1949.36,0.0,0.0,146.595370125,0.0,0.0,0,38.9061811287,-77.09162076,1473236853.0,3.126 -851,0.0,0.0,0.0,0.0,1774,122.0,1952.67,0.0,0.0,145.20612355,0.0,0.0,0,38.9061959647,-77.0916537847,1473236854.0,3.415 -852,0.0,0.0,0.0,0.0,1775,121.0,1956.24,0.0,0.0,146.349993158,0.0,0.0,0,38.9062119741,-77.0916894916,1473236855.0,3.72299999999 -853,0.0,0.0,0.0,0.0,1776,122.0,1959.7,0.0,0.0,149.02860446,0.0,0.0,0,38.9062272292,-77.0917243604,1473236856.0,3.182 -854,0.0,0.0,0.0,0.0,1777,122.0,1962.92,0.0,0.0,150.303339467,0.0,0.0,0,38.9062413946,-77.0917567145,1473236857.0,3.30299999999 -855,0.0,0.0,0.0,0.0,1778,121.0,1966.3,0.0,0.0,149.857732465,0.0,0.0,0,38.9062558953,-77.0917909965,1473236858.0,3.43399999999 -856,0.0,0.0,0.0,0.0,1779,122.0,1969.58,0.0,0.0,155.093929181,0.0,0.0,0,38.9062697254,-77.0918244403,1473236859.0,3.098 -857,0.0,0.0,0.0,0.0,1780,122.0,1972.79,0.0,0.0,150.541558594,0.0,0.0,0,38.9062832203,-77.0918571297,1473236860.0,3.29399999999 -858,0.0,0.0,0.0,0.0,1781,122.0,1976.31,0.0,0.0,146.925068215,0.0,0.0,0,38.9062980562,-77.0918930043,1473236861.0,3.71399999999 -859,0.0,0.0,0.0,0.0,1782,122.0,1979.66,0.0,0.0,144.22122412,0.0,0.0,0,38.9063121378,-77.0919272024,1473236862.0,2.976 -860,0.0,0.0,0.0,0.0,1783,122.0,1983.13,0.0,0.0,135.021708685,0.0,0.0,0,38.9063267224,-77.091962574,1473236863.0,3.95600000002 -861,0.0,0.0,0.0,0.0,1784,123.0,1987.04,0.0,0.0,134.026946959,0.0,0.0,0,38.9063430671,-77.0920024719,1473236864.0,3.79799999999 -862,0.0,0.0,0.0,0.0,1785,123.0,1990.8,0.0,0.0,128.329198281,0.0,0.0,0,38.9063589927,-77.0920406934,1473236865.0,3.742 -863,0.0,0.0,0.0,0.0,1786,124.0,1994.8,0.0,0.0,126.448547484,0.0,0.0,0,38.9063757565,-77.0920815133,1473236866.0,4.245 -864,0.0,0.0,0.0,0.0,1787,124.0,1998.69,0.0,0.0,125.613521453,0.0,0.0,0,38.9063920174,-77.0921212435,1473236867.0,3.57399999999 -865,0.0,0.0,0.0,0.0,1788,124.0,2002.68,0.0,0.0,127.059072018,0.0,0.0,0,38.9064086135,-77.0921620633,1473236868.0,4.40400000001 -866,0.0,0.0,0.0,0.0,1789,125.0,2006.66,0.0,0.0,123.166630054,0.0,0.0,0,38.9064248744,-77.092202967,1473236869.0,3.527 -867,0.0,0.0,0.0,0.0,1790,126.0,2010.7,0.0,0.0,125.938130031,0.0,0.0,0,38.906441303,-77.0922445413,1473236870.0,4.48800000002 -868,0.0,0.0,0.0,0.0,1791,127.0,2014.74,0.0,0.0,121.426078326,0.0,0.0,0,38.9064578153,-77.0922860317,1473236871.0,3.56400000001 -869,0.0,0.0,0.0,0.0,1792,128.0,2018.86,0.0,0.0,124.78958639,0.0,0.0,0,38.9064748306,-77.0923281927,1473236872.0,4.637 -870,0.0,0.0,0.0,0.0,1793,129.0,2022.99,0.0,0.0,122.311010956,0.0,0.0,0,38.9064920973,-77.0923704375,1473236873.0,3.555 -871,0.0,0.0,0.0,0.0,1794,129.0,2027.02,0.0,0.0,121.087967525,0.0,0.0,0,38.9065089449,-77.0924115926,1473236874.0,4.46900000002 -872,0.0,0.0,0.0,0.0,1795,130.0,2031.14,0.0,0.0,121.102441132,0.0,0.0,0,38.9065262955,-77.0924535021,1473236875.0,3.67599999999 -873,0.0,0.0,0.0,0.0,1796,131.0,2035.17,0.0,0.0,127.435620187,0.0,0.0,0,38.9065432269,-77.0924946573,1473236876.0,4.292 -874,0.0,0.0,0.0,0.0,1797,132.0,2039.49,0.0,0.0,129.686540334,0.0,0.0,0,38.9065609965,-77.0925389975,1473236877.0,4.20799999999 -875,0.0,0.0,0.0,0.0,1798,132.0,2043.1,0.0,0.0,140.847131475,0.0,0.0,0,38.9065758325,-77.0925759617,1473236878.0,3.004 -876,0.0,0.0,0.0,0.0,1799,133.0,2046.3,0.0,0.0,150.708132498,0.0,0.0,0,38.9065890759,-77.0926088188,1473236879.0,3.38699999999 -877,0.0,0.0,0.0,0.0,1800,132.0,2049.5,0.0,0.0,170.799875782,0.0,0.0,0,38.9066021517,-77.0926416758,1473236880.0,3.042 -878,0.0,0.0,0.0,0.0,1801,133.0,2052.38,0.0,0.0,187.693177719,0.0,0.0,0,38.9066139702,-77.092671264,1473236881.0,2.74300000001 -879,0.0,0.0,0.0,0.0,1802,133.0,2054.89,0.0,0.0,199.282238863,0.0,0.0,0,38.9066242799,-77.0926969964,1473236882.0,2.351 -880,0.0,0.0,0.0,0.0,1803,132.0,2057.15,0.0,0.0,225.828968284,0.0,0.0,0,38.9066335,-77.0927202143,1473236883.0,2.23 -881,0.0,0.0,0.0,0.0,1804,132.0,2059.27,0.0,0.0,247.082606882,0.0,0.0,0,38.9066421334,-77.0927420072,1473236884.0,2.053 -882,0.0,0.0,0.0,0.0,1805,132.0,2061.24,0.0,0.0,267.568600651,0.0,0.0,0,38.9066502638,-77.0927621238,1473236885.0,1.866 -883,0.0,0.0,0.0,0.0,1806,131.0,2063.02,0.0,0.0,285.441024919,0.0,0.0,0,38.9066577237,-77.0927803125,1473236886.0,1.754 -884,0.0,0.0,0.0,0.0,1807,130.0,2064.7,0.0,0.0,307.970434838,0.0,0.0,0,38.9066646807,-77.0927975792,1473236887.0,1.605 -885,0.0,0.0,0.0,0.0,1808,129.0,2066.26,0.0,0.0,331.531676345,0.0,0.0,0,38.9066709671,-77.0928135887,1473236888.0,1.521 -886,0.0,0.0,0.0,0.0,1809,129.0,2067.74,0.0,0.0,353.139733265,0.0,0.0,0,38.9066772535,-77.0928286761,1473236889.0,1.437 -887,0.0,0.0,0.0,0.0,1810,129.0,2069.09,0.0,0.0,372.153269149,0.0,0.0,0,38.9066828694,-77.0928425062,1473236890.0,1.316 -888,0.0,0.0,0.0,0.0,1811,128.0,2070.34,0.0,0.0,398.134455693,0.0,0.0,0,38.9066884015,-77.0928550791,1473236891.0,1.222 -889,0.0,0.0,0.0,0.0,1812,128.0,2071.51,0.0,0.0,434.923408293,0.0,0.0,0,38.906693263,-77.0928670652,1473236892.0,1.213 -890,0.0,0.0,0.0,0.0,1813,127.0,2072.66,0.0,0.0,471.713524905,0.0,0.0,0,38.9066981245,-77.0928787161,1473236893.0,1.12 -891,0.0,0.0,0.0,0.0,1814,127.0,2073.68,0.0,0.0,508.116668866,0.0,0.0,0,38.9067025669,-77.092888942,1473236894.0,0.896 -892,0.0,0.0,0.0,0.0,1815,126.0,2074.52,0.0,0.0,552.467689011,0.0,0.0,0,38.9067062549,-77.0928974077,1473236895.0,0.877 -893,0.0,0.0,0.0,0.0,1816,125.0,2075.38,0.0,0.0,570.418257335,0.0,0.0,0,38.9067101106,-77.0929061249,1473236896.0,0.914 -894,0.0,0.0,0.0,0.0,1817,124.0,2076.24,0.0,0.0,633.633600685,0.0,0.0,0,38.9067137986,-77.0929147583,1473236897.0,0.857999999999 -895,0.0,0.0,0.0,0.0,1818,123.0,2077.07,0.0,0.0,588.307203325,0.0,0.0,0,38.906717319,-77.092923224,1473236898.0,0.848999999999 -896,0.0,0.0,0.0,0.0,1819,124.0,2078.0,0.0,0.0,492.209873176,0.0,0.0,0,38.9067210909,-77.0929327793,1473236899.0,0.989 -897,0.0,0.0,0.0,0.0,1820,124.0,2078.86,0.0,0.0,412.421934419,0.0,0.0,0,38.9067247789,-77.0929415803,1473236900.0,0.821 -898,0.0,0.0,0.0,0.0,1821,123.0,2080.14,0.0,0.0,359.278084348,0.0,0.0,0,38.906730311,-77.0929544885,1473236901.0,1.754 -899,0.0,0.0,0.0,0.0,1822,122.0,2081.92,0.0,0.0,298.777727478,0.0,0.0,0,38.9067382738,-77.0929723419,1473236902.0,1.866 -900,0.0,0.0,0.0,0.0,1823,121.0,2083.69,0.0,0.0,256.261773065,0.0,0.0,0,38.9067456499,-77.092990363,1473236903.0,1.726 -901,0.0,0.0,0.0,0.0,1824,121.0,2085.46,0.0,0.0,231.623066048,0.0,0.0,0,38.906753445,-77.0930081327,1473236904.0,1.875 -902,0.0,0.0,0.0,0.0,1825,119.0,2087.6,0.0,0.0,230.673366513,0.0,0.0,0,38.9067630004,-77.0930296741,1473236905.0,2.52899999999 -903,0.0,0.0,0.0,0.0,1826,117.0,2089.92,0.0,0.0,229.087122527,0.0,0.0,0,38.906773394,-77.0930528082,1473236906.0,2.286 -904,0.0,0.0,0.0,0.0,1827,116.0,2091.96,0.0,0.0,233.39368564,0.0,0.0,0,38.9067828655,-77.0930729248,1473236907.0,2.043 -905,0.0,0.0,0.0,0.0,1828,115.0,2093.9,0.0,0.0,256.511619643,0.0,0.0,0,38.9067920856,-77.0930920355,1473236908.0,1.885 -906,0.0,0.0,0.0,0.0,1829,113.0,2095.69,0.0,0.0,295.989154752,0.0,0.0,0,38.9068000484,-77.093109889,1473236909.0,1.708 -907,0.0,0.0,0.0,0.0,1830,112.0,2097.34,0.0,0.0,327.724654541,0.0,0.0,0,38.9068079274,-77.093126066,1473236910.0,1.577 -908,0.0,0.0,0.0,0.0,1831,111.0,2098.8,0.0,0.0,340.143066235,0.0,0.0,0,38.9068149682,-77.0931402314,1473236911.0,1.344 -909,0.0,0.0,0.0,0.0,1832,110.0,2100.17,0.0,0.0,381.11013588,0.0,0.0,0,38.9068215061,-77.0931537263,1473236912.0,1.381 -910,0.0,0.0,0.0,0.0,1833,109.0,2101.55,0.0,0.0,385.830822371,0.0,0.0,0,38.9068278763,-77.0931673888,1473236913.0,1.325 -911,0.0,0.0,0.0,0.0,1834,108.0,2102.97,0.0,0.0,358.126209257,0.0,0.0,0,38.9068345819,-77.093181219,1473236914.0,1.521 -912,0.0,0.0,0.0,0.0,1835,108.0,2104.24,0.0,0.0,313.095525309,0.0,0.0,0,38.9068404492,-77.0931938756,1473236915.0,1.073 -913,0.0,0.0,0.0,0.0,1836,108.0,2105.8,0.0,0.0,293.137536071,0.0,0.0,0,38.9068479929,-77.0932089631,1473236916.0,2.034 -914,0.0,0.0,0.0,0.0,1837,108.0,2107.9,0.0,0.0,259.527233507,0.0,0.0,0,38.9068575483,-77.0932299178,1473236917.0,2.118 -915,0.0,0.0,0.0,0.0,1838,107.0,2110.08,0.0,0.0,224.699428038,0.0,0.0,0,38.9068671037,-77.0932518784,1473236918.0,2.155 -916,0.0,0.0,0.0,0.0,1839,107.0,2112.15,0.0,0.0,209.830990675,0.0,0.0,0,38.9068764076,-77.0932724979,1473236919.0,1.997 -917,0.0,0.0,0.0,0.0,1840,107.0,2114.57,0.0,0.0,206.030724443,0.0,0.0,0,38.9068871364,-77.0932968892,1473236920.0,2.818 -918,0.0,0.0,0.0,0.0,1841,108.0,2117.44,0.0,0.0,188.081342331,0.0,0.0,0,38.9068991225,-77.0933261421,1473236921.0,2.799 -919,0.0,0.0,0.0,0.0,1842,108.0,2119.99,0.0,0.0,183.240840338,0.0,0.0,0,38.9069101866,-77.0933518745,1473236922.0,2.23 -920,0.0,0.0,0.0,0.0,1843,107.0,2122.68,0.0,0.0,177.554361612,0.0,0.0,0,38.9069216698,-77.0933792833,1473236923.0,3.08799999999 -921,0.0,0.0,0.0,0.0,1844,106.0,2125.82,0.0,0.0,172.500313637,0.0,0.0,0,38.9069349971,-77.0934112184,1473236924.0,3.135 -922,0.0,0.0,0.0,0.0,1845,107.0,2128.66,0.0,0.0,169.026698901,0.0,0.0,0,38.9069466479,-77.0934403036,1473236925.0,2.454 -923,0.0,0.0,0.0,0.0,1846,106.0,2131.55,0.0,0.0,165.514513689,0.0,0.0,0,38.9069584664,-77.0934700593,1473236926.0,3.25599999999 -924,0.0,0.0,0.0,0.0,1847,106.0,2134.87,0.0,0.0,166.152146456,0.0,0.0,0,38.9069721289,-77.0935040899,1473236927.0,3.30299999999 -925,0.0,0.0,0.0,0.0,1848,106.0,2137.86,0.0,0.0,166.287061859,0.0,0.0,0,38.9069845341,-77.0935346838,1473236928.0,2.61299999999 -926,0.0,0.0,0.0,0.0,1849,106.0,2140.76,0.0,0.0,164.040130892,0.0,0.0,0,38.9069962688,-77.0935645234,1473236929.0,3.08799999999 -927,0.0,0.0,0.0,0.0,1850,105.0,2144.0,0.0,0.0,165.039609507,0.0,0.0,0,38.9070093445,-77.0935978834,1473236930.0,3.28399999999 -928,0.0,20.0,0.0,0.0,1851,106.0,2147.03,0.0,0.0,163.379970889,0.0,0.0,0,38.9070214145,-77.0936292317,1473236931.0,2.75299999999 -929,0.0,20.0,0.0,0.0,1852,106.0,2150.04,0.0,0.0,160.36298961,0.0,0.0,0,38.9070335682,-77.0936603285,1473236932.0,3.182 -930,0.0,20.0,0.0,0.0,1853,106.0,2153.4,0.0,0.0,159.493817716,0.0,0.0,0,38.9070473146,-77.0936947782,1473236933.0,3.39600000001 -931,0.0,0.0,0.0,0.0,1854,106.0,2156.55,0.0,0.0,159.056731611,0.0,0.0,0,38.9070601389,-77.0937272161,1473236934.0,2.893 -932,0.0,0.0,0.0,0.0,1855,106.0,2159.58,0.0,0.0,157.988255523,0.0,0.0,0,38.9070726279,-77.093758313,1473236935.0,3.10699999999 -933,0.0,0.0,0.0,0.0,1856,107.0,2162.88,0.0,0.0,158.02154292,0.0,0.0,0,38.9070862904,-77.0937920082,1473236936.0,3.44299999999 -934,0.0,0.0,0.0,0.0,1857,107.0,2166.08,0.0,0.0,158.381682028,0.0,0.0,0,38.9070998691,-77.0938246138,1473236937.0,2.95799999999 -935,0.0,0.0,0.0,0.0,1858,107.0,2169.13,0.0,0.0,157.665835793,0.0,0.0,0,38.9071128611,-77.0938556269,1473236938.0,3.098 -936,0.0,0.0,0.0,0.0,1859,107.0,2172.4,0.0,0.0,157.703939868,0.0,0.0,0,38.9071266912,-77.0938888192,1473236939.0,3.44299999999 -937,0.0,0.0,0.0,0.0,1860,107.0,2175.6,0.0,0.0,158.721215461,0.0,0.0,0,38.9071399346,-77.0939215925,1473236940.0,2.96700000001 -938,0.0,0.0,0.0,0.0,1861,107.0,2178.62,0.0,0.0,158.117376484,0.0,0.0,0,38.9071525075,-77.0939524379,1473236941.0,3.079 -939,0.0,0.0,0.0,0.0,1862,107.0,2181.86,0.0,0.0,155.722918369,0.0,0.0,0,38.9071660861,-77.0939856302,1473236942.0,3.415 -940,0.0,0.0,0.0,0.0,1863,107.0,2185.12,0.0,0.0,156.401281001,0.0,0.0,0,38.9071797486,-77.0940188225,1473236943.0,3.07000000001 -941,0.0,0.0,0.0,0.0,1864,108.0,2188.23,0.0,0.0,154.811418247,0.0,0.0,0,38.9071932435,-77.0940502547,1473236944.0,3.126 -942,0.0,0.0,0.0,0.0,1865,108.0,2191.58,0.0,0.0,154.435508133,0.0,0.0,0,38.9072080795,-77.0940838661,1473236945.0,3.56400000001 -943,0.0,0.0,0.0,0.0,1866,108.0,2194.85,0.0,0.0,155.063320879,0.0,0.0,0,38.9072220773,-77.0941170584,1473236946.0,2.976 -944,0.0,0.0,0.0,0.0,1867,109.0,2197.94,0.0,0.0,157.912006781,0.0,0.0,0,38.9072357398,-77.0941480715,1473236947.0,3.135 -945,0.0,0.0,0.0,0.0,1868,109.0,2201.22,0.0,0.0,159.594312639,0.0,0.0,0,38.9072503243,-77.0941809285,1473236948.0,3.35900000001 -946,0.0,0.0,0.0,0.0,1869,110.0,2204.45,0.0,0.0,160.197063193,0.0,0.0,0,38.907264322,-77.094213618,1473236949.0,3.051 -947,0.0,0.0,0.0,0.0,1870,110.0,2207.4,0.0,0.0,159.835265887,0.0,0.0,0,38.9072773978,-77.0942432899,1473236950.0,2.827 -948,0.0,0.0,0.0,0.0,1871,110.0,2210.55,0.0,0.0,159.124443581,0.0,0.0,0,38.9072913956,-77.0942748897,1473236951.0,3.45199999999 -949,0.0,20.0,0.0,0.0,1872,111.0,2213.93,0.0,0.0,156.403187104,0.0,0.0,0,38.9073059801,-77.094309004,1473236952.0,3.21000000001 -950,0.0,20.0,0.0,0.0,1873,111.0,2216.96,0.0,0.0,156.071801136,0.0,0.0,0,38.9073196426,-77.0943392627,1473236953.0,2.939 -951,0.0,20.0,0.0,0.0,1874,112.0,2220.15,0.0,0.0,153.797192768,0.0,0.0,0,38.9073343109,-77.0943708625,1473236954.0,3.527 -952,0.0,0.0,0.0,0.0,1875,112.0,2223.5,0.0,0.0,154.559298582,0.0,0.0,0,38.9073494822,-77.0944043063,1473236955.0,3.238 -953,0.0,0.0,0.0,0.0,1876,113.0,2226.55,0.0,0.0,155.278668072,0.0,0.0,0,38.9073636476,-77.0944343973,1473236956.0,2.921 -954,0.0,0.0,0.0,0.0,1877,113.0,2229.77,0.0,0.0,152.70627246,0.0,0.0,0,38.907378735,-77.0944661647,1473236957.0,3.54599999999 -955,0.0,0.0,0.0,0.0,1878,113.0,2233.17,0.0,0.0,154.032860344,0.0,0.0,0,38.9073945768,-77.0944996923,1473236958.0,3.25599999999 -956,0.0,0.0,0.0,0.0,1879,113.0,2236.26,0.0,0.0,154.063063147,0.0,0.0,0,38.9074094128,-77.0945298672,1473236959.0,2.99500000001 -957,0.0,0.0,0.0,0.0,1880,113.0,2239.53,0.0,0.0,150.918052151,0.0,0.0,0,38.9074251708,-77.0945617184,1473236960.0,3.57399999999 -958,0.0,0.0,0.0,0.0,1881,114.0,2242.89,0.0,0.0,153.358959549,0.0,0.0,0,38.9074410964,-77.0945945755,1473236961.0,3.2 -959,0.0,0.0,0.0,0.0,1882,114.0,2246.01,0.0,0.0,152.246726696,0.0,0.0,0,38.9074561838,-77.094624918,1473236962.0,3.08799999999 -960,0.0,0.0,0.0,0.0,1883,114.0,2249.33,0.0,0.0,152.101970215,0.0,0.0,0,38.9074721932,-77.0946573559,1473236963.0,3.57399999999 -961,0.0,0.0,0.0,0.0,1884,113.0,2252.7,0.0,0.0,151.909522426,0.0,0.0,0,38.9074882865,-77.094690213,1473236964.0,3.135 -962,0.0,0.0,0.0,0.0,1885,114.0,2255.89,0.0,0.0,154.545028802,0.0,0.0,0,38.907503793,-77.094721226,1473236965.0,3.172 -963,0.0,0.0,0.0,0.0,1886,113.0,2259.12,0.0,0.0,158.52624124,0.0,0.0,0,38.9075196348,-77.0947524905,1473236966.0,3.28399999999 -964,0.0,0.0,0.0,0.0,1887,113.0,2262.44,0.0,0.0,161.072590047,0.0,0.0,0,38.9075358119,-77.094784677,1473236967.0,3.29399999999 -965,0.0,0.0,0.0,0.0,1888,113.0,2265.37,0.0,0.0,165.588074218,0.0,0.0,0,38.9075502288,-77.094812924,1473236968.0,2.53800000001 -966,0.0,0.0,0.0,0.0,1889,113.0,2268.2,0.0,0.0,173.137201113,0.0,0.0,0,38.9075643104,-77.0948401652,1473236969.0,3.135 -967,0.0,0.0,0.0,0.0,1890,113.0,2271.32,0.0,0.0,177.643114214,0.0,0.0,0,38.907579314,-77.0948705915,1473236970.0,3.079 -968,0.0,0.0,0.0,0.0,1891,113.0,2274.02,0.0,0.0,178.504089366,0.0,0.0,0,38.9075925574,-77.0948966593,1473236971.0,2.361 -969,0.0,0.0,0.0,0.0,1892,112.0,2276.62,0.0,0.0,181.170786799,0.0,0.0,0,38.907605717,-77.0949214697,1473236972.0,2.818 -970,0.0,0.0,0.0,0.0,1893,112.0,2279.48,0.0,0.0,190.262512849,0.0,0.0,0,38.9076206367,-77.0949482918,1473236973.0,2.883 -971,0.0,0.0,0.0,0.0,1894,112.0,2282.21,0.0,0.0,191.400404675,0.0,0.0,0,38.9076349698,-77.0949738566,1473236974.0,2.60300000001 -972,0.0,0.0,0.0,0.0,1895,112.0,2284.66,0.0,0.0,190.0671406,0.0,0.0,0,38.907648297,-77.0949964877,1473236975.0,2.295 -973,0.0,0.0,0.0,0.0,1896,111.0,2287.14,0.0,0.0,200.802165534,0.0,0.0,0,38.9076618757,-77.0950191189,1473236976.0,2.678 -974,0.0,0.0,0.0,0.0,1897,110.0,2289.73,0.0,0.0,210.75527025,0.0,0.0,0,38.9076764602,-77.0950424206,1473236977.0,2.482 -975,0.0,0.0,0.0,0.0,1898,109.0,2292.11,0.0,0.0,220.022211766,0.0,0.0,0,38.9076901227,-77.0950635429,1473236978.0,2.249 -976,0.0,0.0,0.0,0.0,1899,109.0,2294.28,0.0,0.0,234.099002596,0.0,0.0,0,38.9077026118,-77.0950828213,1473236979.0,2.071 -977,0.0,0.0,0.0,0.0,1900,108.0,2296.26,0.0,0.0,260.604105135,0.0,0.0,0,38.9077143464,-77.095100088,1473236980.0,1.913 -978,0.0,0.0,0.0,0.0,1901,108.0,2298.09,0.0,0.0,281.11628722,0.0,0.0,0,38.9077250753,-77.0951160137,1473236981.0,1.782 -979,0.0,0.0,0.0,0.0,1902,108.0,2299.8,0.0,0.0,302.113223143,0.0,0.0,0,38.9077352174,-77.0951308496,1473236982.0,1.67 -980,0.0,0.0,0.0,0.0,1903,108.0,2301.37,0.0,0.0,319.678052372,0.0,0.0,0,38.9077444375,-77.095144596,1473236983.0,1.549 -981,0.0,0.0,0.0,0.0,1904,107.0,2302.88,0.0,0.0,339.830820155,0.0,0.0,0,38.9077534899,-77.0951575879,1473236984.0,1.465 -982,0.0,0.0,0.0,0.0,1905,106.0,2304.3,0.0,0.0,361.155321803,0.0,0.0,0,38.9077619556,-77.0951698255,1473236985.0,1.372 -983,0.0,0.0,0.0,0.0,1906,107.0,2305.65,0.0,0.0,383.010896743,0.0,0.0,0,38.9077699184,-77.095181644,1473236986.0,1.372 -984,0.0,0.0,0.0,0.0,1907,106.0,2306.92,0.0,0.0,405.500767116,0.0,0.0,0,38.9077773783,-77.0951927081,1473236987.0,1.185 -985,0.0,0.0,0.0,0.0,1908,106.0,2308.08,0.0,0.0,430.970149253,0.0,0.0,0,38.9077842515,-77.0952027664,1473236988.0,1.157 -986,0.0,0.0,0.0,0.0,1909,105.0,2309.21,0.0,0.0,456.552416565,0.0,0.0,0,38.9077908732,-77.095212657,1473236989.0,1.101 -987,0.0,0.0,0.0,0.0,1910,105.0,2310.29,0.0,0.0,486.139755709,0.0,0.0,0,38.9077973273,-77.0952220447,1473236990.0,1.036 -988,0.0,0.0,0.0,0.0,1911,104.0,2311.33,0.0,0.0,506.754533369,0.0,0.0,0,38.9078033622,-77.0952312648,1473236991.0,0.979999999999 -989,0.0,0.0,0.0,0.0,1912,104.0,2312.28,0.0,0.0,534.771738124,0.0,0.0,0,38.9078083076,-77.0952402335,1473236992.0,0.941999999999 -990,0.0,0.0,0.0,0.0,1913,104.0,2313.22,0.0,0.0,563.868479508,0.0,0.0,0,38.9078135043,-77.0952488668,1473236993.0,0.877 -991,0.0,0.0,0.0,0.0,1914,103.0,2314.08,0.0,0.0,592.575110819,0.0,0.0,0,38.9078183658,-77.0952565782,1473236994.0,0.848999999999 -992,0.0,0.0,0.0,0.0,1915,103.0,2314.91,0.0,0.0,621.148075248,0.0,0.0,0,38.9078230597,-77.0952639543,1473236995.0,0.812 -993,0.0,0.0,0.0,0.0,1916,103.0,2315.68,0.0,0.0,651.100387842,0.0,0.0,0,38.9078275859,-77.0952707436,1473236996.0,0.756 -994,0.0,0.0,0.0,0.0,1917,103.0,2316.42,0.0,0.0,680.095861131,0.0,0.0,0,38.9078319445,-77.0952771138,1473236997.0,0.737 -995,0.0,0.0,0.0,0.0,1918,103.0,2317.1,0.0,0.0,711.781054915,0.0,0.0,0,38.9078359678,-77.095283065,1473236998.0,0.709 -996,0.0,0.0,0.0,0.0,1919,103.0,2317.76,0.0,0.0,743.3867542,0.0,0.0,0,38.9078399073,-77.0952888485,1473236999.0,0.672 -997,0.0,0.0,0.0,0.0,1920,103.0,2318.38,0.0,0.0,802.072193442,0.0,0.0,0,38.9078433439,-77.0952943806,1473237000.0,0.644 -998,0.0,0.0,0.0,0.0,1921,103.0,2318.97,0.0,0.0,776.972029007,0.0,0.0,0,38.9078466967,-77.095299745,1473237001.0,0.625 -999,0.0,0.0,0.0,0.0,1922,103.0,2319.54,0.0,0.0,859.989278056,0.0,0.0,0,38.9078498818,-77.0953048579,1473237002.0,0.597 -1000,0.0,0.0,0.0,0.0,1923,103.0,2320.08,0.0,0.0,843.490517122,0.0,0.0,0,38.9078530669,-77.0953095518,1473237003.0,0.588 -1001,0.0,0.0,0.0,0.0,1924,103.0,2320.77,0.0,0.0,710.345209321,0.0,0.0,0,38.9078569226,-77.0953158382,1473237004.0,0.84 -1002,0.0,0.0,0.0,0.0,1925,101.0,2321.41,0.0,0.0,530.354166379,0.0,0.0,0,38.9078606106,-77.0953214541,1473237005.0,0.504 -1003,0.0,0.0,0.0,0.0,1926,100.0,2322.26,0.0,0.0,453.547685336,0.0,0.0,0,38.9078653883,-77.0953291655,1473237006.0,1.232 -1004,0.0,0.0,0.0,0.0,1927,99.0,2323.59,0.0,0.0,398.996808025,0.0,0.0,0,38.9078730159,-77.0953409839,1473237007.0,1.502 -1005,0.0,0.0,0.0,0.0,1928,99.0,2325.09,0.0,0.0,359.768253177,0.0,0.0,0,38.9078815654,-77.0953543112,1473237008.0,1.596 -1006,0.0,0.0,0.0,0.0,1929,99.0,2326.44,0.0,0.0,323.79879059,0.0,0.0,0,38.9078893606,-77.0953662973,1473237009.0,1.092 -1007,0.0,0.0,0.0,0.0,1930,99.0,2327.76,0.0,0.0,327.882813831,0.0,0.0,0,38.9078970719,-77.0953779481,1473237010.0,1.54 -1008,0.0,22.0,0.0,0.0,1931,99.0,2329.38,0.0,0.0,329.013898345,0.0,0.0,0,38.9079063758,-77.0953922812,1473237011.0,1.67 -1009,0.0,22.0,0.0,0.0,1932,99.0,2331.05,0.0,0.0,329.271838848,0.0,0.0,0,38.9079159312,-77.095407201,1473237012.0,1.624 -1010,0.0,22.0,0.0,0.0,1933,99.0,2332.58,0.0,0.0,327.541566585,0.0,0.0,0,38.9079251513,-77.0954203606,1473237013.0,1.437 -1011,0.0,0.0,0.0,0.0,1934,99.0,2333.96,0.0,0.0,358.303965851,0.0,0.0,0,38.9079332817,-77.0954324305,1473237014.0,1.362 -1012,0.0,0.0,0.0,0.0,1935,99.0,2335.27,0.0,0.0,389.13652122,0.0,0.0,0,38.9079410769,-77.0954436623,1473237015.0,1.278 -1013,0.0,0.0,0.0,0.0,1936,99.0,2336.51,0.0,0.0,414.623464457,0.0,0.0,0,38.9079485368,-77.0954543911,1473237016.0,1.222 -1014,0.0,0.0,0.0,0.0,1937,99.0,2337.68,0.0,0.0,435.402153261,0.0,0.0,0,38.9079554938,-77.0954645332,1473237017.0,1.148 -1015,0.0,0.0,0.0,0.0,1938,98.0,2338.79,0.0,0.0,461.612245713,0.0,0.0,0,38.9079620317,-77.0954741724,1473237018.0,1.082 -1016,0.0,0.0,0.0,0.0,1939,98.0,2339.83,0.0,0.0,481.163791487,0.0,0.0,0,38.9079680666,-77.0954833087,1473237019.0,1.036 -1017,0.0,0.0,0.0,0.0,1940,97.0,2340.83,0.0,0.0,508.452192287,0.0,0.0,0,38.9079738501,-77.0954921935,1473237020.0,0.97 -1018,0.0,0.0,0.0,0.0,1941,96.0,2341.76,0.0,0.0,540.045167414,0.0,0.0,0,38.9079789631,-77.095500743,1473237021.0,0.933 -1019,0.0,0.0,0.0,0.0,1942,96.0,2342.66,0.0,0.0,573.104290095,0.0,0.0,0,38.907983657,-77.0955092087,1473237022.0,0.923999999999 -1020,0.0,0.0,0.0,0.0,1943,96.0,2343.5,0.0,0.0,609.888107974,0.0,0.0,0,38.9079881832,-77.0955170039,1473237023.0,0.774 -1021,0.0,0.0,0.0,0.0,1944,95.0,2344.28,0.0,0.0,646.711012565,0.0,0.0,0,38.9079923742,-77.0955241285,1473237024.0,0.756 -1022,0.0,0.0,0.0,0.0,1945,95.0,2345.01,0.0,0.0,684.789375389,0.0,0.0,0,38.9079962298,-77.0955309179,1473237025.0,0.746 -1023,0.0,0.0,0.0,0.0,1946,94.0,2345.7,0.0,0.0,721.694576356,0.0,0.0,0,38.9080000855,-77.0955372881,1473237026.0,0.7 -1024,0.0,0.0,0.0,0.0,1947,91.0,2346.4,0.0,0.0,740.655239415,0.0,0.0,0,38.9080038574,-77.0955437422,1473237027.0,0.672 -1025,0.0,0.0,0.0,0.0,1948,90.0,2347.06,0.0,0.0,778.564206269,0.0,0.0,0,38.9080074616,-77.0955496933,1473237028.0,0.644 -1026,0.0,0.0,0.0,0.0,1949,90.0,2347.66,0.0,0.0,819.282578009,0.0,0.0,0,38.9080108143,-77.0955551416,1473237029.0,0.606 -1027,0.0,0.0,0.0,0.0,1950,89.0,2348.22,0.0,0.0,856.812213468,0.0,0.0,0,38.908013748,-77.0955604222,1473237030.0,0.588 -1028,0.0,0.0,0.0,0.0,1951,88.0,2348.75,0.0,0.0,902.06185567,0.0,0.0,0,38.908016514,-77.0955653675,1473237031.0,0.551 -1029,0.0,0.0,0.0,0.0,1952,88.0,2349.26,0.0,0.0,945.690353958,0.0,0.0,0,38.9080193639,-77.0955700614,1473237032.0,0.532 -1030,0.0,0.0,0.0,0.0,1953,89.0,2349.74,0.0,0.0,988.100024809,0.0,0.0,0,38.9080220461,-77.0955743361,1473237033.0,0.504 -1031,0.0,0.0,0.0,0.0,1954,90.0,2350.16,0.0,0.0,1043.48297451,0.0,0.0,0,38.908024393,-77.0955781918,1473237034.0,0.475999999999 -1032,0.0,0.0,0.0,0.0,1955,90.0,2350.59,0.0,0.0,1083.77434974,0.0,0.0,0,38.90802674,-77.0955820475,1473237035.0,0.467000000001 -1033,0.0,0.0,0.0,0.0,1956,89.0,2351.0,0.0,0.0,1142.08304081,0.0,0.0,0,38.9080289192,-77.095585987,1473237036.0,0.439 -1034,0.0,0.0,0.0,0.0,1957,88.0,2351.42,0.0,0.0,1189.12797282,0.0,0.0,0,38.9080309309,-77.0955900103,1473237037.0,0.410999999998 -1035,0.0,0.0,0.0,0.0,1958,86.0,2351.81,0.0,0.0,1230.89711619,0.0,0.0,0,38.9080329426,-77.0955937821,1473237038.0,0.419999999999 -1036,0.0,0.0,0.0,0.0,1959,86.0,2352.2,0.0,0.0,1265.44833027,0.0,0.0,0,38.9080349542,-77.0955974702,1473237039.0,0.372999999999 -1037,0.0,0.0,0.0,0.0,1960,85.0,2352.59,0.0,0.0,1321.08706593,0.0,0.0,0,38.9080367982,-77.095601242,1473237040.0,0.392000000001 -1038,0.0,0.0,0.0,0.0,1961,85.0,2352.98,0.0,0.0,1362.22106902,0.0,0.0,0,38.9080390614,-77.0956047624,1473237041.0,0.372999999999 -1039,0.0,0.0,0.0,0.0,1962,85.0,2353.35,0.0,0.0,1431.59930094,0.0,0.0,0,38.9080409892,-77.095608199,1473237042.0,0.354999999999 -1040,0.0,0.0,0.0,0.0,1963,86.0,2353.7,0.0,0.0,1492.2866224,0.0,0.0,0,38.9080427494,-77.0956115518,1473237043.0,0.307999999999 -1041,0.0,0.0,0.0,0.0,1964,87.0,2354.03,0.0,0.0,1604.38949854,0.0,0.0,0,38.9080445934,-77.0956144854,1473237044.0,0.335999999999 -1042,0.0,0.0,0.0,0.0,1965,87.0,2354.37,0.0,0.0,1698.40452908,0.0,0.0,0,38.9080465212,-77.0956175867,1473237045.0,0.289 -1043,0.0,0.0,0.0,0.0,1966,88.0,2354.67,0.0,0.0,1777.05977383,0.0,0.0,0,38.9080483653,-77.0956201851,1473237046.0,0.280000000001 -1044,0.0,0.0,0.0,0.0,1967,88.0,2354.94,0.0,0.0,1853.42683377,0.0,0.0,0,38.9080501255,-77.0956222806,1473237047.0,0.261 -1045,0.0,0.0,0.0,0.0,1968,88.0,2355.2,0.0,0.0,1949.56451286,0.0,0.0,0,38.9080516342,-77.0956246275,1473237048.0,0.261 -1046,0.0,0.0,0.0,0.0,1969,87.0,2355.45,0.0,0.0,2009.46449076,0.0,0.0,0,38.9080529753,-77.0956269745,1473237049.0,0.252 -1047,0.0,0.0,0.0,0.0,1970,85.0,2355.68,0.0,0.0,2137.46391295,0.0,0.0,0,38.9080541488,-77.0956291538,1473237050.0,0.233 -1048,0.0,0.0,0.0,0.0,1971,84.0,2355.94,0.0,0.0,2254.36233751,0.0,0.0,0,38.9080554061,-77.0956316683,1473237051.0,0.233 -1049,0.0,0.0,0.0,0.0,1972,82.0,2356.17,0.0,0.0,2242.7184466,0.0,0.0,0,38.9080566633,-77.0956337638,1473237052.0,0.196 -1050,0.0,0.0,0.0,0.0,1973,81.0,2356.17,0.0,0.0,2502.11217261,0.0,0.0,0,38.9080562443,-77.0956342667,1473237053.0,0.187 -1051,0.0,0.0,0.0,0.0,1974,80.0,2356.25,0.0,0.0,3102.08685843,0.0,0.0,0,38.9080567472,-77.0956350211,1473237054.0,0.196 -1052,0.0,0.0,0.0,0.0,1975,79.0,2356.37,0.0,0.0,4413.28187688,0.0,0.0,0,38.9080573339,-77.0956361108,1473237055.0,0.177 -1053,0.0,0.0,0.0,0.0,1976,79.0,2356.49,0.0,0.0,7354.8140601,0.0,0.0,0,38.9080583397,-77.0956367813,1473237056.0,0.0 -1054,0.0,0.0,0.0,0.0,1977,79.0,2356.52,0.0,0.0,57663.5047429,0.0,0.0,0,38.9080590103,-77.095636446,1473237057.0,0.0 -1055,0.0,0.0,0.0,0.0,1978,79.0,2356.52,0.0,0.0,137500.0,0.0,0.0,0,38.9080590941,-77.0956359431,1473237058.0,0.0 -1056,0.0,0.0,0.0,0.0,1979,78.0,2356.52,0.0,0.0,36252.3540489,0.0,0.0,0,38.908058675,-77.0956360269,1473237059.0,0.0 -1057,0.0,0.0,0.0,0.0,1980,78.0,2356.52,0.0,0.0,29868.1148177,0.0,0.0,0,38.9080581721,-77.0956356917,1473237060.0,0.0 -1058,0.0,0.0,0.0,0.0,1981,77.0,2356.63,0.0,0.0,21321.7648143,0.0,0.0,0,38.9080576692,-77.095634602,1473237061.0,0.177 -1059,0.0,0.0,0.0,0.0,1982,77.0,2356.75,0.0,0.0,7299.96207812,0.0,0.0,0,38.9080573339,-77.0956332609,1473237062.0,0.0 -1060,0.0,0.0,0.0,0.0,1983,77.0,2356.83,0.0,0.0,3201.57445393,0.0,0.0,0,38.9080572501,-77.0956322551,1473237063.0,0.0 -1061,0.0,0.0,0.0,0.0,1984,77.0,2356.98,0.0,0.0,2076.18054682,0.0,0.0,0,38.908056831,-77.0956305787,1473237064.0,0.271000000001 -1062,0.0,0.0,0.0,0.0,1985,77.0,2357.34,0.0,0.0,1600.4101484,0.0,0.0,0,38.9080555737,-77.0956268068,1473237065.0,0.419999999999 -1063,0.0,0.0,0.0,0.0,1986,77.0,2357.56,0.0,0.0,1188.03937502,0.0,0.0,0,38.9080548193,-77.0956243761,1473237066.0,0.485000000001 -1064,0.0,0.0,0.0,0.0,1987,77.0,2358.01,0.0,0.0,982.602407589,0.0,0.0,0,38.9080532268,-77.0956195984,1473237067.0,0.410999999998 -1065,0.0,0.0,0.0,0.0,1988,77.0,2358.25,0.0,0.0,940.546086759,0.0,0.0,0,38.9080524724,-77.095617,1473237068.0,0.485000000001 -1066,0.0,0.0,0.0,0.0,1989,77.0,2358.8,0.0,0.0,916.194026891,0.0,0.0,0,38.9080502931,-77.0956113003,1473237069.0,0.597 -1067,0.0,0.0,0.0,0.0,1990,77.0,2359.12,0.0,0.0,839.609200081,0.0,0.0,0,38.9080491196,-77.0956079476,1473237070.0,0.672 -1068,0.0,0.0,0.0,0.0,1991,77.0,2359.76,0.0,0.0,759.553606071,0.0,0.0,0,38.9080466051,-77.0956013259,1473237071.0,0.569 -1069,0.0,0.0,0.0,0.0,1992,78.0,2360.07,0.0,0.0,731.600717032,0.0,0.0,0,38.9080455154,-77.0955979731,1473237072.0,0.644 -1070,0.0,0.0,0.0,0.0,1993,78.0,2360.81,0.0,0.0,692.379627854,0.0,0.0,0,38.9080424979,-77.0955903456,1473237073.0,0.802 -1071,0.0,0.0,0.0,0.0,1994,79.0,2361.17,0.0,0.0,648.326419723,0.0,0.0,0,38.9080414083,-77.0955864061,1473237074.0,0.756 -1072,0.0,0.0,0.0,0.0,1995,79.0,2361.97,0.0,0.0,605.768171734,0.0,0.0,0,38.908038307,-77.095578108,1473237075.0,0.756 -1073,0.0,0.0,0.0,0.0,1996,79.0,2362.43,0.0,0.0,604.376628677,0.0,0.0,0,38.9080365468,-77.0955733303,1473237076.0,0.886 -1074,0.0,0.0,0.0,0.0,1997,78.0,2363.31,0.0,0.0,635.708663801,0.0,0.0,0,38.9080331102,-77.0955641102,1473237077.0,0.812 -1075,0.0,0.0,0.0,0.0,1998,79.0,2363.7,0.0,0.0,692.114093959,0.0,0.0,0,38.9080319367,-77.0955599193,1473237078.0,0.737 -1076,0.0,0.0,0.0,0.0,1999,79.0,2364.43,0.0,0.0,801.832760595,0.0,0.0,0,38.9080291707,-77.0955522079,1473237079.0,0.616 -1077,0.0,0.0,0.0,0.0,2000,79.0,2364.68,0.0,0.0,989.810521986,0.0,0.0,0,38.9080281649,-77.0955496095,1473237080.0,0.495 -1078,0.0,0.0,0.0,0.0,2001,79.0,2365.16,0.0,0.0,1184.7733544,0.0,0.0,0,38.9080259856,-77.0955449156,1473237081.0,0.383 -1079,0.0,0.0,0.0,0.0,2002,80.0,2365.37,0.0,0.0,1385.70623028,0.0,0.0,0,38.908025315,-77.0955425687,1473237082.0,0.363999999999 -1080,0.0,0.0,0.0,0.0,2003,81.0,2365.78,0.0,0.0,1483.08893398,0.0,0.0,0,38.9080238901,-77.0955382101,1473237083.0,0.335999999999 -1081,0.0,0.0,0.0,0.0,2004,82.0,2366.01,0.0,0.0,1475.96289008,0.0,0.0,0,38.9080231357,-77.0955357794,1473237084.0,0.326999999999 -1082,0.0,0.0,0.0,0.0,2005,82.0,2366.37,0.0,0.0,1626.66892006,0.0,0.0,0,38.9080221299,-77.0955317561,1473237085.0,0.307999999999 -1083,0.0,0.0,0.0,0.0,2006,83.0,2366.59,0.0,0.0,2054.17326196,0.0,0.0,0,38.9080215432,-77.0955293253,1473237086.0,0.307999999999 -1084,0.0,0.0,0.0,0.0,2007,83.0,2366.92,0.0,0.0,3772.16760836,0.0,0.0,0,38.9080203697,-77.0955258049,1473237087.0,0.215 -1085,0.0,0.0,0.0,0.0,2008,83.0,2366.96,0.0,0.0,8993.92617973,0.0,0.0,0,38.9080202859,-77.095525302,1473237088.0,0.0 -1086,0.0,0.0,0.0,0.0,2009,84.0,2366.99,0.0,0.0,6243.24324324,0.0,0.0,0,38.9080196992,-77.0955253858,1473237089.0,0.0 -1087,0.0,0.0,0.0,0.0,2010,85.0,2367.01,0.0,0.0,2952.15213168,0.0,0.0,0,38.9080195315,-77.095525302,1473237090.0,0.0 -1088,0.0,0.0,0.0,0.0,2011,85.0,2367.01,0.0,0.0,1582.38686961,0.0,0.0,0,38.9080194477,-77.0955247991,1473237091.0,0.392000000001 -1089,0.0,0.0,0.0,0.0,2012,86.0,2367.53,0.0,0.0,1051.00323036,0.0,0.0,0,38.9080230519,-77.0955287386,1473237092.0,0.653 -1090,0.0,0.0,0.0,0.0,2013,86.0,2368.15,0.0,0.0,861.573808156,0.0,0.0,0,38.9080272429,-77.0955333486,1473237093.0,0.579 -1091,0.0,0.0,0.0,0.0,2014,85.0,2368.72,0.0,0.0,854.587023596,0.0,0.0,0,38.9080310985,-77.0955377072,1473237094.0,0.579 -1092,0.0,0.0,0.0,0.0,2015,85.0,2369.27,0.0,0.0,886.960528337,0.0,0.0,0,38.9080348704,-77.0955418982,1473237095.0,0.551 -1093,0.0,0.0,0.0,0.0,2016,84.0,2369.81,0.0,0.0,834.857279161,0.0,0.0,0,38.9080385584,-77.0955459215,1473237096.0,0.541 -1094,0.0,0.0,0.0,0.0,2017,84.0,2370.33,0.0,0.0,728.715819758,0.0,0.0,0,38.9080421627,-77.095549861,1473237097.0,0.523 -1095,0.0,0.0,0.0,0.0,2018,84.0,2371.05,0.0,0.0,649.398111966,0.0,0.0,0,38.9080469403,-77.095555393,1473237098.0,0.923999999999 -1096,0.0,0.0,0.0,0.0,2019,85.0,2371.97,0.0,0.0,597.810615667,0.0,0.0,0,38.9080529753,-77.0955626015,1473237099.0,0.933 -1097,0.0,0.0,0.0,0.0,2020,85.0,2372.84,0.0,0.0,573.722040364,0.0,0.0,0,38.9080587588,-77.0955694746,1473237100.0,0.84 -1098,0.0,0.0,0.0,0.0,2021,85.0,2373.66,0.0,0.0,608.5513317,0.0,0.0,0,38.9080642071,-77.0955758449,1473237101.0,0.812 -1099,0.0,0.0,0.0,0.0,2022,84.0,2374.43,0.0,0.0,651.247237133,0.0,0.0,0,38.9080694038,-77.0955817122,1473237102.0,0.765 -1100,0.0,0.0,0.0,0.0,2023,83.0,2375.18,0.0,0.0,625.497554873,0.0,0.0,0,38.9080745168,-77.0955874957,1473237103.0,0.756 -1101,0.0,0.0,0.0,0.0,2024,83.0,2375.91,0.0,0.0,582.098578773,0.0,0.0,0,38.9080791268,-77.095593363,1473237104.0,0.709 -1102,0.0,0.0,0.0,0.0,2025,83.0,2376.77,0.0,0.0,545.738045738,0.0,0.0,0,38.9080846589,-77.0956004038,1473237105.0,1.073 -1103,0.0,0.0,0.0,0.0,2026,83.0,2377.81,0.0,0.0,523.714518908,0.0,0.0,0,38.9080911968,-77.0956090372,1473237106.0,1.026 -1104,0.0,0.0,0.0,0.0,2027,84.0,2378.79,0.0,0.0,518.881910564,0.0,0.0,0,38.9080973994,-77.0956170838,1473237107.0,0.933 -1105,0.0,0.0,0.0,0.0,2028,83.0,2379.7,0.0,0.0,537.239287774,0.0,0.0,0,38.9081030991,-77.0956246275,1473237108.0,0.896 -1106,0.0,0.0,0.0,0.0,2029,83.0,2380.56,0.0,0.0,592.547750114,0.0,0.0,0,38.9081083797,-77.0956317522,1473237109.0,0.83 -1107,0.0,0.0,0.0,0.0,2030,83.0,2381.39,0.0,0.0,626.399908887,0.0,0.0,0,38.9081135765,-77.0956387091,1473237110.0,0.812 -1108,0.0,0.0,0.0,0.0,2031,82.0,2382.17,0.0,0.0,655.233643269,0.0,0.0,0,38.908118438,-77.095645247,1473237111.0,0.756 -1109,0.0,0.0,0.0,0.0,2032,81.0,2382.91,0.0,0.0,689.98476657,0.0,0.0,0,38.9081232157,-77.0956511982,1473237112.0,0.737 -1110,0.0,0.0,0.0,0.0,2033,80.0,2383.59,0.0,0.0,722.565953693,0.0,0.0,0,38.9081274904,-77.0956568141,1473237113.0,0.681 -1111,0.0,0.0,0.0,0.0,2034,80.0,2384.24,0.0,0.0,758.690454295,0.0,0.0,0,38.9081316814,-77.0956620108,1473237114.0,0.662 -1112,0.0,0.0,0.0,0.0,2035,80.0,2384.85,0.0,0.0,793.7053326,0.0,0.0,0,38.9081358723,-77.0956665371,1473237115.0,0.625 -1113,0.0,0.0,0.0,0.0,2036,81.0,2385.42,0.0,0.0,834.043413585,0.0,0.0,0,38.9081398956,-77.095670728,1473237116.0,0.606 -1114,0.0,0.0,0.0,0.0,2037,81.0,2385.95,0.0,0.0,870.325298209,0.0,0.0,0,38.9081434999,-77.0956747513,1473237117.0,0.579 -1115,0.0,0.0,0.0,0.0,2038,81.0,2386.47,0.0,0.0,909.828511111,0.0,0.0,0,38.9081471041,-77.095678607,1473237118.0,0.541 -1116,0.0,0.0,0.0,0.0,2039,81.0,2386.95,0.0,0.0,951.361146575,0.0,0.0,0,38.908150373,-77.0956822112,1473237119.0,0.523 -1117,0.0,0.0,0.0,0.0,2040,81.0,2387.44,0.0,0.0,1008.48700754,0.0,0.0,0,38.908153642,-77.0956859831,1473237120.0,0.504 -1118,0.0,0.0,0.0,0.0,2041,82.0,2387.89,0.0,0.0,1050.42972125,0.0,0.0,0,38.9081566595,-77.0956894197,1473237121.0,0.485000000001 -1119,0.0,0.0,0.0,0.0,2042,82.0,2388.31,0.0,0.0,1075.40898129,0.0,0.0,0,38.9081596769,-77.095692521,1473237122.0,0.448000000001 -1120,0.0,0.0,0.0,0.0,2043,81.0,2388.73,0.0,0.0,1116.17928448,0.0,0.0,0,38.9081625268,-77.0956957061,1473237123.0,0.429 -1121,0.0,0.0,0.0,0.0,2044,79.0,2389.15,0.0,0.0,1164.77244078,0.0,0.0,0,38.9081653766,-77.0956988074,1473237124.0,0.457 -1122,0.0,0.0,0.0,0.0,2045,79.0,2389.57,0.0,0.0,1217.45546537,0.0,0.0,0,38.9081682265,-77.0957019925,1473237125.0,0.429 -1123,0.0,0.0,0.0,0.0,2046,79.0,2389.93,0.0,0.0,1265.50379103,0.0,0.0,0,38.9081707411,-77.0957046747,1473237126.0,0.372999999999 -1124,0.0,0.0,0.0,0.0,2047,80.0,2390.29,0.0,0.0,1344.05473969,0.0,0.0,0,38.9081731718,-77.0957073569,1473237127.0,0.363999999999 -1125,0.0,0.0,0.0,0.0,2048,80.0,2390.64,0.0,0.0,1428.5890982,0.0,0.0,0,38.9081756026,-77.0957099553,1473237128.0,0.354999999999 -1126,0.0,0.0,0.0,0.0,2049,81.0,2391.0,0.0,0.0,1486.25694874,0.0,0.0,0,38.9081780333,-77.0957126375,1473237129.0,0.345 -1127,0.0,0.0,0.0,0.0,2050,82.0,2391.25,0.0,0.0,1514.65477674,0.0,0.0,0,38.9081799611,-77.0957143139,1473237130.0,0.316999999999 -1128,0.0,0.0,0.0,0.0,2051,82.0,2391.52,0.0,0.0,1584.07965658,0.0,0.0,0,38.9081820566,-77.0957159903,1473237131.0,0.326999999999 -1129,0.0,0.0,0.0,0.0,2052,83.0,2391.79,0.0,0.0,1645.51010814,0.0,0.0,0,38.9081839006,-77.0957179181,1473237132.0,0.298999999999 -1130,0.0,0.0,0.0,0.0,2053,83.0,2391.97,0.0,0.0,1707.34231105,0.0,0.0,0,38.9081852417,-77.0957191754,1473237133.0,0.298999999999 -1131,0.0,0.0,0.0,0.0,2054,83.0,2392.24,0.0,0.0,1770.06068779,0.0,0.0,0,38.9081869181,-77.0957214385,1473237134.0,0.271000000001 -1132,0.0,0.0,0.0,0.0,2055,83.0,2392.46,0.0,0.0,1854.17068002,0.0,0.0,0,38.9081882592,-77.0957232825,1473237135.0,0.280000000001 -1133,0.0,0.0,0.0,0.0,2056,83.0,2392.72,0.0,0.0,1885.56036242,0.0,0.0,0,38.9081899356,-77.0957254618,1473237136.0,0.261 -1134,0.0,0.0,0.0,0.0,2057,83.0,2392.97,0.0,0.0,1948.87370286,0.0,0.0,0,38.908191612,-77.0957273059,1473237137.0,0.252 -1135,0.0,0.0,0.0,0.0,2058,83.0,2393.22,0.0,0.0,2003.12174818,0.0,0.0,0,38.908193456,-77.0957290661,1473237138.0,0.252 -1136,0.0,0.0,0.0,0.0,2059,83.0,2393.25,0.0,0.0,2079.91932434,0.0,0.0,0,38.9081931207,-77.0957300719,1473237139.0,0.252 -1137,0.0,0.0,0.0,0.0,2060,82.0,2393.34,0.0,0.0,2122.18649518,0.0,0.0,0,38.9081935398,-77.0957309939,1473237140.0,0.224 -1138,0.0,0.0,0.0,0.0,2061,81.0,2393.47,0.0,0.0,2200.62875107,0.0,0.0,0,38.9081941266,-77.0957322512,1473237141.0,0.224 -1139,0.0,0.0,0.0,0.0,2062,81.0,2393.63,0.0,0.0,2302.35617749,0.0,0.0,0,38.9081952162,-77.0957335923,1473237142.0,0.224 -1140,0.0,0.0,0.0,0.0,2063,80.0,2393.79,0.0,0.0,2386.06784283,0.0,0.0,0,38.9081960544,-77.0957350172,1473237143.0,0.215 -1141,0.0,0.0,0.0,0.0,2064,80.0,2393.91,0.0,0.0,2443.87549988,0.0,0.0,0,38.9081966411,-77.0957362745,1473237144.0,0.196 -1142,0.0,0.0,0.0,0.0,2065,80.0,2394.07,0.0,0.0,2524.97649913,0.0,0.0,0,38.908197647,-77.0957376156,1473237145.0,0.196 -1143,0.0,0.0,0.0,0.0,2066,80.0,2394.2,0.0,0.0,2610.16949152,0.0,0.0,0,38.9081983175,-77.0957389567,1473237146.0,0.196 -1144,0.0,0.0,0.0,0.0,2067,80.0,2394.33,0.0,0.0,2459.06874747,0.0,0.0,0,38.9081989042,-77.0957402978,1473237147.0,0.187 -1145,0.0,0.0,0.0,0.0,2068,80.0,2394.48,0.0,0.0,2633.13879263,0.0,0.0,0,38.9081998263,-77.0957415551,1473237148.0,0.187 -1146,0.0,0.0,0.0,0.0,2069,81.0,2394.61,0.0,0.0,3206.5519156,0.0,0.0,0,38.9082004968,-77.0957428124,1473237149.0,0.177 -1147,0.0,0.0,0.0,0.0,2070,82.0,2394.7,0.0,0.0,4477.43836253,0.0,0.0,0,38.9082009997,-77.0957437344,1473237150.0,0.177 -1148,0.0,0.0,0.0,0.0,2071,81.0,2394.8,0.0,0.0,7622.7560718,0.0,0.0,0,38.908201335,-77.095744824,1473237151.0,0.0 -1149,0.0,0.0,0.0,0.0,2072,81.0,2394.93,0.0,0.0,21177.1177118,0.0,0.0,0,38.9082021732,-77.0957459975,1473237152.0,0.0 -1150,0.0,0.0,0.0,0.0,2073,81.0,2395.05,0.0,0.0,93220.338983,0.0,0.0,0,38.9082027599,-77.0957470872,1473237153.0,0.0 -1151,0.0,0.0,0.0,0.0,2074,81.0,2395.13,0.0,0.0,31073.4463277,0.0,0.0,0,38.908203179,-77.0957479253,1473237154.0,0.0 -1152,0.0,0.0,0.0,0.0,2075,81.0,2395.26,0.0,0.0,inf,0.0,0.0,0,38.9082040172,-77.0957489312,1473237155.0,0.0 -1153,0.0,0.0,0.0,0.0,2076,81.0,2395.38,0.0,0.0,inf,0.0,0.0,0,38.9082047716,-77.095749937,1473237156.0,0.0 -1154,0.0,0.0,0.0,0.0,2077,81.0,2395.48,0.0,0.0,inf,0.0,0.0,0,38.9082051907,-77.0957510266,1473237157.0,0.0 -1155,0.0,0.0,0.0,0.0,2078,79.0,2395.55,0.0,0.0,inf,0.0,0.0,0,38.9082055259,-77.095751781,1473237158.0,0.0 -1156,0.0,0.0,0.0,0.0,2079,79.0,2395.66,0.0,0.0,inf,0.0,0.0,0,38.9082062803,-77.095752703,1473237159.0,0.0 -1157,0.0,0.0,0.0,0.0,2080,78.0,2395.78,0.0,0.0,inf,0.0,0.0,0,38.9082068671,-77.0957537927,1473237160.0,0.0 -1158,0.0,0.0,0.0,0.0,2081,78.0,2395.85,0.0,0.0,inf,0.0,0.0,0,38.9082072861,-77.0957544632,1473237161.0,0.0 -1159,0.0,0.0,0.0,0.0,2082,78.0,2395.93,0.0,0.0,inf,0.0,0.0,0,38.9082076214,-77.0957553852,1473237162.0,0.0 -1160,0.0,0.0,0.0,0.0,2083,78.0,2395.98,0.0,0.0,inf,0.0,0.0,0,38.9082077891,-77.095755972,1473237163.0,0.0 -1161,0.0,0.0,0.0,0.0,2084,77.0,2396.08,0.0,0.0,inf,0.0,0.0,0,38.9082084596,-77.0957567263,1473237164.0,0.0 -1162,0.0,0.0,0.0,0.0,2085,76.0,2396.15,0.0,0.0,inf,0.0,0.0,0,38.9082088787,-77.0957573131,1473237165.0,0.0 -1163,0.0,0.0,0.0,0.0,2086,75.0,2396.23,0.0,0.0,inf,0.0,0.0,0,38.9082092978,-77.0957580674,1473237166.0,0.0 -1164,0.0,0.0,0.0,0.0,2087,75.0,2396.28,0.0,0.0,inf,0.0,0.0,0,38.9082095493,-77.0957586542,1473237167.0,0.0 -1165,0.0,0.0,0.0,0.0,2088,75.0,2396.35,0.0,0.0,inf,0.0,0.0,0,38.9082098007,-77.0957594924,1473237168.0,0.0 -1166,0.0,0.0,0.0,0.0,2089,75.0,2396.43,0.0,0.0,inf,0.0,0.0,0,38.9082103875,-77.0957599953,1473237169.0,0.0 -1167,0.0,0.0,0.0,0.0,2090,75.0,2396.51,0.0,0.0,inf,0.0,0.0,0,38.9082108904,-77.0957607497,1473237170.0,0.0 -1168,0.0,0.0,0.0,0.0,2091,75.0,2396.58,0.0,0.0,inf,0.0,0.0,0,38.9082113095,-77.0957612526,1473237171.0,0.0 -1169,0.0,0.0,0.0,0.0,2092,76.0,2396.64,0.0,0.0,inf,0.0,0.0,0,38.9082115609,-77.0957620069,1473237172.0,0.0 -1170,0.0,0.0,0.0,0.0,2093,76.0,2396.7,0.0,0.0,inf,0.0,0.0,0,38.9082118124,-77.0957625937,1473237173.0,0.0 -1171,0.0,0.0,0.0,0.0,2094,77.0,2396.76,0.0,0.0,inf,0.0,0.0,0,38.90821198,-77.095763348,1473237174.0,0.0 -1172,0.0,0.0,0.0,0.0,2095,77.0,2396.83,0.0,0.0,20295.202952,0.0,0.0,0,38.9082124829,-77.095763851,1473237175.0,0.0 -1173,0.0,0.0,0.0,0.0,2096,77.0,2396.88,0.0,0.0,33468.5598379,0.0,0.0,0,38.908212902,-77.0957641862,1473237176.0,0.0 -1174,0.0,0.0,0.0,0.0,2097,77.0,2396.95,0.0,0.0,12932.4823647,0.0,0.0,0,38.9082132373,-77.0957649406,1473237177.0,0.0 -1175,0.0,0.0,0.0,0.0,2098,77.0,2397.0,0.0,0.0,4386.2980404,0.0,0.0,0,38.9082134888,-77.0957654435,1473237178.0,0.0 -1176,0.0,0.0,0.0,0.0,2099,77.0,2397.21,0.0,0.0,2567.46543369,0.0,0.0,0,38.9082151651,-77.0957664493,1473237179.0,0.271000000001 -1177,0.0,0.0,0.0,0.0,2100,77.0,2397.52,0.0,0.0,1887.10072707,0.0,0.0,0,38.9082175121,-77.0957685448,1473237180.0,0.345 -1178,0.0,0.0,0.0,0.0,2101,77.0,2397.86,0.0,0.0,1606.21905768,0.0,0.0,0,38.9082196075,-77.0957713947,1473237181.0,0.307999999999 -1179,0.0,0.0,0.0,0.0,2102,77.0,2398.18,0.0,0.0,1557.23338277,0.0,0.0,0,38.9082214516,-77.0957742445,1473237182.0,0.289 -1180,0.0,0.0,0.0,0.0,2103,77.0,2398.48,0.0,0.0,1777.82566534,0.0,0.0,0,38.9082231279,-77.0957769267,1473237183.0,0.271000000001 -1181,0.0,0.0,0.0,0.0,2104,78.0,2398.77,0.0,0.0,1926.12357208,0.0,0.0,0,38.9082248043,-77.0957795251,1473237184.0,0.261 -1182,0.0,0.0,0.0,0.0,2105,78.0,2399.05,0.0,0.0,1982.28812686,0.0,0.0,0,38.9082262293,-77.0957821235,1473237185.0,0.252 -1183,0.0,0.0,0.0,0.0,2106,79.0,2399.32,0.0,0.0,2044.60966543,0.0,0.0,0,38.908227738,-77.0957845543,1473237186.0,0.243000000001 -1184,0.0,0.0,0.0,0.0,2107,79.0,2399.44,0.0,0.0,2084.87517825,0.0,0.0,0,38.9082289115,-77.0957852248,1473237187.0,0.243000000001 -1185,0.0,0.0,0.0,0.0,2108,79.0,2399.59,0.0,0.0,2147.2392638,0.0,0.0,0,38.9082296658,-77.0957866497,1473237188.0,0.233 -1186,0.0,0.0,0.0,0.0,2109,79.0,2399.73,0.0,0.0,2211.37277426,0.0,0.0,0,38.9082302526,-77.0957881585,1473237189.0,0.224 -1187,0.0,0.0,0.0,0.0,2110,78.0,2399.91,0.0,0.0,2283.51126927,0.0,0.0,0,38.9082312584,-77.095789751,1473237190.0,0.224 -1188,0.0,0.0,0.0,0.0,2111,77.0,2400.05,0.0,0.0,2371.6145459,0.0,0.0,0,38.9082319289,-77.095791176,1473237191.0,0.205 -1189,0.0,0.0,0.0,0.0,2112,76.0,2400.19,0.0,0.0,2468.89829421,0.0,0.0,0,38.9082325157,-77.0957925171,1473237192.0,0.205 -1190,0.0,0.0,0.0,0.0,2113,76.0,2400.31,0.0,0.0,2379.48084054,0.0,0.0,0,38.908232851,-77.0957938582,1473237193.0,0.196 -1191,0.0,0.0,0.0,0.0,2114,75.0,2400.45,0.0,0.0,2837.07106187,0.0,0.0,0,38.9082336891,-77.0957951993,1473237194.0,0.187 -1192,0.0,0.0,0.0,0.0,2115,75.0,2400.58,0.0,0.0,2987.58406622,0.0,0.0,0,38.9082342759,-77.0957964566,1473237195.0,0.177 -1193,0.0,0.0,0.0,0.0,2116,75.0,2400.71,0.0,0.0,3577.51277683,0.0,0.0,0,38.9082347788,-77.0957977977,1473237196.0,0.177 -1194,0.0,0.0,0.0,0.0,2117,75.0,2400.82,0.0,0.0,4805.49199084,0.0,0.0,0,38.9082351141,-77.0957989711,1473237197.0,0.0 -1195,0.0,0.0,0.0,0.0,2118,76.0,2400.93,0.0,0.0,7516.59508005,0.0,0.0,0,38.9082353655,-77.0958003122,1473237198.0,0.168 -1196,0.0,0.0,0.0,0.0,2119,75.0,2401.06,0.0,0.0,14745.308311,0.0,0.0,0,38.9082361199,-77.0958014857,1473237199.0,0.0 -1197,0.0,0.0,0.0,0.0,2120,75.0,2401.19,0.0,0.0,40740.7407408,0.0,0.0,0,38.9082367066,-77.0958028268,1473237200.0,0.0 -1198,0.0,0.0,0.0,0.0,2121,75.0,2401.31,0.0,0.0,49107.1428571,0.0,0.0,0,38.9082371257,-77.0958040841,1473237201.0,0.0 -1199,0.0,0.0,0.0,0.0,2122,74.0,2401.42,0.0,0.0,32738.0952381,0.0,0.0,0,38.908237461,-77.0958052576,1473237202.0,0.0 -1200,0.0,0.0,0.0,0.0,2123,74.0,2401.53,0.0,0.0,inf,0.0,0.0,0,38.9082377963,-77.0958065148,1473237203.0,0.0 -1201,0.0,0.0,0.0,0.0,2124,75.0,2401.61,0.0,0.0,inf,0.0,0.0,0,38.9082379639,-77.0958074369,1473237204.0,0.0 -1202,0.0,0.0,0.0,0.0,2125,75.0,2401.72,0.0,0.0,inf,0.0,0.0,0,38.9082386345,-77.0958084427,1473237205.0,0.0 -1203,0.0,0.0,0.0,0.0,2126,75.0,2401.83,0.0,0.0,inf,0.0,0.0,0,38.9082390536,-77.0958094485,1473237206.0,0.0 -1204,0.0,0.0,0.0,0.0,2127,75.0,2401.94,0.0,0.0,inf,0.0,0.0,0,38.9082395565,-77.095810622,1473237207.0,0.0 -1205,0.0,0.0,0.0,0.0,2128,76.0,2402.0,0.0,0.0,inf,0.0,0.0,0,38.9082398079,-77.0958112087,1473237208.0,0.0 -1206,0.0,0.0,0.0,0.0,2129,76.0,2402.06,0.0,0.0,inf,0.0,0.0,0,38.9082399756,-77.0958118793,1473237209.0,0.0 -1207,0.0,0.0,0.0,0.0,2130,77.0,2402.11,0.0,0.0,inf,0.0,0.0,0,38.9082401432,-77.0958125498,1473237210.0,0.0 -1208,0.0,0.0,0.0,0.0,2131,78.0,2402.18,0.0,0.0,inf,0.0,0.0,0,38.9082403108,-77.0958133042,1473237211.0,0.0 -1209,0.0,0.0,0.0,0.0,2132,78.0,2402.23,0.0,0.0,inf,0.0,0.0,0,38.9082404785,-77.0958138071,1473237212.0,0.0 -1210,0.0,0.0,0.0,0.0,2133,79.0,2402.29,0.0,0.0,inf,0.0,0.0,0,38.9082405623,-77.0958145615,1473237213.0,0.0 -1211,0.0,0.0,0.0,0.0,2134,79.0,2402.33,0.0,0.0,inf,0.0,0.0,0,38.9082405623,-77.0958150644,1473237214.0,0.0 -1212,0.0,0.0,0.0,0.0,2135,79.0,2402.37,0.0,0.0,24553.5714285,0.0,0.0,0,38.9082405623,-77.0958156511,1473237215.0,0.0 -1213,0.0,0.0,0.0,0.0,2136,80.0,2402.41,0.0,0.0,17313.746065,0.0,0.0,0,38.9082405623,-77.095816154,1473237216.0,0.0 -1214,0.0,0.0,0.0,0.0,2137,80.0,2402.43,0.0,0.0,21126.7605634,0.0,0.0,0,38.9082405623,-77.0958164893,1473237217.0,0.0 -1215,0.0,0.0,0.0,0.0,2138,80.0,2402.48,0.0,0.0,4121.02615333,0.0,0.0,0,38.9082406461,-77.095817076,1473237218.0,0.0 -1216,0.0,0.0,0.0,0.0,2139,81.0,2402.63,0.0,0.0,2134.69855468,0.0,0.0,0,38.9082414843,-77.095818501,1473237219.0,0.224 -1217,0.0,0.0,0.0,0.0,2140,81.0,2403.0,0.0,0.0,1465.40130427,0.0,0.0,0,38.9082433283,-77.0958219375,1473237220.0,0.467000000001 -1218,0.0,0.0,0.0,0.0,2141,81.0,2403.49,0.0,0.0,1184.0810301,0.0,0.0,0,38.9082459267,-77.0958265476,1473237221.0,0.467000000001 -1219,0.0,0.0,0.0,0.0,2142,80.0,2403.95,0.0,0.0,1093.96755036,0.0,0.0,0,38.9082482737,-77.0958309062,1473237222.0,0.419999999999 -1220,0.0,0.0,0.0,0.0,2143,79.0,2404.39,0.0,0.0,1166.7963107,0.0,0.0,0,38.9082506206,-77.0958350133,1473237223.0,0.400999999999 -1221,0.0,0.0,0.0,0.0,2144,78.0,2404.8,0.0,0.0,1300.29495869,0.0,0.0,0,38.9082527999,-77.095838869,1473237224.0,0.383 -1222,0.0,0.0,0.0,0.0,2145,77.0,2405.2,0.0,0.0,1368.22403336,0.0,0.0,0,38.9082549792,-77.0958426408,1473237225.0,0.363999999999 -1223,0.0,0.0,0.0,0.0,2146,77.0,2405.59,0.0,0.0,1413.96829283,0.0,0.0,0,38.9082570747,-77.0958462451,1473237226.0,0.354999999999 -1224,0.0,0.0,0.0,0.0,2147,77.0,2405.98,0.0,0.0,1481.9281746,0.0,0.0,0,38.9082591701,-77.0958498493,1473237227.0,0.345 -1225,0.0,0.0,0.0,0.0,2148,77.0,2406.34,0.0,0.0,1504.39596223,0.0,0.0,0,38.9082612656,-77.0958531182,1473237228.0,0.326999999999 -1226,0.0,0.0,0.0,0.0,2149,78.0,2406.7,0.0,0.0,1533.5183292,0.0,0.0,0,38.9082632773,-77.0958563872,1473237229.0,0.316999999999 -1227,0.0,0.0,0.0,0.0,2150,78.0,2407.05,0.0,0.0,1576.94250645,0.0,0.0,0,38.9082652051,-77.0958596561,1473237230.0,0.307999999999 -1228,0.0,0.0,0.0,0.0,2151,78.0,2407.42,0.0,0.0,1663.76168595,0.0,0.0,0,38.9082670491,-77.0958631765,1473237231.0,0.335999999999 -1229,0.0,0.0,0.0,0.0,2152,78.0,2407.76,0.0,0.0,1748.33113846,0.0,0.0,0,38.908268977,-77.0958662778,1473237232.0,0.280000000001 -1230,0.0,0.0,0.0,0.0,2153,77.0,2408.07,0.0,0.0,1867.5117629,0.0,0.0,0,38.9082706533,-77.0958691277,1473237233.0,0.261 -1231,0.0,0.0,0.0,0.0,2154,76.0,2408.36,0.0,0.0,1991.68836544,0.0,0.0,0,38.9082721621,-77.0958718937,1473237234.0,0.233 -1232,0.0,0.0,0.0,0.0,2155,76.0,2408.67,0.0,0.0,1926.47696567,0.0,0.0,0,38.9082739223,-77.0958746597,1473237235.0,0.252 -1233,0.0,0.0,0.0,0.0,2156,75.0,2408.97,0.0,0.0,2208.41300191,0.0,0.0,0,38.9082755987,-77.0958774257,1473237236.0,0.233 -1234,0.0,0.0,0.0,0.0,2157,75.0,2409.27,0.0,0.0,2471.48695782,0.0,0.0,0,38.9082773589,-77.095880108,1473237237.0,0.243000000001 -1235,0.0,0.0,0.0,0.0,2158,75.0,2409.56,0.0,0.0,2719.75887159,0.0,0.0,0,38.9082789514,-77.0958827902,1473237238.0,0.243000000001 -1236,0.0,0.0,0.0,0.0,2159,75.0,2409.83,0.0,0.0,3020.95048779,0.0,0.0,0,38.9082803763,-77.0958853047,1473237239.0,0.0 -1237,0.0,0.0,0.0,0.0,2160,76.0,2410.06,0.0,0.0,2876.71232876,0.0,0.0,0,38.9082817174,-77.0958874002,1473237240.0,0.215 -1238,0.0,0.0,0.0,0.0,2161,77.0,2410.18,0.0,0.0,3087.98759458,0.0,0.0,0,38.9082832262,-77.0958877355,1473237241.0,0.187 -1239,0.0,0.0,0.0,0.0,2162,78.0,2410.32,0.0,0.0,3460.05212546,0.0,0.0,0,38.9082840644,-77.0958889928,1473237242.0,0.177 -1240,0.0,0.0,0.0,0.0,2163,78.0,2410.45,0.0,0.0,3811.3780359,0.0,0.0,0,38.9082846511,-77.0958903339,1473237243.0,0.177 -1241,0.0,0.0,0.0,0.0,2164,79.0,2410.59,0.0,0.0,7930.51359516,0.0,0.0,0,38.908285154,-77.0958917588,1473237244.0,0.0 -1242,0.0,0.0,0.0,0.0,2165,79.0,2410.73,0.0,0.0,21177.1177118,0.0,0.0,0,38.9082859922,-77.0958930999,1473237245.0,0.0 -1243,0.0,0.0,0.0,0.0,2166,80.0,2410.87,0.0,0.0,93220.338983,0.0,0.0,0,38.9082866628,-77.095894441,1473237246.0,0.0 -1244,0.0,0.0,0.0,0.0,2167,80.0,2411.01,0.0,0.0,31073.4463277,0.0,0.0,0,38.9082872495,-77.0958957821,1473237247.0,0.0 -1245,0.0,0.0,0.0,0.0,2168,80.0,2411.12,0.0,0.0,inf,0.0,0.0,0,38.9082875848,-77.0958970394,1473237248.0,0.0 -1246,0.0,0.0,0.0,0.0,2169,79.0,2411.23,0.0,0.0,inf,0.0,0.0,0,38.9082879201,-77.0958982967,1473237249.0,0.0 -1247,0.0,0.0,0.0,0.0,2170,79.0,2411.34,0.0,0.0,inf,0.0,0.0,0,38.9082885906,-77.0958992187,1473237250.0,0.0 -1248,0.0,0.0,0.0,0.0,2171,79.0,2411.43,0.0,0.0,inf,0.0,0.0,0,38.9082890935,-77.0959001407,1473237251.0,0.0 -1249,0.0,0.0,0.0,0.0,2172,79.0,2411.54,0.0,0.0,inf,0.0,0.0,0,38.9082895126,-77.0959012304,1473237252.0,0.0 -1250,0.0,0.0,0.0,0.0,2173,79.0,2411.64,0.0,0.0,inf,0.0,0.0,0,38.9082898479,-77.09590232,1473237253.0,0.0 -1251,0.0,0.0,0.0,0.0,2174,78.0,2411.71,0.0,0.0,inf,0.0,0.0,0,38.9082900994,-77.0959030744,1473237254.0,0.0 -1252,0.0,0.0,0.0,0.0,2175,79.0,2411.79,0.0,0.0,inf,0.0,0.0,0,38.908290267,-77.0959040802,1473237255.0,0.0 -1253,0.0,0.0,0.0,0.0,2176,79.0,2411.91,0.0,0.0,inf,0.0,0.0,0,38.9082908537,-77.0959051698,1473237256.0,0.0 -1254,0.0,0.0,0.0,0.0,2177,79.0,2411.99,0.0,0.0,inf,0.0,0.0,0,38.9082913566,-77.0959059242,1473237257.0,0.0 -1255,0.0,0.0,0.0,0.0,2178,78.0,2412.08,0.0,0.0,inf,0.0,0.0,0,38.9082917757,-77.0959068462,1473237258.0,0.0 -1256,0.0,0.0,0.0,0.0,2179,78.0,2412.17,0.0,0.0,inf,0.0,0.0,0,38.9082920272,-77.0959078521,1473237259.0,0.0 -1257,0.0,0.0,0.0,0.0,2180,77.0,2412.23,0.0,0.0,inf,0.0,0.0,0,38.9082921948,-77.0959085226,1473237260.0,0.0 -1258,0.0,0.0,0.0,0.0,2181,77.0,2412.31,0.0,0.0,inf,0.0,0.0,0,38.9082924463,-77.0959093608,1473237261.0,0.0 -1259,0.0,0.0,0.0,0.0,2182,77.0,2412.37,0.0,0.0,inf,0.0,0.0,0,38.9082926139,-77.0959100313,1473237262.0,0.0 -1260,0.0,0.0,0.0,0.0,2183,77.0,2412.45,0.0,0.0,inf,0.0,0.0,0,38.9082931168,-77.0959107857,1473237263.0,0.0 -1261,0.0,0.0,0.0,0.0,2184,77.0,2412.52,0.0,0.0,inf,0.0,0.0,0,38.9082935359,-77.0959113725,1473237264.0,0.0 -1262,0.0,0.0,0.0,0.0,2185,78.0,2412.59,0.0,0.0,inf,0.0,0.0,0,38.9082938712,-77.0959121268,1473237265.0,0.0 -1263,0.0,0.0,0.0,0.0,2186,78.0,2412.65,0.0,0.0,inf,0.0,0.0,0,38.9082941227,-77.0959127136,1473237266.0,0.0 -1264,0.0,0.0,0.0,0.0,2187,77.0,2412.7,0.0,0.0,inf,0.0,0.0,0,38.9082942065,-77.0959133003,1473237267.0,0.0 -1265,0.0,0.0,0.0,0.0,2188,76.0,2412.73,0.0,0.0,19642.8571428,0.0,0.0,0,38.9082942903,-77.0959137194,1473237268.0,0.0 -1266,0.0,0.0,0.0,0.0,2189,75.0,2412.77,0.0,0.0,58928.5714284,0.0,0.0,0,38.9082942903,-77.0959141385,1473237269.0,0.0 -1267,0.0,0.0,0.0,0.0,2190,75.0,2412.83,0.0,0.0,22948.5396384,0.0,0.0,0,38.9082944579,-77.0959148929,1473237270.0,0.0 -1268,0.0,0.0,0.0,0.0,2191,76.0,2412.88,0.0,0.0,5072.24100829,0.0,0.0,0,38.9082947094,-77.0959153958,1473237271.0,0.0 -1269,0.0,0.0,0.0,0.0,2192,76.0,2413.09,0.0,0.0,2633.7392256,0.0,0.0,0,38.908296302,-77.0959167369,1473237272.0,0.280000000001 -1270,0.0,0.0,0.0,0.0,2193,77.0,2413.4,0.0,0.0,1620.59772695,0.0,0.0,0,38.9082984813,-77.095919,1473237273.0,0.280000000001 -1271,0.0,0.0,0.0,0.0,2194,77.0,2413.82,0.0,0.0,1221.78263905,0.0,0.0,0,38.9083010796,-77.0959225204,1473237274.0,0.467000000001 -1272,0.0,0.0,0.0,0.0,2195,77.0,2414.34,0.0,0.0,1032.02401801,0.0,0.0,0,38.908303678,-77.0959274657,1473237275.0,0.467000000001 -1273,0.0,0.0,0.0,0.0,2196,77.0,2414.92,0.0,0.0,878.774736937,0.0,0.0,0,38.9083062764,-77.095933333,1473237276.0,0.597 -1274,0.0,0.0,0.0,0.0,2197,77.0,2415.55,0.0,0.0,722.335488874,0.0,0.0,0,38.9083086234,-77.0959400386,1473237277.0,0.579 -1275,0.0,0.0,0.0,0.0,2198,76.0,2416.25,0.0,0.0,637.843151332,0.0,0.0,0,38.9083103836,-77.0959477499,1473237278.0,0.746 -1276,0.0,0.0,0.0,0.0,2199,76.0,2417.16,0.0,0.0,578.72690103,0.0,0.0,0,38.9083120599,-77.0959580597,1473237279.0,0.998 -1277,0.0,0.0,0.0,0.0,2200,76.0,2418.16,0.0,0.0,561.161774923,0.0,0.0,0,38.9083135687,-77.095969459,1473237280.0,0.933 -1278,0.0,0.0,0.0,0.0,2201,76.0,2419.08,0.0,0.0,568.307624179,0.0,0.0,0,38.9083151612,-77.0959799364,1473237281.0,0.84 -1279,0.0,0.0,0.0,0.0,2202,76.0,2419.93,0.0,0.0,624.455966393,0.0,0.0,0,38.9083165023,-77.0959895756,1473237282.0,0.774 -1280,0.0,0.0,0.0,0.0,2203,76.0,2420.72,0.0,0.0,716.790269029,0.0,0.0,0,38.9083176758,-77.0959985442,1473237283.0,0.7 -1281,0.0,0.0,0.0,0.0,2204,76.0,2421.42,0.0,0.0,797.36008229,0.0,0.0,0,38.9083187655,-77.0960065071,1473237284.0,0.625 -1282,0.0,0.0,0.0,0.0,2205,76.0,2422.04,0.0,0.0,885.335622686,0.0,0.0,0,38.9083198551,-77.0960136317,1473237285.0,0.56 -1283,0.0,0.0,0.0,0.0,2206,76.0,2422.63,0.0,0.0,984.402965994,0.0,0.0,0,38.9083211124,-77.0960202534,1473237286.0,0.513 -1284,0.0,0.0,0.0,0.0,2207,76.0,2423.15,0.0,0.0,1085.79164082,0.0,0.0,0,38.9083222859,-77.0960260369,1473237287.0,0.457 -1285,0.0,0.0,0.0,0.0,2208,76.0,2423.63,0.0,0.0,1186.83080211,0.0,0.0,0,38.9083233755,-77.0960314013,1473237288.0,0.419999999999 -1286,0.0,0.0,0.0,0.0,2209,77.0,2424.08,0.0,0.0,1286.01968557,0.0,0.0,0,38.9083244652,-77.0960364304,1473237289.0,0.392000000001 -1287,0.0,0.0,0.0,0.0,2210,77.0,2424.5,0.0,0.0,1403.96513791,0.0,0.0,0,38.9083258063,-77.0960409567,1473237290.0,0.363999999999 -1288,0.0,0.0,0.0,0.0,2211,76.0,2424.9,0.0,0.0,1489.59219996,0.0,0.0,0,38.9083269797,-77.0960453153,1473237291.0,0.345 -1289,0.0,0.0,0.0,0.0,2212,76.0,2425.28,0.0,0.0,1427.77674764,0.0,0.0,0,38.9083281532,-77.0960494224,1473237292.0,0.335999999999 -1290,0.0,0.0,0.0,0.0,2213,76.0,2425.64,0.0,0.0,1271.85834471,0.0,0.0,0,38.9083294105,-77.0960533619,1473237293.0,0.335999999999 -1291,0.0,0.0,0.0,0.0,2214,76.0,2426.06,0.0,0.0,1180.52290521,0.0,0.0,0,38.9083306678,-77.0960578881,1473237294.0,0.419999999999 -1292,0.0,0.0,0.0,0.0,2215,76.0,2426.57,0.0,0.0,1112.40597521,0.0,0.0,0,38.9083321765,-77.0960634202,1473237295.0,0.532 -1293,0.0,0.0,0.0,0.0,2216,76.0,2427.12,0.0,0.0,1088.50333148,0.0,0.0,0,38.9083343558,-77.0960691199,1473237296.0,0.495 -1294,0.0,0.0,0.0,0.0,2217,76.0,2427.58,0.0,0.0,1127.65438126,0.0,0.0,0,38.9083366189,-77.0960736461,1473237297.0,0.372999999999 -1295,0.0,0.0,0.0,0.0,2218,77.0,2428.01,0.0,0.0,1230.88399851,0.0,0.0,0,38.908338882,-77.0960775856,1473237298.0,0.410999999998 -1296,0.0,0.0,0.0,0.0,2219,77.0,2428.44,0.0,0.0,1364.78039443,0.0,0.0,0,38.9083413128,-77.0960815251,1473237299.0,0.372999999999 -1297,0.0,0.0,0.0,0.0,2220,77.0,2428.83,0.0,0.0,1421.10119964,0.0,0.0,0,38.9083434921,-77.0960850455,1473237300.0,0.345 -1298,0.0,0.0,0.0,0.0,2221,77.0,2429.2,0.0,0.0,1413.43188605,0.0,0.0,0,38.9083456714,-77.0960883982,1473237301.0,0.354999999999 -1299,0.0,0.0,0.0,0.0,2222,77.0,2429.57,0.0,0.0,1466.05232094,0.0,0.0,0,38.9083479345,-77.0960914996,1473237302.0,0.335999999999 -1300,0.0,0.0,0.0,0.0,2223,77.0,2429.95,0.0,0.0,1520.91755442,0.0,0.0,0,38.9083501976,-77.0960948523,1473237303.0,0.335999999999 -1301,0.0,0.0,0.0,0.0,2224,77.0,2430.33,0.0,0.0,1549.66994043,0.0,0.0,0,38.9083523769,-77.0960982889,1473237304.0,0.335999999999 -1302,0.0,44.0,0.0,0.0,2225,77.0,2430.74,0.0,0.0,1621.98598492,0.0,0.0,0,38.9083547238,-77.0961018931,1473237305.0,0.298999999999 -1303,0.0,44.0,0.0,0.0,2226,78.0,2431.09,0.0,0.0,1707.41802915,0.0,0.0,0,38.9083567355,-77.0961050782,1473237306.0,0.271000000001 -1304,0.0,44.0,0.0,0.0,2227,78.0,2431.44,0.0,0.0,1824.35634181,0.0,0.0,0,38.9083586633,-77.0961081795,1473237307.0,0.307999999999 -1305,0.0,0.0,0.0,0.0,2228,79.0,2431.79,0.0,0.0,1905.24891953,0.0,0.0,0,38.9083605912,-77.0961113647,1473237308.0,0.252 -1306,0.0,0.0,0.0,0.0,2229,79.0,2432.08,0.0,0.0,2009.07999791,0.0,0.0,0,38.9083622675,-77.0961139631,1473237309.0,0.243000000001 -1307,0.0,0.0,0.0,0.0,2230,80.0,2432.37,0.0,0.0,2068.78022568,0.0,0.0,0,38.9083638601,-77.0961166453,1473237310.0,0.243000000001 -1308,0.0,0.0,0.0,0.0,2231,81.0,2432.67,0.0,0.0,1856.7340771,0.0,0.0,0,38.9083654527,-77.0961194113,1473237311.0,0.252 -1309,0.0,0.0,0.0,0.0,2232,81.0,2432.96,0.0,0.0,1862.03227523,0.0,0.0,0,38.9083672129,-77.0961219259,1473237312.0,0.224 -1310,0.0,0.0,0.0,0.0,2233,82.0,2433.25,0.0,0.0,2310.97060766,0.0,0.0,0,38.9083691407,-77.0961242728,1473237313.0,0.289 -1311,0.0,0.0,0.0,0.0,2234,82.0,2433.57,0.0,0.0,2651.69777533,0.0,0.0,0,38.9083712362,-77.0961267874,1473237314.0,0.307999999999 -1312,0.0,0.0,0.0,0.0,2235,82.0,2433.81,0.0,0.0,3938.88756267,0.0,0.0,0,38.9083727449,-77.096128799,1473237315.0,0.0 -1313,0.0,0.0,0.0,0.0,2236,82.0,2433.98,0.0,0.0,4826.57751776,0.0,0.0,0,38.9083737507,-77.0961302239,1473237316.0,0.0 -1314,0.0,0.0,0.0,0.0,2237,82.0,2434.19,0.0,0.0,9268.17525276,0.0,0.0,0,38.908375008,-77.096132068,1473237317.0,0.187 -1315,0.0,0.0,0.0,0.0,2238,82.0,2434.42,0.0,0.0,7372.65415548,0.0,0.0,0,38.9083765168,-77.0961339958,1473237318.0,0.0 -1316,0.0,0.0,0.0,0.0,2239,82.0,2434.65,0.0,0.0,4687.69024716,0.0,0.0,0,38.9083778579,-77.0961359236,1473237319.0,0.177 -1317,0.0,0.0,0.0,0.0,2240,81.0,2434.69,0.0,0.0,6782.14914856,0.0,0.0,0,38.9083771873,-77.0961372647,1473237320.0,0.0 -1318,0.0,0.0,0.0,0.0,2241,81.0,2434.76,0.0,0.0,9428.57142857,0.0,0.0,0,38.908377355,-77.0961381029,1473237321.0,0.177 -1319,0.0,0.0,0.0,0.0,2242,82.0,2434.85,0.0,0.0,5973.00511971,0.0,0.0,0,38.9083776902,-77.0961391926,1473237322.0,0.0 -1320,0.0,0.0,0.0,0.0,2243,82.0,2434.94,0.0,0.0,5242.61268212,0.0,0.0,0,38.9083780255,-77.0961401984,1473237323.0,0.0 -1321,0.0,0.0,0.0,0.0,2244,82.0,2435.05,0.0,0.0,3541.85832566,0.0,0.0,0,38.9083786961,-77.0961411204,1473237324.0,0.224 -1322,0.0,0.0,0.0,0.0,2245,83.0,2435.22,0.0,0.0,3415.23995386,0.0,0.0,0,38.9083798695,-77.0961422939,1473237325.0,0.205 -1323,0.0,0.0,0.0,0.0,2246,83.0,2435.36,0.0,0.0,3788.37575439,0.0,0.0,0,38.9083806239,-77.096143635,1473237326.0,0.205 -1324,0.0,0.0,0.0,0.0,2247,82.0,2435.48,0.0,0.0,5053.81990022,0.0,0.0,0,38.9083811268,-77.0961449761,1473237327.0,0.196 -1325,0.0,0.0,0.0,0.0,2248,83.0,2435.71,0.0,0.0,1337.8894938,0.0,0.0,0,38.9083825517,-77.0961469878,1473237328.0,0.233 -1326,0.0,0.0,0.0,0.0,2249,83.0,2436.05,0.0,0.0,649.613606452,0.0,0.0,0,38.9083844796,-77.0961500052,1473237329.0,0.410999999998 -1327,0.0,0.0,0.0,0.0,2250,84.0,2436.92,0.0,0.0,339.753847603,0.0,0.0,0,38.9083891734,-77.096157968,1473237330.0,1.278 -1328,0.0,0.0,0.0,0.0,2251,84.0,2438.95,0.0,0.0,236.065493357,0.0,0.0,0,38.9084001537,-77.0961766597,1473237331.0,2.734 -1329,0.0,0.0,0.0,0.0,2252,86.0,2441.63,0.0,0.0,177.87236926,0.0,0.0,0,38.9084149059,-77.0962012187,1473237332.0,2.59399999999 -1330,0.0,0.0,0.0,0.0,2253,87.0,2444.77,0.0,0.0,150.512328328,0.0,0.0,0,38.908432005,-77.0962299686,1473237333.0,3.67599999999 -1331,0.0,0.0,0.0,0.0,2254,89.0,2448.2,0.0,0.0,140.343458719,0.0,0.0,0,38.9084506128,-77.0962616522,1473237334.0,3.116 -1332,0.0,0.0,0.0,0.0,2255,90.0,2451.83,0.0,0.0,135.556061527,0.0,0.0,0,38.9084703941,-77.0962948445,1473237335.0,3.96599999999 -1333,0.0,0.0,0.0,0.0,2256,93.0,2455.72,0.0,0.0,131.848863532,0.0,0.0,0,38.9084918518,-77.0963303838,1473237336.0,3.69499999999 -1334,0.0,0.0,0.0,0.0,2257,95.0,2459.55,0.0,0.0,129.748310745,0.0,0.0,0,38.9085128903,-77.0963654201,1473237337.0,3.81599999999 -1335,0.0,0.0,0.0,0.0,2258,96.0,2463.52,0.0,0.0,128.789678093,0.0,0.0,0,38.908534348,-77.0964019652,1473237338.0,3.984 -1336,0.0,0.0,0.0,0.0,2259,97.0,2467.4,0.0,0.0,131.932601288,0.0,0.0,0,38.9085553866,-77.0964376722,1473237339.0,3.64799999999 -1337,0.0,0.0,0.0,0.0,2260,98.0,2471.35,0.0,0.0,127.946083188,0.0,0.0,0,38.9085770957,-77.0964737143,1473237340.0,4.15200000001 -1338,0.0,0.0,0.0,0.0,2261,101.0,2475.17,0.0,0.0,131.329842575,0.0,0.0,0,38.9085982181,-77.0965085831,1473237341.0,3.38699999999 -1339,0.0,0.0,0.0,0.0,2262,102.0,2478.95,0.0,0.0,132.093446678,0.0,0.0,0,38.9086193405,-77.0965427812,1473237342.0,4.03999999999 -1340,0.0,0.0,0.0,0.0,2263,104.0,2483.05,0.0,0.0,131.394832941,0.0,0.0,0,38.9086423907,-77.0965796616,1473237343.0,4.05000000001 -1341,0.0,0.0,0.0,0.0,2264,105.0,2486.73,0.0,0.0,136.102679161,0.0,0.0,0,38.908663094,-77.0966127701,1473237344.0,3.21899999999 -1342,0.0,0.0,0.0,0.0,2265,106.0,2490.38,0.0,0.0,132.861703045,0.0,0.0,0,38.908683965,-77.0966452919,1473237345.0,3.984 -1343,0.0,0.0,0.0,0.0,2266,107.0,2494.21,0.0,0.0,139.014597135,0.0,0.0,0,38.9087060932,-77.0966791548,1473237346.0,3.63 -1344,0.0,0.0,0.0,0.0,2267,108.0,2497.78,0.0,0.0,140.871868803,0.0,0.0,0,38.9087268803,-77.0967105869,1473237347.0,3.415 -1345,0.0,0.0,0.0,0.0,2268,109.0,2501.49,0.0,0.0,135.464643728,0.0,0.0,0,38.9087485056,-77.0967431925,1473237348.0,3.91899999999 -1346,0.0,0.0,0.0,0.0,2269,109.0,2505.07,0.0,0.0,142.317094809,0.0,0.0,0,38.9087695442,-77.096774457,1473237349.0,3.191 -1347,0.0,0.0,0.0,0.0,2270,109.0,2508.58,0.0,0.0,141.5902733,0.0,0.0,0,38.9087903313,-77.0968049672,1473237350.0,3.704 -1348,0.0,0.0,0.0,0.0,2271,109.0,2512.4,0.0,0.0,138.029441501,0.0,0.0,0,38.9088134654,-77.0968376566,1473237351.0,3.85399999999 -1349,0.0,0.0,0.0,0.0,2272,109.0,2515.87,0.0,0.0,141.903746259,0.0,0.0,0,38.908834504,-77.0968672447,1473237352.0,3.02299999999 -1350,0.0,0.0,0.0,0.0,2273,108.0,2519.38,0.0,0.0,137.627141264,0.0,0.0,0,38.9088560455,-77.096896749,1473237353.0,3.872 -1351,0.0,0.0,0.0,0.0,2274,109.0,2523.25,0.0,0.0,141.566497645,0.0,0.0,0,38.9088800177,-77.096929187,1473237354.0,3.79799999999 -1352,0.0,0.0,0.0,0.0,2275,109.0,2526.72,0.0,0.0,143.635099693,0.0,0.0,0,38.9089013916,-77.0969584398,1473237355.0,3.126 -1353,0.0,21.0,0.0,0.0,2276,110.0,2530.24,0.0,0.0,137.668972274,0.0,0.0,0,38.9089231845,-77.0969878603,1473237356.0,3.82599999999 -1354,0.0,21.0,0.0,0.0,2277,110.0,2533.81,0.0,0.0,144.96227843,0.0,0.0,0,38.908945648,-77.0970172808,1473237357.0,3.24700000001 -1355,0.0,21.0,0.0,0.0,2278,111.0,2537.24,0.0,0.0,144.380775231,0.0,0.0,0,38.9089673571,-77.0970455278,1473237358.0,3.56400000001 -1356,0.0,24.0,0.0,0.0,2279,111.0,2541.01,0.0,0.0,139.523084729,0.0,0.0,0,38.9089912456,-77.0970762894,1473237359.0,3.85399999999 -1357,0.0,24.0,0.0,0.0,2280,112.0,2544.46,0.0,0.0,144.109118676,0.0,0.0,0,38.90901329,-77.0971044526,1473237360.0,2.986 -1358,0.0,27.0,0.0,0.0,2281,113.0,2547.92,0.0,0.0,139.968104238,0.0,0.0,0,38.9090355858,-77.0971321966,1473237361.0,3.79799999999 -1359,0.0,27.0,0.0,0.0,2282,113.0,2551.67,0.0,0.0,144.261754523,0.0,0.0,0,38.909060061,-77.0971620362,1473237362.0,3.64799999999 -1360,0.0,27.0,0.0,0.0,2283,114.0,2555.13,0.0,0.0,146.121702299,0.0,0.0,0,38.9090827759,-77.097189445,1473237363.0,3.191 -1361,0.0,0.0,0.0,0.0,2284,115.0,2558.65,0.0,0.0,139.075359579,0.0,0.0,0,38.9091057424,-77.0972174406,1473237364.0,3.76000000001 -1362,0.0,0.0,0.0,0.0,2285,116.0,2562.14,0.0,0.0,144.355872847,0.0,0.0,0,38.9091282897,-77.0972454362,1473237365.0,3.154 -1363,0.0,0.0,0.0,0.0,2286,117.0,2565.62,0.0,0.0,140.848505543,0.0,0.0,0,38.909150837,-77.0972733479,1473237366.0,3.732 -1364,0.0,0.0,0.0,0.0,2287,117.0,2569.48,0.0,0.0,136.420652788,0.0,0.0,0,38.9091758151,-77.0973041933,1473237367.0,3.90999999999 -1365,0.0,0.0,0.0,0.0,2288,118.0,2573.06,0.0,0.0,138.892730319,0.0,0.0,0,38.9091989491,-77.0973329432,1473237368.0,3.191 -1366,0.0,0.0,0.0,0.0,2289,118.0,2576.66,0.0,0.0,133.660599286,0.0,0.0,0,38.9092224184,-77.0973616093,1473237369.0,3.975 -1367,0.0,0.0,0.0,0.0,2290,118.0,2580.46,0.0,0.0,137.801522856,0.0,0.0,0,38.9092474803,-77.0973914489,1473237370.0,3.639 -1368,0.0,0.0,0.0,0.0,2291,119.0,2584.04,0.0,0.0,139.438527529,0.0,0.0,0,38.9092712011,-77.0974193607,1473237371.0,3.45199999999 -1369,0.0,0.0,0.0,0.0,2292,119.0,2587.78,0.0,0.0,133.828634461,0.0,0.0,0,38.909296263,-77.0974482782,1473237372.0,3.975 -1370,0.0,0.0,0.0,0.0,2293,120.0,2591.39,0.0,0.0,140.064005006,0.0,0.0,0,38.9093205705,-77.0974759385,1473237373.0,3.238 -1371,0.0,0.0,0.0,0.0,2294,121.0,2594.92,0.0,0.0,138.076799392,0.0,0.0,0,38.909344459,-77.0975026768,1473237374.0,3.75099999999 -1372,0.0,0.0,0.0,0.0,2295,121.0,2598.79,0.0,0.0,136.82807641,0.0,0.0,0,38.9093709458,-77.0975318458,1473237375.0,3.94700000001 -1373,0.0,0.0,0.0,0.0,2296,121.0,2602.32,0.0,0.0,140.273916703,0.0,0.0,0,38.9093950018,-77.0975583326,1473237376.0,3.08799999999 -1374,0.0,0.0,0.0,0.0,2297,121.0,2605.87,0.0,0.0,135.546039298,0.0,0.0,0,38.9094193932,-77.0975849032,1473237377.0,3.94700000001 -1375,0.0,0.0,0.0,0.0,2298,122.0,2609.64,0.0,0.0,140.426727036,0.0,0.0,0,38.9094452094,-77.0976131503,1473237378.0,3.592 -1376,0.0,0.0,0.0,0.0,2299,122.0,2613.17,0.0,0.0,141.937228107,0.0,0.0,0,38.9094694331,-77.0976393856,1473237379.0,3.415 -1377,0.0,0.0,0.0,0.0,2300,123.0,2616.82,0.0,0.0,135.370651877,0.0,0.0,0,38.9094945788,-77.097666543,1473237380.0,3.863 -1378,0.0,0.0,0.0,0.0,2301,123.0,2620.37,0.0,0.0,141.869757421,0.0,0.0,0,38.9095191378,-77.0976928622,1473237381.0,3.2 -1379,0.0,0.0,0.0,0.0,2302,123.0,2623.9,0.0,0.0,138.928148286,0.0,0.0,0,38.9095433615,-77.0977190975,1473237382.0,3.77900000001 -1380,0.0,0.0,0.0,0.0,2303,123.0,2627.76,0.0,0.0,137.202727424,0.0,0.0,0,38.9095702674,-77.0977473445,1473237383.0,3.91899999999 -1381,0.0,0.0,0.0,0.0,2304,124.0,2631.27,0.0,0.0,140.069780218,0.0,0.0,0,38.9095945749,-77.0977732446,1473237384.0,3.079 -1382,0.0,0.0,0.0,0.0,2305,124.0,2634.84,0.0,0.0,134.619620897,0.0,0.0,0,38.9096193854,-77.09779948,1473237385.0,3.99399999998 -1383,0.0,0.0,0.0,0.0,2306,124.0,2638.61,0.0,0.0,139.491068949,0.0,0.0,0,38.9096455369,-77.0978272241,1473237386.0,3.57399999999 -1384,0.0,0.0,0.0,0.0,2307,124.0,2642.16,0.0,0.0,140.366654716,0.0,0.0,0,38.9096701797,-77.097853208,1473237387.0,3.46199999999 -1385,0.0,0.0,0.0,0.0,2308,124.0,2645.89,0.0,0.0,134.522723858,0.0,0.0,0,38.9096963312,-77.0978801977,1473237388.0,3.96599999999 -1386,0.0,0.0,0.0,0.0,2309,125.0,2649.43,0.0,0.0,141.272306959,0.0,0.0,0,38.9097213093,-77.0979056787,1473237389.0,3.14400000001 -1387,0.0,0.0,0.0,0.0,2310,125.0,2652.93,0.0,0.0,139.347347695,0.0,0.0,0,38.9097458683,-77.0979308244,1473237390.0,3.79799999999 -1388,0.0,0.0,0.0,0.0,2311,125.0,2656.74,0.0,0.0,137.663557417,0.0,0.0,0,38.9097726904,-77.097958317,1473237391.0,3.85399999999 -1389,0.0,0.0,0.0,0.0,2312,125.0,2660.22,0.0,0.0,141.625343948,0.0,0.0,0,38.9097969979,-77.0979837142,1473237392.0,3.08799999999 -1390,0.0,0.0,0.0,0.0,2313,125.0,2663.75,0.0,0.0,136.806197143,0.0,0.0,0,38.9098217245,-77.0980091952,1473237393.0,3.9 -1391,0.0,0.0,0.0,0.0,2314,126.0,2667.5,0.0,0.0,141.65747835,0.0,0.0,0,38.9098479599,-77.0980365202,1473237394.0,3.63 -1392,0.0,0.0,0.0,0.0,2315,126.0,2670.98,0.0,0.0,142.76249759,0.0,0.0,0,38.9098722674,-77.0980617497,1473237395.0,3.26599999999 -1393,0.0,27.0,0.0,0.0,2316,126.0,2674.61,0.0,0.0,136.889700087,0.0,0.0,0,38.9098976646,-77.0980881527,1473237396.0,3.88200000001 -1394,0.0,27.0,0.0,0.0,2317,126.0,2678.16,0.0,0.0,142.776615786,0.0,0.0,0,38.9099226426,-77.0981138013,1473237397.0,3.22800000001 -1395,0.0,24.0,0.0,0.0,2318,127.0,2681.64,0.0,0.0,141.280428807,0.0,0.0,0,38.909947034,-77.0981388632,1473237398.0,3.66700000001 -1396,0.0,24.0,0.0,0.0,2319,127.0,2685.41,0.0,0.0,139.143550365,0.0,0.0,0,38.9099735208,-77.0981661044,1473237399.0,3.85399999999 -1397,0.0,24.0,0.0,0.0,2320,128.0,2688.86,0.0,0.0,144.838664776,0.0,0.0,0,38.9099977445,-77.0981910825,1473237400.0,3.06000000001 -1398,0.0,0.0,0.0,0.0,2321,127.0,2692.28,0.0,0.0,140.147792217,0.0,0.0,0,38.9100215491,-77.0982160605,1473237401.0,3.742 -1399,0.0,0.0,0.0,0.0,2322,128.0,2695.86,0.0,0.0,145.575451568,0.0,0.0,0,38.9100463595,-77.0982424635,1473237402.0,3.51799999999 -1400,0.0,0.0,0.0,0.0,2323,128.0,2699.23,0.0,0.0,145.777746364,0.0,0.0,0,38.9100696612,-77.0982674416,1473237403.0,3.21000000001 -1401,0.0,0.0,0.0,0.0,2324,127.0,2702.79,0.0,0.0,137.442732195,0.0,0.0,0,38.9100938011,-77.0982944313,1473237404.0,3.90999999999 -1402,0.0,0.0,0.0,0.0,2325,128.0,2706.29,0.0,0.0,141.593224121,0.0,0.0,0,38.9101174381,-77.0983211696,1473237405.0,3.126 -1403,0.0,0.0,0.0,0.0,2326,128.0,2709.81,0.0,0.0,138.212617675,0.0,0.0,0,38.910141075,-77.0983481593,1473237406.0,3.90999999999 -1404,0.0,0.0,0.0,0.0,2327,128.0,2713.74,0.0,0.0,134.568646321,0.0,0.0,0,38.9101670589,-77.0983788371,1473237407.0,3.938 -1405,0.0,0.0,0.0,0.0,2328,129.0,2717.27,0.0,0.0,138.577107062,0.0,0.0,0,38.910190193,-77.0984068327,1473237408.0,3.116 -1406,0.0,0.0,0.0,0.0,2329,128.0,2720.83,0.0,0.0,133.498077281,0.0,0.0,0,38.9102135785,-77.0984349959,1473237409.0,4.00299999999 -1407,0.0,0.0,0.0,0.0,2330,129.0,2724.69,0.0,0.0,138.549512558,0.0,0.0,0,38.910238808,-77.098465506,1473237410.0,3.69499999999 -1408,0.0,0.0,0.0,0.0,2331,129.0,2728.24,0.0,0.0,139.198721541,0.0,0.0,0,38.9102620259,-77.098493753,1473237411.0,3.35900000001 -1409,0.0,0.0,0.0,0.0,2332,129.0,2731.96,0.0,0.0,133.013027215,0.0,0.0,0,38.9102863334,-77.0985232573,1473237412.0,4.022 -1410,0.0,0.0,0.0,0.0,2333,129.0,2735.63,0.0,0.0,139.95029644,0.0,0.0,0,38.910310138,-77.0985525101,1473237413.0,3.275 -1411,0.0,0.0,0.0,0.0,2334,129.0,2739.19,0.0,0.0,138.484891358,0.0,0.0,0,38.9103333559,-77.098580841,1473237414.0,3.77 -1412,0.0,0.0,0.0,0.0,2335,129.0,2743.1,0.0,0.0,135.275998173,0.0,0.0,0,38.9103586692,-77.0986121893,1473237415.0,3.938 -1413,0.0,0.0,0.0,0.0,2336,129.0,2746.62,0.0,0.0,139.874367386,0.0,0.0,0,38.9103813004,-77.0986406039,1473237416.0,3.051 -1414,0.0,0.0,0.0,0.0,2337,129.0,2750.15,0.0,0.0,135.654772112,0.0,0.0,0,38.9104040992,-77.0986691024,1473237417.0,3.984 -1415,0.0,0.0,0.0,0.0,2338,129.0,2754.04,0.0,0.0,138.735239111,0.0,0.0,0,38.9104289096,-77.0987007022,1473237418.0,3.76000000001 -1416,0.0,0.0,0.0,0.0,2339,130.0,2757.55,0.0,0.0,140.436288737,0.0,0.0,0,38.9104515407,-77.098729033,1473237419.0,3.25599999999 -1417,0.0,0.0,0.0,0.0,2340,129.0,2761.15,0.0,0.0,133.946433024,0.0,0.0,0,38.9104744233,-77.0987583697,1473237420.0,3.938 -1418,0.0,0.0,0.0,0.0,2341,130.0,2764.8,0.0,0.0,140.494369886,0.0,0.0,0,38.9104975574,-77.0987882093,1473237421.0,3.38699999999 -1419,0.0,0.0,0.0,0.0,2342,130.0,2768.28,0.0,0.0,139.59829533,0.0,0.0,0,38.9105197694,-77.0988166239,1473237422.0,3.63 -1420,0.0,0.0,0.0,0.0,2343,129.0,2772.08,0.0,0.0,135.378902692,0.0,0.0,0,38.9105440769,-77.0988473855,1473237423.0,3.984 -1421,0.0,0.0,0.0,0.0,2344,130.0,2775.58,0.0,0.0,141.268678349,0.0,0.0,0,38.9105664566,-77.0988758001,1473237424.0,3.07000000001 -1422,0.0,0.0,0.0,0.0,2345,129.0,2779.03,0.0,0.0,139.293066582,0.0,0.0,0,38.910588501,-77.0989038795,1473237425.0,3.844 -1423,0.0,0.0,0.0,0.0,2346,130.0,2782.83,0.0,0.0,139.620064189,0.0,0.0,0,38.9106123894,-77.0989352278,1473237426.0,3.742 -1424,0.0,0.0,0.0,0.0,2347,129.0,2786.24,0.0,0.0,142.720336104,0.0,0.0,0,38.9106337633,-77.0989634749,1473237427.0,3.08799999999 -1425,0.0,0.0,0.0,0.0,2348,129.0,2789.75,0.0,0.0,137.255717503,0.0,0.0,0,38.9106558915,-77.0989923924,1473237428.0,3.89099999999 -1426,0.0,0.0,0.0,0.0,2349,129.0,2793.5,0.0,0.0,142.679785795,0.0,0.0,0,38.9106796123,-77.0990232378,1473237429.0,3.592 -1427,0.0,0.0,0.0,0.0,2350,129.0,2796.94,0.0,0.0,143.07711175,0.0,0.0,0,38.9107014053,-77.099051401,1473237430.0,3.29399999999 -1428,0.0,0.0,0.0,0.0,2351,129.0,2800.51,0.0,0.0,138.144509922,0.0,0.0,0,38.9107239526,-77.0990808215,1473237431.0,3.83499999999 -1429,0.0,0.0,0.0,0.0,2352,130.0,2804.0,0.0,0.0,145.663576413,0.0,0.0,0,38.9107459132,-77.0991095714,1473237432.0,3.154 -1430,0.0,0.0,0.0,0.0,2353,130.0,2807.4,0.0,0.0,144.799987965,0.0,0.0,0,38.910767287,-77.099137567,1473237433.0,3.63 -1431,0.0,0.0,0.0,0.0,2354,129.0,2811.08,0.0,0.0,141.396829283,0.0,0.0,0,38.9107903372,-77.0991680771,1473237434.0,3.732 -1432,0.0,0.0,0.0,0.0,2355,130.0,2814.4,0.0,0.0,145.658616558,0.0,0.0,0,38.9108108729,-77.0991959888,1473237435.0,2.948 -1433,0.0,0.0,0.0,0.0,2356,129.0,2817.78,0.0,0.0,140.806265208,0.0,0.0,0,38.9108318277,-77.0992242359,1473237436.0,3.81599999999 -1434,0.0,0.0,0.0,0.0,2357,130.0,2821.53,0.0,0.0,143.181936514,0.0,0.0,0,38.9108552132,-77.0992554165,1473237437.0,3.66700000001 -1435,0.0,0.0,0.0,0.0,2358,130.0,2824.95,0.0,0.0,144.503969793,0.0,0.0,0,38.9108766709,-77.0992837474,1473237438.0,3.154 -1436,0.0,0.0,0.0,0.0,2359,129.0,2828.46,0.0,0.0,137.729220775,0.0,0.0,0,38.9108987153,-77.0993127488,1473237439.0,3.85399999999 -1437,0.0,0.0,0.0,0.0,2360,130.0,2832.06,0.0,0.0,144.487881157,0.0,0.0,0,38.9109211788,-77.0993426722,1473237440.0,3.29399999999 -1438,0.0,0.0,0.0,0.0,2361,130.0,2835.47,0.0,0.0,143.849947691,0.0,0.0,0,38.9109424688,-77.099371003,1473237441.0,3.499 -1439,0.0,0.0,0.0,0.0,2362,129.0,2839.21,0.0,0.0,138.226181116,0.0,0.0,0,38.9109657705,-77.0994020998,1473237442.0,3.90999999999 -1440,0.0,0.0,0.0,0.0,2363,130.0,2842.68,0.0,0.0,142.962530202,0.0,0.0,0,38.9109873958,-77.0994309336,1473237443.0,2.986 -1441,0.0,0.0,0.0,0.0,2364,129.0,2846.11,0.0,0.0,139.960132568,0.0,0.0,0,38.9110091049,-77.0994590968,1473237444.0,3.83499999999 -1442,0.0,0.0,0.0,0.0,2365,129.0,2849.93,0.0,0.0,140.64783244,0.0,0.0,0,38.9110334124,-77.0994903613,1473237445.0,3.81599999999 -1443,0.0,0.0,0.0,0.0,2366,130.0,2853.4,0.0,0.0,143.789954622,0.0,0.0,0,38.9110552892,-77.0995188598,1473237446.0,3.07000000001 -1444,0.0,0.0,0.0,0.0,2367,129.0,2856.85,0.0,0.0,136.898786164,0.0,0.0,0,38.9110769983,-77.099547442,1473237447.0,3.80699999999 -1445,0.0,0.0,0.0,0.0,2368,130.0,2860.53,0.0,0.0,143.495195085,0.0,0.0,0,38.9110999648,-77.0995779522,1473237448.0,3.50799999999 -1446,0.0,0.0,0.0,0.0,2369,130.0,2863.99,0.0,0.0,141.298749598,0.0,0.0,0,38.9111216739,-77.0996066183,1473237449.0,3.43399999999 -1447,0.0,0.0,0.0,0.0,2370,130.0,2867.68,0.0,0.0,135.02644414,0.0,0.0,0,38.9111448079,-77.0996372122,1473237450.0,3.984 -1448,0.0,0.0,0.0,0.0,2371,130.0,2871.24,0.0,0.0,139.014095187,0.0,0.0,0,38.91116702,-77.0996668003,1473237451.0,3.126 -1449,0.0,0.0,0.0,0.0,2372,130.0,2874.86,0.0,0.0,134.844526013,0.0,0.0,0,38.9111896511,-77.0996968076,1473237452.0,4.03999999999 -1450,0.0,0.0,0.0,0.0,2373,130.0,2878.79,0.0,0.0,135.131340643,0.0,0.0,0,38.9112145454,-77.0997290779,1473237453.0,3.788 -1451,0.0,0.0,0.0,0.0,2374,130.0,2882.37,0.0,0.0,137.795275591,0.0,0.0,0,38.9112370927,-77.0997584984,1473237454.0,3.34000000001 -1452,0.0,0.0,0.0,0.0,2375,130.0,2886.09,0.0,0.0,132.082268384,0.0,0.0,0,38.9112608135,-77.0997888409,1473237455.0,4.022 -1453,0.0,0.0,0.0,0.0,2376,131.0,2889.82,0.0,0.0,139.317765126,0.0,0.0,0,38.9112847019,-77.0998190995,1473237456.0,3.40600000001 -1454,0.0,0.0,0.0,0.0,2377,131.0,2893.38,0.0,0.0,138.494688639,0.0,0.0,0,38.9113075845,-77.0998478495,1473237457.0,3.686 -1455,0.0,0.0,0.0,0.0,2378,131.0,2897.21,0.0,0.0,134.695605425,0.0,0.0,0,38.9113319758,-77.099879114,1473237458.0,3.938 -1456,0.0,0.0,0.0,0.0,2379,131.0,2900.73,0.0,0.0,139.806981634,0.0,0.0,0,38.9113541879,-77.0999079477,1473237459.0,3.079 -1457,0.0,0.0,0.0,0.0,2380,131.0,2904.24,0.0,0.0,136.476910588,0.0,0.0,0,38.9113765676,-77.0999366138,1473237460.0,3.96599999999 -1458,0.0,0.0,0.0,0.0,2381,131.0,2908.12,0.0,0.0,138.434930189,0.0,0.0,0,38.9114014618,-77.0999679621,1473237461.0,3.79799999999 -1459,0.0,0.0,0.0,0.0,2382,131.0,2911.6,0.0,0.0,140.640810676,0.0,0.0,0,38.9114237577,-77.0999961253,1473237462.0,3.191 -1460,0.0,0.0,0.0,0.0,2383,131.0,2915.15,0.0,0.0,135.078398099,0.0,0.0,0,38.9114465564,-77.1000249591,1473237463.0,3.90999999999 -1461,0.0,0.0,0.0,0.0,2384,132.0,2918.84,0.0,0.0,142.234197534,0.0,0.0,0,38.9114702772,-77.100054631,1473237464.0,3.424 -1462,0.0,0.0,0.0,0.0,2385,131.0,2922.33,0.0,0.0,141.931995527,0.0,0.0,0,38.9114928246,-77.1000827104,1473237465.0,3.54599999999 -1463,0.0,0.0,0.0,0.0,2386,131.0,2926.08,0.0,0.0,136.307793619,0.0,0.0,0,38.9115170483,-77.1001128014,1473237466.0,3.88200000001 -1464,0.0,0.0,0.0,0.0,2387,132.0,2929.55,0.0,0.0,141.525039517,0.0,0.0,0,38.9115397632,-77.1001402941,1473237467.0,3.07000000001 -1465,0.0,0.0,0.0,0.0,2388,131.0,2933.02,0.0,0.0,138.958067147,0.0,0.0,0,38.911562562,-77.1001677029,1473237468.0,3.872 -1466,0.0,0.0,0.0,0.0,2389,131.0,2936.9,0.0,0.0,137.098171787,0.0,0.0,0,38.9115879592,-77.1001983806,1473237469.0,3.872 -1467,0.0,0.0,0.0,0.0,2390,132.0,2940.39,0.0,0.0,139.669533419,0.0,0.0,0,38.9116107579,-77.1002261247,1473237470.0,3.116 -1468,0.0,0.0,0.0,0.0,2391,131.0,2943.9,0.0,0.0,135.523932001,0.0,0.0,0,38.9116338082,-77.1002538688,1473237471.0,3.92799999999 -1469,0.0,0.0,0.0,0.0,2392,131.0,2947.73,0.0,0.0,141.82707657,0.0,0.0,0,38.9116591215,-77.1002838761,1473237472.0,3.704 -1470,0.0,0.0,0.0,0.0,2393,132.0,2951.19,0.0,0.0,142.343930048,0.0,0.0,0,38.9116820041,-77.1003109496,1473237473.0,3.238 -1471,0.0,0.0,0.0,0.0,2394,131.0,2954.71,0.0,0.0,136.095783152,0.0,0.0,0,38.9117051382,-77.1003387775,1473237474.0,3.82599999999 -1472,0.0,0.0,0.0,0.0,2395,132.0,2958.27,0.0,0.0,141.923449809,0.0,0.0,0,38.911728356,-77.1003670245,1473237475.0,3.25599999999 -1473,0.0,0.0,0.0,0.0,2396,132.0,2961.82,0.0,0.0,138.804264356,0.0,0.0,0,38.9117515739,-77.1003951877,1473237476.0,3.82599999999 -1474,0.0,0.0,0.0,0.0,2397,132.0,2965.7,0.0,0.0,135.399534132,0.0,0.0,0,38.9117768034,-77.100426117,1473237477.0,3.91899999999 -1475,0.0,0.0,0.0,0.0,2398,132.0,2969.26,0.0,0.0,138.565137012,0.0,0.0,0,38.911799686,-77.1004549507,1473237478.0,3.135 -1476,0.0,0.0,0.0,0.0,2399,131.0,2972.88,0.0,0.0,133.93649207,0.0,0.0,0,38.9118230715,-77.1004840359,1473237479.0,3.99399999998 -1477,0.0,0.0,0.0,0.0,2400,132.0,2976.69,0.0,0.0,138.737072227,0.0,0.0,0,38.911847882,-77.1005143784,1473237480.0,3.62000000001 -1478,0.0,0.0,0.0,0.0,2401,132.0,2980.26,0.0,0.0,139.398474462,0.0,0.0,0,38.9118712675,-77.1005425416,1473237481.0,3.47999999999 -1479,0.0,0.0,0.0,0.0,2402,132.0,2984.02,0.0,0.0,133.471542827,0.0,0.0,0,38.9118961617,-77.1005720459,1473237482.0,3.95600000002 -1480,0.0,0.0,0.0,0.0,2403,132.0,2987.6,0.0,0.0,139.93554484,0.0,0.0,0,38.9119198825,-77.1005999576,1473237483.0,3.2 -1481,0.0,0.0,0.0,0.0,2404,132.0,2991.16,0.0,0.0,137.841650376,0.0,0.0,0,38.9119433518,-77.1006279532,1473237484.0,3.83499999999 -1482,0.0,0.0,0.0,0.0,2405,132.0,2995.03,0.0,0.0,139.039699145,0.0,0.0,0,38.9119692519,-77.1006577928,1473237485.0,3.89099999999 -1483,0.0,0.0,0.0,0.0,2406,132.0,2998.51,0.0,0.0,142.581678933,0.0,0.0,0,38.911992386,-77.1006848663,1473237486.0,3.051 -1484,0.0,0.0,0.0,0.0,2407,132.0,3001.98,0.0,0.0,136.462237177,0.0,0.0,0,38.9120156039,-77.1007116884,1473237487.0,3.863 -1485,0.0,0.0,0.0,0.0,2408,133.0,3005.64,0.0,0.0,142.148947482,0.0,0.0,0,38.9120402467,-77.1007396001,1473237488.0,3.39600000001 -1486,0.0,0.0,0.0,0.0,2409,132.0,3009.17,0.0,0.0,141.308776192,0.0,0.0,0,38.9120643027,-77.1007662546,1473237489.0,3.62000000001 -1487,0.0,0.0,0.0,0.0,2410,132.0,3012.96,0.0,0.0,134.915406288,0.0,0.0,0,38.9120902866,-77.1007946692,1473237490.0,3.95600000002 -1488,0.0,0.0,0.0,0.0,2411,133.0,3016.45,0.0,0.0,140.296237631,0.0,0.0,0,38.912114175,-77.100820737,1473237491.0,3.07000000001 -1489,0.0,0.0,0.0,0.0,2412,132.0,3019.93,0.0,0.0,137.399404008,0.0,0.0,0,38.9121382311,-77.1008465532,1473237492.0,3.90999999999 -1490,0.0,0.0,0.0,0.0,2413,132.0,3023.73,0.0,0.0,139.632217202,0.0,0.0,0,38.9121644665,-77.1008746326,1473237493.0,3.77900000001 -1491,0.0,0.0,0.0,0.0,2414,132.0,3027.18,0.0,0.0,141.840139409,0.0,0.0,0,38.9121882711,-77.1009002812,1473237494.0,3.163 -1492,0.0,0.0,0.0,0.0,2415,132.0,3030.69,0.0,0.0,135.332901362,0.0,0.0,0,38.9122124109,-77.1009262651,1473237495.0,3.9 -1493,0.0,0.0,0.0,0.0,2416,132.0,3034.32,0.0,0.0,141.18993163,0.0,0.0,0,38.9122372214,-77.1009536739,1473237496.0,3.40600000001 -1494,0.0,0.0,0.0,0.0,2417,132.0,3037.88,0.0,0.0,138.891227125,0.0,0.0,0,38.9122612774,-77.1009807475,1473237497.0,3.64799999999 -1495,0.0,0.0,0.0,0.0,2418,132.0,3041.71,0.0,0.0,134.303731086,0.0,0.0,0,38.9122873452,-77.1010097489,1473237498.0,3.96599999999 -1496,0.0,0.0,0.0,0.0,2419,133.0,3045.28,0.0,0.0,138.04016431,0.0,0.0,0,38.912311485,-77.1010368224,1473237499.0,3.182 -1497,0.0,0.0,0.0,0.0,2420,132.0,3048.87,0.0,0.0,133.418043202,0.0,0.0,0,38.9123357926,-77.1010641474,1473237500.0,3.99399999998 -1498,0.0,0.0,0.0,0.0,2421,132.0,3052.68,0.0,0.0,137.305647126,0.0,0.0,0,38.9123616926,-77.101093065,1473237501.0,3.75099999999 -1499,0.0,0.0,0.0,0.0,2422,132.0,3056.3,0.0,0.0,137.946684503,0.0,0.0,0,38.9123861678,-77.1011206415,1473237502.0,3.43399999999 -1500,0.0,0.0,0.0,0.0,2423,132.0,3060.02,0.0,0.0,133.398627438,0.0,0.0,0,38.9124113973,-77.1011488046,1473237503.0,3.96599999999 -1501,0.0,0.0,0.0,0.0,2424,133.0,3063.64,0.0,0.0,137.828655711,0.0,0.0,0,38.9124358725,-77.1011763811,1473237504.0,3.238 -1502,0.0,0.0,0.0,0.0,2425,132.0,3067.3,0.0,0.0,132.326202994,0.0,0.0,0,38.9124606829,-77.1012041252,1473237505.0,4.012 -1503,0.0,0.0,0.0,0.0,2426,132.0,3071.18,0.0,0.0,132.930054622,0.0,0.0,0,38.9124871697,-77.1012332942,1473237506.0,3.88200000001 -1504,0.0,0.0,0.0,0.0,2427,132.0,3074.88,0.0,0.0,132.392183474,0.0,0.0,0,38.9125124831,-77.1012610383,1473237507.0,3.555 -1505,0.0,0.0,0.0,0.0,2428,132.0,3078.75,0.0,0.0,129.492870044,0.0,0.0,0,38.9125392213,-77.1012897044,1473237508.0,4.17100000001 -1506,0.0,0.0,0.0,0.0,2429,133.0,3082.47,0.0,0.0,133.663847575,0.0,0.0,0,38.91256487,-77.1013173647,1473237509.0,3.30299999999 -1507,0.0,0.0,0.0,0.0,2430,132.0,3086.22,0.0,0.0,130.013248969,0.0,0.0,0,38.9125911053,-77.1013446059,1473237510.0,4.16100000001 -1508,0.0,0.0,0.0,0.0,2431,133.0,3090.18,0.0,0.0,131.800867718,0.0,0.0,0,38.9126190171,-77.1013730206,1473237511.0,3.704 -1509,0.0,0.0,0.0,0.0,2432,133.0,3093.91,0.0,0.0,131.756213361,0.0,0.0,0,38.9126453362,-77.101399675,1473237512.0,3.72299999999 -1510,0.0,0.0,0.0,0.0,2433,134.0,3097.81,0.0,0.0,131.580746148,0.0,0.0,0,38.9126729965,-77.1014275029,1473237513.0,4.096 -1511,0.0,0.0,0.0,0.0,2434,134.0,3101.51,0.0,0.0,135.561470965,0.0,0.0,0,38.9126990642,-77.1014540736,1473237514.0,3.28399999999 -1512,0.0,0.0,0.0,0.0,2435,134.0,3105.19,0.0,0.0,132.496977233,0.0,0.0,0,38.9127250481,-77.1014804766,1473237515.0,4.106 -1513,0.0,0.0,0.0,0.0,2436,134.0,3108.97,0.0,0.0,135.41858412,0.0,0.0,0,38.9127517026,-77.1015074663,1473237516.0,3.368 -1514,0.0,0.0,0.0,0.0,2437,134.0,3112.67,0.0,0.0,133.299017973,0.0,0.0,0,38.9127776865,-77.1015342046,1473237517.0,3.94700000001 -1515,0.0,0.0,0.0,0.0,2438,135.0,3116.52,0.0,0.0,133.653639198,0.0,0.0,0,38.9128046762,-77.1015620325,1473237518.0,3.85399999999 -1516,0.0,0.0,0.0,0.0,2439,135.0,3120.16,0.0,0.0,135.13845549,0.0,0.0,0,38.9128301572,-77.1015885193,1473237519.0,3.415 -1517,0.0,0.0,0.0,0.0,2440,135.0,3123.94,0.0,0.0,134.717443285,0.0,0.0,0,38.9128567278,-77.1016157605,1473237520.0,4.096 -1518,0.0,0.0,0.0,0.0,2441,135.0,3127.59,0.0,0.0,137.851685908,0.0,0.0,0,38.9128824603,-77.1016419958,1473237521.0,3.191 -1519,0.0,0.0,0.0,0.0,2442,135.0,3131.18,0.0,0.0,134.721371708,0.0,0.0,0,38.9129076898,-77.1016678959,1473237522.0,4.05000000001 -1520,0.0,0.0,0.0,0.0,2443,135.0,3134.94,0.0,0.0,134.727657663,0.0,0.0,0,38.9129339252,-77.1016952209,1473237523.0,3.43399999999 -1521,0.0,0.0,0.0,0.0,2444,135.0,3138.64,0.0,0.0,132.646557219,0.0,0.0,0,38.9129598252,-77.1017222106,1473237524.0,3.9 -1522,0.0,0.0,0.0,0.0,2445,136.0,3142.53,0.0,0.0,131.559613591,0.0,0.0,0,38.9129874017,-77.1017497871,1473237525.0,3.95600000002 -1523,0.0,0.0,0.0,0.0,2446,136.0,3146.27,0.0,0.0,131.617182025,0.0,0.0,0,38.9130140562,-77.1017762739,1473237526.0,3.499 -1524,0.0,0.0,0.0,0.0,2447,136.0,3150.15,0.0,0.0,130.822300275,0.0,0.0,0,38.9130420517,-77.1018029284,1473237527.0,4.18899999999 -1525,0.0,0.0,0.0,0.0,2448,136.0,3153.92,0.0,0.0,132.944896355,0.0,0.0,0,38.9130696282,-77.1018284094,1473237528.0,3.34000000001 -1526,0.0,0.0,0.0,0.0,2449,136.0,3157.68,0.0,0.0,129.856550673,0.0,0.0,0,38.9130974561,-77.1018529683,1473237529.0,4.22699999999 -1527,0.0,0.0,0.0,0.0,2450,136.0,3161.53,0.0,0.0,130.735082052,0.0,0.0,0,38.9131261222,-77.1018779464,1473237530.0,3.48999999999 -1528,0.0,0.0,0.0,0.0,2451,136.0,3165.29,0.0,0.0,130.498595022,0.0,0.0,0,38.913154453,-77.1019018348,1473237531.0,4.00299999999 -1529,0.0,0.0,0.0,0.0,2452,136.0,3169.3,0.0,0.0,130.64945789,0.0,0.0,0,38.9131849632,-77.1019265614,1473237532.0,4.03999999999 -1530,0.0,0.0,0.0,0.0,2453,136.0,3173.0,0.0,0.0,132.996485669,0.0,0.0,0,38.9132133778,-77.1019488573,1473237533.0,3.368 -1531,0.0,0.0,0.0,0.0,2454,137.0,3176.77,0.0,0.0,130.819633139,0.0,0.0,0,38.9132427145,-77.1019708179,1473237534.0,4.14299999999 -1532,0.0,0.0,0.0,0.0,2455,137.0,3180.54,0.0,0.0,134.741488829,0.0,0.0,0,38.9132723026,-77.1019921917,1473237535.0,3.368 -1533,0.0,0.0,0.0,0.0,2456,137.0,3184.31,0.0,0.0,131.459289164,0.0,0.0,0,38.913302226,-77.1020125598,1473237536.0,4.106 -1534,0.0,0.0,0.0,0.0,2457,137.0,3188.22,0.0,0.0,132.336816103,0.0,0.0,0,38.9133336581,-77.1020330116,1473237537.0,3.67599999999 -1535,0.0,0.0,0.0,0.0,2458,137.0,3191.91,0.0,0.0,133.278560269,0.0,0.0,0,38.9133634139,-77.1020519547,1473237538.0,3.67599999999 -1536,0.0,0.0,0.0,0.0,2459,137.0,3195.84,0.0,0.0,131.557815389,0.0,0.0,0,38.9133955166,-77.1020711493,1473237539.0,4.07799999999 -1537,0.0,0.0,0.0,0.0,2460,138.0,3199.53,0.0,0.0,135.593140748,0.0,0.0,0,38.9134256076,-77.1020890865,1473237540.0,3.25599999999 -1538,0.0,0.0,0.0,0.0,2461,138.0,3203.3,0.0,0.0,130.70297833,0.0,0.0,0,38.9134567045,-77.1021067724,1473237541.0,4.17100000001 -1539,0.0,0.0,0.0,0.0,2462,138.0,3207.19,0.0,0.0,133.363816491,0.0,0.0,0,38.9134887233,-77.1021247935,1473237542.0,3.555 -1540,0.0,0.0,0.0,0.0,2463,137.0,3210.9,0.0,0.0,132.404476762,0.0,0.0,0,38.9135195687,-77.102141222,1473237543.0,3.788 -1541,0.0,0.0,0.0,0.0,2464,138.0,3214.85,0.0,0.0,131.669396954,0.0,0.0,0,38.9135526773,-77.1021581534,1473237544.0,4.096 -1542,0.0,0.0,0.0,0.0,2465,138.0,3218.56,0.0,0.0,136.056024455,0.0,0.0,0,38.9135836065,-77.1021743305,1473237545.0,3.26599999999 -1543,0.0,30.0,0.0,0.0,2466,138.0,3222.25,0.0,0.0,132.201702025,0.0,0.0,0,38.9136145357,-77.1021899208,1473237546.0,4.087 -1544,0.0,30.0,0.0,0.0,2467,139.0,3225.97,0.0,0.0,136.18339836,0.0,0.0,0,38.913645884,-77.1022050083,1473237547.0,3.40600000001 -1545,0.0,30.0,0.0,0.0,2468,138.0,3229.63,0.0,0.0,133.478021197,0.0,0.0,0,38.9136768971,-77.1022192575,1473237548.0,3.863 -1546,0.0,0.0,0.0,0.0,2469,139.0,3233.52,0.0,0.0,133.098557465,0.0,0.0,0,38.9137100894,-77.1022337582,1473237549.0,3.92799999999 -1547,0.0,0.0,0.0,0.0,2470,139.0,3237.18,0.0,0.0,133.385532693,0.0,0.0,0,38.9137411863,-77.1022478398,1473237550.0,3.40600000001 -1548,0.0,0.0,0.0,0.0,2471,139.0,3240.99,0.0,0.0,132.217895091,0.0,0.0,0,38.9137735404,-77.1022623405,1473237551.0,4.19900000001 -1549,0.0,0.0,0.0,0.0,2472,139.0,3244.75,0.0,0.0,133.553957533,0.0,0.0,0,38.9138053078,-77.1022773441,1473237552.0,3.30299999999 -1550,0.0,0.0,0.0,0.0,2473,139.0,3248.55,0.0,0.0,130.776529519,0.0,0.0,0,38.9138374105,-77.1022925153,1473237553.0,4.18899999999 -1551,0.0,0.0,0.0,0.0,2474,140.0,3252.41,0.0,0.0,130.551991907,0.0,0.0,0,38.9138699323,-77.102308441,1473237554.0,3.51799999999 -1552,0.0,0.0,0.0,0.0,2475,140.0,3256.24,0.0,0.0,129.485321073,0.0,0.0,0,38.9139021188,-77.1023241989,1473237555.0,4.03999999999 -1553,0.0,0.0,0.0,0.0,2476,140.0,3260.25,0.0,0.0,129.301080084,0.0,0.0,0,38.9139359817,-77.1023405436,1473237556.0,3.975 -1554,0.0,0.0,0.0,0.0,2477,141.0,3264.01,0.0,0.0,130.942879429,0.0,0.0,0,38.9139674138,-77.1023565531,1473237557.0,3.54599999999 -1555,0.0,0.0,0.0,0.0,2478,141.0,3267.89,0.0,0.0,130.762167958,0.0,0.0,0,38.9140000194,-77.102372814,1473237558.0,4.18899999999 -1556,0.0,0.0,0.0,0.0,2479,141.0,3271.66,0.0,0.0,134.175950559,0.0,0.0,0,38.9140315354,-77.1023888234,1473237559.0,3.30299999999 -1557,0.0,0.0,0.0,0.0,2480,141.0,3275.44,0.0,0.0,131.490268582,0.0,0.0,0,38.914063219,-77.1024046652,1473237560.0,4.14299999999 -1558,0.0,0.0,0.0,0.0,2481,141.0,3279.26,0.0,0.0,132.294828475,0.0,0.0,0,38.9140952379,-77.1024208423,1473237561.0,3.50799999999 -1559,0.0,0.0,0.0,0.0,2482,141.0,3282.97,0.0,0.0,131.088076433,0.0,0.0,0,38.9141263347,-77.1024366003,1473237562.0,3.90999999999 -1560,0.0,0.0,0.0,0.0,2483,142.0,3286.94,0.0,0.0,131.06487087,0.0,0.0,0,38.9141596947,-77.1024530288,1473237563.0,4.03100000001 -1561,0.0,0.0,0.0,0.0,2484,142.0,3290.68,0.0,0.0,133.229518124,0.0,0.0,0,38.914191043,-77.1024690382,1473237564.0,3.44299999999 -1562,0.0,0.0,0.0,0.0,2485,141.0,3294.5,0.0,0.0,130.601740452,0.0,0.0,0,38.9142230619,-77.1024850477,1473237565.0,4.15200000001 -1563,0.0,0.0,0.0,0.0,2486,142.0,3298.21,0.0,0.0,134.270475376,0.0,0.0,0,38.9142540749,-77.1025008895,1473237566.0,3.28399999999 -1564,0.0,0.0,0.0,0.0,2487,141.0,3301.97,0.0,0.0,131.169509619,0.0,0.0,0,38.9142855909,-77.1025169827,1473237567.0,4.14299999999 -1565,0.0,0.0,0.0,0.0,2488,142.0,3305.93,0.0,0.0,131.839833437,0.0,0.0,0,38.9143187832,-77.1025335789,1473237568.0,3.75099999999 -1566,0.0,0.0,0.0,0.0,2489,141.0,3309.62,0.0,0.0,132.039385463,0.0,0.0,0,38.9143496286,-77.1025494207,1473237569.0,3.63 -1567,0.0,0.0,0.0,0.0,2490,141.0,3313.53,0.0,0.0,131.120816196,0.0,0.0,0,38.9143824857,-77.1025657654,1473237570.0,4.15200000001 -1568,0.0,0.0,0.0,0.0,2491,142.0,3317.21,0.0,0.0,135.17704682,0.0,0.0,0,38.9144133311,-77.1025813557,1473237571.0,3.28399999999 -1569,0.0,0.0,0.0,0.0,2492,142.0,3320.93,0.0,0.0,131.488023206,0.0,0.0,0,38.9144444279,-77.1025971137,1473237572.0,4.13300000001 -1570,0.0,0.0,0.0,0.0,2493,142.0,3324.71,0.0,0.0,133.801813449,0.0,0.0,0,38.9144761115,-77.1026130393,1473237573.0,3.45199999999 -1571,0.0,0.0,0.0,0.0,2494,142.0,3328.4,0.0,0.0,132.000905149,0.0,0.0,0,38.9145070408,-77.1026287135,1473237574.0,3.91899999999 -1572,0.0,0.0,0.0,0.0,2495,142.0,3332.33,0.0,0.0,132.109008805,0.0,0.0,0,38.9145399816,-77.1026452258,1473237575.0,3.96599999999 -1573,0.0,0.0,0.0,0.0,2496,142.0,3336.07,0.0,0.0,133.526937759,0.0,0.0,0,38.9145710785,-77.1026619058,1473237576.0,3.40600000001 -1574,0.0,0.0,0.0,0.0,2497,142.0,3339.85,0.0,0.0,132.453217065,0.0,0.0,0,38.9146025106,-77.1026787534,1473237577.0,4.17100000001 -1575,0.0,0.0,0.0,0.0,2498,142.0,3343.54,0.0,0.0,135.745808628,0.0,0.0,0,38.9146330208,-77.1026956849,1473237578.0,3.238 -1576,0.0,27.0,0.0,0.0,2499,142.0,3347.25,0.0,0.0,132.104929058,0.0,0.0,0,38.9146637823,-77.1027121972,1473237579.0,4.13300000001 -1577,0.0,27.0,0.0,0.0,2500,142.0,3351.05,0.0,0.0,133.033863165,0.0,0.0,0,38.9146952983,-77.1027292963,1473237580.0,3.51799999999 -1578,0.0,27.0,0.0,0.0,2501,142.0,3354.74,0.0,0.0,133.271486133,0.0,0.0,0,38.9147259761,-77.102745641,1473237581.0,3.82599999999 -1579,0.0,0.0,0.0,0.0,2502,142.0,3358.66,0.0,0.0,132.428614671,0.0,0.0,0,38.9147587493,-77.1027627401,1473237582.0,4.06799999999 -1580,0.0,0.0,0.0,0.0,2503,142.0,3362.3,0.0,0.0,136.572768454,0.0,0.0,0,38.9147889242,-77.1027789172,1473237583.0,3.21899999999 -1581,0.0,0.0,0.0,0.0,2504,142.0,3365.97,0.0,0.0,132.430284914,0.0,0.0,0,38.9148194343,-77.1027951781,1473237584.0,4.096 -1582,0.0,0.0,0.0,0.0,2505,142.0,3369.68,0.0,0.0,136.451435694,0.0,0.0,0,38.9148504473,-77.1028113551,1473237585.0,3.35900000001 -1583,0.0,0.0,0.0,0.0,2506,142.0,3373.32,0.0,0.0,133.561370583,0.0,0.0,0,38.914880706,-77.1028274484,1473237586.0,3.90999999999 -1584,0.0,25.0,0.0,0.0,2507,142.0,3377.21,0.0,0.0,133.432069214,0.0,0.0,0,38.914913144,-77.1028444637,1473237587.0,3.92799999999 -1585,0.0,25.0,0.0,0.0,2508,142.0,3380.82,0.0,0.0,136.075580265,0.0,0.0,0,38.9149431512,-77.1028603055,1473237588.0,3.35900000001 -1586,0.0,25.0,0.0,0.0,2509,142.0,3384.55,0.0,0.0,132.539853759,0.0,0.0,0,38.914974248,-77.102876734,1473237589.0,4.11499999999 -1587,0.0,0.0,0.0,0.0,2510,142.0,3388.16,0.0,0.0,137.013926784,0.0,0.0,0,38.9150043391,-77.1028924081,1473237590.0,3.21000000001 -1588,0.0,0.0,0.0,0.0,2511,142.0,3391.81,0.0,0.0,133.343031008,0.0,0.0,0,38.9150348492,-77.1029081661,1473237591.0,4.03999999999 -1589,0.0,0.0,0.0,0.0,2512,142.0,3395.7,0.0,0.0,133.736898416,0.0,0.0,0,38.915067371,-77.1029247623,1473237592.0,3.76000000001 -1590,0.0,30.0,0.0,0.0,2513,143.0,3399.32,0.0,0.0,135.202364578,0.0,0.0,0,38.9150976297,-77.1029403526,1473237593.0,3.50799999999 -1591,0.0,30.0,0.0,0.0,2514,142.0,3403.11,0.0,0.0,132.149064145,0.0,0.0,0,38.9151293971,-77.1029565297,1473237594.0,4.11499999999 -1592,0.0,30.0,0.0,0.0,2515,143.0,3406.81,0.0,0.0,137.697694547,0.0,0.0,0,38.9151604101,-77.1029720362,1473237595.0,3.238 -1593,0.0,30.0,0.0,0.0,2516,142.0,3410.47,0.0,0.0,133.279021652,0.0,0.0,0,38.9151910041,-77.1029877104,1473237596.0,3.99399999998 -1594,0.0,0.0,0.0,0.0,2517,143.0,3414.26,0.0,0.0,135.392233058,0.0,0.0,0,38.9152228553,-77.1030035522,1473237597.0,3.63 -1595,0.0,0.0,0.0,0.0,2518,142.0,3417.88,0.0,0.0,134.821702676,0.0,0.0,0,38.915253114,-77.1030190587,1473237598.0,3.592 -1596,0.0,0.0,0.0,0.0,2519,143.0,3421.74,0.0,0.0,132.480259868,0.0,0.0,0,38.9152853843,-77.1030357387,1473237599.0,4.124 -1597,0.0,0.0,0.0,0.0,2520,143.0,3425.46,0.0,0.0,135.815723345,0.0,0.0,0,38.9153163973,-77.1030519996,1473237600.0,3.25599999999 -1598,0.0,0.0,0.0,0.0,2521,142.0,3429.19,0.0,0.0,130.115041975,0.0,0.0,0,38.9153474942,-77.1030682605,1473237601.0,4.16100000001 -1599,0.0,0.0,0.0,0.0,2522,143.0,3433.03,0.0,0.0,132.011466139,0.0,0.0,0,38.9153795969,-77.103084689,1473237602.0,3.51799999999 -1600,0.0,0.0,0.0,0.0,2523,143.0,3436.79,0.0,0.0,130.544171401,0.0,0.0,0,38.915411029,-77.1031008661,1473237603.0,3.91899999999 -1601,0.0,0.0,0.0,0.0,2524,143.0,3440.82,0.0,0.0,128.784221201,0.0,0.0,0,38.9154448081,-77.1031177975,1473237604.0,4.19900000001 -1602,0.0,0.0,0.0,0.0,2525,143.0,3444.61,0.0,0.0,132.299829213,0.0,0.0,0,38.9154764079,-77.1031343099,1473237605.0,3.34000000001 -1603,0.0,0.0,0.0,0.0,2526,143.0,3448.39,0.0,0.0,126.922100599,0.0,0.0,0,38.9155079238,-77.1031509899,1473237606.0,4.22699999999 -1604,0.0,0.0,0.0,0.0,2527,143.0,3452.25,0.0,0.0,131.307447008,0.0,0.0,0,38.9155401103,-77.1031678375,1473237607.0,3.51799999999 -1605,0.0,0.0,0.0,0.0,2528,143.0,3456.01,0.0,0.0,130.391048965,0.0,0.0,0,38.9155714586,-77.1031841822,1473237608.0,4.00299999999 -1606,0.0,0.0,0.0,0.0,2529,143.0,3460.08,0.0,0.0,129.874802939,0.0,0.0,0,38.9156056568,-77.1032011975,1473237609.0,4.14299999999 -1607,0.0,0.0,0.0,0.0,2530,144.0,3463.8,0.0,0.0,134.43347638,0.0,0.0,0,38.9156366698,-77.1032172907,1473237610.0,3.26599999999 -1608,0.0,0.0,0.0,0.0,2531,144.0,3467.51,0.0,0.0,129.695714764,0.0,0.0,0,38.9156676829,-77.1032333001,1473237611.0,4.11499999999 -1609,0.0,0.0,0.0,0.0,2532,144.0,3471.3,0.0,0.0,134.429095345,0.0,0.0,0,38.9156993665,-77.1032494772,1473237612.0,3.45199999999 -1610,0.0,0.0,0.0,0.0,2533,144.0,3475.02,0.0,0.0,131.867379093,0.0,0.0,0,38.9157304633,-77.1032654028,1473237613.0,3.938 -1611,0.0,0.0,0.0,0.0,2534,145.0,3479.02,0.0,0.0,131.388106817,0.0,0.0,0,38.9157640748,-77.1032820828,1473237614.0,4.087 -1612,0.0,0.0,0.0,0.0,2535,145.0,3482.72,0.0,0.0,134.938576661,0.0,0.0,0,38.915795004,-77.1032979246,1473237615.0,3.312 -1613,0.0,0.0,0.0,0.0,2536,144.0,3486.4,0.0,0.0,130.646650016,0.0,0.0,0,38.9158257656,-77.1033138502,1473237616.0,4.11499999999 -1614,0.0,0.0,0.0,0.0,2537,145.0,3490.11,0.0,0.0,135.317838757,0.0,0.0,0,38.9158569463,-77.1033293568,1473237617.0,3.312 -1615,0.0,0.0,0.0,0.0,2538,145.0,3493.8,0.0,0.0,132.952088902,0.0,0.0,0,38.9158879593,-77.1033446956,1473237618.0,4.00299999999 -1616,0.0,0.0,0.0,0.0,2539,144.0,3497.79,0.0,0.0,133.357965108,0.0,0.0,0,38.9159214869,-77.1033611242,1473237619.0,3.95600000002 -1617,0.0,0.0,0.0,0.0,2540,144.0,3501.4,0.0,0.0,136.525306827,0.0,0.0,0,38.9159517456,-77.1033765469,1473237620.0,3.33100000001 -1618,0.0,0.0,0.0,0.0,2541,144.0,3505.09,0.0,0.0,133.3745967,0.0,0.0,0,38.9159826748,-77.1033921372,1473237621.0,4.03999999999 -1619,0.0,0.0,0.0,0.0,2542,144.0,3508.7,0.0,0.0,139.005729924,0.0,0.0,0,38.916012682,-77.1034081466,1473237622.0,3.21000000001 -1620,0.0,23.0,0.0,0.0,2543,144.0,3512.31,0.0,0.0,134.922025582,0.0,0.0,0,38.9160426892,-77.1034241561,1473237623.0,3.95600000002 -1621,0.0,23.0,0.0,0.0,2544,144.0,3516.18,0.0,0.0,135.444945441,0.0,0.0,0,38.9160748757,-77.1034412552,1473237624.0,3.76000000001 -1622,0.0,23.0,0.0,0.0,2545,144.0,3519.81,0.0,0.0,133.989631175,0.0,0.0,0,38.9161047991,-77.1034581866,1473237625.0,3.48999999999 -1623,0.0,0.0,0.0,0.0,2546,144.0,3523.66,0.0,0.0,132.390665943,0.0,0.0,0,38.9161363989,-77.103476543,1473237626.0,4.14299999999 -1624,0.0,0.0,0.0,0.0,2547,144.0,3527.38,0.0,0.0,132.849477517,0.0,0.0,0,38.9161666576,-77.1034948993,1473237627.0,3.28399999999 -1625,0.0,0.0,0.0,0.0,2548,144.0,3531.21,0.0,0.0,128.914738806,0.0,0.0,0,38.9161977544,-77.1035140101,1473237628.0,4.31099999999 -1626,0.0,0.0,0.0,0.0,2549,145.0,3535.13,0.0,0.0,128.58536064,0.0,0.0,0,38.9162293542,-77.1035342105,1473237629.0,3.499 -1627,0.0,0.0,0.0,0.0,2550,145.0,3539.05,0.0,0.0,126.530415502,0.0,0.0,0,38.916260954,-77.103554327,1473237630.0,4.26400000002 -1628,0.0,0.0,0.0,0.0,2551,145.0,3543.14,0.0,0.0,125.96422616,0.0,0.0,0,38.9162940625,-77.1035750303,1473237631.0,3.938 -1629,0.0,0.0,0.0,0.0,2552,145.0,3546.94,0.0,0.0,128.106868857,0.0,0.0,0,38.9163248241,-77.1035943087,1473237632.0,3.69499999999 -1630,0.0,0.0,0.0,0.0,2553,145.0,3550.94,0.0,0.0,128.681201515,0.0,0.0,0,38.9163572621,-77.1036142576,1473237633.0,4.255 -1631,0.0,0.0,0.0,0.0,2554,145.0,3554.77,0.0,0.0,132.630411292,0.0,0.0,0,38.9163883589,-77.1036334522,1473237634.0,3.38699999999 -1632,0.0,0.0,0.0,0.0,2555,145.0,3558.54,0.0,0.0,130.691590477,0.0,0.0,0,38.916418869,-77.1036524791,1473237635.0,4.11499999999 -1633,0.0,0.0,0.0,0.0,2556,146.0,3562.37,0.0,0.0,131.602335343,0.0,0.0,0,38.9164497983,-77.1036720928,1473237636.0,3.48999999999 -1634,0.0,0.0,0.0,0.0,2557,146.0,3566.19,0.0,0.0,128.774600966,0.0,0.0,0,38.9164803922,-77.1036922093,1473237637.0,4.05000000001 -1635,0.0,0.0,0.0,0.0,2558,146.0,3570.2,0.0,0.0,127.397246675,0.0,0.0,0,38.9165124111,-77.1037138347,1473237638.0,3.975 -1636,0.0,0.0,0.0,0.0,2559,146.0,3574.11,0.0,0.0,126.8719099,0.0,0.0,0,38.9165433403,-77.1037353761,1473237639.0,3.76000000001 -1637,0.0,0.0,0.0,0.0,2560,146.0,3578.19,0.0,0.0,127.476267892,0.0,0.0,0,38.916575443,-77.1037580911,1473237640.0,4.329 -1638,0.0,0.0,0.0,0.0,2561,146.0,3582.03,0.0,0.0,129.963801424,0.0,0.0,0,38.9166057855,-77.103779465,1473237641.0,3.37799999999 -1639,0.0,0.0,0.0,0.0,2562,146.0,3585.81,0.0,0.0,131.005109766,0.0,0.0,0,38.9166357089,-77.1038002521,1473237642.0,4.20799999999 -1640,0.0,0.0,0.0,0.0,2563,147.0,3589.6,0.0,0.0,133.491442679,0.0,0.0,0,38.9166657161,-77.1038212068,1473237643.0,3.37799999999 -1641,0.0,0.0,0.0,0.0,2564,147.0,3593.33,0.0,0.0,132.408271447,0.0,0.0,0,38.9166951366,-77.1038417425,1473237644.0,4.03100000001 -1642,0.0,0.0,0.0,0.0,2565,147.0,3597.16,0.0,0.0,131.621231701,0.0,0.0,0,38.9167253952,-77.1038631164,1473237645.0,3.66700000001 -1643,0.0,0.0,0.0,0.0,2566,147.0,3600.85,0.0,0.0,132.069581802,0.0,0.0,0,38.9167544805,-77.1038837358,1473237646.0,3.71399999999 -1644,0.0,0.0,0.0,0.0,2567,146.0,3604.78,0.0,0.0,132.390969446,0.0,0.0,0,38.9167854097,-77.1039056964,1473237647.0,4.16100000001 -1645,0.0,0.0,0.0,0.0,2568,147.0,3608.5,0.0,0.0,134.175638816,0.0,0.0,0,38.9168145787,-77.1039268188,1473237648.0,3.312 -1646,0.0,0.0,0.0,0.0,2569,146.0,3612.2,0.0,0.0,133.202936692,0.0,0.0,0,38.9168434963,-77.1039481089,1473237649.0,4.06799999999 -1647,0.0,0.0,0.0,0.0,2570,147.0,3615.88,0.0,0.0,135.378109301,0.0,0.0,0,38.9168719109,-77.1039699856,1473237650.0,3.312 -1648,0.0,0.0,0.0,0.0,2571,146.0,3619.61,0.0,0.0,132.597674547,0.0,0.0,0,38.9169004094,-77.1039927006,1473237651.0,4.096 -1649,0.0,0.0,0.0,0.0,2572,146.0,3623.5,0.0,0.0,131.607283865,0.0,0.0,0,38.9169299137,-77.1040169243,1473237652.0,3.66700000001 -1650,0.0,0.0,0.0,0.0,2573,147.0,3627.21,0.0,0.0,130.273099789,0.0,0.0,0,38.9169580769,-77.1040399745,1473237653.0,3.76000000001 -1651,0.0,0.0,0.0,0.0,2574,146.0,3631.19,0.0,0.0,129.505502022,0.0,0.0,0,38.9169883355,-77.1040646173,1473237654.0,4.19900000001 -1652,0.0,0.0,0.0,0.0,2575,147.0,3634.97,0.0,0.0,131.24910512,0.0,0.0,0,38.9170170017,-77.1040880028,1473237655.0,3.35900000001 -1653,0.0,0.0,0.0,0.0,2576,146.0,3638.81,0.0,0.0,128.860516022,0.0,0.0,0,38.9170462545,-77.1041116398,1473237656.0,4.30099999999 -1654,0.0,0.0,0.0,0.0,2577,147.0,3642.66,0.0,0.0,130.797114989,0.0,0.0,0,38.917075675,-77.1041351091,1473237657.0,3.424 -1655,0.0,0.0,0.0,0.0,2578,146.0,3646.46,0.0,0.0,128.828464064,0.0,0.0,0,38.9171047602,-77.104158327,1473237658.0,4.13300000001 -1656,0.0,0.0,0.0,0.0,2579,147.0,3650.44,0.0,0.0,129.492144143,0.0,0.0,0,38.9171351865,-77.1041825507,1473237659.0,3.83499999999 -1657,0.0,0.0,0.0,0.0,2580,147.0,3654.21,0.0,0.0,130.536794423,0.0,0.0,0,38.9171641041,-77.1042053495,1473237660.0,3.71399999999 -1658,0.0,0.0,0.0,0.0,2581,147.0,3658.14,0.0,0.0,131.305804967,0.0,0.0,0,38.9171942789,-77.1042290702,1473237661.0,4.13300000001 -1659,0.0,0.0,0.0,0.0,2582,147.0,3661.83,0.0,0.0,133.985123591,0.0,0.0,0,38.9172222745,-77.104251869,1473237662.0,3.26599999999 -1660,0.0,0.0,0.0,0.0,2583,147.0,3665.57,0.0,0.0,132.378526942,0.0,0.0,0,38.9172505215,-77.104275506,1473237663.0,4.19900000001 -1661,0.0,0.0,0.0,0.0,2584,147.0,3669.33,0.0,0.0,133.79762848,0.0,0.0,0,38.9172788523,-77.1042993106,1473237664.0,3.312 -1662,0.0,0.0,0.0,0.0,2585,147.0,3673.06,0.0,0.0,130.888717392,0.0,0.0,0,38.9173070155,-77.1043227799,1473237665.0,4.13300000001 -1663,0.0,0.0,0.0,0.0,2586,147.0,3677.02,0.0,0.0,130.459091756,0.0,0.0,0,38.9173368551,-77.1043476742,1473237666.0,3.77900000001 -1664,0.0,0.0,0.0,0.0,2587,147.0,3680.73,0.0,0.0,130.535909242,0.0,0.0,0,38.9173649345,-77.104370892,1473237667.0,3.67599999999 -1665,0.0,0.0,0.0,0.0,2588,148.0,3684.63,0.0,0.0,130.542843483,0.0,0.0,0,38.9173946064,-77.1043949481,1473237668.0,4.19900000001 -1666,0.0,0.0,0.0,0.0,2589,148.0,3688.33,0.0,0.0,133.307479762,0.0,0.0,0,38.9174227696,-77.1044178307,1473237669.0,3.29399999999 -1667,0.0,0.0,0.0,0.0,2590,148.0,3692.09,0.0,0.0,131.731268213,0.0,0.0,0,38.9174513519,-77.1044411324,1473237670.0,4.217 -1668,0.0,0.0,0.0,0.0,2591,148.0,3695.86,0.0,0.0,133.275945827,0.0,0.0,0,38.9174801018,-77.1044642664,1473237671.0,3.32199999999 -1669,0.0,0.0,0.0,0.0,2592,147.0,3699.62,0.0,0.0,131.419052691,0.0,0.0,0,38.9175088517,-77.1044870652,1473237672.0,4.096 -1670,0.0,0.0,0.0,0.0,2593,147.0,3703.56,0.0,0.0,131.007784471,0.0,0.0,0,38.9175391104,-77.1045108698,1473237673.0,3.75099999999 -1671,0.0,0.0,0.0,0.0,2594,147.0,3707.34,0.0,0.0,132.811745388,0.0,0.0,0,38.9175681118,-77.1045337524,1473237674.0,3.686 -1672,0.0,0.0,0.0,0.0,2595,147.0,3711.25,0.0,0.0,131.551671902,0.0,0.0,0,38.9175982866,-77.1045568865,1473237675.0,4.106 -1673,0.0,0.0,0.0,0.0,2596,147.0,3714.97,0.0,0.0,136.284954731,0.0,0.0,0,38.9176269528,-77.1045790985,1473237676.0,3.25599999999 -1674,0.0,0.0,0.0,0.0,2597,147.0,3718.66,0.0,0.0,132.467952504,0.0,0.0,0,38.9176557027,-77.1046005562,1473237677.0,4.05000000001 -1675,0.0,0.0,0.0,0.0,2598,147.0,3722.45,0.0,0.0,134.96759025,0.0,0.0,0,38.9176852908,-77.1046222653,1473237678.0,3.499 -1676,0.0,0.0,0.0,0.0,2599,147.0,3726.12,0.0,0.0,133.026508555,0.0,0.0,0,38.9177142084,-77.1046429686,1473237679.0,3.80699999999 -1677,0.0,0.0,0.0,0.0,2600,147.0,3730.06,0.0,0.0,132.581997086,0.0,0.0,0,38.9177452214,-77.1046650968,1473237680.0,4.05000000001 -1678,0.0,0.0,0.0,0.0,2601,147.0,3733.77,0.0,0.0,134.928330276,0.0,0.0,0,38.9177742228,-77.1046862192,1473237681.0,3.33100000001 -1679,0.0,0.0,0.0,0.0,2602,147.0,3737.5,0.0,0.0,131.99758633,0.0,0.0,0,38.9178034756,-77.1047074255,1473237682.0,4.124 -1680,0.0,0.0,0.0,0.0,2603,147.0,3741.2,0.0,0.0,135.120906889,0.0,0.0,0,38.9178323932,-77.1047286317,1473237683.0,3.28399999999 -1681,0.0,0.0,0.0,0.0,2604,146.0,3744.89,0.0,0.0,133.139829097,0.0,0.0,0,38.9178611431,-77.1047500055,1473237684.0,4.03999999999 -1682,0.0,0.0,0.0,0.0,2605,147.0,3748.81,0.0,0.0,131.957471992,0.0,0.0,0,38.9178914856,-77.1047729719,1473237685.0,3.76000000001 -1683,0.0,0.0,0.0,0.0,2606,147.0,3752.47,0.0,0.0,137.731520127,0.0,0.0,0,38.9179199003,-77.1047944296,1473237686.0,3.499 -1684,0.0,23.0,0.0,0.0,2607,147.0,3756.21,0.0,0.0,139.250242935,0.0,0.0,0,38.917948734,-77.1048167255,1473237687.0,3.90999999999 -1685,0.0,23.0,0.0,0.0,2608,147.0,3759.74,0.0,0.0,150.310968016,0.0,0.0,0,38.9179758076,-77.1048381831,1473237688.0,3.08799999999 -1686,0.0,23.0,0.0,0.0,2609,146.0,3762.88,0.0,0.0,159.758329219,0.0,0.0,0,38.9179996122,-77.1048576292,1473237689.0,3.10699999999 -1687,0.0,0.0,0.0,0.0,2610,146.0,3765.95,0.0,0.0,172.928266959,0.0,0.0,0,38.9180227462,-77.1048770752,1473237690.0,2.99500000001 -1688,0.0,0.0,0.0,0.0,2611,146.0,3768.75,0.0,0.0,195.014714747,0.0,0.0,0,38.9180436172,-77.1048952639,1473237691.0,2.585 -1689,0.0,0.0,0.0,0.0,2612,145.0,3771.24,0.0,0.0,203.680713288,0.0,0.0,0,38.9180620573,-77.1049115248,1473237692.0,2.379 -1690,0.0,0.0,0.0,0.0,2613,144.0,3773.51,0.0,0.0,230.764620087,0.0,0.0,0,38.9180788212,-77.1049264446,1473237693.0,2.165 -1691,0.0,0.0,0.0,0.0,2614,143.0,3775.56,0.0,0.0,252.762331191,0.0,0.0,0,38.9180939086,-77.1049401071,1473237694.0,1.95 -1692,0.0,23.0,0.0,0.0,2615,143.0,3777.6,0.0,0.0,260.77473804,0.0,0.0,0,38.9181088284,-77.1049538534,1473237695.0,2.118 -1693,0.0,23.0,0.0,0.0,2616,143.0,3779.41,0.0,0.0,270.685784192,0.0,0.0,0,38.9181220718,-77.1049660072,1473237696.0,1.474 -1694,0.0,24.0,0.0,0.0,2617,142.0,3781.16,0.0,0.0,272.010475347,0.0,0.0,0,38.9181348123,-77.1049779933,1473237697.0,1.987 -1695,0.0,24.0,0.0,0.0,2618,142.0,3783.14,0.0,0.0,278.041910906,0.0,0.0,0,38.9181490615,-77.1049916558,1473237698.0,1.941 -1696,0.0,24.0,0.0,0.0,2619,141.0,3784.93,0.0,0.0,292.835048933,0.0,0.0,0,38.9181618858,-77.1050042287,1473237699.0,1.67 -1697,0.0,0.0,0.0,0.0,2620,141.0,3786.64,0.0,0.0,288.75,0.0,0.0,0,38.9181739558,-77.10501655,1473237700.0,1.782 -1698,0.0,0.0,0.0,0.0,2621,140.0,3788.26,0.0,0.0,299.456311787,0.0,0.0,0,38.9181852713,-77.1050282009,1473237701.0,1.502 -1699,0.0,0.0,0.0,0.0,2622,140.0,3789.81,0.0,0.0,297.027411387,0.0,0.0,0,38.9181961678,-77.1050393488,1473237702.0,1.586 -1700,0.0,0.0,0.0,0.0,2623,140.0,3791.52,0.0,0.0,291.856815804,0.0,0.0,0,38.9182081539,-77.1050518379,1473237703.0,1.885 -1701,0.0,0.0,0.0,0.0,2624,139.0,3793.34,0.0,0.0,297.269751066,0.0,0.0,0,38.9182207268,-77.1050653327,1473237704.0,1.773 -1702,0.0,0.0,0.0,0.0,2625,138.0,3795.02,0.0,0.0,302.858671198,0.0,0.0,0,38.91823221,-77.1050778218,1473237705.0,1.605 -1703,0.0,0.0,0.0,0.0,2626,138.0,3796.53,0.0,0.0,325.689729071,0.0,0.0,0,38.9182426874,-77.1050889697,1473237706.0,1.493 -1704,0.0,0.0,0.0,0.0,2627,138.0,3797.95,0.0,0.0,357.640501626,0.0,0.0,0,38.9182524942,-77.1050995309,1473237707.0,1.372 -1705,0.0,0.0,0.0,0.0,2628,137.0,3799.26,0.0,0.0,386.181716051,0.0,0.0,0,38.918261379,-77.1051094215,1473237708.0,1.306 -1706,0.0,0.0,0.0,0.0,2629,136.0,3800.52,0.0,0.0,412.822886472,0.0,0.0,0,38.9182697609,-77.1051192284,1473237709.0,1.222 -1707,0.0,0.0,0.0,0.0,2630,136.0,3801.72,0.0,0.0,442.371109145,0.0,0.0,0,38.9182776399,-77.1051287837,1473237710.0,1.166 -1708,0.0,0.0,0.0,0.0,2631,135.0,3802.81,0.0,0.0,473.719828558,0.0,0.0,0,38.9182847645,-77.1051374171,1473237711.0,0.998 -1709,0.0,0.0,0.0,0.0,2632,134.0,3803.81,0.0,0.0,508.570849864,0.0,0.0,0,38.9182913862,-77.1051452123,1473237712.0,0.998 -1710,0.0,0.0,0.0,0.0,2633,134.0,3804.76,0.0,0.0,545.539564608,0.0,0.0,0,38.9182975888,-77.1051528398,1473237713.0,0.923999999999 -1711,0.0,0.0,0.0,0.0,2634,133.0,3805.68,0.0,0.0,575.899000778,0.0,0.0,0,38.9183039591,-77.1051595453,1473237714.0,0.868000000001 -1712,0.0,0.0,0.0,0.0,2635,132.0,3806.51,0.0,0.0,606.633577563,0.0,0.0,0,38.9183097426,-77.1051656641,1473237715.0,0.821 -1713,0.0,0.0,0.0,0.0,2636,132.0,3807.29,0.0,0.0,648.395571823,0.0,0.0,0,38.918315107,-77.1051716153,1473237716.0,0.765 -1714,0.0,0.0,0.0,0.0,2637,132.0,3808.02,0.0,0.0,685.520966258,0.0,0.0,0,38.9183200523,-77.1051771473,1473237717.0,0.756 -1715,0.0,0.0,0.0,0.0,2638,132.0,3808.69,0.0,0.0,730.536422459,0.0,0.0,0,38.9183244947,-77.1051824279,1473237718.0,0.653 -1716,0.0,0.0,0.0,0.0,2639,131.0,3809.31,0.0,0.0,777.421786657,0.0,0.0,0,38.9183286019,-77.1051872056,1473237719.0,0.662 -1717,0.0,0.0,0.0,0.0,2640,130.0,3809.92,0.0,0.0,821.812541357,0.0,0.0,0,38.9183326252,-77.1051920671,1473237720.0,0.606 -1718,0.0,0.0,0.0,0.0,2641,128.0,3810.49,0.0,0.0,874.562718641,0.0,0.0,0,38.918336397,-77.1051965933,1473237721.0,0.56 -1719,0.0,0.0,0.0,0.0,2642,127.0,3811.06,0.0,0.0,917.227194397,0.0,0.0,0,38.9183400013,-77.1052012872,1473237722.0,0.551 -1720,0.0,0.0,0.0,0.0,2643,126.0,3811.58,0.0,0.0,981.333423962,0.0,0.0,0,38.9183431864,-77.105205562,1473237723.0,0.523 -1721,0.0,0.0,0.0,0.0,2644,125.0,3812.08,0.0,0.0,1024.92656911,0.0,0.0,0,38.9183462039,-77.1052098367,1473237724.0,0.475999999999 -1722,0.0,0.0,0.0,0.0,2645,123.0,3812.53,0.0,0.0,1073.6994757,0.0,0.0,0,38.9183490537,-77.1052135248,1473237725.0,0.457 -1723,0.0,0.0,0.0,0.0,2646,122.0,3812.96,0.0,0.0,1130.84514765,0.0,0.0,0,38.9183517359,-77.1052172128,1473237726.0,0.439 -1724,0.0,0.0,0.0,0.0,2647,121.0,3813.36,0.0,0.0,1149.80289093,0.0,0.0,0,38.9183540829,-77.1052206494,1473237727.0,0.429 -1725,0.0,0.0,0.0,0.0,2648,120.0,3813.72,0.0,0.0,1305.30598406,0.0,0.0,0,38.9183562621,-77.1052237507,1473237728.0,0.383 -1726,0.0,0.0,0.0,0.0,2649,119.0,3814.06,0.0,0.0,1675.1026091,0.0,0.0,0,38.9183582738,-77.1052266844,1473237729.0,0.345 -1727,0.0,0.0,0.0,0.0,2650,118.0,3814.35,0.0,0.0,2492.2857821,0.0,0.0,0,38.9183599502,-77.1052292828,1473237730.0,0.271000000001 -1728,0.0,0.0,0.0,0.0,2651,116.0,3814.51,0.0,0.0,4725.47254725,0.0,0.0,0,38.9183610398,-77.1052304562,1473237731.0,0.0 -1729,0.0,0.0,0.0,0.0,2652,115.0,3814.57,0.0,0.0,89743.5897419,0.0,0.0,0,38.9183619618,-77.1052303724,1473237732.0,0.0 -1730,0.0,0.0,0.0,0.0,2653,114.0,3814.57,0.0,0.0,20320.1970444,0.0,0.0,0,38.9183619618,-77.1052300371,1473237733.0,0.0 -1731,0.0,0.0,0.0,0.0,2654,114.0,3814.57,0.0,0.0,82147.9374089,0.0,0.0,0,38.9183616266,-77.1052298695,1473237734.0,0.0 -1732,0.0,0.0,0.0,0.0,2655,113.0,3814.61,0.0,0.0,5031.58353301,0.0,0.0,0,38.9183619618,-77.1052301209,1473237735.0,0.0 -1733,0.0,0.0,0.0,0.0,2656,113.0,3814.81,0.0,0.0,2345.27290449,0.0,0.0,0,38.9183630515,-77.1052318811,1473237736.0,0.289 -1734,0.0,0.0,0.0,0.0,2657,112.0,3815.09,0.0,0.0,1513.82098903,0.0,0.0,0,38.918364225,-77.1052348986,1473237737.0,0.298999999999 -1735,0.0,0.0,0.0,0.0,2658,111.0,3815.47,0.0,0.0,1073.18070319,0.0,0.0,0,38.918366069,-77.1052385867,1473237738.0,0.532 -1736,0.0,0.0,0.0,0.0,2659,110.0,3815.93,0.0,0.0,877.926421405,0.0,0.0,0,38.9183681644,-77.1052434482,1473237739.0,0.56 -1737,0.0,0.0,0.0,0.0,2660,109.0,3816.4,0.0,0.0,776.329674614,0.0,0.0,0,38.9183701761,-77.1052483097,1473237740.0,0.597 -1738,0.0,0.0,0.0,0.0,2661,108.0,3816.98,0.0,0.0,676.075135069,0.0,0.0,0,38.9183722716,-77.1052545961,1473237741.0,0.756 -1739,0.0,0.0,0.0,0.0,2662,106.0,3817.56,0.0,0.0,638.774437962,0.0,0.0,0,38.9183743671,-77.1052609663,1473237742.0,0.728 -1740,0.0,0.0,0.0,0.0,2663,106.0,3818.17,0.0,0.0,631.06133042,0.0,0.0,0,38.9183758758,-77.1052680071,1473237743.0,0.848999999999 -1741,0.0,0.0,0.0,0.0,2664,105.0,3818.75,0.0,0.0,701.871657754,0.0,0.0,0,38.9183770493,-77.1052747965,1473237744.0,0.793 -1742,0.0,0.0,0.0,0.0,2665,104.0,3819.24,0.0,0.0,874.920461776,0.0,0.0,0,38.9183780551,-77.1052804124,1473237745.0,0.597 -1743,0.0,0.0,0.0,0.0,2666,103.0,3819.6,0.0,0.0,1242.89772727,0.0,0.0,0,38.9183789771,-77.1052845195,1473237746.0,0.383 -1744,0.0,0.0,0.0,0.0,2667,103.0,3819.81,0.0,0.0,1859.69375432,0.0,0.0,0,38.9183793124,-77.1052870341,1473237747.0,0.187 -1745,0.0,0.0,0.0,0.0,2668,103.0,3820.0,0.0,0.0,2245.33437014,0.0,0.0,0,38.9183786418,-77.1052891295,1473237748.0,0.205 -1746,0.0,0.0,0.0,0.0,2669,103.0,3820.27,0.0,0.0,1794.53714925,0.0,0.0,0,38.9183775522,-77.1052918117,1473237749.0,0.205 -1747,0.0,0.0,0.0,0.0,2670,103.0,3820.67,0.0,0.0,1216.16072275,0.0,0.0,0,38.9183762949,-77.1052961703,1473237750.0,0.495 -1748,0.0,0.0,0.0,0.0,2671,103.0,3821.27,0.0,0.0,868.336177667,0.0,0.0,0,38.9183738641,-77.1053023729,1473237751.0,0.579 -1749,0.0,0.0,0.0,0.0,2672,104.0,3821.73,0.0,0.0,672.140782942,0.0,0.0,0,38.9183718525,-77.105306983,1473237752.0,0.756 -1750,0.0,0.0,0.0,0.0,2673,104.0,3822.61,0.0,0.0,556.457557465,0.0,0.0,0,38.9183672424,-77.1053151973,1473237753.0,0.896 -1751,0.0,0.0,0.0,0.0,2674,103.0,3823.22,0.0,0.0,487.961503851,0.0,0.0,0,38.9183636382,-77.1053206455,1473237754.0,1.008 -1752,0.0,0.0,0.0,0.0,2675,102.0,3824.41,0.0,0.0,434.466959822,0.0,0.0,0,38.918356346,-77.10533062,1473237755.0,1.176 -1753,0.0,0.0,0.0,0.0,2676,102.0,3825.71,0.0,0.0,395.575039386,0.0,0.0,0,38.9183477964,-77.1053409297,1473237756.0,1.241 -1754,0.0,0.0,0.0,0.0,2677,101.0,3827.12,0.0,0.0,368.132183358,0.0,0.0,0,38.9183379896,-77.1053512394,1473237757.0,1.381 -1755,0.0,0.0,0.0,0.0,2678,100.0,3828.58,0.0,0.0,346.52841533,0.0,0.0,0,38.9183273446,-77.1053611301,1473237758.0,1.409 -1756,0.0,0.0,0.0,0.0,2679,99.0,3830.1,0.0,0.0,335.00303098,0.0,0.0,0,38.9183158614,-77.1053708531,1473237759.0,1.521 -1757,0.0,0.0,0.0,0.0,2680,99.0,3831.66,0.0,0.0,329.587544729,0.0,0.0,0,38.91830354,-77.1053794865,1473237760.0,1.502 -1758,0.0,0.0,0.0,0.0,2681,98.0,3833.24,0.0,0.0,333.825641855,0.0,0.0,0,38.9182907157,-77.1053872816,1473237761.0,1.54 -1759,0.0,0.0,0.0,0.0,2682,98.0,3834.79,0.0,0.0,342.852054144,0.0,0.0,0,38.9182778075,-77.1053941548,1473237762.0,1.446 -1760,0.0,0.0,0.0,0.0,2683,97.0,3836.26,0.0,0.0,360.176626876,0.0,0.0,0,38.9182652347,-77.1053996868,1473237763.0,1.381 -1761,0.0,0.0,0.0,0.0,2684,97.0,3837.67,0.0,0.0,380.698111342,0.0,0.0,0,38.9182533324,-77.1054053027,1473237764.0,1.306 -1762,0.0,0.0,0.0,0.0,2685,97.0,3839.03,0.0,0.0,404.506659475,0.0,0.0,0,38.9182417654,-77.1054104157,1473237765.0,1.25 -1763,0.0,0.0,0.0,0.0,2686,98.0,3840.31,0.0,0.0,427.096006005,0.0,0.0,0,38.9182308689,-77.1054151934,1473237766.0,1.185 -1764,0.0,0.0,0.0,0.0,2687,98.0,3841.53,0.0,0.0,431.370937924,0.0,0.0,0,38.9182203915,-77.105419552,1473237767.0,1.138 -1765,0.0,0.0,0.0,0.0,2688,99.0,3842.75,0.0,0.0,423.969899973,0.0,0.0,0,38.9182099979,-77.1054240782,1473237768.0,1.157 -1766,0.0,0.0,0.0,0.0,2689,99.0,3843.97,0.0,0.0,396.740885265,0.0,0.0,0,38.918199772,-77.1054291073,1473237769.0,1.194 -1767,0.0,0.0,0.0,0.0,2690,99.0,3845.34,0.0,0.0,369.390777064,0.0,0.0,0,38.9181880374,-77.1054343041,1473237770.0,1.437 -1768,0.0,0.0,0.0,0.0,2691,98.0,3846.83,0.0,0.0,337.052092787,0.0,0.0,0,38.9181751292,-77.1054390818,1473237771.0,1.456 -1769,0.0,0.0,0.0,0.0,2692,98.0,3848.42,0.0,0.0,315.421230716,0.0,0.0,0,38.9181611314,-77.1054431889,1473237772.0,1.642 -1770,0.0,0.0,0.0,0.0,2693,98.0,3850.09,0.0,0.0,296.343810135,0.0,0.0,0,38.9181462955,-77.1054460388,1473237773.0,1.614 -1771,0.0,0.0,0.0,0.0,2694,98.0,3851.83,0.0,0.0,286.424945505,0.0,0.0,0,38.9181306213,-77.1054475475,1473237774.0,1.81 -1772,0.0,0.0,0.0,0.0,2695,98.0,3853.62,0.0,0.0,275.204437582,0.0,0.0,0,38.9181144442,-77.105447799,1473237775.0,1.745 -1773,0.0,0.0,0.0,0.0,2696,98.0,3855.45,0.0,0.0,274.776253622,0.0,0.0,0,38.9180978481,-77.1054472122,1473237776.0,1.903 -1774,0.0,0.0,0.0,0.0,2697,97.0,3857.32,0.0,0.0,266.306365299,0.0,0.0,0,38.9180811681,-77.10544453,1473237777.0,1.829 -1775,0.0,0.0,0.0,0.0,2698,97.0,3859.2,0.0,0.0,278.401133852,0.0,0.0,0,38.9180645719,-77.10543992,1473237778.0,1.857 -1776,0.0,0.0,0.0,0.0,2699,97.0,3860.98,0.0,0.0,280.552262879,0.0,0.0,0,38.9180490654,-77.1054347232,1473237779.0,1.736 -1777,0.0,0.0,0.0,0.0,2700,97.0,3862.83,0.0,0.0,276.84829193,0.0,0.0,0,38.9180329721,-77.1054290235,1473237780.0,1.922 -1778,0.0,0.0,0.0,0.0,2701,96.0,3864.52,0.0,0.0,269.270940187,0.0,0.0,0,38.9180183038,-77.1054239105,1473237781.0,1.493 -1779,0.0,0.0,0.0,0.0,2702,96.0,3866.31,0.0,0.0,263.901677775,0.0,0.0,0,38.9180028811,-77.1054178756,1473237782.0,2.081 -1780,0.0,0.0,0.0,0.0,2703,95.0,3868.36,0.0,0.0,261.690543569,0.0,0.0,0,38.9179853629,-77.1054101642,1473237783.0,2.071 -1781,0.0,0.0,0.0,0.0,2704,95.0,3870.32,0.0,0.0,266.539896753,0.0,0.0,0,38.9179689344,-77.1054020338,1473237784.0,1.847 -1782,0.0,0.0,0.0,0.0,2705,95.0,3872.16,0.0,0.0,271.141399653,0.0,0.0,0,38.9179535117,-77.1053943224,1473237785.0,1.773 -1783,0.0,0.0,0.0,0.0,2706,96.0,3873.86,0.0,0.0,297.4856666,0.0,0.0,0,38.9179392625,-77.105387114,1473237786.0,1.652 -1784,0.0,0.0,0.0,0.0,2707,96.0,3875.53,0.0,0.0,315.931135219,0.0,0.0,0,38.9179252647,-77.1053799056,1473237787.0,1.614 -1785,0.0,0.0,0.0,0.0,2708,96.0,3877.14,0.0,0.0,333.079558432,0.0,0.0,0,38.9179119375,-77.1053725295,1473237788.0,1.521 -1786,0.0,0.0,0.0,0.0,2709,97.0,3878.68,0.0,0.0,341.998276684,0.0,0.0,0,38.9178992808,-77.1053652372,1473237789.0,1.446 -1787,0.0,0.0,0.0,0.0,2710,97.0,3880.13,0.0,0.0,350.058343057,0.0,0.0,0,38.9178872947,-77.1053586155,1473237790.0,1.381 -1788,0.0,0.0,0.0,0.0,2711,97.0,3881.48,0.0,0.0,361.405067807,0.0,0.0,0,38.9178761467,-77.1053524129,1473237791.0,1.344 -1789,0.0,0.0,0.0,0.0,2712,97.0,3882.93,0.0,0.0,372.822378381,0.0,0.0,0,38.9178640768,-77.1053459588,1473237792.0,1.493 -1790,0.0,0.0,0.0,0.0,2713,96.0,3884.32,0.0,0.0,387.7296165,0.0,0.0,0,38.9178527612,-77.1053390857,1473237793.0,1.26 -1791,0.0,0.0,0.0,0.0,2714,94.0,3885.6,0.0,0.0,397.098260331,0.0,0.0,0,38.9178423677,-77.1053327154,1473237794.0,1.204 -1792,0.0,0.0,0.0,0.0,2715,94.0,3886.81,0.0,0.0,422.28494545,0.0,0.0,0,38.9178327285,-77.1053263452,1473237795.0,1.176 -1793,0.0,0.0,0.0,0.0,2716,93.0,3888.1,0.0,0.0,451.219464553,0.0,0.0,0,38.9178225864,-77.1053191368,1473237796.0,1.166 -1794,0.0,0.0,0.0,0.0,2717,93.0,3889.29,0.0,0.0,426.196116634,0.0,0.0,0,38.917813031,-77.1053126827,1473237797.0,1.222 -1795,0.0,0.0,0.0,0.0,2718,93.0,3890.41,0.0,0.0,388.425916584,0.0,0.0,0,38.9178039785,-77.105306983,1473237798.0,1.064 -1796,0.0,0.0,0.0,0.0,2719,93.0,3891.67,0.0,0.0,359.788425715,0.0,0.0,0,38.9177940041,-77.105300026,1473237799.0,1.344 -1797,0.0,19.0,0.0,0.0,2720,93.0,3893.34,0.0,0.0,336.514929026,0.0,0.0,0,38.9177808445,-77.1052908897,1473237800.0,1.708 -1798,0.0,19.0,0.0,0.0,2721,92.0,3895.03,0.0,0.0,326.035409421,0.0,0.0,0,38.9177673496,-77.1052817535,1473237801.0,1.624 -1799,0.0,19.0,0.0,0.0,2722,91.0,3896.59,0.0,0.0,324.316128199,0.0,0.0,0,38.9177550282,-77.1052731201,1473237802.0,1.428 -1800,0.0,0.0,0.0,0.0,2723,90.0,3898.08,0.0,0.0,343.234127279,0.0,0.0,0,38.9177432097,-77.1052649058,1473237803.0,1.456 -1801,0.0,0.0,0.0,0.0,2724,89.0,3899.49,0.0,0.0,367.037199459,0.0,0.0,0,38.9177320618,-77.1052571945,1473237804.0,1.334 -1802,0.0,0.0,0.0,0.0,2725,89.0,3900.87,0.0,0.0,386.754576596,0.0,0.0,0,38.9177214168,-77.1052489802,1473237805.0,1.334 -1803,0.0,0.0,0.0,0.0,2726,89.0,3902.22,0.0,0.0,375.427841469,0.0,0.0,0,38.9177107718,-77.1052414365,1473237806.0,1.344 -1804,0.0,21.0,0.0,0.0,2727,90.0,3903.51,0.0,0.0,355.938784692,0.0,0.0,0,38.9177006297,-77.1052341443,1473237807.0,1.353 -1805,0.0,33.0,0.0,0.0,2728,90.0,3904.88,0.0,0.0,319.475562194,0.0,0.0,0,38.917689817,-77.1052265167,1473237808.0,1.362 -1806,0.0,33.0,0.0,0.0,2729,91.0,3906.52,0.0,0.0,303.836228327,0.0,0.0,0,38.9176767413,-77.1052177995,1473237809.0,1.866 -1807,0.0,33.0,0.0,0.0,2730,91.0,3908.35,0.0,0.0,287.079199062,0.0,0.0,0,38.9176623244,-77.105207406,1473237810.0,1.829 -1808,0.0,23.0,0.0,0.0,2731,91.0,3910.23,0.0,0.0,268.485393697,0.0,0.0,0,38.9176476561,-77.1051966771,1473237811.0,1.903 -1809,0.0,23.0,0.0,0.0,2732,91.0,3911.99,0.0,0.0,259.274972894,0.0,0.0,0,38.9176338259,-77.1051867865,1473237812.0,1.605 -1810,0.0,37.0,0.0,0.0,2733,90.0,3913.81,0.0,0.0,262.150862715,0.0,0.0,0,38.9176194929,-77.1051764768,1473237813.0,2.025 -1811,0.0,37.0,0.0,0.0,2734,88.0,3915.87,0.0,0.0,260.880760552,0.0,0.0,0,38.9176030643,-77.1051654965,1473237814.0,2.09 -1812,0.0,37.0,0.0,0.0,2735,88.0,3917.81,0.0,0.0,263.611361536,0.0,0.0,0,38.9175875578,-77.1051551867,1473237815.0,1.866 -1813,0.0,0.0,0.0,0.0,2736,87.0,3919.66,0.0,0.0,263.435194942,0.0,0.0,0,38.9175728895,-77.1051449608,1473237816.0,1.801 -1814,0.0,0.0,0.0,0.0,2737,86.0,3921.45,0.0,0.0,286.807595559,0.0,0.0,0,38.9175586402,-77.1051354054,1473237817.0,1.764 -1815,0.0,0.0,0.0,0.0,2738,86.0,3923.19,0.0,0.0,295.34505508,0.0,0.0,0,38.9175448939,-77.1051255986,1473237818.0,1.736 -1816,0.0,0.0,0.0,0.0,2739,87.0,3924.94,0.0,0.0,288.084524748,0.0,0.0,0,38.9175308961,-77.1051165462,1473237819.0,1.745 -1817,0.0,0.0,0.0,0.0,2740,87.0,3926.59,0.0,0.0,282.152567588,0.0,0.0,0,38.9175178204,-77.1051074099,1473237820.0,1.53 -1818,0.0,0.0,0.0,0.0,2741,88.0,3928.37,0.0,0.0,276.640743074,0.0,0.0,0,38.9175039064,-77.1050971001,1473237821.0,1.969 -1819,0.0,0.0,0.0,0.0,2742,88.0,3930.4,0.0,0.0,275.733319328,0.0,0.0,0,38.917487897,-77.1050858684,1473237822.0,1.931 -1820,0.0,0.0,0.0,0.0,2743,88.0,3932.27,0.0,0.0,278.593860804,0.0,0.0,0,38.917473061,-77.1050756425,1473237823.0,1.764 -1821,0.0,0.0,0.0,0.0,2744,88.0,3934.1,0.0,0.0,286.608319334,0.0,0.0,0,38.9174583927,-77.1050660871,1473237824.0,1.717 -1822,0.0,0.0,0.0,0.0,2745,88.0,3935.79,0.0,0.0,299.065517357,0.0,0.0,0,38.9174447302,-77.1050574537,1473237825.0,1.605 -1823,0.0,0.0,0.0,0.0,2746,88.0,3937.41,0.0,0.0,322.447361515,0.0,0.0,0,38.9174315706,-77.1050493233,1473237826.0,1.605 -1824,0.0,0.0,0.0,0.0,2747,87.0,3939.04,0.0,0.0,324.220537336,0.0,0.0,0,38.917418411,-77.1050408576,1473237827.0,1.577 -1825,0.0,0.0,0.0,0.0,2748,87.0,3940.68,0.0,0.0,306.340045407,0.0,0.0,0,38.9174052514,-77.105032308,1473237828.0,1.698 -1826,0.0,0.0,0.0,0.0,2749,88.0,3942.19,0.0,0.0,283.654153139,0.0,0.0,0,38.9173933491,-77.1050239261,1473237829.0,1.316 -1827,0.0,0.0,0.0,0.0,2750,89.0,3943.99,0.0,0.0,269.274706829,0.0,0.0,0,38.9173792675,-77.1050135326,1473237830.0,2.099 -1828,0.0,0.0,0.0,0.0,2751,91.0,3946.18,0.0,0.0,261.329954522,0.0,0.0,0,38.9173621684,-77.1050009597,1473237831.0,2.165 -1829,0.0,0.0,0.0,0.0,2752,91.0,3948.24,0.0,0.0,261.670978763,0.0,0.0,0,38.9173460752,-77.1049890574,1473237832.0,1.931 -1830,0.0,0.0,0.0,0.0,2753,92.0,3950.14,0.0,0.0,267.043378943,0.0,0.0,0,38.9173315745,-77.1049775742,1473237833.0,1.773 -1831,0.0,22.0,0.0,0.0,2754,92.0,3951.94,0.0,0.0,262.809996337,0.0,0.0,0,38.9173178282,-77.1049665939,1473237834.0,1.791 -1832,0.0,22.0,0.0,0.0,2755,91.0,3953.8,0.0,0.0,251.927078562,0.0,0.0,0,38.9173032437,-77.1049558651,1473237835.0,1.885 -1833,0.0,22.0,0.0,0.0,2756,91.0,3955.84,0.0,0.0,219.277428664,0.0,0.0,0,38.9172877371,-77.104943376,1473237836.0,2.193 -1834,0.0,22.0,0.0,0.0,2757,91.0,3958.48,0.0,0.0,188.577586207,0.0,0.0,0,38.9172673691,-77.1049276181,1473237837.0,3.02299999999 -1835,0.0,22.0,0.0,0.0,2758,92.0,3961.3,0.0,0.0,169.717167443,0.0,0.0,0,38.9172459114,-77.1049101837,1473237838.0,2.52899999999 -1836,0.0,41.0,0.0,0.0,2759,93.0,3964.3,0.0,0.0,161.332677759,0.0,0.0,0,38.9172233641,-77.1048911568,1473237839.0,3.424 -1837,0.0,41.0,0.0,0.0,2760,94.0,3967.66,0.0,0.0,160.172625874,0.0,0.0,0,38.9171979669,-77.1048700344,1473237840.0,3.25599999999 -1838,0.0,41.0,0.0,0.0,2761,94.0,3970.79,0.0,0.0,168.304294164,0.0,0.0,0,38.9171742462,-77.1048504207,1473237841.0,2.921 -1839,0.0,0.0,0.0,0.0,2762,95.0,3973.69,0.0,0.0,166.257620141,0.0,0.0,0,38.9171522018,-77.1048324835,1473237842.0,2.809 -1840,0.0,0.0,0.0,0.0,2763,96.0,3976.54,0.0,0.0,173.240038698,0.0,0.0,0,38.9171308279,-77.1048143785,1473237843.0,2.893 -1841,0.0,0.0,0.0,0.0,2764,97.0,3979.5,0.0,0.0,170.795834652,0.0,0.0,0,38.9171087835,-77.1047951002,1473237844.0,2.79 -1842,0.0,24.0,0.0,0.0,2765,98.0,3982.63,0.0,0.0,163.511345989,0.0,0.0,0,38.9170856494,-77.1047745645,1473237845.0,3.37799999999 -1843,0.0,24.0,0.0,0.0,2766,99.0,3985.73,0.0,0.0,157.070626025,0.0,0.0,0,38.9170624316,-77.1047546156,1473237846.0,2.99500000001 -1844,0.0,24.0,0.0,0.0,2767,100.0,3989.04,0.0,0.0,155.931681673,0.0,0.0,0,38.9170373697,-77.1047338285,1473237847.0,3.21899999999 -1845,0.0,0.0,0.0,0.0,2768,101.0,3992.37,0.0,0.0,151.570228196,0.0,0.0,0,38.9170121402,-77.104713209,1473237848.0,3.37799999999 -1846,0.0,0.0,0.0,0.0,2769,101.0,3995.68,0.0,0.0,154.199842997,0.0,0.0,0,38.9169870783,-77.1046924219,1473237849.0,3.28399999999 -1847,0.0,0.0,0.0,0.0,2770,102.0,3998.96,0.0,0.0,152.068727165,0.0,0.0,0,38.9169622678,-77.10467197,1473237850.0,3.126 -1848,0.0,22.0,0.0,0.0,2771,103.0,4002.41,0.0,0.0,148.817576709,0.0,0.0,0,38.916935781,-77.1046510153,1473237851.0,3.58299999999 -1849,0.0,22.0,0.0,0.0,2772,103.0,4005.79,0.0,0.0,146.373362329,0.0,0.0,0,38.9169092104,-77.104632156,1473237852.0,3.14400000001 -1850,0.0,26.0,0.0,0.0,2773,103.0,4009.26,0.0,0.0,137.218864683,0.0,0.0,0,38.9168826398,-77.1046108659,1473237853.0,3.63 -1851,0.0,26.0,0.0,0.0,2774,104.0,4012.98,0.0,0.0,134.396246679,0.0,0.0,0,38.9168531355,-77.1045905817,1473237854.0,3.95600000002 -1852,0.0,26.0,0.0,0.0,2775,105.0,4016.84,0.0,0.0,128.391680219,0.0,0.0,0,38.9168229606,-77.1045685373,1473237855.0,3.742 -1853,0.0,27.0,0.0,0.0,2776,105.0,4020.88,0.0,0.0,125.04330504,0.0,0.0,0,38.9167913608,-77.1045452356,1473237856.0,4.26400000002 -1854,0.0,27.0,0.0,0.0,2777,106.0,4024.81,0.0,0.0,121.660652101,0.0,0.0,0,38.9167599287,-77.1045243647,1473237857.0,3.62000000001 -1855,0.0,29.0,0.0,0.0,2778,107.0,4028.9,0.0,0.0,121.96139262,0.0,0.0,0,38.9167275745,-77.1045018174,1473237858.0,4.58099999999 -1856,0.0,29.0,0.0,0.0,2779,108.0,4033.16,0.0,0.0,118.60970936,0.0,0.0,0,38.9166927896,-77.1044810303,1473237859.0,3.844 -1857,0.0,29.0,0.0,0.0,2780,108.0,4037.34,0.0,0.0,118.272545,0.0,0.0,0,38.9166588429,-77.1044602431,1473237860.0,4.61899999999 -1858,0.0,0.0,0.0,0.0,2781,110.0,4041.55,0.0,0.0,115.977129913,0.0,0.0,0,38.916624561,-77.1044395398,1473237861.0,3.88200000001 -1859,0.0,0.0,0.0,0.0,2782,110.0,4045.83,0.0,0.0,117.071924734,0.0,0.0,0,38.9165899437,-77.1044178307,1473237862.0,4.59099999998 -1860,0.0,0.0,0.0,0.0,2783,111.0,4050.21,0.0,0.0,115.242088207,0.0,0.0,0,38.9165547397,-77.1043950319,1473237863.0,4.18000000001 -1861,0.0,0.0,0.0,0.0,2784,112.0,4054.46,0.0,0.0,117.411697255,0.0,0.0,0,38.9165206254,-77.1043726522,1473237864.0,4.31099999999 -1862,0.0,0.0,0.0,0.0,2785,114.0,4058.7,0.0,0.0,116.689415209,0.0,0.0,0,38.9164862595,-77.104351446,1473237865.0,4.37600000001 -1863,0.0,0.0,0.0,0.0,2786,115.0,4063.09,0.0,0.0,117.152791583,0.0,0.0,0,38.9164514747,-77.1043272223,1473237866.0,4.13300000001 -1864,0.0,0.0,0.0,0.0,2787,116.0,4067.16,0.0,0.0,117.696930912,0.0,0.0,0,38.9164183661,-77.1043071896,1473237867.0,4.23600000001 -1865,0.0,0.0,0.0,0.0,2788,117.0,4071.42,0.0,0.0,116.167381607,0.0,0.0,0,38.9163842518,-77.1042844746,1473237868.0,4.26400000002 -1866,0.0,0.0,0.0,0.0,2789,117.0,4075.78,0.0,0.0,116.59765028,0.0,0.0,0,38.9163495507,-77.1042610891,1473237869.0,4.525 -1867,0.0,0.0,0.0,0.0,2790,118.0,4080.06,0.0,0.0,117.71852329,0.0,0.0,0,38.9163158555,-77.1042369492,1473237870.0,3.94700000001 -1868,0.0,0.0,0.0,0.0,2791,119.0,4084.46,0.0,0.0,117.896120758,0.0,0.0,0,38.9162812382,-77.1042123064,1473237871.0,4.61899999999 -1869,0.0,0.0,0.0,0.0,2792,120.0,4088.62,0.0,0.0,121.000691433,0.0,0.0,0,38.9162481297,-77.1041899268,1473237872.0,3.85399999999 -1870,0.0,28.0,0.0,0.0,2793,121.0,4092.71,0.0,0.0,120.645531937,0.0,0.0,0,38.9162158594,-77.1041670442,1473237873.0,4.05000000001 -1871,0.0,28.0,0.0,0.0,2794,122.0,4096.82,0.0,0.0,123.291926461,0.0,0.0,0,38.9161824156,-77.1041468438,1473237874.0,4.348 -1872,0.0,28.0,0.0,0.0,2795,123.0,4101.1,0.0,0.0,123.552668738,0.0,0.0,0,38.9161485527,-77.1041232068,1473237875.0,3.81599999999 -1873,0.0,0.0,0.0,0.0,2796,123.0,4105.2,0.0,0.0,122.219247574,0.0,0.0,0,38.9161159471,-77.1041009109,1473237876.0,4.36699999999 -1874,0.0,0.0,0.0,0.0,2797,124.0,4109.32,0.0,0.0,122.971109774,0.0,0.0,0,38.9160834253,-77.1040780284,1473237877.0,3.56400000001 -1875,0.0,0.0,0.0,0.0,2798,125.0,4113.31,0.0,0.0,123.241540615,0.0,0.0,0,38.9160509873,-77.1040583309,1473237878.0,4.60900000002 -1876,0.0,0.0,0.0,0.0,2799,126.0,4117.45,0.0,0.0,121.736179254,0.0,0.0,0,38.9160173759,-77.1040375438,1473237879.0,3.77900000001 -1877,0.0,27.0,0.0,0.0,2800,126.0,4121.71,0.0,0.0,120.009850159,0.0,0.0,0,38.9159832615,-77.1040150803,1473237880.0,4.245 -1878,0.0,27.0,0.0,0.0,2801,127.0,4125.86,0.0,0.0,119.958372886,0.0,0.0,0,38.9159488957,-77.1039959695,1473237881.0,4.15200000001 -1879,0.0,27.0,0.0,0.0,2802,127.0,4130.26,0.0,0.0,120.350234813,0.0,0.0,0,38.9159136917,-77.1039728355,1473237882.0,4.16100000001 -1880,0.0,0.0,0.0,0.0,2803,128.0,4134.54,0.0,0.0,118.89162128,0.0,0.0,0,38.9158789907,-77.103951294,1473237883.0,4.40400000001 -1881,0.0,0.0,0.0,0.0,2804,129.0,4138.81,0.0,0.0,119.758988923,0.0,0.0,0,38.9158451278,-77.1039279085,1473237884.0,3.72299999999 -1882,0.0,0.0,0.0,0.0,2805,129.0,4142.94,0.0,0.0,121.40974053,0.0,0.0,0,38.9158116002,-77.1039073728,1473237885.0,4.61899999999 -1883,0.0,0.0,0.0,0.0,2806,130.0,4147.11,0.0,0.0,123.357239361,0.0,0.0,0,38.9157774858,-77.1038870048,1473237886.0,3.77900000001 -1884,0.0,0.0,0.0,0.0,2807,130.0,4151.2,0.0,0.0,121.64386678,0.0,0.0,0,38.9157441258,-77.1038670558,1473237887.0,4.245 -1885,0.0,0.0,0.0,0.0,2808,131.0,4155.23,0.0,0.0,121.827346917,0.0,0.0,0,38.9157107659,-77.1038488671,1473237888.0,3.83499999999 -1886,0.0,0.0,0.0,0.0,2809,131.0,4159.43,0.0,0.0,122.140795026,0.0,0.0,0,38.9156763162,-77.1038286667,1473237889.0,4.20799999999 -1887,0.0,0.0,0.0,0.0,2810,132.0,4163.78,0.0,0.0,120.393640297,0.0,0.0,0,38.9156409446,-77.1038071252,1473237890.0,4.44099999999 -1888,0.0,0.0,0.0,0.0,2811,132.0,4167.96,0.0,0.0,122.317487482,0.0,0.0,0,38.915606495,-77.1037875954,1473237891.0,3.72299999999 -1889,0.0,0.0,0.0,0.0,2812,133.0,4172.12,0.0,0.0,119.844606681,0.0,0.0,0,38.915572213,-77.1037684008,1473237892.0,4.46900000002 -1890,0.0,0.0,0.0,0.0,2813,134.0,4176.15,0.0,0.0,124.010732565,0.0,0.0,0,38.9155386016,-77.1037508827,1473237893.0,3.75099999999 -1891,0.0,0.0,0.0,0.0,2814,134.0,4180.13,0.0,0.0,122.620967442,0.0,0.0,0,38.9155055769,-77.1037327778,1473237894.0,4.16100000001 -1892,0.0,0.0,0.0,0.0,2815,135.0,4184.38,0.0,0.0,122.827129588,0.0,0.0,0,38.9154702891,-77.1037140023,1473237895.0,4.27300000001 -1893,0.0,0.0,0.0,0.0,2816,135.0,4188.33,0.0,0.0,125.201487676,0.0,0.0,0,38.9154378511,-77.1036950592,1473237896.0,3.67599999999 -1894,0.0,0.0,0.0,0.0,2817,136.0,4192.38,0.0,0.0,122.992978219,0.0,0.0,0,38.9154042397,-77.1036769543,1473237897.0,4.43199999998 -1895,0.0,0.0,0.0,0.0,2818,137.0,4196.39,0.0,0.0,126.459623249,0.0,0.0,0,38.9153711312,-77.1036585141,1473237898.0,3.592 -1896,0.0,0.0,0.0,0.0,2819,137.0,4200.34,0.0,0.0,123.046569132,0.0,0.0,0,38.9153384417,-77.1036404092,1473237899.0,4.22699999999 -1897,0.0,0.0,0.0,0.0,2820,137.0,4204.41,0.0,0.0,123.667628526,0.0,0.0,0,38.9153047465,-77.1036220528,1473237900.0,4.03100000001 -1898,0.0,0.0,0.0,0.0,2821,138.0,4208.35,0.0,0.0,125.007440919,0.0,0.0,0,38.9152722247,-77.1036039479,1473237901.0,3.91899999999 -1899,0.0,0.0,0.0,0.0,2822,137.0,4212.5,0.0,0.0,121.672058512,0.0,0.0,0,38.9152376074,-77.1035857592,1473237902.0,4.47899999999 -1900,0.0,0.0,0.0,0.0,2823,138.0,4216.43,0.0,0.0,125.168923862,0.0,0.0,0,38.915204918,-77.103568241,1473237903.0,3.45199999999 -1901,0.0,0.0,0.0,0.0,2824,139.0,4220.29,0.0,0.0,122.461183516,0.0,0.0,0,38.91517248,-77.1035523992,1473237904.0,4.36699999999 -1902,0.0,0.0,0.0,0.0,2825,139.0,4224.42,0.0,0.0,125.497507978,0.0,0.0,0,38.915137779,-77.1035352163,1473237905.0,4.03100000001 -1903,0.0,0.0,0.0,0.0,2826,139.0,4228.3,0.0,0.0,125.966424222,0.0,0.0,0,38.9151050895,-77.1035192907,1473237906.0,3.844 -1904,0.0,0.0,0.0,0.0,2827,139.0,4232.34,0.0,0.0,122.808715059,0.0,0.0,0,38.9150708914,-77.1035035327,1473237907.0,4.292 -1905,0.0,0.0,0.0,0.0,2828,140.0,4236.22,0.0,0.0,127.616412686,0.0,0.0,0,38.9150378667,-77.1034886967,1473237908.0,3.499 -1906,0.0,0.0,0.0,0.0,2829,140.0,4240.16,0.0,0.0,123.890084288,0.0,0.0,0,38.91500392,-77.1034754533,1473237909.0,4.395 -1907,0.0,0.0,0.0,0.0,2830,141.0,4244.29,0.0,0.0,125.854283622,0.0,0.0,0,38.9149684645,-77.1034610365,1473237910.0,3.9 -1908,0.0,0.0,0.0,0.0,2831,141.0,4248.19,0.0,0.0,124.658269052,0.0,0.0,0,38.9149348531,-77.1034478769,1473237911.0,3.863 -1909,0.0,0.0,0.0,0.0,2832,141.0,4252.31,0.0,0.0,123.677030552,0.0,0.0,0,38.9148993138,-77.103434382,1473237912.0,4.348 -1910,0.0,0.0,0.0,0.0,2833,142.0,4256.29,0.0,0.0,126.281677021,0.0,0.0,0,38.9148650318,-77.1034207195,1473237913.0,3.555 -1911,0.0,0.0,0.0,0.0,2834,142.0,4260.34,0.0,0.0,122.032522988,0.0,0.0,0,38.9148300793,-77.1034073085,1473237914.0,4.45100000001 -1912,0.0,0.0,0.0,0.0,2835,142.0,4264.48,0.0,0.0,124.670513642,0.0,0.0,0,38.9147944562,-77.1033932269,1473237915.0,3.71399999999 -1913,0.0,0.0,0.0,0.0,2836,142.0,4268.47,0.0,0.0,124.676838713,0.0,0.0,0,38.9147600904,-77.1033798158,1473237916.0,4.23600000001 -1914,0.0,0.0,0.0,0.0,2837,142.0,4272.58,0.0,0.0,123.43040342,0.0,0.0,0,38.9147248026,-77.1033654828,1473237917.0,4.16100000001 -1915,0.0,0.0,0.0,0.0,2838,142.0,4276.4,0.0,0.0,127.438713564,0.0,0.0,0,38.9146917779,-77.1033531614,1473237918.0,3.51799999999 -1916,0.0,0.0,0.0,0.0,2839,142.0,4280.27,0.0,0.0,123.360401418,0.0,0.0,0,38.9146583341,-77.1033406723,1473237919.0,4.36699999999 -1917,0.0,0.0,0.0,0.0,2840,143.0,4284.32,0.0,0.0,128.021813587,0.0,0.0,0,38.9146233816,-77.1033272613,1473237920.0,3.77 -1918,0.0,0.0,0.0,0.0,2841,143.0,4288.18,0.0,0.0,125.168245629,0.0,0.0,0,38.9145899378,-77.1033149399,1473237921.0,4.00299999999 -1919,0.0,0.0,0.0,0.0,2842,143.0,4292.28,0.0,0.0,125.552621767,0.0,0.0,0,38.9145545661,-77.1033013612,1473237922.0,4.217 -1920,0.0,0.0,0.0,0.0,2843,143.0,4296.09,0.0,0.0,128.414948167,0.0,0.0,0,38.9145214576,-77.1032897104,1473237923.0,3.50799999999 -1921,0.0,0.0,0.0,0.0,2844,143.0,4300.03,0.0,0.0,123.311934353,0.0,0.0,0,38.9144872595,-77.1032776404,1473237924.0,4.395 -1922,0.0,0.0,0.0,0.0,2845,144.0,4303.98,0.0,0.0,125.931813647,0.0,0.0,0,38.9144531451,-77.1032645646,1473237925.0,3.58299999999 -1923,0.0,0.0,0.0,0.0,2846,143.0,4307.95,0.0,0.0,123.783333083,0.0,0.0,0,38.9144186955,-77.1032521594,1473237926.0,4.30099999999 -1924,0.0,0.0,0.0,0.0,2847,144.0,4312.2,0.0,0.0,123.127633785,0.0,0.0,0,38.9143821504,-77.1032374911,1473237927.0,4.27300000001 -1925,0.0,0.0,0.0,0.0,2848,144.0,4316.13,0.0,0.0,126.610724093,0.0,0.0,0,38.9143480361,-77.1032255888,1473237928.0,3.54599999999 -1926,0.0,0.0,0.0,0.0,2849,144.0,4320.12,0.0,0.0,122.046191578,0.0,0.0,0,38.9143134188,-77.1032129321,1473237929.0,4.37600000001 -1927,0.0,0.0,0.0,0.0,2850,144.0,4324.11,0.0,0.0,127.403851457,0.0,0.0,0,38.9142788853,-77.1032002755,1473237930.0,3.639 -1928,0.0,0.0,0.0,0.0,2851,144.0,4327.98,0.0,0.0,125.803015351,0.0,0.0,0,38.9142451901,-77.1031888761,1473237931.0,4.14299999999 -1929,0.0,0.0,0.0,0.0,2852,144.0,4332.14,0.0,0.0,124.307296246,0.0,0.0,0,38.9142092317,-77.1031753812,1473237932.0,4.26400000002 -1930,0.0,0.0,0.0,0.0,2853,144.0,4335.97,0.0,0.0,128.289999822,0.0,0.0,0,38.9141758718,-77.1031638142,1473237933.0,3.46199999999 -1931,0.0,0.0,0.0,0.0,2854,144.0,4339.87,0.0,0.0,123.549893298,0.0,0.0,0,38.9141421765,-77.1031510737,1473237934.0,4.31999999999 -1932,0.0,0.0,0.0,0.0,2855,145.0,4343.92,0.0,0.0,128.075900773,0.0,0.0,0,38.9141073916,-77.1031371597,1473237935.0,3.77 -1933,0.0,0.0,0.0,0.0,2856,145.0,4347.81,0.0,0.0,126.319933942,0.0,0.0,0,38.9140739478,-77.1031239163,1473237936.0,3.95600000002 -1934,0.0,0.0,0.0,0.0,2857,145.0,4351.97,0.0,0.0,124.276934201,0.0,0.0,0,38.9140381571,-77.1031095833,1473237937.0,4.31099999999 -1935,0.0,0.0,0.0,0.0,2858,145.0,4355.89,0.0,0.0,127.609362881,0.0,0.0,0,38.914004378,-77.1030965913,1473237938.0,3.47999999999 -1936,0.0,0.0,0.0,0.0,2859,145.0,4359.86,0.0,0.0,122.472610671,0.0,0.0,0,38.9139700122,-77.103083767,1473237939.0,4.38499999999 -1937,0.0,0.0,0.0,0.0,2860,145.0,4363.95,0.0,0.0,124.720728153,0.0,0.0,0,38.9139347244,-77.1030702721,1473237940.0,3.80699999999 -1938,0.0,0.0,0.0,0.0,2861,145.0,4367.94,0.0,0.0,124.634056067,0.0,0.0,0,38.9139001071,-77.1030576993,1473237941.0,4.07799999999 -1939,0.0,0.0,0.0,0.0,2862,146.0,4372.19,0.0,0.0,123.022978136,0.0,0.0,0,38.9138633106,-77.1030442044,1473237942.0,4.36699999999 -1940,0.0,0.0,0.0,0.0,2863,146.0,4376.12,0.0,0.0,127.881627009,0.0,0.0,0,38.9138294477,-77.1030308772,1473237943.0,3.50799999999 -1941,0.0,22.0,0.0,0.0,2864,146.0,4380.0,0.0,0.0,124.37315392,0.0,0.0,0,38.9137960877,-77.1030176338,1473237944.0,4.18899999999 -1942,0.0,22.0,0.0,0.0,2865,146.0,4383.98,0.0,0.0,128.693388837,0.0,0.0,0,38.9137620572,-77.1030031331,1473237945.0,3.80699999999 -1943,0.0,22.0,0.0,0.0,2866,146.0,4387.84,0.0,0.0,127.96139222,0.0,0.0,0,38.9137290325,-77.1029893868,1473237946.0,3.9 -1944,0.0,25.0,0.0,0.0,2867,146.0,4391.97,0.0,0.0,126.159603367,0.0,0.0,0,38.9136939123,-77.1029736288,1473237947.0,4.245 -1945,0.0,25.0,0.0,0.0,2868,146.0,4395.89,0.0,0.0,129.132808901,0.0,0.0,0,38.9136608876,-77.1029577032,1473237948.0,3.45199999999 -1946,0.0,25.0,0.0,0.0,2869,146.0,4399.82,0.0,0.0,125.131767543,0.0,0.0,0,38.9136276953,-77.1029419452,1473237949.0,4.292 -1947,0.0,0.0,0.0,0.0,2870,147.0,4403.85,0.0,0.0,127.963802309,0.0,0.0,0,38.9135936648,-77.1029257681,1473237950.0,3.704 -1948,0.0,0.0,0.0,0.0,2871,146.0,4407.75,0.0,0.0,126.601148289,0.0,0.0,0,38.9135606401,-77.1029102616,1473237951.0,4.03100000001 -1949,0.0,0.0,0.0,0.0,2872,146.0,4411.94,0.0,0.0,125.599042185,0.0,0.0,0,38.9135252684,-77.102893414,1473237952.0,4.217 -1950,0.0,0.0,0.0,0.0,2873,147.0,4415.82,0.0,0.0,129.076383045,0.0,0.0,0,38.9134923276,-77.1028784942,1473237953.0,3.47999999999 -1951,0.0,0.0,0.0,0.0,2874,146.0,4419.77,0.0,0.0,124.654232902,0.0,0.0,0,38.9134587161,-77.1028635744,1473237954.0,4.31999999999 -1952,0.0,0.0,0.0,0.0,2875,147.0,4423.77,0.0,0.0,127.898053624,0.0,0.0,0,38.9134247694,-77.1028479841,1473237955.0,3.62000000001 -1953,0.0,0.0,0.0,0.0,2876,146.0,4427.69,0.0,0.0,125.9592808,0.0,0.0,0,38.9133915771,-77.1028326452,1473237956.0,4.096 -1954,0.0,0.0,0.0,0.0,2877,146.0,4431.89,0.0,0.0,126.164977913,0.0,0.0,0,38.9133561216,-77.1028156299,1473237957.0,4.23600000001 -1955,0.0,0.0,0.0,0.0,2878,146.0,4435.77,0.0,0.0,129.008045411,0.0,0.0,0,38.9133232646,-77.102800291,1473237958.0,3.51799999999 -1956,0.0,0.0,0.0,0.0,2879,146.0,4439.7,0.0,0.0,123.841996912,0.0,0.0,0,38.9132902399,-77.1027841978,1473237959.0,4.26400000002 -1957,0.0,0.0,0.0,0.0,2880,146.0,4443.67,0.0,0.0,127.345415896,0.0,0.0,0,38.9132568799,-77.1027676854,1473237960.0,3.54599999999 -1958,0.0,0.0,0.0,0.0,2881,146.0,4447.64,0.0,0.0,125.136105829,0.0,0.0,0,38.9132235199,-77.1027511731,1473237961.0,4.292 -1959,0.0,0.0,0.0,0.0,2882,146.0,4451.99,0.0,0.0,124.478644638,0.0,0.0,0,38.9131871425,-77.1027323976,1473237962.0,4.255 -1960,0.0,0.0,0.0,0.0,2883,146.0,4455.91,0.0,0.0,127.740334315,0.0,0.0,0,38.9131545369,-77.1027152147,1473237963.0,3.51799999999 -1961,0.0,0.0,0.0,0.0,2884,146.0,4459.9,0.0,0.0,123.584925849,0.0,0.0,0,38.9131216798,-77.1026965231,1473237964.0,4.28299999998 -1962,0.0,0.0,0.0,0.0,2885,146.0,4463.9,0.0,0.0,129.144648716,0.0,0.0,0,38.9130889066,-77.1026774123,1473237965.0,3.58299999999 -1963,0.0,0.0,0.0,0.0,2886,146.0,4467.83,0.0,0.0,126.731169723,0.0,0.0,0,38.9130568039,-77.1026580501,1473237966.0,4.106 -1964,0.0,0.0,0.0,0.0,2887,146.0,4472.14,0.0,0.0,126.182482813,0.0,0.0,0,38.9130218513,-77.1026365086,1473237967.0,4.245 -1965,0.0,0.0,0.0,0.0,2888,146.0,4476.07,0.0,0.0,128.655543996,0.0,0.0,0,38.9129902516,-77.1026162244,1473237968.0,3.46199999999 -1966,0.0,0.0,0.0,0.0,2889,146.0,4480.03,0.0,0.0,123.101125176,0.0,0.0,0,38.9129586518,-77.1025950182,1473237969.0,4.31999999999 -1967,0.0,0.0,0.0,0.0,2890,146.0,4484.03,0.0,0.0,127.267257936,0.0,0.0,0,38.9129268005,-77.1025733929,1473237970.0,3.62000000001 -1968,0.0,0.0,0.0,0.0,2891,146.0,4488.04,0.0,0.0,125.68911369,0.0,0.0,0,38.9128950331,-77.1025514323,1473237971.0,4.22699999999 -1969,0.0,0.0,0.0,0.0,2892,146.0,4492.33,0.0,0.0,124.833015576,0.0,0.0,0,38.9128610864,-77.1025277115,1473237972.0,4.27300000001 -1970,0.0,0.0,0.0,0.0,2893,146.0,4496.15,0.0,0.0,128.26364342,0.0,0.0,0,38.9128314983,-77.1025053319,1473237973.0,3.40600000001 -1971,0.0,0.0,0.0,0.0,2894,146.0,4500.09,0.0,0.0,123.663788673,0.0,0.0,0,38.9128007367,-77.1024825331,1473237974.0,4.292 -1972,0.0,0.0,0.0,0.0,2895,146.0,4504.14,0.0,0.0,128.233453721,0.0,0.0,0,38.912769137,-77.1024592314,1473237975.0,3.686 -1973,0.0,0.0,0.0,0.0,2896,146.0,4508.09,0.0,0.0,125.727696669,0.0,0.0,0,38.9127380401,-77.1024371032,1473237976.0,4.14299999999 -1974,0.0,0.0,0.0,0.0,2897,147.0,4512.3,0.0,0.0,123.716508174,0.0,0.0,0,38.9127049316,-77.1024134662,1473237977.0,4.26400000002 -1975,0.0,0.0,0.0,0.0,2898,147.0,4516.23,0.0,0.0,127.627129881,0.0,0.0,0,38.9126739185,-77.1023914218,1473237978.0,3.48999999999 -1976,0.0,0.0,0.0,0.0,2899,147.0,4520.15,0.0,0.0,123.763967648,0.0,0.0,0,38.9126431569,-77.1023692936,1473237979.0,4.348 -1977,0.0,0.0,0.0,0.0,2900,147.0,4524.19,0.0,0.0,128.727095215,0.0,0.0,0,38.9126114734,-77.102346411,1473237980.0,3.686 -1978,0.0,0.0,0.0,0.0,2901,146.0,4528.0,0.0,0.0,126.951117774,0.0,0.0,0,38.9125817176,-77.1023245342,1473237981.0,3.984 -1979,0.0,0.0,0.0,0.0,2902,147.0,4532.15,0.0,0.0,126.368167913,0.0,0.0,0,38.9125492796,-77.1023008134,1473237982.0,4.217 -1980,0.0,0.0,0.0,0.0,2903,146.0,4536.01,0.0,0.0,129.531644973,0.0,0.0,0,38.9125191886,-77.1022785176,1473237983.0,3.43399999999 -1981,0.0,0.0,0.0,0.0,2904,146.0,4539.89,0.0,0.0,124.669706233,0.0,0.0,0,38.9124890976,-77.1022557188,1473237984.0,4.35700000002 -1982,0.0,0.0,0.0,0.0,2905,147.0,4543.89,0.0,0.0,127.200541841,0.0,0.0,0,38.9124581683,-77.1022320818,1473237985.0,3.61099999999 -1983,0.0,26.0,0.0,0.0,2906,146.0,4547.82,0.0,0.0,125.163905114,0.0,0.0,0,38.9124278259,-77.1022086125,1473237986.0,4.15200000001 -1984,0.0,26.0,0.0,0.0,2907,147.0,4552.05,0.0,0.0,125.728107253,0.0,0.0,0,38.9123951364,-77.1021835506,1473237987.0,4.217 -1985,0.0,26.0,0.0,0.0,2908,147.0,4555.95,0.0,0.0,128.558024191,0.0,0.0,0,38.912365213,-77.1021599974,1473237988.0,3.56400000001 -1986,0.0,23.0,0.0,0.0,2909,146.0,4559.85,0.0,0.0,127.502301665,0.0,0.0,0,38.9123356249,-77.1021358576,1473237989.0,4.19900000001 -1987,0.0,23.0,0.0,0.0,2910,147.0,4563.72,0.0,0.0,131.015957857,0.0,0.0,0,38.9123069588,-77.1021104604,1473237990.0,3.43399999999 -1988,0.0,23.0,0.0,0.0,2911,146.0,4567.57,0.0,0.0,127.342467445,0.0,0.0,0,38.9122790471,-77.1020840574,1473237991.0,4.20799999999 -1989,0.0,0.0,0.0,0.0,2912,147.0,4571.58,0.0,0.0,126.420036317,0.0,0.0,0,38.9122507162,-77.1020554751,1473237992.0,3.81599999999 -1990,0.0,0.0,0.0,0.0,2913,147.0,4575.58,0.0,0.0,125.269655135,0.0,0.0,0,38.9122223016,-77.1020270605,1473237993.0,4.00299999999 -1991,0.0,0.0,0.0,0.0,2914,147.0,4579.72,0.0,0.0,124.070545116,0.0,0.0,0,38.9121936355,-77.1019964665,1473237994.0,4.31999999999 -1992,0.0,0.0,0.0,0.0,2915,147.0,4583.65,0.0,0.0,126.926563917,0.0,0.0,0,38.9121668134,-77.1019669622,1473237995.0,3.54599999999 -1993,0.0,0.0,0.0,0.0,2916,147.0,4587.59,0.0,0.0,125.006223254,0.0,0.0,0,38.9121399075,-77.1019372065,1473237996.0,4.329 -1994,0.0,0.0,0.0,0.0,2917,147.0,4591.62,0.0,0.0,126.065829284,0.0,0.0,0,38.9121127501,-77.1019064449,1473237997.0,3.639 -1995,0.0,0.0,0.0,0.0,2918,147.0,4595.58,0.0,0.0,123.547117983,0.0,0.0,0,38.9120863471,-77.1018757671,1473237998.0,4.14299999999 -1996,0.0,0.0,0.0,0.0,2919,147.0,4599.76,0.0,0.0,123.131440414,0.0,0.0,0,38.9120590221,-77.1018425748,1473237999.0,4.16100000001 -1997,0.0,0.0,0.0,0.0,2920,147.0,4603.9,0.0,0.0,125.313419169,0.0,0.0,0,38.9120322,-77.1018093824,1473238000.0,3.984 -1998,0.0,0.0,0.0,0.0,2921,147.0,4608.02,0.0,0.0,123.893938208,0.0,0.0,0,38.9120055456,-77.1017762739,1473238001.0,4.22699999999 -1999,0.0,0.0,0.0,0.0,2922,148.0,4611.81,0.0,0.0,127.907118391,0.0,0.0,0,38.9119811542,-77.10174568,1473238002.0,3.47999999999 -2000,0.0,0.0,0.0,0.0,2923,147.0,4615.75,0.0,0.0,125.481828493,0.0,0.0,0,38.9119558409,-77.1017139126,1473238003.0,4.18899999999 -2001,0.0,0.0,0.0,0.0,2924,148.0,4619.74,0.0,0.0,127.327586873,0.0,0.0,0,38.9119308628,-77.1016807202,1473238004.0,3.91899999999 -2002,0.0,0.0,0.0,0.0,2925,147.0,4623.75,0.0,0.0,125.606691194,0.0,0.0,0,38.911904376,-77.1016493719,1473238005.0,3.91899999999 -2003,0.0,0.0,0.0,0.0,2926,147.0,4627.89,0.0,0.0,124.044827975,0.0,0.0,0,38.911877051,-77.1016169339,1473238006.0,4.33900000002 -2004,0.0,0.0,0.0,0.0,2927,148.0,4631.86,0.0,0.0,127.591741776,0.0,0.0,0,38.9118509833,-77.1015855856,1473238007.0,3.47999999999 -2005,0.0,0.0,0.0,0.0,2928,147.0,4635.73,0.0,0.0,124.641049963,0.0,0.0,0,38.911826089,-77.1015543211,1473238008.0,4.33900000002 -2006,0.0,0.0,0.0,0.0,2929,147.0,4639.58,0.0,0.0,127.852466003,0.0,0.0,0,38.9118017815,-77.1015225537,1473238009.0,3.686 -2007,0.0,0.0,0.0,0.0,2930,147.0,4643.44,0.0,0.0,127.368727504,0.0,0.0,0,38.9117771387,-77.1014912892,1473238010.0,3.984 -2008,0.0,0.0,0.0,0.0,2931,148.0,4647.59,0.0,0.0,127.17855208,0.0,0.0,0,38.9117504843,-77.1014576778,1473238011.0,4.18899999999 -2009,0.0,0.0,0.0,0.0,2932,147.0,4651.52,0.0,0.0,131.042714252,0.0,0.0,0,38.9117248356,-77.1014264971,1473238012.0,3.43399999999 -2010,0.0,0.0,0.0,0.0,2933,148.0,4655.32,0.0,0.0,127.854588928,0.0,0.0,0,38.9117002767,-77.101395987,1473238013.0,4.245 -2011,0.0,0.0,0.0,0.0,2934,148.0,4659.11,0.0,0.0,129.090665236,0.0,0.0,0,38.9116767235,-77.1013642196,1473238014.0,3.50799999999 -2012,0.0,0.0,0.0,0.0,2935,148.0,4662.81,0.0,0.0,126.804354605,0.0,0.0,0,38.9116538409,-77.1013332065,1473238015.0,4.07799999999 -2013,0.0,0.0,0.0,0.0,2936,148.0,4666.82,0.0,0.0,126.670432051,0.0,0.0,0,38.9116286114,-77.101300098,1473238016.0,4.11499999999 -2014,0.0,0.0,0.0,0.0,2937,148.0,4670.74,0.0,0.0,128.663139849,0.0,0.0,0,38.9116035495,-77.1012682468,1473238017.0,3.82599999999 -2015,0.0,0.0,0.0,0.0,2938,148.0,4674.58,0.0,0.0,126.975681134,0.0,0.0,0,38.9115796611,-77.1012362279,1473238018.0,4.03100000001 -2016,0.0,0.0,0.0,0.0,2939,148.0,4678.25,0.0,0.0,130.658030039,0.0,0.0,0,38.9115578681,-77.1012044605,1473238019.0,3.46199999999 -2017,0.0,0.0,0.0,0.0,2940,148.0,4682.17,0.0,0.0,128.022806903,0.0,0.0,0,38.9115345664,-77.10117043,1473238020.0,4.17100000001 -2018,0.0,0.0,0.0,0.0,2941,149.0,4686.02,0.0,0.0,128.802173244,0.0,0.0,0,38.9115124382,-77.1011362318,1473238021.0,3.82599999999 -2019,0.0,0.0,0.0,0.0,2942,149.0,4689.88,0.0,0.0,127.241880756,0.0,0.0,0,38.9114891365,-77.1011032071,1473238022.0,3.9 -2020,0.0,0.0,0.0,0.0,2943,149.0,4693.92,0.0,0.0,127.171690591,0.0,0.0,0,38.9114647452,-77.1010685898,1473238023.0,4.19900000001 -2021,0.0,0.0,0.0,0.0,2944,149.0,4697.9,0.0,0.0,129.582072573,0.0,0.0,0,38.91144027,-77.1010348946,1473238024.0,3.46199999999 -2022,0.0,0.0,0.0,0.0,2945,149.0,4701.73,0.0,0.0,127.980391853,0.0,0.0,0,38.9114178903,-77.101001367,1473238025.0,4.19900000001 -2023,0.0,0.0,0.0,0.0,2946,149.0,4705.54,0.0,0.0,129.501581489,0.0,0.0,0,38.9113959298,-77.1009675879,1473238026.0,3.62000000001 -2024,0.0,0.0,0.0,0.0,2947,149.0,4709.3,0.0,0.0,126.324493171,0.0,0.0,0,38.9113747235,-77.100933725,1473238027.0,4.11499999999 -2025,0.0,0.0,0.0,0.0,2948,150.0,4713.13,0.0,0.0,125.426368206,0.0,0.0,0,38.9113535173,-77.1008987725,1473238028.0,3.96599999999 -2026,0.0,0.0,0.0,0.0,2949,150.0,4717.14,0.0,0.0,124.46777901,0.0,0.0,0,38.9113292936,-77.1008644067,1473238029.0,3.89099999999 -2027,0.0,0.0,0.0,0.0,2950,150.0,4721.24,0.0,0.0,123.746066643,0.0,0.0,0,38.9113061596,-77.1008276101,1473238030.0,4.36699999999 -2028,0.0,0.0,0.0,0.0,2951,150.0,4725.25,0.0,0.0,124.515414038,0.0,0.0,0,38.9112817682,-77.1007934958,1473238031.0,3.57399999999 -2029,0.0,0.0,0.0,0.0,2952,149.0,4729.18,0.0,0.0,124.857170964,0.0,0.0,0,38.9112579636,-77.1007598843,1473238032.0,4.43199999998 -2030,0.0,0.0,0.0,0.0,2953,150.0,4733.11,0.0,0.0,127.629527395,0.0,0.0,0,38.9112351649,-77.1007252671,1473238033.0,3.62000000001 -2031,0.0,0.0,0.0,0.0,2954,150.0,4737.06,0.0,0.0,126.975681134,0.0,0.0,0,38.9112121984,-77.1006904822,1473238034.0,4.15200000001 -2032,0.0,0.0,0.0,0.0,2955,150.0,4740.83,0.0,0.0,127.43055862,0.0,0.0,0,38.9111911599,-77.100656284,1473238035.0,3.742 -2033,0.0,0.0,0.0,0.0,2956,150.0,4744.75,0.0,0.0,127.429012111,0.0,0.0,0,38.9111676067,-77.1006225888,1473238036.0,3.844 -2034,0.0,0.0,0.0,0.0,2957,150.0,4748.81,0.0,0.0,126.669876368,0.0,0.0,0,38.9111456461,-77.1005851217,1473238037.0,4.31999999999 -2035,0.0,0.0,0.0,0.0,2958,150.0,4752.85,0.0,0.0,126.063765345,0.0,0.0,0,38.9111218415,-77.1005498338,1473238038.0,3.54599999999 -2036,0.0,0.0,0.0,0.0,2959,150.0,4756.94,0.0,0.0,124.455171894,0.0,0.0,0,38.9110982884,-77.100513624,1473238039.0,4.40400000001 -2037,0.0,0.0,0.0,0.0,2960,150.0,4761.0,0.0,0.0,125.271421413,0.0,0.0,0,38.9110749867,-77.100477498,1473238040.0,3.58299999999 -2038,0.0,0.0,0.0,0.0,2961,150.0,4765.04,0.0,0.0,124.264499408,0.0,0.0,0,38.911051685,-77.1004416235,1473238041.0,4.38499999999 -2039,0.0,0.0,0.0,0.0,2962,151.0,4769.18,0.0,0.0,124.100406362,0.0,0.0,0,38.9110277966,-77.1004049946,1473238042.0,3.82599999999 -2040,0.0,0.0,0.0,0.0,2963,150.0,4773.25,0.0,0.0,124.229214194,0.0,0.0,0,38.9110026509,-77.1003708802,1473238043.0,4.05000000001 -2041,0.0,0.0,0.0,0.0,2964,151.0,4777.31,0.0,0.0,124.561473514,0.0,0.0,0,38.9109791815,-77.100334838,1473238044.0,4.18899999999 -2042,0.0,0.0,0.0,0.0,2965,151.0,4781.38,0.0,0.0,125.650964466,0.0,0.0,0,38.9109543711,-77.1003003046,1473238045.0,3.64799999999 -2043,0.0,0.0,0.0,0.0,2966,151.0,4785.49,0.0,0.0,125.395184825,0.0,0.0,0,38.9109290577,-77.1002656873,1473238046.0,4.37600000001 -2044,0.0,0.0,0.0,0.0,2967,151.0,4789.65,0.0,0.0,127.141592803,0.0,0.0,0,38.9109022357,-77.1002322435,1473238047.0,3.536 -2045,0.0,0.0,0.0,0.0,2968,151.0,4793.77,0.0,0.0,125.617756586,0.0,0.0,0,38.9108759165,-77.1001987159,1473238048.0,4.33900000002 -2046,0.0,0.0,0.0,0.0,2969,151.0,4797.77,0.0,0.0,127.096682611,0.0,0.0,0,38.910850687,-77.1001658589,1473238049.0,3.64799999999 -2047,0.0,0.0,0.0,0.0,2970,151.0,4801.81,0.0,0.0,127.516519185,0.0,0.0,0,38.9108249545,-77.100132918,1473238050.0,4.05000000001 -2048,0.0,0.0,0.0,0.0,2971,151.0,4805.98,0.0,0.0,128.231602928,0.0,0.0,0,38.9107993059,-77.100097714,1473238051.0,4.07799999999 -2049,0.0,0.0,0.0,0.0,2972,152.0,4810.02,0.0,0.0,128.913875486,0.0,0.0,0,38.9107731543,-77.1000653598,1473238052.0,3.48999999999 -2050,0.0,0.0,0.0,0.0,2973,152.0,4813.84,0.0,0.0,128.222065075,0.0,0.0,0,38.9107504394,-77.1000321675,1473238053.0,4.28299999998 -2051,0.0,0.0,0.0,0.0,2974,152.0,4817.93,0.0,0.0,127.318604059,0.0,0.0,0,38.9107241202,-77.0999992266,1473238054.0,3.48999999999 -2052,0.0,0.0,0.0,0.0,2975,152.0,4821.9,0.0,0.0,127.511591963,0.0,0.0,0,38.9106996451,-77.0999657828,1473238055.0,4.36699999999 -2053,0.0,0.0,0.0,0.0,2976,152.0,4825.96,0.0,0.0,125.471741157,0.0,0.0,0,38.9106752537,-77.0999309979,1473238056.0,3.64799999999 -2054,0.0,0.0,0.0,0.0,2977,152.0,4829.9,0.0,0.0,127.531866404,0.0,0.0,0,38.9106520358,-77.0998964645,1473238057.0,4.255 -2055,0.0,0.0,0.0,0.0,2978,152.0,4833.4,0.0,0.0,128.797433419,0.0,0.0,0,38.9106330089,-77.0998637751,1473238058.0,3.61099999999 -2056,0.0,0.0,0.0,0.0,2979,152.0,4837.31,0.0,0.0,129.778051442,0.0,0.0,0,38.9106087014,-77.0998311695,1473238059.0,4.00299999999 -2057,0.0,0.0,0.0,0.0,2980,153.0,4841.26,0.0,0.0,130.071083002,0.0,0.0,0,38.9105835557,-77.0997988991,1473238060.0,3.80699999999 -2058,0.0,0.0,0.0,0.0,2981,152.0,4845.26,0.0,0.0,129.218335354,0.0,0.0,0,38.9105567336,-77.0997682214,1473238061.0,3.62000000001 -2059,0.0,0.0,0.0,0.0,2982,152.0,4849.32,0.0,0.0,127.440822771,0.0,0.0,0,38.9105309173,-77.0997349452,1473238062.0,4.35700000002 -2060,0.0,0.0,0.0,0.0,2983,152.0,4853.65,0.0,0.0,127.399776085,0.0,0.0,0,38.9105011616,-77.0997026749,1473238063.0,3.536 -2061,0.0,0.0,0.0,0.0,2984,152.0,4857.73,0.0,0.0,125.587980088,0.0,0.0,0,38.9104732499,-77.0996721648,1473238064.0,4.35700000002 -2062,0.0,0.0,0.0,0.0,2985,152.0,4861.77,0.0,0.0,125.4034898,0.0,0.0,0,38.9104464278,-77.099640565,1473238065.0,3.65800000001 -2063,0.0,0.0,0.0,0.0,2986,152.0,4865.88,0.0,0.0,125.959830265,0.0,0.0,0,38.9104188513,-77.099609049,1473238066.0,4.14299999999 -2064,0.0,0.0,0.0,0.0,2987,152.0,4869.98,0.0,0.0,124.096939587,0.0,0.0,0,38.9103922807,-77.0995761082,1473238067.0,3.984 -2065,0.0,0.0,0.0,0.0,2988,152.0,4874.3,0.0,0.0,123.23588629,0.0,0.0,0,38.9103632793,-77.0995429158,1473238068.0,3.99399999998 -2066,0.0,0.0,0.0,0.0,2989,152.0,4878.61,0.0,0.0,122.888420506,0.0,0.0,0,38.9103345294,-77.0995095558,1473238069.0,4.18899999999 -2067,0.0,0.0,0.0,0.0,2990,152.0,4882.94,0.0,0.0,122.352342968,0.0,0.0,0,38.9103049412,-77.0994771179,1473238070.0,3.92799999999 -2068,0.0,0.0,0.0,0.0,2991,152.0,4887.19,0.0,0.0,123.621962967,0.0,0.0,0,38.910276778,-77.0994438417,1473238071.0,4.35700000002 -2069,0.0,0.0,0.0,0.0,2992,152.0,4891.42,0.0,0.0,124.547101449,0.0,0.0,0,38.9102475252,-77.0994125772,1473238072.0,3.58299999999 -2070,0.0,28.0,0.0,0.0,2993,152.0,4895.53,0.0,0.0,126.39969883,0.0,0.0,0,38.9102205355,-77.0993800554,1473238073.0,4.36699999999 -2071,0.0,28.0,0.0,0.0,2994,153.0,4899.57,0.0,0.0,130.887827432,0.0,0.0,0,38.9101937972,-77.0993485395,1473238074.0,3.555 -2072,0.0,28.0,0.0,0.0,2995,152.0,4903.69,0.0,0.0,131.10265849,0.0,0.0,0,38.9101658016,-77.0993173588,1473238075.0,4.00299999999 -2073,0.0,0.0,0.0,0.0,2996,153.0,4907.61,0.0,0.0,131.688612868,0.0,0.0,0,38.9101399016,-77.0992865972,1473238076.0,3.704 -2074,0.0,0.0,0.0,0.0,2997,153.0,4911.53,0.0,0.0,130.902513328,0.0,0.0,0,38.9101134986,-77.0992564224,1473238077.0,3.536 -2075,0.0,0.0,0.0,0.0,2998,153.0,4915.6,0.0,0.0,127.743583788,0.0,0.0,0,38.9100881014,-77.0992226433,1473238078.0,4.35700000002 -2076,0.0,0.0,0.0,0.0,2999,152.0,4919.79,0.0,0.0,126.020850723,0.0,0.0,0,38.910060944,-77.0991890319,1473238079.0,3.57399999999 -2077,0.0,0.0,0.0,0.0,3000,153.0,4923.86,0.0,0.0,124.999864719,0.0,0.0,0,38.9100338705,-77.0991574321,1473238080.0,4.43199999998 -2078,0.0,0.0,0.0,0.0,3001,153.0,4927.99,0.0,0.0,126.675294479,0.0,0.0,0,38.9100062102,-77.0991254132,1473238081.0,3.67599999999 -2079,0.0,0.0,0.0,0.0,3002,153.0,4931.99,0.0,0.0,127.010029944,0.0,0.0,0,38.9099803939,-77.0990932267,1473238082.0,4.14299999999 -2080,0.0,0.0,0.0,0.0,3003,153.0,4935.79,0.0,0.0,127.55186557,0.0,0.0,0,38.909955835,-77.0990627166,1473238083.0,3.62000000001 -2081,0.0,0.0,0.0,0.0,3004,153.0,4939.93,0.0,0.0,127.257862993,0.0,0.0,0,38.9099281747,-77.0990307815,1473238084.0,3.94700000001 -2082,0.0,0.0,0.0,0.0,3005,154.0,4944.19,0.0,0.0,126.365541047,0.0,0.0,0,38.9098998439,-77.0989975892,1473238085.0,4.31999999999 -2083,0.0,0.0,0.0,0.0,3006,154.0,4948.41,0.0,0.0,124.955643451,0.0,0.0,0,38.9098712616,-77.0989654865,1473238086.0,3.56400000001 -2084,0.0,0.0,0.0,0.0,3007,154.0,4952.54,0.0,0.0,123.371733453,0.0,0.0,0,38.9098425116,-77.098935144,1473238087.0,4.46000000002 -2085,0.0,0.0,0.0,0.0,3008,154.0,4956.63,0.0,0.0,123.389921768,0.0,0.0,0,38.9098144323,-77.0989047177,1473238088.0,3.592 -2086,0.0,29.0,0.0,0.0,3009,154.0,4960.75,0.0,0.0,125.666822979,0.0,0.0,0,38.9097860176,-77.0988740399,1473238089.0,4.41299999999 -2087,0.0,29.0,0.0,0.0,3010,155.0,4964.87,0.0,0.0,124.759662123,0.0,0.0,0,38.9097584412,-77.0988422725,1473238090.0,3.788 -2088,0.0,26.0,0.0,0.0,3011,155.0,4968.74,0.0,0.0,126.884453853,0.0,0.0,0,38.9097340498,-77.0988103375,1473238091.0,4.106 -2089,0.0,26.0,0.0,0.0,3012,155.0,4972.54,0.0,0.0,127.831240627,0.0,0.0,0,38.9097101614,-77.098779073,1473238092.0,3.65800000001 -2090,0.0,26.0,0.0,0.0,3013,155.0,4976.35,0.0,0.0,129.750788615,0.0,0.0,0,38.9096872788,-77.0987462159,1473238093.0,4.012 -2091,0.0,26.0,0.0,0.0,3014,156.0,4980.31,0.0,0.0,127.883326118,0.0,0.0,0,38.9096643962,-77.0987111796,1473238094.0,4.012 -2092,0.0,26.0,0.0,0.0,3015,155.0,4983.77,0.0,0.0,125.135292378,0.0,0.0,0,38.9096451178,-77.098679496,1473238095.0,3.592 -2093,0.0,0.0,0.0,0.0,3016,156.0,4987.55,0.0,0.0,124.402089093,0.0,0.0,0,38.9096232411,-77.0986459684,1473238096.0,4.35700000002 -2094,0.0,0.0,0.0,0.0,3017,155.0,4991.79,0.0,0.0,125.437538079,0.0,0.0,0,38.9095971733,-77.0986101776,1473238097.0,3.91899999999 -2095,0.0,0.0,0.0,0.0,3018,156.0,4996.01,0.0,0.0,124.156835344,0.0,0.0,0,38.9095712733,-77.0985746384,1473238098.0,4.26400000002 -2096,0.0,0.0,0.0,0.0,3019,156.0,4999.97,0.0,0.0,125.75288415,0.0,0.0,0,38.9095460437,-77.0985422004,1473238099.0,3.56400000001 -2097,0.0,0.0,0.0,0.0,3020,155.0,5004.05,0.0,0.0,126.648902924,0.0,0.0,0,38.9095203951,-77.098508589,1473238100.0,4.106 -2098,0.0,0.0,0.0,0.0,3021,155.0,5008.06,0.0,0.0,128.139842172,0.0,0.0,0,38.9094955847,-77.0984748937,1473238101.0,4.022 -2099,0.0,0.0,0.0,0.0,3022,155.0,5012.26,0.0,0.0,126.152438019,0.0,0.0,0,38.9094679244,-77.098441869,1473238102.0,3.704 -2100,0.0,0.0,0.0,0.0,3023,155.0,5016.51,0.0,0.0,125.391100815,0.0,0.0,0,38.9094403479,-77.0984078385,1473238103.0,4.329 -2101,0.0,0.0,0.0,0.0,3024,155.0,5020.65,0.0,0.0,125.544979342,0.0,0.0,0,38.9094129391,-77.0983755682,1473238104.0,3.555 -2102,0.0,0.0,0.0,0.0,3025,155.0,5024.64,0.0,0.0,126.866893013,0.0,0.0,0,38.9093862008,-77.0983447228,1473238105.0,4.41299999999 -2103,0.0,0.0,0.0,0.0,3026,155.0,5028.69,0.0,0.0,127.769302844,0.0,0.0,0,38.9093599655,-77.098312201,1473238106.0,3.56400000001 -2104,0.0,26.0,0.0,0.0,3027,154.0,5032.66,0.0,0.0,128.757230749,0.0,0.0,0,38.9093338978,-77.0982809365,1473238107.0,4.18000000001 -2105,0.0,26.0,0.0,0.0,3028,155.0,5036.58,0.0,0.0,130.040182979,0.0,0.0,0,38.9093079139,-77.0982502587,1473238108.0,3.51799999999 -2106,0.0,26.0,0.0,0.0,3029,154.0,5040.67,0.0,0.0,130.885602584,0.0,0.0,0,38.9092807565,-77.0982184913,1473238109.0,3.94700000001 -2107,0.0,25.0,0.0,0.0,3030,154.0,5044.73,0.0,0.0,130.270748859,0.0,0.0,0,38.9092535153,-77.0981872268,1473238110.0,4.012 -2108,0.0,25.0,0.0,0.0,3031,154.0,5048.6,0.0,0.0,130.903996935,0.0,0.0,0,38.9092284534,-77.0981562138,1473238111.0,3.47999999999 -2109,0.0,30.0,0.0,0.0,3032,154.0,5052.62,0.0,0.0,129.0642673,0.0,0.0,0,38.9092025533,-77.098123692,1473238112.0,4.26400000002 -2110,0.0,30.0,0.0,0.0,3033,154.0,5056.65,0.0,0.0,131.246569692,0.0,0.0,0,38.9091769047,-77.0980907511,1473238113.0,3.46199999999 -2111,0.0,24.0,0.0,0.0,3034,154.0,5060.66,0.0,0.0,128.679767864,0.0,0.0,0,38.9091506694,-77.0980589837,1473238114.0,4.13300000001 -2112,0.0,24.0,0.0,0.0,3035,155.0,5064.63,0.0,0.0,128.441366794,0.0,0.0,0,38.909125356,-77.0980267134,1473238115.0,3.72299999999 -2113,0.0,28.0,0.0,0.0,3036,154.0,5068.75,0.0,0.0,127.405678433,0.0,0.0,0,38.9090986177,-77.0979936887,1473238116.0,3.938 -2114,0.0,28.0,0.0,0.0,3037,154.0,5072.92,0.0,0.0,126.687243747,0.0,0.0,0,38.9090722986,-77.0979594067,1473238117.0,4.14299999999 -2115,0.0,28.0,0.0,0.0,3038,154.0,5077.17,0.0,0.0,127.119063788,0.0,0.0,0,38.9090446383,-77.0979252923,1473238118.0,3.64799999999 -2116,0.0,26.0,0.0,0.0,3039,155.0,5081.39,0.0,0.0,126.790156254,0.0,0.0,0,38.9090165589,-77.0978925191,1473238119.0,4.31099999999 -2117,0.0,26.0,0.0,0.0,3040,155.0,5085.55,0.0,0.0,127.825723184,0.0,0.0,0,38.9089888986,-77.0978601649,1473238120.0,3.48999999999 -2118,0.0,26.0,0.0,0.0,3041,154.0,5089.55,0.0,0.0,126.674599824,0.0,0.0,0,38.9089620765,-77.0978292357,1473238121.0,4.27300000001 -2119,0.0,26.0,0.0,0.0,3042,155.0,5093.67,0.0,0.0,126.335961778,0.0,0.0,0,38.9089344162,-77.0977976359,1473238122.0,3.71399999999 -2120,0.0,27.0,0.0,0.0,3043,155.0,5097.79,0.0,0.0,125.854832172,0.0,0.0,0,38.9089060854,-77.0977669582,1473238123.0,4.096 -2121,0.0,27.0,0.0,0.0,3044,156.0,5101.87,0.0,0.0,126.03584001,0.0,0.0,0,38.9088781737,-77.0977362804,1473238124.0,4.07799999999 -2122,0.0,27.0,0.0,0.0,3045,156.0,5106.01,0.0,0.0,126.840839456,0.0,0.0,0,38.9088494238,-77.0977058541,1473238125.0,3.732 -2123,0.0,25.0,0.0,0.0,3046,156.0,5110.03,0.0,0.0,127.30316781,0.0,0.0,0,38.9088212606,-77.0976767689,1473238126.0,4.18899999999 -2124,0.0,25.0,0.0,0.0,3047,157.0,5114.08,0.0,0.0,128.058860509,0.0,0.0,0,38.9087925106,-77.097648019,1473238127.0,3.51799999999 -2125,0.0,26.0,0.0,0.0,3048,157.0,5118.01,0.0,0.0,127.173650941,0.0,0.0,0,38.9087647665,-77.097619772,1473238128.0,4.329 -2126,0.0,26.0,0.0,0.0,3049,157.0,5122.05,0.0,0.0,126.903832166,0.0,0.0,0,38.9087370224,-77.0975895133,1473238129.0,3.61099999999 -2127,0.0,26.0,0.0,0.0,3050,157.0,5126.04,0.0,0.0,124.60044252,0.0,0.0,0,38.9087098651,-77.0975595061,1473238130.0,4.245 -2128,0.0,0.0,0.0,0.0,3051,157.0,5130.17,0.0,0.0,123.97226456,0.0,0.0,0,38.9086822048,-77.0975276548,1473238131.0,3.92799999999 -2129,0.0,0.0,0.0,0.0,3052,156.0,5134.21,0.0,0.0,124.114275399,0.0,0.0,0,38.9086547121,-77.0974971447,1473238132.0,3.938 -2130,0.0,0.0,0.0,0.0,3053,157.0,5138.38,0.0,0.0,124.124279032,0.0,0.0,0,38.9086262137,-77.0974657964,1473238133.0,4.36699999999 -2131,0.0,0.0,0.0,0.0,3054,157.0,5142.53,0.0,0.0,125.28188424,0.0,0.0,0,38.908596877,-77.0974362083,1473238134.0,3.592 -2132,0.0,25.0,0.0,0.0,3055,156.0,5146.5,0.0,0.0,126.739652613,0.0,0.0,0,38.9085688815,-77.097407626,1473238135.0,4.292 -2133,0.0,25.0,0.0,0.0,3056,157.0,5150.47,0.0,0.0,127.594983695,0.0,0.0,0,38.9085413888,-77.0973782893,1473238136.0,3.57399999999 -2134,0.0,26.0,0.0,0.0,3057,156.0,5154.41,0.0,0.0,129.049414194,0.0,0.0,0,38.9085148182,-77.0973481983,1473238137.0,4.18899999999 -2135,0.0,26.0,0.0,0.0,3058,157.0,5158.24,0.0,0.0,130.523517965,0.0,0.0,0,38.9084884152,-77.0973197836,1473238138.0,3.57399999999 -2136,0.0,26.0,0.0,0.0,3059,157.0,5162.13,0.0,0.0,130.843048382,0.0,0.0,0,38.9084615093,-77.0972910337,1473238139.0,4.05900000001 -2137,0.0,26.0,0.0,0.0,3060,157.0,5165.98,0.0,0.0,130.984755869,0.0,0.0,0,38.9084346872,-77.0972629543,1473238140.0,3.732 -2138,0.0,26.0,0.0,0.0,3061,156.0,5169.75,0.0,0.0,130.362645177,0.0,0.0,0,38.9084086195,-77.0972351264,1473238141.0,3.555 -2139,0.0,25.0,0.0,0.0,3062,157.0,5173.71,0.0,0.0,129.031681467,0.0,0.0,0,38.9083815459,-77.0972052868,1473238142.0,4.31999999999 -2140,0.0,25.0,0.0,0.0,3063,157.0,5177.72,0.0,0.0,128.770724561,0.0,0.0,0,38.9083535504,-77.0971761178,1473238143.0,3.50799999999 -2141,0.0,29.0,0.0,0.0,3064,157.0,5181.59,0.0,0.0,124.657730884,0.0,0.0,0,38.9083274826,-77.0971465297,1473238144.0,4.292 -2142,0.0,29.0,0.0,0.0,3065,157.0,5185.49,0.0,0.0,126.084683058,0.0,0.0,0,38.9083020855,-77.097115349,1473238145.0,3.61099999999 -2143,0.0,24.0,0.0,0.0,3066,157.0,5189.39,0.0,0.0,135.345905464,0.0,0.0,0,38.9082765207,-77.0970845036,1473238146.0,4.11499999999 -2144,0.0,24.0,0.0,0.0,3067,157.0,5193.16,0.0,0.0,138.818111016,0.0,0.0,0,38.9082527161,-77.0970534906,1473238147.0,3.77 -2145,0.0,36.0,0.0,0.0,3068,157.0,5196.63,0.0,0.0,148.372526804,0.0,0.0,0,38.9082301687,-77.0970257465,1473238148.0,3.06000000001 -2146,0.0,36.0,0.0,0.0,3069,158.0,5199.74,0.0,0.0,149.667233372,0.0,0.0,0,38.9082103036,-77.0970006008,1473238149.0,3.02299999999 -2147,0.0,30.0,0.0,0.0,3070,158.0,5203.19,0.0,0.0,148.633154073,0.0,0.0,0,38.9081876725,-77.0969731919,1473238150.0,3.592 -2148,0.0,30.0,0.0,0.0,3071,158.0,5206.7,0.0,0.0,144.292032082,0.0,0.0,0,38.9081653766,-77.0969445258,1473238151.0,3.48999999999 -2149,0.0,26.0,0.0,0.0,3072,158.0,5210.4,0.0,0.0,133.443014634,0.0,0.0,0,38.9081414044,-77.0969148539,1473238152.0,3.75099999999 -2150,0.0,26.0,0.0,0.0,3073,158.0,5214.25,0.0,0.0,132.908027645,0.0,0.0,0,38.9081163425,-77.09688426,1473238153.0,3.96599999999 -2151,0.0,26.0,0.0,0.0,3074,158.0,5218.12,0.0,0.0,130.030081418,0.0,0.0,0,38.9080912806,-77.0968532469,1473238154.0,3.527 -2152,0.0,26.0,0.0,0.0,3075,158.0,5221.95,0.0,0.0,130.633646703,0.0,0.0,0,38.9080673084,-77.0968214795,1473238155.0,4.17100000001 -2153,0.0,26.0,0.0,0.0,3076,158.0,5225.89,0.0,0.0,127.811436634,0.0,0.0,0,38.9080419112,-77.0967897959,1473238156.0,3.45199999999 -2154,0.0,28.0,0.0,0.0,3077,158.0,5229.79,0.0,0.0,128.413663214,0.0,0.0,0,38.9080171846,-77.096757777,1473238157.0,4.37600000001 -2155,0.0,28.0,0.0,0.0,3078,159.0,5233.55,0.0,0.0,124.271050763,0.0,0.0,0,38.9079944696,-77.0967255067,1473238158.0,3.56400000001 -2156,0.0,28.0,0.0,0.0,3079,159.0,5237.59,0.0,0.0,125.713738389,0.0,0.0,0,38.9079685695,-77.0966928173,1473238159.0,4.44099999999 -2157,0.0,0.0,0.0,0.0,3080,158.0,5241.56,0.0,0.0,122.97922769,0.0,0.0,0,38.9079431724,-77.0966604631,1473238160.0,3.66700000001 -2158,0.0,0.0,0.0,0.0,3081,158.0,5245.43,0.0,0.0,124.677511631,0.0,0.0,0,38.907918781,-77.0966286119,1473238161.0,4.329 -2159,0.0,0.0,0.0,0.0,3082,158.0,5249.35,0.0,0.0,124.170450013,0.0,0.0,0,38.9078942221,-77.0965960901,1473238162.0,3.788 -2160,0.0,0.0,0.0,0.0,3083,158.0,5253.42,0.0,0.0,124.313316916,0.0,0.0,0,38.9078685734,-77.0965626463,1473238163.0,4.14299999999 -2161,0.0,0.0,0.0,0.0,3084,158.0,5257.33,0.0,0.0,124.468986208,0.0,0.0,0,38.9078446012,-77.0965296216,1473238164.0,4.012 -2162,0.0,0.0,0.0,0.0,3085,158.0,5261.4,0.0,0.0,125.056167002,0.0,0.0,0,38.9078181144,-77.0964970998,1473238165.0,3.83499999999 -2163,0.0,0.0,0.0,0.0,3086,158.0,5265.57,0.0,0.0,126.59115769,0.0,0.0,0,38.907792801,-77.0964616444,1473238166.0,4.348 -2164,0.0,0.0,0.0,0.0,3087,158.0,5269.7,0.0,0.0,125.959418166,0.0,0.0,0,38.907766901,-77.0964273624,1473238167.0,3.51799999999 -2165,0.0,26.0,0.0,0.0,3088,158.0,5273.56,0.0,0.0,127.51736389,0.0,0.0,0,38.9077441022,-77.0963938348,1473238168.0,4.27300000001 -2166,0.0,26.0,0.0,0.0,3089,158.0,5277.76,0.0,0.0,125.871290883,0.0,0.0,0,38.907718705,-77.0963578764,1473238169.0,3.56400000001 -2167,0.0,25.0,0.0,0.0,3090,158.0,5281.81,0.0,0.0,127.738356455,0.0,0.0,0,38.9076959062,-77.0963214152,1473238170.0,4.41299999999 -2168,0.0,25.0,0.0,0.0,3091,158.0,5285.78,0.0,0.0,124.397801552,0.0,0.0,0,38.9076731913,-77.0962860435,1473238171.0,3.60200000001 -2169,0.0,25.0,0.0,0.0,3092,158.0,5289.76,0.0,0.0,124.518367268,0.0,0.0,0,38.9076498058,-77.0962512586,1473238172.0,4.30099999999 -2170,0.0,0.0,0.0,0.0,3093,158.0,5293.9,0.0,0.0,123.483716187,0.0,0.0,0,38.9076245762,-77.0962160546,1473238173.0,3.80699999999 -2171,0.0,0.0,0.0,0.0,3094,157.0,5298.08,0.0,0.0,122.667850509,0.0,0.0,0,38.9075993467,-77.0961801801,1473238174.0,4.22699999999 -2172,0.0,0.0,0.0,0.0,3095,158.0,5302.2,0.0,0.0,122.010350281,0.0,0.0,0,38.9075762127,-77.0961430483,1473238175.0,4.15200000001 -2173,0.0,0.0,0.0,0.0,3096,157.0,5306.45,0.0,0.0,121.554636441,0.0,0.0,0,38.9075500611,-77.0961072575,1473238176.0,3.88200000001 -2174,0.0,0.0,0.0,0.0,3097,158.0,5310.64,0.0,0.0,122.607039661,0.0,0.0,0,38.9075250831,-77.0960710477,1473238177.0,4.45100000001 -2175,0.0,0.0,0.0,0.0,3098,157.0,5314.89,0.0,0.0,122.271001235,0.0,0.0,0,38.9074996021,-77.0960344188,1473238178.0,3.65800000001 -2176,0.0,0.0,0.0,0.0,3099,157.0,5318.93,0.0,0.0,123.364485981,0.0,0.0,0,38.9074768871,-77.0959981252,1473238179.0,4.47899999999 -2177,0.0,0.0,0.0,0.0,3100,157.0,5323.16,0.0,0.0,121.407570997,0.0,0.0,0,38.9074512385,-77.0959619991,1473238180.0,3.64799999999 -2178,0.0,0.0,0.0,0.0,3101,157.0,5327.25,0.0,0.0,122.932368039,0.0,0.0,0,38.9074276015,-77.0959257893,1473238181.0,4.50699999999 -2179,0.0,0.0,0.0,0.0,3102,157.0,5331.52,0.0,0.0,120.55247477,0.0,0.0,0,38.907402372,-77.0958886575,1473238182.0,3.788 -2180,0.0,0.0,0.0,0.0,3103,157.0,5335.68,0.0,0.0,124.118810179,0.0,0.0,0,38.907378735,-77.095851358,1473238183.0,4.38499999999 -2181,0.0,0.0,0.0,0.0,3104,158.0,5339.8,0.0,0.0,123.088531026,0.0,0.0,0,38.9073555171,-77.09581431,1473238184.0,3.89099999999 -2182,0.0,0.0,0.0,0.0,3105,157.0,5343.83,0.0,0.0,121.925086271,0.0,0.0,0,38.9073342271,-77.0957766753,1473238185.0,4.087 -2183,0.0,0.0,0.0,0.0,3106,157.0,5347.83,0.0,0.0,121.063852535,0.0,0.0,0,38.9073132724,-77.0957392082,1473238186.0,3.938 -2184,0.0,0.0,0.0,0.0,3107,157.0,5352.07,0.0,0.0,119.314484055,0.0,0.0,0,38.9072889648,-77.0957014896,1473238187.0,4.292 -2185,0.0,0.0,0.0,0.0,3108,157.0,5356.4,0.0,0.0,119.319784253,0.0,0.0,0,38.9072673395,-77.0956598315,1473238188.0,4.6 -2186,0.0,0.0,0.0,0.0,3109,157.0,5360.54,0.0,0.0,118.574396965,0.0,0.0,0,38.9072452951,-77.0956212748,1473238189.0,3.704 -2187,0.0,0.0,0.0,0.0,3110,157.0,5364.65,0.0,0.0,121.022625468,0.0,0.0,0,38.9072234184,-77.0955831371,1473238190.0,4.55299999999 -2188,0.0,0.0,0.0,0.0,3111,157.0,5368.85,0.0,0.0,122.458976243,0.0,0.0,0,38.9071991947,-77.0955459215,1473238191.0,3.63 -2189,0.0,0.0,0.0,0.0,3112,157.0,5372.92,0.0,0.0,124.630290448,0.0,0.0,0,38.9071765635,-77.0955089573,1473238192.0,4.41299999999 -2190,0.0,0.0,0.0,0.0,3113,157.0,5377.0,0.0,0.0,121.908099237,0.0,0.0,0,38.9071551897,-77.0954707358,1473238193.0,3.75099999999 -2191,0.0,0.0,0.0,0.0,3114,158.0,5380.93,0.0,0.0,123.431986304,0.0,0.0,0,38.9071376715,-77.0954310056,1473238194.0,4.36699999999 -2192,0.0,0.0,0.0,0.0,3115,158.0,5385.04,0.0,0.0,121.347492992,0.0,0.0,0,38.9071162976,-77.095392365,1473238195.0,3.872 -2193,0.0,0.0,0.0,0.0,3116,157.0,5389.15,0.0,0.0,121.433482838,0.0,0.0,0,38.9070954267,-77.0953531377,1473238196.0,4.26400000002 -2194,0.0,0.0,0.0,0.0,3117,157.0,5393.32,0.0,0.0,121.095838706,0.0,0.0,0,38.9070751425,-77.0953125693,1473238197.0,4.106 -2195,0.0,0.0,0.0,0.0,3118,157.0,5397.55,0.0,0.0,120.906832649,0.0,0.0,0,38.9070536848,-77.0952722523,1473238198.0,4.03100000001 -2196,0.0,0.0,0.0,0.0,3119,158.0,5401.56,0.0,0.0,122.282910778,0.0,0.0,0,38.9070365019,-77.0952316001,1473238199.0,4.33900000002 -2197,0.0,0.0,0.0,0.0,3120,158.0,5405.71,0.0,0.0,122.077924823,0.0,0.0,0,38.9070163853,-77.0951911993,1473238200.0,3.77900000001 -2198,0.0,0.0,0.0,0.0,3121,158.0,5409.71,0.0,0.0,124.397399609,0.0,0.0,0,38.9069987833,-77.0951509662,1473238201.0,4.37600000001 -2199,0.0,0.0,0.0,0.0,3122,158.0,5413.64,0.0,0.0,122.864105916,0.0,0.0,0,38.9069811814,-77.0951115713,1473238202.0,3.62000000001 -2200,0.0,0.0,0.0,0.0,3123,158.0,5417.66,0.0,0.0,126.20302625,0.0,0.0,0,38.9069623221,-77.0950719249,1473238203.0,4.43199999998 -2201,0.0,0.0,0.0,0.0,3124,158.0,5421.53,0.0,0.0,123.955234453,0.0,0.0,0,38.9069453068,-77.0950327814,1473238204.0,3.61099999999 -2202,0.0,26.0,0.0,0.0,3125,158.0,5425.46,0.0,0.0,126.320210249,0.0,0.0,0,38.9069284592,-77.0949929673,1473238205.0,4.38499999999 -2203,0.0,26.0,0.0,0.0,3126,158.0,5429.39,0.0,0.0,125.385383647,0.0,0.0,0,38.9069127012,-77.0949523989,1473238206.0,3.56400000001 -2204,0.0,27.0,0.0,0.0,3127,158.0,5433.12,0.0,0.0,124.535015365,0.0,0.0,0,38.9068980329,-77.0949135069,1473238207.0,4.292 -2205,0.0,27.0,0.0,0.0,3128,158.0,5437.01,0.0,0.0,123.95017954,0.0,0.0,0,38.9068829454,-77.0948729385,1473238208.0,3.788 -2206,0.0,25.0,0.0,0.0,3129,158.0,5440.79,0.0,0.0,129.54210511,0.0,0.0,0,38.9068672713,-77.0948340464,1473238209.0,3.99399999998 -2207,0.0,25.0,0.0,0.0,3130,158.0,5444.86,0.0,0.0,129.667176354,0.0,0.0,0,38.906851178,-77.0947918016,1473238210.0,4.19900000001 -2208,0.0,25.0,0.0,0.0,3131,158.0,5448.43,0.0,0.0,140.577304129,0.0,0.0,0,38.906839611,-77.0947530773,1473238211.0,3.135 -2209,0.0,0.0,0.0,0.0,3132,157.0,5451.5,0.0,0.0,149.111912686,0.0,0.0,0,38.9068292174,-77.0947197173,1473238212.0,3.39600000001 -2210,0.0,0.0,0.0,0.0,3133,157.0,5454.9,0.0,0.0,162.500052759,0.0,0.0,0,38.9068158902,-77.094684178,1473238213.0,3.35000000001 -2211,0.0,42.0,0.0,0.0,3134,157.0,5457.79,0.0,0.0,174.365152332,0.0,0.0,0,38.906805329,-77.0946534164,1473238214.0,2.585 -2212,0.0,42.0,0.0,0.0,3135,156.0,5460.42,0.0,0.0,176.650342442,0.0,0.0,0,38.9067940973,-77.0946265943,1473238215.0,2.809 -2213,0.0,42.0,0.0,0.0,3136,156.0,5463.13,0.0,0.0,193.621715137,0.0,0.0,0,38.9067846257,-77.0945975091,1473238216.0,2.678 -2214,0.0,19.0,0.0,0.0,3137,155.0,5465.8,0.0,0.0,204.468205637,0.0,0.0,0,38.9067717176,-77.0945715252,1473238217.0,2.57499999999 -2215,0.0,19.0,0.0,0.0,3138,155.0,5468.26,0.0,0.0,200.388284833,0.0,0.0,0,38.9067609049,-77.0945465472,1473238218.0,2.445 -2216,0.0,19.0,0.0,0.0,3139,155.0,5470.51,0.0,0.0,212.43528081,0.0,0.0,0,38.9067505952,-77.094523916,1473238219.0,2.053 -2217,0.0,0.0,0.0,0.0,3140,154.0,5472.79,0.0,0.0,216.911592094,0.0,0.0,0,38.9067403693,-77.0945009496,1473238220.0,2.51 -2218,0.0,0.0,0.0,0.0,3141,153.0,5475.3,0.0,0.0,216.48226626,0.0,0.0,0,38.9067286346,-77.094476223,1473238221.0,2.585 -2219,0.0,0.0,0.0,0.0,3142,153.0,5477.5,0.0,0.0,208.114482786,0.0,0.0,0,38.9067179896,-77.0944547653,1473238222.0,1.969 -2220,0.0,0.0,0.0,0.0,3143,153.0,5479.69,0.0,0.0,208.877001286,0.0,0.0,0,38.9067082666,-77.0944326371,1473238223.0,2.491 -2221,0.0,0.0,0.0,0.0,3144,152.0,5482.18,0.0,0.0,212.569775339,0.0,0.0,0,38.9066966996,-77.0944080781,1473238224.0,2.519 -2222,0.0,0.0,0.0,0.0,3145,151.0,5484.72,0.0,0.0,201.559775998,0.0,0.0,0,38.9066847973,-77.0943830162,1473238225.0,2.54699999999 -2223,0.0,0.0,0.0,0.0,3146,151.0,5487.03,0.0,0.0,196.721646535,0.0,0.0,0,38.906673817,-77.0943603851,1473238226.0,2.118 -2224,0.0,0.0,0.0,0.0,3147,150.0,5489.47,0.0,0.0,200.716671475,0.0,0.0,0,38.9066607412,-77.0943378378,1473238227.0,2.771 -2225,0.0,0.0,0.0,0.0,3148,149.0,5492.31,0.0,0.0,194.293654252,0.0,0.0,0,38.9066454861,-77.0943115186,1473238228.0,2.809 -2226,0.0,0.0,0.0,0.0,3149,149.0,5494.85,0.0,0.0,194.292673736,0.0,0.0,0,38.9066326618,-77.0942872111,1473238229.0,2.165 -2227,0.0,0.0,0.0,0.0,3150,148.0,5497.26,0.0,0.0,194.146034798,0.0,0.0,0,38.9066214301,-77.0942634065,1473238230.0,2.697 -2228,0.0,0.0,0.0,0.0,3151,148.0,5499.99,0.0,0.0,196.095742261,0.0,0.0,0,38.9066078514,-77.0942371711,1473238231.0,2.79 -2229,0.0,0.0,0.0,0.0,3152,147.0,5502.56,0.0,0.0,193.895400566,0.0,0.0,0,38.9065950271,-77.0942125283,1473238232.0,2.258 -2230,0.0,0.0,0.0,0.0,3153,146.0,5505.04,0.0,0.0,190.827713141,0.0,0.0,0,38.9065831248,-77.0941883046,1473238233.0,2.631 -2231,0.0,0.0,0.0,0.0,3154,145.0,5507.94,0.0,0.0,192.221279145,0.0,0.0,0,38.906567283,-77.094161734,1473238234.0,2.883 -2232,0.0,0.0,0.0,0.0,3155,145.0,5510.61,0.0,0.0,189.211194095,0.0,0.0,0,38.9065516926,-77.0941382647,1473238235.0,2.463 -2233,0.0,0.0,0.0,0.0,3156,144.0,5513.2,0.0,0.0,186.924357943,0.0,0.0,0,38.9065368567,-77.0941152144,1473238236.0,2.55699999999 -2234,0.0,19.0,0.0,0.0,3157,143.0,5516.02,0.0,0.0,190.41432839,0.0,0.0,0,38.9065209311,-77.0940898173,1473238237.0,2.883 -2235,0.0,19.0,0.0,0.0,3158,142.0,5518.79,0.0,0.0,183.556806461,0.0,0.0,0,38.9065054245,-77.0940647554,1473238238.0,2.61299999999 -2236,0.0,19.0,0.0,0.0,3159,141.0,5521.4,0.0,0.0,182.39933294,0.0,0.0,0,38.906491762,-77.0940402802,1473238239.0,2.53800000001 -2237,0.0,0.0,0.0,0.0,3160,141.0,5524.07,0.0,0.0,184.709861588,0.0,0.0,0,38.9064786863,-77.0940144639,1473238240.0,2.902 -2238,0.0,0.0,0.0,0.0,3161,140.0,5527.41,0.0,0.0,183.024225752,0.0,0.0,0,38.9064585697,-77.0939853787,1473238241.0,3.02299999999 -2239,0.0,0.0,0.0,0.0,3162,139.0,5529.84,0.0,0.0,181.990646784,0.0,0.0,0,38.9064466674,-77.0939618256,1473238242.0,2.23 -2240,0.0,0.0,0.0,0.0,3163,139.0,5532.42,0.0,0.0,185.140955584,0.0,0.0,0,38.906433424,-77.0939374343,1473238243.0,2.85500000001 -2241,0.0,0.0,0.0,0.0,3164,138.0,5535.37,0.0,0.0,186.363064293,0.0,0.0,0,38.9064171631,-77.0939104445,1473238244.0,2.939 -2242,0.0,0.0,0.0,0.0,3165,137.0,5538.05,0.0,0.0,184.0860407,0.0,0.0,0,38.9064030815,-77.0938853826,1473238245.0,2.473 -2243,0.0,0.0,0.0,0.0,3166,136.0,5540.69,0.0,0.0,176.741438752,0.0,0.0,0,38.9063901734,-77.0938598178,1473238246.0,2.734 -2244,0.0,0.0,0.0,0.0,3167,135.0,5543.64,0.0,0.0,176.782828036,0.0,0.0,0,38.906374583,-77.0938322414,1473238247.0,3.032 -2245,0.0,0.0,0.0,0.0,3168,135.0,5546.6,0.0,0.0,174.033323991,0.0,0.0,0,38.9063596632,-77.0938036591,1473238248.0,2.799 -2246,0.0,0.0,0.0,0.0,3169,134.0,5549.5,0.0,0.0,171.26994813,0.0,0.0,0,38.9063449949,-77.093775915,1473238249.0,2.921 -2247,0.0,23.0,0.0,0.0,3170,133.0,5552.49,0.0,0.0,174.03778202,0.0,0.0,0,38.9063291531,-77.0937480032,1473238250.0,2.99500000001 -2248,0.0,23.0,0.0,0.0,3171,133.0,5555.36,0.0,0.0,172.885557245,0.0,0.0,0,38.9063145686,-77.0937206782,1473238251.0,2.75299999999 -2249,0.0,23.0,0.0,0.0,3172,132.0,5558.19,0.0,0.0,177.107580204,0.0,0.0,0,38.9063003194,-77.0936936047,1473238252.0,2.75299999999 -2250,0.0,0.0,0.0,0.0,3173,132.0,5561.06,0.0,0.0,181.17618639,0.0,0.0,0,38.9062854834,-77.0936665311,1473238253.0,2.921 -2251,0.0,0.0,0.0,0.0,3174,132.0,5563.95,0.0,0.0,177.071467884,0.0,0.0,0,38.9062712342,-77.0936386194,1473238254.0,2.948 -2252,0.0,0.0,0.0,0.0,3175,131.0,5566.6,0.0,0.0,179.292980253,0.0,0.0,0,38.906259248,-77.0936122164,1473238255.0,2.351 -2253,0.0,0.0,0.0,0.0,3176,131.0,5569.33,0.0,0.0,180.570603106,0.0,0.0,0,38.9062474295,-77.0935844723,1473238256.0,3.02299999999 -2254,0.0,0.0,0.0,0.0,3177,131.0,5572.43,0.0,0.0,176.117277334,0.0,0.0,0,38.9062301628,-77.0935563091,1473238257.0,3.079 -2255,0.0,0.0,0.0,0.0,3178,131.0,5575.15,0.0,0.0,173.605370193,0.0,0.0,0,38.9062154107,-77.0935312472,1473238258.0,2.398 -2256,0.0,0.0,0.0,0.0,3179,130.0,5577.88,0.0,0.0,170.845857099,0.0,0.0,0,38.9062026702,-77.0935043413,1473238259.0,3.10699999999 -2257,0.0,0.0,0.0,0.0,3180,129.0,5581.1,0.0,0.0,171.957652264,0.0,0.0,0,38.9061850682,-77.0934747532,1473238260.0,3.191 -2258,0.0,19.0,0.0,0.0,3181,129.0,5584.04,0.0,0.0,169.099453904,0.0,0.0,0,38.9061683882,-77.0934483502,1473238261.0,2.669 -2259,0.0,19.0,0.0,0.0,3182,129.0,5586.84,0.0,0.0,168.717078258,0.0,0.0,0,38.9061554801,-77.0934206061,1473238262.0,2.902 -2260,0.0,19.0,0.0,0.0,3183,128.0,5589.92,0.0,0.0,173.832163917,0.0,0.0,0,38.9061407279,-77.0933904313,1473238263.0,3.182 -2261,0.0,0.0,0.0,0.0,3184,128.0,5592.88,0.0,0.0,167.387908071,0.0,0.0,0,38.9061262272,-77.0933617651,1473238264.0,2.827 -2262,0.0,0.0,0.0,0.0,3185,128.0,5595.88,0.0,0.0,166.987629903,0.0,0.0,0,38.906111978,-77.0933323447,1473238265.0,2.725 -2263,0.0,0.0,0.0,0.0,3186,127.0,5598.97,0.0,0.0,168.164617873,0.0,0.0,0,38.9060965553,-77.0933026727,1473238266.0,3.26599999999 -2264,0.0,0.0,0.0,0.0,3187,127.0,5602.28,0.0,0.0,166.101490168,0.0,0.0,0,38.9060802944,-77.0932707377,1473238267.0,3.24700000001 -2265,0.0,0.0,0.0,0.0,3188,127.0,5605.19,0.0,0.0,163.158177262,0.0,0.0,0,38.9060660452,-77.0932425745,1473238268.0,2.482 -2266,0.0,0.0,0.0,0.0,3189,126.0,5608.13,0.0,0.0,167.237397467,0.0,0.0,0,38.9060519636,-77.0932138246,1473238269.0,3.24700000001 -2267,0.0,21.0,0.0,0.0,3190,125.0,5611.3,0.0,0.0,175.842980591,0.0,0.0,0,38.9060370438,-77.0931827277,1473238270.0,3.07000000001 -2268,0.0,21.0,0.0,0.0,3191,124.0,5614.21,0.0,0.0,182.015885023,0.0,0.0,0,38.9060222916,-77.0931548998,1473238271.0,2.631 -2269,0.0,21.0,0.0,0.0,3192,124.0,5616.87,0.0,0.0,191.151426685,0.0,0.0,0,38.9060089644,-77.0931294188,1473238272.0,2.473 -2270,0.0,19.0,0.0,0.0,3193,124.0,5619.4,0.0,0.0,212.783988328,0.0,0.0,0,38.9059959725,-77.0931054465,1473238273.0,2.52899999999 -2271,0.0,19.0,0.0,0.0,3194,124.0,5621.88,0.0,0.0,215.38019733,0.0,0.0,0,38.905983232,-77.0930819772,1473238274.0,2.249 -2272,0.0,19.0,0.0,0.0,3195,123.0,5624.09,0.0,0.0,219.737152511,0.0,0.0,0,38.9059728384,-77.0930601843,1473238275.0,2.062 -2273,0.0,0.0,0.0,0.0,3196,123.0,5626.37,0.0,0.0,224.534746509,0.0,0.0,0,38.9059616905,-77.0930381399,1473238276.0,2.379 -2274,0.0,0.0,0.0,0.0,3197,123.0,5628.88,0.0,0.0,223.796440183,0.0,0.0,0,38.9059496205,-77.0930135809,1473238277.0,2.501 -2275,0.0,0.0,0.0,0.0,3198,122.0,5631.18,0.0,0.0,215.807174888,0.0,0.0,0,38.9059384726,-77.092991285,1473238278.0,1.95 -2276,0.0,0.0,0.0,0.0,3199,122.0,5633.34,0.0,0.0,217.280067423,0.0,0.0,0,38.9059281629,-77.0929700788,1473238279.0,2.323 -2277,0.0,0.0,0.0,0.0,3200,121.0,5635.84,0.0,0.0,222.645452057,0.0,0.0,0,38.9059165958,-77.092945436,1473238280.0,2.482 -2278,0.0,0.0,0.0,0.0,3201,121.0,5638.27,0.0,0.0,211.587676987,0.0,0.0,0,38.9059056155,-77.0929211285,1473238281.0,2.351 -2279,0.0,0.0,0.0,0.0,3202,120.0,5640.54,0.0,0.0,206.775060958,0.0,0.0,0,38.9058955573,-77.0928983297,1473238282.0,2.118 -2280,0.0,0.0,0.0,0.0,3203,120.0,5642.87,0.0,0.0,206.297153635,0.0,0.0,0,38.9058855828,-77.0928746928,1473238283.0,2.55699999999 -2281,0.0,0.0,0.0,0.0,3204,119.0,5645.6,0.0,0.0,195.126731011,0.0,0.0,0,38.9058738481,-77.0928471163,1473238284.0,2.83700000001 -2282,0.0,0.0,0.0,0.0,3205,119.0,5648.05,0.0,0.0,188.504028764,0.0,0.0,0,38.9058638737,-77.0928218029,1473238285.0,2.193 -2283,0.0,0.0,0.0,0.0,3206,119.0,5650.6,0.0,0.0,185.143033011,0.0,0.0,0,38.9058522228,-77.0927964896,1473238286.0,2.911 -2284,0.0,0.0,0.0,0.0,3207,118.0,5653.55,0.0,0.0,185.471555408,0.0,0.0,0,38.905839147,-77.0927668177,1473238287.0,2.976 -2285,0.0,0.0,0.0,0.0,3208,117.0,5656.26,0.0,0.0,181.620622039,0.0,0.0,0,38.9058271609,-77.0927396603,1473238288.0,2.407 -2286,0.0,0.0,0.0,0.0,3209,117.0,5658.83,0.0,0.0,181.503318918,0.0,0.0,0,38.9058151748,-77.0927142631,1473238289.0,2.70600000001 -2287,0.0,0.0,0.0,0.0,3210,117.0,5661.64,0.0,0.0,189.764544097,0.0,0.0,0,38.9058026019,-77.0926861838,1473238290.0,2.893 -2288,0.0,0.0,0.0,0.0,3211,117.0,5664.45,0.0,0.0,184.580570617,0.0,0.0,0,38.9057906158,-77.0926576853,1473238291.0,2.74300000001 -2289,0.0,0.0,0.0,0.0,3212,117.0,5666.97,0.0,0.0,184.805026697,0.0,0.0,0,38.9057807252,-77.0926315337,1473238292.0,2.323 -2290,0.0,0.0,0.0,0.0,3213,117.0,5669.55,0.0,0.0,191.131498471,0.0,0.0,0,38.9057703316,-77.0926047955,1473238293.0,2.84600000001 -2291,0.0,0.0,0.0,0.0,3214,117.0,5672.45,0.0,0.0,189.996167177,0.0,0.0,0,38.9057572559,-77.0925758779,1473238294.0,2.911 -2292,0.0,0.0,0.0,0.0,3215,117.0,5675.03,0.0,0.0,187.019396583,0.0,0.0,0,38.9057461917,-77.0925498102,1473238295.0,2.202 -2293,0.0,0.0,0.0,0.0,3216,116.0,5677.58,0.0,0.0,185.801245753,0.0,0.0,0,38.9057347085,-77.0925243292,1473238296.0,2.78100000001 -2294,0.0,0.0,0.0,0.0,3217,115.0,5680.53,0.0,0.0,187.993176906,0.0,0.0,0,38.9057211298,-77.0924949925,1473238297.0,2.939 -2295,0.0,0.0,0.0,0.0,3218,115.0,5683.33,0.0,0.0,178.878963214,0.0,0.0,0,38.9057086408,-77.092466997,1473238298.0,2.585 -2296,0.0,0.0,0.0,0.0,3219,114.0,5685.99,0.0,0.0,176.518325047,0.0,0.0,0,38.9056972414,-77.0924400073,1473238299.0,2.687 -2297,0.0,0.0,0.0,0.0,3220,114.0,5688.87,0.0,0.0,182.21775574,0.0,0.0,0,38.9056845848,-77.0924110897,1473238300.0,3.004 -2298,0.0,20.0,0.0,0.0,3221,114.0,5691.89,0.0,0.0,179.973261115,0.0,0.0,0,38.9056707546,-77.0923810825,1473238301.0,2.976 -2299,0.0,20.0,0.0,0.0,3222,114.0,5694.49,0.0,0.0,178.608707754,0.0,0.0,0,38.9056587685,-77.0923552662,1473238302.0,2.267 -2300,0.0,20.0,0.0,0.0,3223,113.0,5697.06,0.0,0.0,183.391844065,0.0,0.0,0,38.9056471176,-77.0923296176,1473238303.0,2.911 -2301,0.0,0.0,0.0,0.0,3224,113.0,5700.03,0.0,0.0,187.009706694,0.0,0.0,0,38.9056336228,-77.0923001133,1473238304.0,2.948 -2302,0.0,0.0,0.0,0.0,3225,112.0,5702.75,0.0,0.0,181.708627462,0.0,0.0,0,38.9056206308,-77.0922734588,1473238305.0,2.501 -2303,0.0,0.0,0.0,0.0,3226,112.0,5705.37,0.0,0.0,182.605231205,0.0,0.0,0,38.9056088962,-77.0922473073,1473238306.0,2.64100000001 -2304,0.0,0.0,0.0,0.0,3227,112.0,5708.1,0.0,0.0,191.233080839,0.0,0.0,0,38.9055962395,-77.0922203176,1473238307.0,2.84600000001 -2305,0.0,0.0,0.0,0.0,3228,112.0,5710.93,0.0,0.0,187.516438129,0.0,0.0,0,38.9055829123,-77.0921924058,1473238308.0,2.78100000001 -2306,0.0,0.0,0.0,0.0,3229,111.0,5713.41,0.0,0.0,188.616696578,0.0,0.0,0,38.9055721834,-77.0921674278,1473238309.0,2.211 -2307,0.0,0.0,0.0,0.0,3230,111.0,5715.95,0.0,0.0,192.494866803,0.0,0.0,0,38.9055605326,-77.0921421982,1473238310.0,2.83700000001 -2308,0.0,0.0,0.0,0.0,3231,110.0,5718.82,0.0,0.0,187.356745086,0.0,0.0,0,38.9055472892,-77.0921137836,1473238311.0,2.87400000001 -2309,0.0,0.0,0.0,0.0,3232,110.0,5721.45,0.0,0.0,183.620714324,0.0,0.0,0,38.905535806,-77.0920872129,1473238312.0,2.295 -2310,0.0,0.0,0.0,0.0,3233,110.0,5724.09,0.0,0.0,179.985320678,0.0,0.0,0,38.9055248257,-77.0920601394,1473238313.0,2.911 -2311,0.0,20.0,0.0,0.0,3234,110.0,5727.1,0.0,0.0,179.785564854,0.0,0.0,0,38.9055113308,-77.0920300484,1473238314.0,3.098 -2312,0.0,20.0,0.0,0.0,3235,110.0,5729.89,0.0,0.0,178.953239751,0.0,0.0,0,38.9054995123,-77.0920016337,1473238315.0,2.501 -2313,0.0,20.0,0.0,0.0,3236,109.0,5732.53,0.0,0.0,179.479369973,0.0,0.0,0,38.9054888673,-77.0919744764,1473238316.0,2.75299999999 -2314,0.0,0.0,0.0,0.0,3237,109.0,5735.39,0.0,0.0,186.742419956,0.0,0.0,0,38.905476965,-77.0919452235,1473238317.0,2.986 -2315,0.0,0.0,0.0,0.0,3238,109.0,5738.11,0.0,0.0,182.073270698,0.0,0.0,0,38.9054665715,-77.091916725,1473238318.0,2.473 -2316,0.0,0.0,0.0,0.0,3239,110.0,5740.68,0.0,0.0,182.072409646,0.0,0.0,0,38.9054558426,-77.0918904059,1473238319.0,2.59399999999 -2317,0.0,0.0,0.0,0.0,3240,109.0,5743.38,0.0,0.0,187.934445862,0.0,0.0,0,38.9054435212,-77.0918636676,1473238320.0,2.921 -2318,0.0,0.0,0.0,0.0,3241,109.0,5746.29,0.0,0.0,187.570948102,0.0,0.0,0,38.9054304454,-77.0918345824,1473238321.0,2.939 -2319,0.0,0.0,0.0,0.0,3242,109.0,5748.79,0.0,0.0,186.635296855,0.0,0.0,0,38.9054184593,-77.0918101072,1473238322.0,2.155 -2320,0.0,0.0,0.0,0.0,3243,109.0,5751.22,0.0,0.0,192.728061539,0.0,0.0,0,38.9054069761,-77.0917863026,1473238323.0,2.725 -2321,0.0,0.0,0.0,0.0,3244,108.0,5754.0,0.0,0.0,194.414987628,0.0,0.0,0,38.9053939003,-77.0917589776,1473238324.0,2.818 -2322,0.0,0.0,0.0,0.0,3245,108.0,5756.62,0.0,0.0,185.782716256,0.0,0.0,0,38.905381579,-77.0917331614,1473238325.0,2.407 -2323,0.0,0.0,0.0,0.0,3246,107.0,5759.19,0.0,0.0,181.555815445,0.0,0.0,0,38.9053699281,-77.0917075127,1473238326.0,2.669 -2324,0.0,0.0,0.0,0.0,3247,107.0,5762.02,0.0,0.0,188.769906645,0.0,0.0,0,38.9053571038,-77.0916793495,1473238327.0,2.96700000001 -2325,0.0,0.0,0.0,0.0,3248,107.0,5764.88,0.0,0.0,188.100639542,0.0,0.0,0,38.9053442795,-77.0916507673,1473238328.0,2.799 -2326,0.0,0.0,0.0,0.0,3249,106.0,5767.34,0.0,0.0,191.306565873,0.0,0.0,0,38.9053330477,-77.0916262083,1473238329.0,2.202 -2327,0.0,0.0,0.0,0.0,3250,107.0,5769.68,0.0,0.0,199.528732138,0.0,0.0,0,38.905322738,-77.0916027389,1473238330.0,2.585 -2328,0.0,0.0,0.0,0.0,3251,108.0,5772.33,0.0,0.0,202.164472613,0.0,0.0,0,38.9053106681,-77.0915764198,1473238331.0,2.697 -2329,0.0,0.0,0.0,0.0,3252,108.0,5774.73,0.0,0.0,195.552575707,0.0,0.0,0,38.9053002745,-77.0915521961,1473238332.0,2.258 -2330,0.0,35.0,0.0,0.0,3253,108.0,5777.15,0.0,0.0,187.416331994,0.0,0.0,0,38.9052905515,-77.0915271342,1473238333.0,2.678 -2331,0.0,35.0,0.0,0.0,3254,108.0,5779.94,0.0,0.0,195.144203964,0.0,0.0,0,38.9052784815,-77.0914988872,1473238334.0,2.78100000001 -2332,0.0,23.0,0.0,0.0,3255,107.0,5782.72,0.0,0.0,197.991288383,0.0,0.0,0,38.9052664116,-77.0914708078,1473238335.0,2.64100000001 -2333,0.0,23.0,0.0,0.0,3256,107.0,5785.35,0.0,0.0,192.609145182,0.0,0.0,0,38.9052545931,-77.0914445724,1473238336.0,2.435 -2334,0.0,23.0,0.0,0.0,3257,107.0,5787.69,0.0,0.0,203.660960045,0.0,0.0,0,38.9052436966,-77.0914213546,1473238337.0,2.193 -2335,0.0,23.0,0.0,0.0,3258,107.0,5790.18,0.0,0.0,205.273119885,0.0,0.0,0,38.9052329678,-77.0913962089,1473238338.0,2.697 -2336,0.0,0.0,0.0,0.0,3259,108.0,5792.9,0.0,0.0,193.545792432,0.0,0.0,0,38.9052212331,-77.0913686324,1473238339.0,2.70600000001 -2337,0.0,0.0,0.0,0.0,3260,109.0,5795.34,0.0,0.0,189.627771356,0.0,0.0,0,38.905211091,-77.0913437381,1473238340.0,2.221 -2338,0.0,0.0,0.0,0.0,3261,109.0,5798.02,0.0,0.0,186.322778806,0.0,0.0,0,38.905200446,-77.091315994,1473238341.0,2.939 -2339,0.0,20.0,0.0,0.0,3262,109.0,5801.02,0.0,0.0,183.797787425,0.0,0.0,0,38.9051877055,-77.0912854839,1473238342.0,2.96700000001 -2340,0.0,20.0,0.0,0.0,3263,109.0,5803.78,0.0,0.0,184.122429459,0.0,0.0,0,38.9051753841,-77.091257656,1473238343.0,2.323 -2341,0.0,20.0,0.0,0.0,3264,109.0,5806.35,0.0,0.0,183.149602304,0.0,0.0,0,38.9051653259,-77.0912310015,1473238344.0,2.84600000001 -2342,0.0,0.0,0.0,0.0,3265,108.0,5809.26,0.0,0.0,184.274008271,0.0,0.0,0,38.9051530045,-77.0912014134,1473238345.0,2.921 -2343,0.0,0.0,0.0,0.0,3266,108.0,5811.96,0.0,0.0,182.1591298,0.0,0.0,0,38.9051417727,-77.091173837,1473238346.0,2.407 -2344,0.0,0.0,0.0,0.0,3267,108.0,5814.64,0.0,0.0,178.838801981,0.0,0.0,0,38.905130541,-77.0911464281,1473238347.0,2.865 -2345,0.0,0.0,0.0,0.0,3268,108.0,5817.73,0.0,0.0,179.399361618,0.0,0.0,0,38.9051182196,-77.0911144093,1473238348.0,3.079 -2346,0.0,0.0,0.0,0.0,3269,108.0,5820.58,0.0,0.0,175.588754414,0.0,0.0,0,38.9051061496,-77.0910854079,1473238349.0,2.59399999999 -2347,0.0,0.0,0.0,0.0,3270,108.0,5823.34,0.0,0.0,175.38611519,0.0,0.0,0,38.9050944988,-77.0910574123,1473238350.0,2.76199999999 -2348,0.0,0.0,0.0,0.0,3271,107.0,5826.32,0.0,0.0,180.028243392,0.0,0.0,0,38.9050815068,-77.0910272375,1473238351.0,3.06000000001 -2349,0.0,0.0,0.0,0.0,3272,106.0,5829.26,0.0,0.0,176.753880551,0.0,0.0,0,38.9050681796,-77.0909979846,1473238352.0,2.771 -2350,0.0,0.0,0.0,0.0,3273,106.0,5831.92,0.0,0.0,178.573637274,0.0,0.0,0,38.9050556067,-77.0909718331,1473238353.0,2.519 -2351,0.0,0.0,0.0,0.0,3274,106.0,5834.69,0.0,0.0,182.400485138,0.0,0.0,0,38.9050426986,-77.0909445919,1473238354.0,2.986 -2352,0.0,0.0,0.0,0.0,3275,106.0,5837.79,0.0,0.0,179.809915233,0.0,0.0,0,38.9050285332,-77.0909137465,1473238355.0,2.948 -2353,0.0,0.0,0.0,0.0,3276,106.0,5840.35,0.0,0.0,180.619171904,0.0,0.0,0,38.9050159603,-77.0908890199,1473238356.0,2.305 -2354,0.0,0.0,0.0,0.0,3277,106.0,5843.07,0.0,0.0,180.664375644,0.0,0.0,0,38.9050023817,-77.0908629522,1473238357.0,3.02299999999 -2355,0.0,0.0,0.0,0.0,3278,105.0,5846.17,0.0,0.0,178.434319949,0.0,0.0,0,38.9049872104,-77.0908328611,1473238358.0,3.014 -2356,0.0,0.0,0.0,0.0,3279,105.0,5848.98,0.0,0.0,177.670167256,0.0,0.0,0,38.9049726259,-77.0908064581,1473238359.0,2.389 -2357,0.0,0.0,0.0,0.0,3280,105.0,5851.77,0.0,0.0,174.273858921,0.0,0.0,0,38.904959131,-77.0907793008,1473238360.0,3.02299999999 -2358,0.0,0.0,0.0,0.0,3281,105.0,5854.92,0.0,0.0,174.862494493,0.0,0.0,0,38.9049436245,-77.0907488745,1473238361.0,3.126 -2359,0.0,0.0,0.0,0.0,3282,105.0,5857.81,0.0,0.0,174.694549228,0.0,0.0,0,38.9049288724,-77.090721298,1473238362.0,2.519 -2360,0.0,0.0,0.0,0.0,3283,105.0,5860.66,0.0,0.0,172.657869835,0.0,0.0,0,38.9049143717,-77.0906942245,1473238363.0,2.96700000001 -2361,0.0,22.0,0.0,0.0,3284,105.0,5863.7,0.0,0.0,175.982033072,0.0,0.0,0,38.9048990328,-77.0906652231,1473238364.0,3.079 -2362,0.0,22.0,0.0,0.0,3285,105.0,5866.47,0.0,0.0,177.04975328,0.0,0.0,0,38.904885035,-77.0906386524,1473238365.0,2.566 -2363,0.0,22.0,0.0,0.0,3286,105.0,5869.34,0.0,0.0,175.385316225,0.0,0.0,0,38.9048704505,-77.0906114113,1473238366.0,2.883 -2364,0.0,21.0,0.0,0.0,3287,105.0,5872.34,0.0,0.0,175.573273339,0.0,0.0,0,38.9048551954,-77.090582829,1473238367.0,2.99500000001 -2365,0.0,21.0,0.0,0.0,3288,105.0,5875.23,0.0,0.0,173.439309006,0.0,0.0,0,38.9048418682,-77.0905541629,1473238368.0,2.715 -2366,0.0,21.0,0.0,0.0,3289,106.0,5878.15,0.0,0.0,170.392433691,0.0,0.0,0,38.9048282895,-77.0905253291,1473238369.0,2.911 -2367,0.0,20.0,0.0,0.0,3290,105.0,5881.35,0.0,0.0,167.55764781,0.0,0.0,0,38.9048129506,-77.0904941484,1473238370.0,3.2 -2368,0.0,20.0,0.0,0.0,3291,106.0,5884.57,0.0,0.0,165.724214819,0.0,0.0,0,38.9047991205,-77.090461459,1473238371.0,2.87400000001 -2369,0.0,20.0,0.0,0.0,3292,106.0,5887.56,0.0,0.0,164.785308284,0.0,0.0,0,38.9047857933,-77.0904315356,1473238372.0,2.948 -2370,0.0,0.0,0.0,0.0,3293,106.0,5890.8,0.0,0.0,161.472517517,0.0,0.0,0,38.9047709573,-77.0903993491,1473238373.0,3.33100000001 -2371,0.0,0.0,0.0,0.0,3294,106.0,5893.97,0.0,0.0,164.485161444,0.0,0.0,0,38.9047567081,-77.0903677493,1473238374.0,2.893 -2372,0.0,0.0,0.0,0.0,3295,106.0,5897.03,0.0,0.0,162.198370714,0.0,0.0,0,38.904742375,-77.0903374907,1473238375.0,3.032 -2373,0.0,0.0,0.0,0.0,3296,106.0,5900.32,0.0,0.0,155.896533293,0.0,0.0,0,38.9047268685,-77.0903052203,1473238376.0,3.424 -2374,0.0,0.0,0.0,0.0,3297,107.0,5903.4,0.0,0.0,158.3517163,0.0,0.0,0,38.9047115296,-77.0902756322,1473238377.0,2.79 -2375,0.0,0.0,0.0,0.0,3298,107.0,5906.74,0.0,0.0,154.326348785,0.0,0.0,0,38.9046961069,-77.0902426075,1473238378.0,3.46199999999 -2376,0.0,0.0,0.0,0.0,3299,107.0,5910.39,0.0,0.0,149.28054532,0.0,0.0,0,38.9046784211,-77.0902071521,1473238379.0,3.62000000001 -2377,0.0,0.0,0.0,0.0,3300,107.0,5913.69,0.0,0.0,150.031370196,0.0,0.0,0,38.9046624117,-77.0901750494,1473238380.0,2.799 -2378,0.0,23.0,0.0,0.0,3301,108.0,5917.01,0.0,0.0,146.124105543,0.0,0.0,0,38.9046464022,-77.0901427791,1473238381.0,3.63 -2379,0.0,23.0,0.0,0.0,3302,108.0,5920.8,0.0,0.0,145.46764384,0.0,0.0,0,38.9046287164,-77.0901053958,1473238382.0,3.67599999999 -2380,0.0,23.0,0.0,0.0,3303,109.0,5924.24,0.0,0.0,148.701086355,0.0,0.0,0,38.904612707,-77.0900714491,1473238383.0,3.051 -2381,0.0,0.0,0.0,0.0,3304,109.0,5927.66,0.0,0.0,146.854453886,0.0,0.0,0,38.9045970328,-77.0900374185,1473238384.0,3.57399999999 -2382,0.0,0.0,0.0,0.0,3305,109.0,5931.28,0.0,0.0,149.357375345,0.0,0.0,0,38.9045806881,-77.0900013763,1473238385.0,3.499 -2383,0.0,0.0,0.0,0.0,3306,109.0,5934.51,0.0,0.0,153.571841705,0.0,0.0,0,38.9045658521,-77.0899692737,1473238386.0,2.818 -2384,0.0,0.0,0.0,0.0,3307,110.0,5937.77,0.0,0.0,149.316054902,0.0,0.0,0,38.9045510162,-77.0899368357,1473238387.0,3.592 -2385,0.0,21.0,0.0,0.0,3308,111.0,5941.22,0.0,0.0,151.022639013,0.0,0.0,0,38.9045347553,-77.089902889,1473238388.0,3.50799999999 -2386,0.0,21.0,0.0,0.0,3309,111.0,5944.55,0.0,0.0,150.066263025,0.0,0.0,0,38.9045202546,-77.0898693614,1473238389.0,2.939 -2387,0.0,24.0,0.0,0.0,3310,111.0,5947.99,0.0,0.0,141.66286446,0.0,0.0,0,38.9045057539,-77.0898342412,1473238390.0,3.80699999999 -2388,0.0,24.0,0.0,0.0,3311,112.0,5951.66,0.0,0.0,146.014745593,0.0,0.0,0,38.9044906665,-77.0897966903,1473238391.0,3.35000000001 -2389,0.0,26.0,0.0,0.0,3312,112.0,5955.19,0.0,0.0,137.765362329,0.0,0.0,0,38.9044758305,-77.0897606481,1473238392.0,3.527 -2390,0.0,26.0,0.0,0.0,3313,112.0,5959.11,0.0,0.0,133.54886154,0.0,0.0,0,38.9044606593,-77.0897198282,1473238393.0,4.03999999999 -2391,0.0,30.0,0.0,0.0,3314,113.0,5962.81,0.0,0.0,128.54629169,0.0,0.0,0,38.9044453204,-77.089681942,1473238394.0,3.37799999999 -2392,0.0,30.0,0.0,0.0,3315,114.0,5966.83,0.0,0.0,123.075152565,0.0,0.0,0,38.9044286404,-77.0896407869,1473238395.0,4.563 -2393,0.0,33.0,0.0,0.0,3316,115.0,5971.09,0.0,0.0,117.521008788,0.0,0.0,0,38.9044106193,-77.0895974524,1473238396.0,3.82599999999 -2394,0.0,33.0,0.0,0.0,3317,116.0,5975.47,0.0,0.0,116.269588406,0.0,0.0,0,38.9043920953,-77.0895527769,1473238397.0,4.768 -2395,0.0,29.0,0.0,0.0,3318,117.0,5980.01,0.0,0.0,111.601858678,0.0,0.0,0,38.9043729007,-77.0895066764,1473238398.0,4.087 -2396,0.0,29.0,0.0,0.0,3319,118.0,5984.47,0.0,0.0,114.44504557,0.0,0.0,0,38.9043538738,-77.0894613303,1473238399.0,4.73999999998 -2397,0.0,29.0,0.0,0.0,3320,119.0,5989.0,0.0,0.0,110.109480283,0.0,0.0,0,38.9043344278,-77.0894154813,1473238400.0,4.13300000001 -2398,0.0,0.0,0.0,0.0,3321,121.0,5993.45,0.0,0.0,114.430758988,0.0,0.0,0,38.9043156523,-77.0893701352,1473238401.0,4.68400000002 -2399,0.0,0.0,0.0,0.0,3322,122.0,5997.98,0.0,0.0,111.597868915,0.0,0.0,0,38.9042965416,-77.0893239509,1473238402.0,4.217 -2400,0.0,0.0,0.0,0.0,3323,124.0,6002.49,0.0,0.0,116.240802635,0.0,0.0,0,38.9042775147,-77.0892780181,1473238403.0,4.749 -2401,0.0,0.0,0.0,0.0,3324,125.0,6006.91,0.0,0.0,114.010115807,0.0,0.0,0,38.9042594098,-77.0892325882,1473238404.0,3.83499999999 -2402,0.0,0.0,0.0,0.0,3325,126.0,6011.2,0.0,0.0,117.829488998,0.0,0.0,0,38.9042414725,-77.0891888347,1473238405.0,4.70299999999 -2403,0.0,0.0,0.0,0.0,3326,128.0,6015.57,0.0,0.0,116.265843109,0.0,0.0,0,38.9042237028,-77.0891438238,1473238406.0,3.82599999999 -2404,0.0,0.0,0.0,0.0,3327,128.0,6019.95,0.0,0.0,117.767255197,0.0,0.0,0,38.9042061009,-77.0890987292,1473238407.0,4.73099999999 -2405,0.0,0.0,0.0,0.0,3328,130.0,6024.35,0.0,0.0,116.016155878,0.0,0.0,0,38.9041886665,-77.0890531316,1473238408.0,3.91899999999 -2406,0.0,0.0,0.0,0.0,3329,131.0,6028.65,0.0,0.0,116.344310663,0.0,0.0,0,38.9041714836,-77.0890087076,1473238409.0,4.58099999999 -2407,0.0,0.0,0.0,0.0,3330,132.0,6033.02,0.0,0.0,116.587410781,0.0,0.0,0,38.9041542169,-77.0889634453,1473238410.0,4.106 -2408,0.0,0.0,0.0,0.0,3331,133.0,6037.28,0.0,0.0,117.292939879,0.0,0.0,0,38.9041376207,-77.0889191888,1473238411.0,4.292 -2409,0.0,0.0,0.0,0.0,3332,134.0,6041.63,0.0,0.0,118.535699258,0.0,0.0,0,38.9041207731,-77.0888738427,1473238412.0,4.44099999999 -2410,0.0,0.0,0.0,0.0,3333,135.0,6045.8,0.0,0.0,119.366273602,0.0,0.0,0,38.9041048475,-77.0888302568,1473238413.0,3.79799999999 -2411,0.0,0.0,0.0,0.0,3334,135.0,6050.03,0.0,0.0,121.457106713,0.0,0.0,0,38.9040886704,-77.088786168,1473238414.0,4.563 -2412,0.0,0.0,0.0,0.0,3335,136.0,6054.17,0.0,0.0,121.674237508,0.0,0.0,0,38.9040729962,-77.0887428336,1473238415.0,3.63 -2413,0.0,0.0,0.0,0.0,3336,137.0,6058.31,0.0,0.0,123.298375664,0.0,0.0,0,38.9040577412,-77.0886993315,1473238416.0,4.53500000002 -2414,0.0,0.0,0.0,0.0,3337,137.0,6062.41,0.0,0.0,121.510006428,0.0,0.0,0,38.9040429052,-77.0886559971,1473238417.0,3.639 -2415,0.0,0.0,0.0,0.0,3338,138.0,6066.59,0.0,0.0,122.340808657,0.0,0.0,0,38.9040283207,-77.088611573,1473238418.0,4.48800000002 -2416,0.0,0.0,0.0,0.0,3339,138.0,6070.75,0.0,0.0,120.608241459,0.0,0.0,0,38.9040134009,-77.088567568,1473238419.0,3.863 -2417,0.0,0.0,0.0,0.0,3340,139.0,6074.88,0.0,0.0,120.244236345,0.0,0.0,0,38.9039984811,-77.0885239821,1473238420.0,4.30099999999 -2418,0.0,0.0,0.0,0.0,3341,140.0,6079.1,0.0,0.0,120.24961947,0.0,0.0,0,38.9039831422,-77.0884794742,1473238421.0,4.18899999999 -2419,0.0,0.0,0.0,0.0,3342,141.0,6083.18,0.0,0.0,120.227088673,0.0,0.0,0,38.9039683901,-77.0884363912,1473238422.0,4.00299999999 -2420,0.0,0.0,0.0,0.0,3343,141.0,6087.36,0.0,0.0,120.83056103,0.0,0.0,0,38.9039532188,-77.0883923024,1473238423.0,4.45100000001 -2421,0.0,0.0,0.0,0.0,3344,141.0,6091.41,0.0,0.0,120.185804131,0.0,0.0,0,38.9039382152,-77.0883496385,1473238424.0,3.67599999999 -2422,0.0,0.0,0.0,0.0,3345,142.0,6095.58,0.0,0.0,121.275375954,0.0,0.0,0,38.9039228763,-77.0883058012,1473238425.0,4.62800000001 -2423,0.0,0.0,0.0,0.0,3346,142.0,6099.79,0.0,0.0,120.167672919,0.0,0.0,0,38.9039071184,-77.0882617123,1473238426.0,3.704 -2424,0.0,0.0,0.0,0.0,3347,143.0,6103.93,0.0,0.0,121.104599773,0.0,0.0,0,38.9038911089,-77.0882185455,1473238427.0,4.58099999999 -2425,0.0,0.0,0.0,0.0,3348,144.0,6108.13,0.0,0.0,120.209570555,0.0,0.0,0,38.9038752671,-77.0881745405,1473238428.0,3.77 -2426,0.0,0.0,0.0,0.0,3349,144.0,6112.27,0.0,0.0,120.403304159,0.0,0.0,0,38.9038599283,-77.0881311223,1473238429.0,4.395 -2427,0.0,0.0,0.0,0.0,3350,145.0,6116.48,0.0,0.0,119.461955763,0.0,0.0,0,38.903843835,-77.0880871173,1473238430.0,4.03999999999 -2428,0.0,0.0,0.0,0.0,3351,145.0,6120.63,0.0,0.0,120.119807808,0.0,0.0,0,38.9038282447,-77.088043699,1473238431.0,4.124 -2429,0.0,0.0,0.0,0.0,3352,145.0,6124.93,0.0,0.0,121.262134087,0.0,0.0,0,38.903812319,-77.0879985206,1473238432.0,4.46000000002 -2430,0.0,0.0,0.0,0.0,3353,146.0,6129.04,0.0,0.0,122.331608687,0.0,0.0,0,38.9037969802,-77.0879553538,1473238433.0,3.732 -2431,0.0,25.0,0.0,0.0,3354,146.0,6133.11,0.0,0.0,123.874671008,0.0,0.0,0,38.9037818927,-77.0879126061,1473238434.0,4.33900000002 -2432,0.0,25.0,0.0,0.0,3355,147.0,6137.09,0.0,0.0,124.090539896,0.0,0.0,0,38.9037677273,-77.0878704451,1473238435.0,3.57399999999 -2433,0.0,25.0,0.0,0.0,3356,147.0,6141.2,0.0,0.0,124.549787564,0.0,0.0,0,38.9037531428,-77.0878268592,1473238436.0,4.47899999999 -2434,0.0,0.0,0.0,0.0,3357,147.0,6145.31,0.0,0.0,122.461702886,0.0,0.0,0,38.9037381392,-77.0877835248,1473238437.0,3.732 -2435,0.0,0.0,0.0,0.0,3358,148.0,6149.39,0.0,0.0,121.380011917,0.0,0.0,0,38.9037234709,-77.0877404418,1473238438.0,4.37600000001 -2436,0.0,0.0,0.0,0.0,3359,148.0,6153.62,0.0,0.0,120.843329501,0.0,0.0,0,38.9037083834,-77.0876956824,1473238439.0,4.022 -2437,0.0,0.0,0.0,0.0,3360,148.0,6157.71,0.0,0.0,120.402551075,0.0,0.0,0,38.9036935475,-77.0876524318,1473238440.0,4.106 -2438,0.0,0.0,0.0,0.0,3361,149.0,6161.91,0.0,0.0,120.639987299,0.0,0.0,0,38.90367846,-77.0876080077,1473238441.0,4.348 -2439,0.0,0.0,0.0,0.0,3362,149.0,6166.01,0.0,0.0,120.869127513,0.0,0.0,0,38.9036636241,-77.0875648409,1473238442.0,3.80699999999 -2440,0.0,0.0,0.0,0.0,3363,149.0,6170.18,0.0,0.0,122.364916548,0.0,0.0,0,38.9036486205,-77.0875206683,1473238443.0,4.55299999999 -2441,0.0,0.0,0.0,0.0,3364,150.0,6174.3,0.0,0.0,121.015904948,0.0,0.0,0,38.903634036,-77.0874770824,1473238444.0,3.62000000001 -2442,0.0,0.0,0.0,0.0,3365,150.0,6178.38,0.0,0.0,122.079344175,0.0,0.0,0,38.9036197029,-77.0874337479,1473238445.0,4.49699999999 -2443,0.0,0.0,0.0,0.0,3366,150.0,6182.55,0.0,0.0,120.941775174,0.0,0.0,0,38.9036054537,-77.08738924,1473238446.0,3.732 -2444,0.0,0.0,0.0,0.0,3367,150.0,6186.75,0.0,0.0,121.486361973,0.0,0.0,0,38.9035915397,-77.0873442292,1473238447.0,4.57199999999 -2445,0.0,0.0,0.0,0.0,3368,151.0,6190.94,0.0,0.0,120.940002241,0.0,0.0,0,38.9035775419,-77.087299386,1473238448.0,3.83499999999 -2446,0.0,0.0,0.0,0.0,3369,151.0,6194.98,0.0,0.0,121.346090607,0.0,0.0,0,38.9035638794,-77.0872562192,1473238449.0,4.18000000001 -2447,0.0,0.0,0.0,0.0,3370,152.0,6199.17,0.0,0.0,122.623961678,0.0,0.0,0,38.9035498817,-77.0872113761,1473238450.0,4.18899999999 -2448,0.0,0.0,0.0,0.0,3371,152.0,6203.19,0.0,0.0,123.910818541,0.0,0.0,0,38.9035367221,-77.0871681254,1473238451.0,3.79799999999 -2449,0.0,0.0,0.0,0.0,3372,152.0,6207.34,0.0,0.0,123.655182972,0.0,0.0,0,38.9035235625,-77.0871233661,1473238452.0,4.42299999998 -2450,0.0,0.0,0.0,0.0,3373,152.0,6211.35,0.0,0.0,125.281204782,0.0,0.0,0,38.9035114925,-77.0870797802,1473238453.0,3.536 -2451,0.0,0.0,0.0,0.0,3374,152.0,6215.42,0.0,0.0,123.476587556,0.0,0.0,0,38.9034997579,-77.0870353561,1473238454.0,4.44099999999 -2452,0.0,0.0,0.0,0.0,3375,152.0,6219.49,0.0,0.0,123.865504583,0.0,0.0,0,38.9034875203,-77.0869910996,1473238455.0,3.704 -2453,0.0,0.0,0.0,0.0,3376,152.0,6223.54,0.0,0.0,122.368805808,0.0,0.0,0,38.9034752827,-77.0869471785,1473238456.0,4.255 -2454,0.0,0.0,0.0,0.0,3377,153.0,6227.71,0.0,0.0,122.094055764,0.0,0.0,0,38.9034627937,-77.0869017486,1473238457.0,4.20799999999 -2455,0.0,0.0,0.0,0.0,3378,152.0,6231.74,0.0,0.0,122.556171579,0.0,0.0,0,38.9034503046,-77.0868581627,1473238458.0,3.81599999999 -2456,0.0,0.0,0.0,0.0,3379,153.0,6235.92,0.0,0.0,122.573079556,0.0,0.0,0,38.9034369774,-77.086813068,1473238459.0,4.44099999999 -2457,0.0,0.0,0.0,0.0,3380,152.0,6239.96,0.0,0.0,124.394988013,0.0,0.0,0,38.903423734,-77.0867696498,1473238460.0,3.58299999999 -2458,0.0,0.0,0.0,0.0,3381,153.0,6244.07,0.0,0.0,123.616405984,0.0,0.0,0,38.9034106582,-77.0867253933,1473238461.0,4.46900000002 -2459,0.0,0.0,0.0,0.0,3382,152.0,6248.16,0.0,0.0,124.078275666,0.0,0.0,0,38.9033978339,-77.0866812207,1473238462.0,3.64799999999 -2460,0.0,0.0,0.0,0.0,3383,152.0,6252.17,0.0,0.0,122.479623844,0.0,0.0,0,38.9033855125,-77.0866377186,1473238463.0,4.31099999999 -2461,0.0,0.0,0.0,0.0,3384,153.0,6256.42,0.0,0.0,122.168571474,0.0,0.0,0,38.903372772,-77.0865914505,1473238464.0,4.05000000001 -2462,0.0,0.0,0.0,0.0,3385,152.0,6260.44,0.0,0.0,122.629690187,0.0,0.0,0,38.9033610374,-77.086547697,1473238465.0,3.94700000001 -2463,0.0,0.0,0.0,0.0,3386,153.0,6264.71,0.0,0.0,123.133015639,0.0,0.0,0,38.9033489674,-77.0865009259,1473238466.0,4.45100000001 -2464,0.0,0.0,0.0,0.0,3387,153.0,6268.72,0.0,0.0,124.480254522,0.0,0.0,0,38.9033374004,-77.0864570886,1473238467.0,3.54599999999 -2465,0.0,0.0,0.0,0.0,3388,153.0,6272.73,0.0,0.0,124.582164364,0.0,0.0,0,38.9033265039,-77.0864130836,1473238468.0,4.395 -2466,0.0,0.0,0.0,0.0,3389,153.0,6276.74,0.0,0.0,125.231216944,0.0,0.0,0,38.9033156913,-77.086368911,1473238469.0,3.58299999999 -2467,0.0,0.0,0.0,0.0,3390,153.0,6280.82,0.0,0.0,124.074276986,0.0,0.0,0,38.9033049624,-77.086323984,1473238470.0,4.40400000001 -2468,0.0,0.0,0.0,0.0,3391,153.0,6284.97,0.0,0.0,123.199868587,0.0,0.0,0,38.9032939821,-77.0862782188,1473238471.0,3.83499999999 -2469,0.0,0.0,0.0,0.0,3392,153.0,6289.02,0.0,0.0,122.935246653,0.0,0.0,0,38.9032831695,-77.0862336271,1473238472.0,4.11499999999 -2470,0.0,0.0,0.0,0.0,3393,153.0,6293.25,0.0,0.0,123.582677881,0.0,0.0,0,38.9032721054,-77.0861869399,1473238473.0,4.245 -2471,0.0,0.0,0.0,0.0,3394,153.0,6297.25,0.0,0.0,124.525348186,0.0,0.0,0,38.9032614604,-77.0861429349,1473238474.0,3.66700000001 -2472,0.0,0.0,0.0,0.0,3395,154.0,6301.33,0.0,0.0,124.763839874,0.0,0.0,0,38.9032510668,-77.0860977564,1473238475.0,4.40400000001 -2473,0.0,0.0,0.0,0.0,3396,154.0,6305.33,0.0,0.0,125.908201475,0.0,0.0,0,38.9032413438,-77.0860534161,1473238476.0,3.51799999999 -2474,0.0,0.0,0.0,0.0,3397,154.0,6309.36,0.0,0.0,125.093684881,0.0,0.0,0,38.903231537,-77.0860086568,1473238477.0,4.43199999998 -2475,0.0,0.0,0.0,0.0,3398,154.0,6313.39,0.0,0.0,124.801047681,0.0,0.0,0,38.9032214787,-77.085964065,1473238478.0,3.65800000001 -2476,0.0,0.0,0.0,0.0,3399,154.0,6317.38,0.0,0.0,123.922384889,0.0,0.0,0,38.9032115042,-77.0859198086,1473238479.0,4.22699999999 -2477,0.0,0.0,0.0,0.0,3400,154.0,6321.54,0.0,0.0,123.135903658,0.0,0.0,0,38.9032012783,-77.0858737081,1473238480.0,4.05900000001 -2478,0.0,0.0,0.0,0.0,3401,153.0,6325.51,0.0,0.0,123.37950896,0.0,0.0,0,38.9031915553,-77.0858297031,1473238481.0,3.872 -2479,0.0,0.0,0.0,0.0,3402,154.0,6329.7,0.0,0.0,123.869091283,0.0,0.0,0,38.903181497,-77.0857830998,1473238482.0,4.395 -2480,0.0,0.0,0.0,0.0,3403,154.0,6333.73,0.0,0.0,124.408386956,0.0,0.0,0,38.9031716064,-77.0857384242,1473238483.0,3.63 -2481,0.0,0.0,0.0,0.0,3404,154.0,6337.72,0.0,0.0,124.867024727,0.0,0.0,0,38.903162051,-77.0856940001,1473238484.0,4.37600000001 -2482,0.0,0.0,0.0,0.0,3405,154.0,6341.68,0.0,0.0,124.584180074,0.0,0.0,0,38.9031527471,-77.0856499951,1473238485.0,3.555 -2483,0.0,0.0,0.0,0.0,3406,154.0,6345.71,0.0,0.0,124.939693611,0.0,0.0,0,38.9031433593,-77.085605152,1473238486.0,4.43199999998 -2484,0.0,0.0,0.0,0.0,3407,154.0,6349.83,0.0,0.0,124.203030554,0.0,0.0,0,38.9031339716,-77.0855591353,1473238487.0,3.77 -2485,0.0,0.0,0.0,0.0,3408,154.0,6353.82,0.0,0.0,123.464576356,0.0,0.0,0,38.9031251706,-77.0855145436,1473238488.0,4.15200000001 -2486,0.0,0.0,0.0,0.0,3409,154.0,6357.93,0.0,0.0,123.804827852,0.0,0.0,0,38.9031164534,-77.0854684431,1473238489.0,4.05900000001 -2487,0.0,0.0,0.0,0.0,3410,155.0,6361.9,0.0,0.0,124.703087886,0.0,0.0,0,38.9031084906,-77.0854239352,1473238490.0,3.83499999999 -2488,0.0,0.0,0.0,0.0,3411,154.0,6366.0,0.0,0.0,125.380483632,0.0,0.0,0,38.9031006116,-77.0853776671,1473238491.0,4.36699999999 -2489,0.0,0.0,0.0,0.0,3412,155.0,6369.93,0.0,0.0,125.509781613,0.0,0.0,0,38.9030930679,-77.0853334107,1473238492.0,3.50799999999 -2490,0.0,0.0,0.0,0.0,3413,155.0,6373.84,0.0,0.0,127.265995849,0.0,0.0,0,38.9030851889,-77.0852894895,1473238493.0,4.36699999999 -2491,0.0,0.0,0.0,0.0,3414,155.0,6377.81,0.0,0.0,127.025674584,0.0,0.0,0,38.9030783996,-77.0852445625,1473238494.0,3.555 -2492,0.0,0.0,0.0,0.0,3415,155.0,6381.74,0.0,0.0,126.351717235,0.0,0.0,0,38.9030716103,-77.0852001384,1473238495.0,4.30099999999 -2493,0.0,0.0,0.0,0.0,3416,155.0,6385.7,0.0,0.0,124.86149023,0.0,0.0,0,38.9030650724,-77.0851552114,1473238496.0,3.639 -2494,0.0,0.0,0.0,0.0,3417,154.0,6389.71,0.0,0.0,123.879985499,0.0,0.0,0,38.9030586183,-77.0851096977,1473238497.0,4.23600000001 -2495,0.0,0.0,0.0,0.0,3418,155.0,6393.92,0.0,0.0,123.998484105,0.0,0.0,0,38.9030519966,-77.0850619208,1473238498.0,4.15200000001 -2496,0.0,0.0,0.0,0.0,3419,155.0,6397.89,0.0,0.0,124.659614494,0.0,0.0,0,38.9030457102,-77.0850167423,1473238499.0,3.77 -2497,0.0,28.0,0.0,0.0,3420,155.0,6401.99,0.0,0.0,125.379803105,0.0,0.0,0,38.9030389208,-77.0849703904,1473238500.0,4.35700000002 -2498,0.0,28.0,0.0,0.0,3421,154.0,6405.91,0.0,0.0,127.764921394,0.0,0.0,0,38.9030325506,-77.0849259663,1473238501.0,3.43399999999 -2499,0.0,28.0,0.0,0.0,3422,154.0,6409.83,0.0,0.0,126.305015129,0.0,0.0,0,38.9030261803,-77.0848814584,1473238502.0,4.348 -2500,0.0,0.0,0.0,0.0,3423,155.0,6413.82,0.0,0.0,125.962577663,0.0,0.0,0,38.9030194748,-77.0848363638,1473238503.0,3.62000000001 -2501,0.0,0.0,0.0,0.0,3424,155.0,6417.79,0.0,0.0,123.304562269,0.0,0.0,0,38.9030127693,-77.084791353,1473238504.0,4.28299999998 -2502,0.0,0.0,0.0,0.0,3425,155.0,6421.99,0.0,0.0,122.0703125,0.0,0.0,0,38.9030053094,-77.0847439114,1473238505.0,4.096 -2503,0.0,0.0,0.0,0.0,3426,154.0,6426.02,0.0,0.0,122.055606632,0.0,0.0,0,38.902998101,-77.0846983138,1473238506.0,3.94700000001 -2504,0.0,0.0,0.0,0.0,3427,155.0,6430.25,0.0,0.0,121.750808246,0.0,0.0,0,38.9029906411,-77.084650537,1473238507.0,4.45100000001 -2505,0.0,0.0,0.0,0.0,3428,155.0,6434.31,0.0,0.0,124.246987952,0.0,0.0,0,38.9029839355,-77.0846045204,1473238508.0,3.57399999999 -2506,0.0,0.0,0.0,0.0,3429,155.0,6438.36,0.0,0.0,123.758530499,0.0,0.0,0,38.90297723,-77.0845585875,1473238509.0,4.45100000001 -2507,0.0,0.0,0.0,0.0,3430,155.0,6442.42,0.0,0.0,125.795616431,0.0,0.0,0,38.9029703569,-77.0845126547,1473238510.0,3.63 -2508,0.0,0.0,0.0,0.0,3431,154.0,6446.36,0.0,0.0,124.593990794,0.0,0.0,0,38.902963819,-77.084468063,1473238511.0,4.19900000001 -2509,0.0,0.0,0.0,0.0,3432,155.0,6450.48,0.0,0.0,124.866484754,0.0,0.0,0,38.902956862,-77.0844213758,1473238512.0,3.984 -2510,0.0,0.0,0.0,0.0,3433,155.0,6454.43,0.0,0.0,126.015625938,0.0,0.0,0,38.9029499888,-77.0843767002,1473238513.0,3.844 -2511,0.0,0.0,0.0,0.0,3434,155.0,6458.53,0.0,0.0,125.507326694,0.0,0.0,0,38.9029432833,-77.0843301807,1473238514.0,4.33900000002 -2512,0.0,0.0,0.0,0.0,3435,155.0,6462.45,0.0,0.0,127.792911311,0.0,0.0,0,38.9029369969,-77.0842857566,1473238515.0,3.46199999999 -2513,0.0,0.0,0.0,0.0,3436,155.0,6466.36,0.0,0.0,125.279438227,0.0,0.0,0,38.9029309619,-77.0842413325,1473238516.0,4.329 -2514,0.0,0.0,0.0,0.0,3437,155.0,6470.37,0.0,0.0,126.289961752,0.0,0.0,0,38.9029246755,-77.0841958188,1473238517.0,3.639 -2515,0.0,0.0,0.0,0.0,3438,154.0,6474.3,0.0,0.0,125.245475711,0.0,0.0,0,38.902918892,-77.0841511432,1473238518.0,4.18899999999 -2516,0.0,0.0,0.0,0.0,3439,154.0,6478.49,0.0,0.0,125.350139296,0.0,0.0,0,38.9029129408,-77.0841034502,1473238519.0,4.124 -2517,0.0,0.0,0.0,0.0,3440,155.0,6482.41,0.0,0.0,127.835626627,0.0,0.0,0,38.9029072411,-77.0840588585,1473238520.0,3.686 -2518,0.0,23.0,0.0,0.0,3441,154.0,6486.3,0.0,0.0,127.497375541,0.0,0.0,0,38.9029019605,-77.0840144344,1473238521.0,4.17100000001 -2519,0.0,23.0,0.0,0.0,3442,154.0,6490.12,0.0,0.0,130.702978331,0.0,0.0,0,38.902897099,-77.0839709323,1473238522.0,3.45199999999 -2520,0.0,27.0,0.0,0.0,3443,154.0,6493.96,0.0,0.0,128.178664412,0.0,0.0,0,38.9028924052,-77.0839270111,1473238523.0,4.18899999999 -2521,0.0,27.0,0.0,0.0,3444,154.0,6497.93,0.0,0.0,128.093797931,0.0,0.0,0,38.9028876275,-77.083881665,1473238524.0,3.742 -2522,0.0,27.0,0.0,0.0,3445,154.0,6501.84,0.0,0.0,125.472831602,0.0,0.0,0,38.9028836042,-77.0838369057,1473238525.0,4.022 -2523,0.0,0.0,0.0,0.0,3446,155.0,6505.96,0.0,0.0,125.458112198,0.0,0.0,0,38.9028799161,-77.0837896317,1473238526.0,4.15200000001 -2524,0.0,0.0,0.0,0.0,3447,154.0,6509.88,0.0,0.0,126.033226941,0.0,0.0,0,38.9028763119,-77.0837446209,1473238527.0,3.67599999999 -2525,0.0,0.0,0.0,0.0,3448,155.0,6513.93,0.0,0.0,127.69302376,0.0,0.0,0,38.9028734621,-77.0836981013,1473238528.0,4.35700000002 -2526,0.0,0.0,0.0,0.0,3449,155.0,6517.81,0.0,0.0,128.130602247,0.0,0.0,0,38.9028705284,-77.0836535934,1473238529.0,3.40600000001 -2527,0.0,26.0,0.0,0.0,3450,155.0,6521.67,0.0,0.0,129.086625508,0.0,0.0,0,38.9028684329,-77.0836090855,1473238530.0,4.27300000001 -2528,0.0,26.0,0.0,0.0,3451,155.0,6525.6,0.0,0.0,127.456433074,0.0,0.0,0,38.9028664213,-77.0835639071,1473238531.0,3.51799999999 -2529,0.0,26.0,0.0,0.0,3452,155.0,6529.52,0.0,0.0,126.293275949,0.0,0.0,0,38.9028644096,-77.0835187286,1473238532.0,4.31099999999 -2530,0.0,0.0,0.0,0.0,3453,155.0,6533.61,0.0,0.0,124.088273497,0.0,0.0,0,38.9028623141,-77.0834717061,1473238533.0,3.81599999999 -2531,0.0,0.0,0.0,0.0,3454,155.0,6537.61,0.0,0.0,123.035427812,0.0,0.0,0,38.9028604701,-77.0834256895,1473238534.0,4.14299999999 -2532,0.0,0.0,0.0,0.0,3455,155.0,6541.83,0.0,0.0,122.669413895,0.0,0.0,0,38.9028584585,-77.0833770745,1473238535.0,4.20799999999 -2533,0.0,0.0,0.0,0.0,3456,155.0,6545.85,0.0,0.0,122.69078417,0.0,0.0,0,38.9028560277,-77.0833308902,1473238536.0,3.77 -2534,0.0,27.0,0.0,0.0,3457,155.0,6550.01,0.0,0.0,123.608865164,0.0,0.0,0,38.9028533455,-77.0832829457,1473238537.0,4.44099999999 -2535,0.0,27.0,0.0,0.0,3458,155.0,6554.03,0.0,0.0,123.855011356,0.0,0.0,0,38.902850328,-77.0832367614,1473238538.0,3.61099999999 -2536,0.0,27.0,0.0,0.0,3459,156.0,6558.08,0.0,0.0,124.991748381,0.0,0.0,0,38.9028473105,-77.0831903256,1473238539.0,4.43199999998 -2537,0.0,27.0,0.0,0.0,3460,156.0,6562.1,0.0,0.0,124.572624222,0.0,0.0,0,38.9028443769,-77.0831440575,1473238540.0,3.592 -2538,0.0,27.0,0.0,0.0,3461,155.0,6566.11,0.0,0.0,124.857170964,0.0,0.0,0,38.9028413594,-77.0830980409,1473238541.0,4.348 -2539,0.0,0.0,0.0,0.0,3462,156.0,6570.18,0.0,0.0,124.144291136,0.0,0.0,0,38.9028385933,-77.0830512699,1473238542.0,3.788 -2540,0.0,0.0,0.0,0.0,3463,156.0,6574.14,0.0,0.0,123.26100598,0.0,0.0,0,38.9028364141,-77.0830056723,1473238543.0,4.124 -2541,0.0,0.0,0.0,0.0,3464,156.0,6578.34,0.0,0.0,122.776600799,0.0,0.0,0,38.9028343186,-77.0829573926,1473238544.0,4.19900000001 -2542,0.0,0.0,0.0,0.0,3465,156.0,6582.35,0.0,0.0,122.769684073,0.0,0.0,0,38.9028321393,-77.0829112083,1473238545.0,3.79799999999 -2543,0.0,0.0,0.0,0.0,3466,156.0,6586.53,0.0,0.0,123.468007889,0.0,0.0,0,38.9028297924,-77.0828630961,1473238546.0,4.46900000002 -2544,0.0,0.0,0.0,0.0,3467,156.0,6590.54,0.0,0.0,124.7259808,0.0,0.0,0,38.9028276131,-77.0828169119,1473238547.0,3.57399999999 -2545,0.0,0.0,0.0,0.0,3468,156.0,6594.54,0.0,0.0,125.236784266,0.0,0.0,0,38.9028258529,-77.0827708952,1473238548.0,4.395 -2546,0.0,0.0,0.0,0.0,3469,156.0,6598.5,0.0,0.0,125.883774944,0.0,0.0,0,38.9028240927,-77.0827252977,1473238549.0,3.56400000001 -2547,0.0,0.0,0.0,0.0,3470,156.0,6602.42,0.0,0.0,125.038973186,0.0,0.0,0,38.9028223325,-77.0826801192,1473238550.0,4.26400000002 -2548,0.0,0.0,0.0,0.0,3471,156.0,6606.52,0.0,0.0,124.477705558,0.0,0.0,0,38.9028205723,-77.0826330129,1473238551.0,3.92799999999 -2549,0.0,0.0,0.0,0.0,3472,157.0,6610.45,0.0,0.0,124.100939729,0.0,0.0,0,38.9028192312,-77.0825876668,1473238552.0,3.95600000002 -2550,0.0,0.0,0.0,0.0,3473,157.0,6614.61,0.0,0.0,124.23175299,0.0,0.0,0,38.9028175548,-77.0825398061,1473238553.0,4.33900000002 -2551,0.0,0.0,0.0,0.0,3474,156.0,6618.56,0.0,0.0,125.124447367,0.0,0.0,0,38.9028157108,-77.0824942924,1473238554.0,3.57399999999 -2552,0.0,26.0,0.0,0.0,3475,157.0,6622.55,0.0,0.0,125.243166928,0.0,0.0,0,38.902814202,-77.0824483596,1473238555.0,4.40400000001 -2553,0.0,26.0,0.0,0.0,3476,156.0,6626.5,0.0,0.0,126.004215414,0.0,0.0,0,38.9028126094,-77.0824028458,1473238556.0,3.527 -2554,0.0,27.0,0.0,0.0,3477,156.0,6630.45,0.0,0.0,124.894434466,0.0,0.0,0,38.9028111007,-77.0823573321,1473238557.0,4.38499999999 -2555,0.0,27.0,0.0,0.0,3478,157.0,6634.5,0.0,0.0,124.938747562,0.0,0.0,0,38.9028099272,-77.0823107287,1473238558.0,3.742 -2556,0.0,27.0,0.0,0.0,3479,156.0,6638.4,0.0,0.0,124.736756844,0.0,0.0,0,38.9028088376,-77.0822657179,1473238559.0,4.124 -2557,0.0,0.0,0.0,0.0,3480,157.0,6642.5,0.0,0.0,125.093820365,0.0,0.0,0,38.9028078318,-77.0822185278,1473238560.0,4.13300000001 -2558,0.0,0.0,0.0,0.0,3481,156.0,6646.3,0.0,0.0,126.526811634,0.0,0.0,0,38.9028068259,-77.0821746904,1473238561.0,3.61099999999 -2559,0.0,0.0,0.0,0.0,3482,156.0,6650.27,0.0,0.0,127.083537346,0.0,0.0,0,38.9028059877,-77.0821289252,1473238562.0,4.36699999999 -2560,0.0,0.0,0.0,0.0,3483,156.0,6654.17,0.0,0.0,128.886974493,0.0,0.0,0,38.9028052334,-77.0820839982,1473238563.0,3.45199999999 -2561,0.0,25.0,0.0,0.0,3484,156.0,6658.03,0.0,0.0,127.240058476,0.0,0.0,0,38.9028048981,-77.0820394903,1473238564.0,4.292 -2562,0.0,25.0,0.0,0.0,3485,156.0,6661.95,0.0,0.0,127.099479828,0.0,0.0,0,38.902804479,-77.0819943119,1473238565.0,3.57399999999 -2563,0.0,25.0,0.0,0.0,3486,156.0,6665.84,0.0,0.0,126.002016032,0.0,0.0,0,38.9028037246,-77.0819494687,1473238566.0,4.18899999999 -2564,0.0,25.0,0.0,0.0,3487,157.0,6669.97,0.0,0.0,125.211260124,0.0,0.0,0,38.902802635,-77.0819018595,1473238567.0,4.05900000001 -2565,0.0,25.0,0.0,0.0,3488,156.0,6673.87,0.0,0.0,124.99594169,0.0,0.0,0,38.9028013777,-77.0818570163,1473238568.0,3.77 -2566,0.0,27.0,0.0,0.0,3489,157.0,6677.93,0.0,0.0,124.560801848,0.0,0.0,0,38.9028001204,-77.0818101615,1473238569.0,4.33900000002 -2567,0.0,27.0,0.0,0.0,3490,156.0,6681.86,0.0,0.0,126.25986576,0.0,0.0,0,38.9027986955,-77.0817648992,1473238570.0,3.54599999999 -2568,0.0,30.0,0.0,0.0,3491,157.0,6685.85,0.0,0.0,125.500507978,0.0,0.0,0,38.9027976897,-77.0817189664,1473238571.0,4.41299999999 -2569,0.0,30.0,0.0,0.0,3492,157.0,6689.84,0.0,0.0,126.876509062,0.0,0.0,0,38.9027967677,-77.0816729497,1473238572.0,3.58299999999 -2570,0.0,24.0,0.0,0.0,3493,157.0,6693.74,0.0,0.0,126.174350011,0.0,0.0,0,38.9027958456,-77.0816280227,1473238573.0,4.18899999999 -2571,0.0,24.0,0.0,0.0,3494,157.0,6697.81,0.0,0.0,127.098360926,0.0,0.0,0,38.9027950913,-77.0815811679,1473238574.0,3.872 -2572,0.0,24.0,0.0,0.0,3495,156.0,6701.64,0.0,0.0,127.968622758,0.0,0.0,0,38.9027945884,-77.0815369952,1473238575.0,3.77900000001 -2573,0.0,26.0,0.0,0.0,3496,156.0,6705.68,0.0,0.0,128.100759288,0.0,0.0,0,38.9027942531,-77.0814903919,1473238576.0,4.255 -2574,0.0,26.0,0.0,0.0,3497,157.0,6709.53,0.0,0.0,128.805764253,0.0,0.0,0,38.902793834,-77.0814460516,1473238577.0,3.424 -2575,0.0,27.0,0.0,0.0,3498,156.0,6713.42,0.0,0.0,126.978193831,0.0,0.0,0,38.9027933311,-77.0814012084,1473238578.0,4.329 -2576,0.0,27.0,0.0,0.0,3499,156.0,6717.34,0.0,0.0,127.350330284,0.0,0.0,0,38.9027926605,-77.08135603,1473238579.0,3.536 -2577,0.0,25.0,0.0,0.0,3500,156.0,6721.27,0.0,0.0,125.09774954,0.0,0.0,0,38.9027916547,-77.0813106839,1473238580.0,4.33900000002 -2578,0.0,25.0,0.0,0.0,3501,156.0,6725.36,0.0,0.0,124.844080013,0.0,0.0,0,38.9027903136,-77.0812635776,1473238581.0,3.863 -2579,0.0,26.0,0.0,0.0,3502,156.0,6729.26,0.0,0.0,125.56436016,0.0,0.0,0,38.9027886372,-77.0812187344,1473238582.0,3.92799999999 -2580,0.0,26.0,0.0,0.0,3503,156.0,6733.36,0.0,0.0,126.667514772,0.0,0.0,0,38.9027869608,-77.0811714604,1473238583.0,4.245 -2581,0.0,26.0,0.0,0.0,3504,156.0,6737.23,0.0,0.0,129.635158402,0.0,0.0,0,38.902785033,-77.0811269525,1473238584.0,3.44299999999 -2582,0.0,26.0,0.0,0.0,3505,156.0,6741.09,0.0,0.0,129.202145986,0.0,0.0,0,38.9027833566,-77.0810825285,1473238585.0,4.26400000002 -2583,0.0,26.0,0.0,0.0,3506,156.0,6744.92,0.0,0.0,130.932785569,0.0,0.0,0,38.902781764,-77.0810383558,1473238586.0,3.40600000001 -2584,0.0,26.0,0.0,0.0,3507,156.0,6748.74,0.0,0.0,128.53971098,0.0,0.0,0,38.9027800877,-77.0809944347,1473238587.0,4.18000000001 -2585,0.0,0.0,0.0,0.0,3508,156.0,6752.75,0.0,0.0,127.723806943,0.0,0.0,0,38.9027784951,-77.0809482504,1473238588.0,3.77 -2586,0.0,0.0,0.0,0.0,3509,155.0,6756.64,0.0,0.0,127.287595025,0.0,0.0,0,38.9027774055,-77.0809033234,1473238589.0,3.938 -2587,0.0,0.0,0.0,0.0,3510,156.0,6760.77,0.0,0.0,126.964096093,0.0,0.0,0,38.9027758967,-77.080855798,1473238590.0,4.19900000001 -2588,0.0,0.0,0.0,0.0,3511,156.0,6764.63,0.0,0.0,129.435258837,0.0,0.0,0,38.9027743042,-77.0808113739,1473238591.0,3.48999999999 -2589,0.0,0.0,0.0,0.0,3512,155.0,6768.54,0.0,0.0,128.07348646,0.0,0.0,0,38.9027730469,-77.0807662793,1473238592.0,4.255 -2590,0.0,0.0,0.0,0.0,3513,155.0,6772.41,0.0,0.0,130.933082426,0.0,0.0,0,38.9027717896,-77.0807217713,1473238593.0,3.43399999999 -2591,0.0,0.0,0.0,0.0,3514,155.0,6776.24,0.0,0.0,128.488947726,0.0,0.0,0,38.902770197,-77.0806775987,1473238594.0,4.15200000001 -2592,0.0,25.0,0.0,0.0,3515,155.0,6780.26,0.0,0.0,128.900351658,0.0,0.0,0,38.9027681854,-77.0806313306,1473238595.0,3.844 -2593,0.0,25.0,0.0,0.0,3516,155.0,6784.05,0.0,0.0,128.957631556,0.0,0.0,0,38.9027662575,-77.0805876609,1473238596.0,3.742 -2594,0.0,25.0,0.0,0.0,3517,155.0,6788.06,0.0,0.0,129.081287684,0.0,0.0,0,38.9027650002,-77.0805415604,1473238597.0,4.23600000001 -2595,0.0,25.0,0.0,0.0,3518,155.0,6791.86,0.0,0.0,130.052921968,0.0,0.0,0,38.902763743,-77.0804977231,1473238598.0,3.37799999999 -2596,0.0,25.0,0.0,0.0,3519,154.0,6795.72,0.0,0.0,128.571762524,0.0,0.0,0,38.9027630724,-77.0804532152,1473238599.0,4.27300000001 -2597,0.0,25.0,0.0,0.0,3520,154.0,6799.63,0.0,0.0,127.537358508,0.0,0.0,0,38.9027624857,-77.0804082043,1473238600.0,3.50799999999 -2598,0.0,30.0,0.0,0.0,3521,155.0,6803.58,0.0,0.0,125.866489982,0.0,0.0,0,38.9027617313,-77.0803626068,1473238601.0,4.348 -2599,0.0,30.0,0.0,0.0,3522,155.0,6807.72,0.0,0.0,124.04416187,0.0,0.0,0,38.9027608931,-77.0803149138,1473238602.0,3.85399999999 -2600,0.0,30.0,0.0,0.0,3523,155.0,6811.72,0.0,0.0,123.42776537,0.0,0.0,0,38.9027599711,-77.0802688133,1473238603.0,4.096 -2601,0.0,0.0,0.0,0.0,3524,154.0,6815.86,0.0,0.0,123.449532655,0.0,0.0,0,38.9027593005,-77.0802211203,1473238604.0,4.14299999999 -2602,0.0,0.0,0.0,0.0,3525,155.0,6819.8,0.0,0.0,123.776037174,0.0,0.0,0,38.9027588814,-77.0801756904,1473238605.0,3.77 -2603,0.0,0.0,0.0,0.0,3526,154.0,6823.93,0.0,0.0,124.698779572,0.0,0.0,0,38.9027587138,-77.0801280811,1473238606.0,4.395 -2604,0.0,30.0,0.0,0.0,3527,155.0,6827.93,0.0,0.0,124.469254478,0.0,0.0,0,38.9027582947,-77.0800819807,1473238607.0,3.58299999999 -2605,0.0,30.0,0.0,0.0,3528,155.0,6831.98,0.0,0.0,126.702391988,0.0,0.0,0,38.9027582109,-77.0800352935,1473238608.0,4.41299999999 -2606,0.0,30.0,0.0,0.0,3529,155.0,6835.96,0.0,0.0,125.835498684,0.0,0.0,0,38.9027582109,-77.0799893606,1473238609.0,3.536 -2607,0.0,25.0,0.0,0.0,3530,155.0,6839.93,0.0,0.0,128.092235282,0.0,0.0,0,38.9027582109,-77.0799436793,1473238610.0,4.27300000001 -2608,0.0,25.0,0.0,0.0,3531,155.0,6843.91,0.0,0.0,126.656124783,0.0,0.0,0,38.9027584624,-77.0798977464,1473238611.0,3.61099999999 -2609,0.0,27.0,0.0,0.0,3532,156.0,6847.83,0.0,0.0,127.168190116,0.0,0.0,0,38.9027589653,-77.079852568,1473238612.0,4.17100000001 -2610,0.0,27.0,0.0,0.0,3533,156.0,6851.87,0.0,0.0,126.055785415,0.0,0.0,0,38.9027598035,-77.0798059646,1473238613.0,3.863 -2611,0.0,26.0,0.0,0.0,3534,156.0,6855.8,0.0,0.0,125.160378667,0.0,0.0,0,38.902760474,-77.0797607023,1473238614.0,3.95600000002 -2612,0.0,26.0,0.0,0.0,3535,156.0,6859.89,0.0,0.0,125.636203241,0.0,0.0,0,38.9027613122,-77.0797135122,1473238615.0,4.17100000001 -2613,0.0,26.0,0.0,0.0,3536,156.0,6863.81,0.0,0.0,125.54443349,0.0,0.0,0,38.9027621504,-77.0796683338,1473238616.0,3.69499999999 -2614,0.0,26.0,0.0,0.0,3537,156.0,6867.89,0.0,0.0,127.127458761,0.0,0.0,0,38.9027628209,-77.0796213951,1473238617.0,4.348 -2615,0.0,26.0,0.0,0.0,3538,156.0,6871.84,0.0,0.0,126.36153183,0.0,0.0,0,38.9027629886,-77.0795757975,1473238618.0,3.47100000001 -2616,0.0,26.0,0.0,0.0,3539,156.0,6875.79,0.0,0.0,127.615284665,0.0,0.0,0,38.902763743,-77.0795302838,1473238619.0,4.348 -2617,0.0,0.0,0.0,0.0,3540,157.0,6879.78,0.0,0.0,125.232846353,0.0,0.0,0,38.9027642459,-77.0794842672,1473238620.0,3.57399999999 -2618,0.0,0.0,0.0,0.0,3541,157.0,6883.77,0.0,0.0,125.477193569,0.0,0.0,0,38.9027644135,-77.0794382505,1473238621.0,4.35700000002 -2619,0.0,0.0,0.0,0.0,3542,157.0,6887.85,0.0,0.0,122.754939691,0.0,0.0,0,38.902764665,-77.079391228,1473238622.0,3.81599999999 -2620,0.0,0.0,0.0,0.0,3543,157.0,6891.88,0.0,0.0,122.399928785,0.0,0.0,0,38.9027644973,-77.0793447923,1473238623.0,4.23600000001 -2621,0.0,0.0,0.0,0.0,3544,157.0,6896.03,0.0,0.0,121.701545662,0.0,0.0,0,38.9027643297,-77.0792969316,1473238624.0,4.06799999999 -2622,0.0,28.0,0.0,0.0,3545,156.0,6900.1,0.0,0.0,121.461832591,0.0,0.0,0,38.9027640782,-77.0792500768,1473238625.0,4.03100000001 -2623,0.0,28.0,0.0,0.0,3546,157.0,6904.3,0.0,0.0,122.745546887,0.0,0.0,0,38.9027639106,-77.0792016294,1473238626.0,4.31999999999 -2624,0.0,28.0,0.0,0.0,3547,157.0,6908.3,0.0,0.0,122.556171579,0.0,0.0,0,38.9027636591,-77.0791555289,1473238627.0,3.732 -2625,0.0,0.0,0.0,0.0,3548,157.0,6912.39,0.0,0.0,125.065104237,0.0,0.0,0,38.9027634077,-77.0791083388,1473238628.0,4.42299999998 -2626,0.0,0.0,0.0,0.0,3549,157.0,6916.4,0.0,0.0,123.832171491,0.0,0.0,0,38.9027629048,-77.0790621545,1473238629.0,3.54599999999 -2627,0.0,0.0,0.0,0.0,3550,157.0,6920.41,0.0,0.0,126.25489716,0.0,0.0,0,38.9027624857,-77.0790158864,1473238630.0,4.43199999998 -2628,0.0,0.0,0.0,0.0,3551,157.0,6924.43,0.0,0.0,123.518182839,0.0,0.0,0,38.9027618989,-77.0789695345,1473238631.0,3.592 -2629,0.0,0.0,0.0,0.0,3552,157.0,6928.46,0.0,0.0,125.046012602,0.0,0.0,0,38.9027606416,-77.0789231826,1473238632.0,4.43199999998 -2630,0.0,0.0,0.0,0.0,3553,158.0,6932.55,0.0,0.0,122.1196159,0.0,0.0,0,38.9027593005,-77.0788760763,1473238633.0,3.72299999999 -2631,0.0,0.0,0.0,0.0,3554,157.0,6936.58,0.0,0.0,122.931713828,0.0,0.0,0,38.9027579594,-77.0788295567,1473238634.0,4.33900000002 -2632,0.0,0.0,0.0,0.0,3555,158.0,6940.75,0.0,0.0,121.668982415,0.0,0.0,0,38.9027564507,-77.0787816122,1473238635.0,3.96599999999 -2633,0.0,0.0,0.0,0.0,3556,158.0,6944.83,0.0,0.0,121.372358838,0.0,0.0,0,38.9027551096,-77.0787345897,1473238636.0,4.15200000001 -2634,0.0,0.0,0.0,0.0,3557,158.0,6949.05,0.0,0.0,121.612999008,0.0,0.0,0,38.9027536009,-77.0786859747,1473238637.0,4.18899999999 -2635,0.0,0.0,0.0,0.0,3558,158.0,6953.12,0.0,0.0,121.106377535,0.0,0.0,0,38.9027520921,-77.0786391199,1473238638.0,3.91899999999 -2636,0.0,0.0,0.0,0.0,3559,158.0,6957.35,0.0,0.0,122.669023045,0.0,0.0,0,38.9027502481,-77.078590421,1473238639.0,4.44099999999 -2637,0.0,0.0,0.0,0.0,3560,158.0,6961.43,0.0,0.0,121.181344998,0.0,0.0,0,38.9027483203,-77.0785433985,1473238640.0,3.66700000001 -2638,0.0,0.0,0.0,0.0,3561,158.0,6965.57,0.0,0.0,123.350783998,0.0,0.0,0,38.9027465601,-77.0784957055,1473238641.0,4.525 -2639,0.0,0.0,0.0,0.0,3562,158.0,6969.68,0.0,0.0,121.200673687,0.0,0.0,0,38.9027448837,-77.0784483477,1473238642.0,3.63 -2640,0.0,0.0,0.0,0.0,3563,158.0,6973.81,0.0,0.0,123.844387115,0.0,0.0,0,38.9027433749,-77.0784008224,1473238643.0,4.55299999999 -2641,0.0,0.0,0.0,0.0,3564,159.0,6977.96,0.0,0.0,120.86938049,0.0,0.0,0,38.90274195,-77.0783530455,1473238644.0,3.66700000001 -2642,0.0,0.0,0.0,0.0,3565,159.0,6982.06,0.0,0.0,122.904374012,0.0,0.0,0,38.9027401898,-77.0783057716,1473238645.0,4.46000000002 -2643,0.0,0.0,0.0,0.0,3566,159.0,6986.22,0.0,0.0,120.88038598,0.0,0.0,0,38.9027384296,-77.0782579109,1473238646.0,3.79799999999 -2644,0.0,0.0,0.0,0.0,3567,159.0,6990.33,0.0,0.0,121.369170339,0.0,0.0,0,38.9027366694,-77.0782105532,1473238647.0,4.36699999999 -2645,0.0,0.0,0.0,0.0,3568,159.0,6994.56,0.0,0.0,120.627765692,0.0,0.0,0,38.9027347416,-77.0781618543,1473238648.0,4.03100000001 -2646,0.0,0.0,0.0,0.0,3569,159.0,6998.66,0.0,0.0,120.228965917,0.0,0.0,0,38.9027324785,-77.078114748,1473238649.0,4.124 -2647,0.0,0.0,0.0,0.0,3570,159.0,7002.92,0.0,0.0,121.252331877,0.0,0.0,0,38.9027299639,-77.0780657139,1473238650.0,4.31999999999 -2648,0.0,0.0,0.0,0.0,3571,160.0,7006.99,0.0,0.0,121.659114322,0.0,0.0,0,38.9027274493,-77.078018859,1473238651.0,3.79799999999 -2649,0.0,0.0,0.0,0.0,3572,160.0,7011.15,0.0,0.0,123.843988742,0.0,0.0,0,38.9027255215,-77.0779709984,1473238652.0,4.47899999999 -2650,0.0,0.0,0.0,0.0,3573,159.0,7015.16,0.0,0.0,123.797927484,0.0,0.0,0,38.9027236775,-77.0779248141,1473238653.0,3.536 -2651,0.0,0.0,0.0,0.0,3574,159.0,7019.15,0.0,0.0,125.74918753,0.0,0.0,0,38.9027218334,-77.0778788812,1473238654.0,4.42299999998 -2652,0.0,0.0,0.0,0.0,3575,160.0,7023.15,0.0,0.0,124.338208539,0.0,0.0,0,38.9027199056,-77.0778328646,1473238655.0,3.58299999999 -2653,0.0,0.0,0.0,0.0,3576,160.0,7027.12,0.0,0.0,125.675163976,0.0,0.0,0,38.9027179778,-77.0777871832,1473238656.0,4.37600000001 -2654,0.0,0.0,0.0,0.0,3577,160.0,7031.17,0.0,0.0,123.807349333,0.0,0.0,0,38.9027162176,-77.077740496,1473238657.0,3.77900000001 -2655,0.0,0.0,0.0,0.0,3578,159.0,7035.13,0.0,0.0,123.701535505,0.0,0.0,0,38.9027145412,-77.0776948985,1473238658.0,4.17100000001 -2656,0.0,0.0,0.0,0.0,3579,160.0,7039.24,0.0,0.0,123.166630054,0.0,0.0,0,38.9027126972,-77.0776475407,1473238659.0,4.012 -2657,0.0,0.0,0.0,0.0,3580,160.0,7043.23,0.0,0.0,122.908428432,0.0,0.0,0,38.902710937,-77.0776016917,1473238660.0,3.975 -2658,0.0,0.0,0.0,0.0,3581,160.0,7047.39,0.0,0.0,123.749381253,0.0,0.0,0,38.9027088415,-77.0775537472,1473238661.0,4.33900000002 -2659,0.0,0.0,0.0,0.0,3582,159.0,7051.38,0.0,0.0,123.45969335,0.0,0.0,0,38.9027063269,-77.0775078982,1473238662.0,3.65800000001 -2660,0.0,26.0,0.0,0.0,3583,159.0,7055.41,0.0,0.0,125.472558988,0.0,0.0,0,38.9027033094,-77.0774615463,1473238663.0,4.41299999999 -2661,0.0,26.0,0.0,0.0,3584,160.0,7059.34,0.0,0.0,125.724822652,0.0,0.0,0,38.9026999567,-77.0774164516,1473238664.0,3.51799999999 -2662,0.0,28.0,0.0,0.0,3585,160.0,7063.25,0.0,0.0,127.182053126,0.0,0.0,0,38.9026966877,-77.0773716085,1473238665.0,4.36699999999 -2663,0.0,28.0,0.0,0.0,3586,160.0,7067.18,0.0,0.0,126.372039284,0.0,0.0,0,38.9026930835,-77.0773265138,1473238666.0,3.56400000001 -2664,0.0,29.0,0.0,0.0,3587,160.0,7071.04,0.0,0.0,127.047332006,0.0,0.0,0,38.9026893117,-77.0772823412,1473238667.0,4.19900000001 -2665,0.0,29.0,0.0,0.0,3588,160.0,7075.06,0.0,0.0,127.267538403,0.0,0.0,0,38.9026856236,-77.0772361569,1473238668.0,3.844 -2666,0.0,25.0,0.0,0.0,3589,160.0,7078.92,0.0,0.0,127.607248092,0.0,0.0,0,38.9026820194,-77.0771919005,1473238669.0,3.89099999999 -2667,0.0,25.0,0.0,0.0,3590,160.0,7082.92,0.0,0.0,128.435225279,0.0,0.0,0,38.9026782475,-77.0771460515,1473238670.0,4.06799999999 -2668,0.0,25.0,0.0,0.0,3591,159.0,7086.69,0.0,0.0,128.323352628,0.0,0.0,0,38.902674811,-77.0771028008,1473238671.0,3.536 -2669,0.0,27.0,0.0,0.0,3592,160.0,7090.62,0.0,0.0,129.41480976,0.0,0.0,0,38.9026709553,-77.07705779,1473238672.0,4.31099999999 -2670,0.0,27.0,0.0,0.0,3593,160.0,7094.41,0.0,0.0,127.950477073,0.0,0.0,0,38.902666932,-77.0770143718,1473238673.0,3.424 -2671,0.0,28.0,0.0,0.0,3594,160.0,7098.28,0.0,0.0,129.477627835,0.0,0.0,0,38.9026626572,-77.0769701153,1473238674.0,4.36699999999 -2672,0.0,28.0,0.0,0.0,3595,160.0,7102.13,0.0,0.0,127.33081538,0.0,0.0,0,38.9026584662,-77.0769260265,1473238675.0,3.47999999999 -2673,0.0,26.0,0.0,0.0,3596,160.0,7105.94,0.0,0.0,128.540998458,0.0,0.0,0,38.9026541077,-77.0768825244,1473238676.0,4.245 -2674,0.0,26.0,0.0,0.0,3597,160.0,7109.84,0.0,0.0,126.933538479,0.0,0.0,0,38.9026494138,-77.0768379327,1473238677.0,3.63 -2675,0.0,28.0,0.0,0.0,3598,160.0,7113.69,0.0,0.0,127.217214307,0.0,0.0,0,38.9026448876,-77.0767939277,1473238678.0,4.14299999999 -2676,0.0,28.0,0.0,0.0,3599,160.0,7117.73,0.0,0.0,126.727971552,0.0,0.0,0,38.9026399422,-77.0767477434,1473238679.0,3.92799999999 -2677,0.0,26.0,0.0,0.0,3600,160.0,7121.58,0.0,0.0,125.837692257,0.0,0.0,0,38.9026351646,-77.0767038222,1473238680.0,3.81599999999 -2678,0.0,26.0,0.0,0.0,3601,160.0,7125.6,0.0,0.0,126.516555595,0.0,0.0,0,38.9026300516,-77.0766579732,1473238681.0,4.22699999999 -2679,0.0,26.0,0.0,0.0,3602,160.0,7129.49,0.0,0.0,125.859632185,0.0,0.0,0,38.9026248548,-77.0766135491,1473238682.0,3.58299999999 -2680,0.0,28.0,0.0,0.0,3603,160.0,7133.55,0.0,0.0,127.206425742,0.0,0.0,0,38.9026194904,-77.0765673649,1473238683.0,4.43199999998 -2681,0.0,28.0,0.0,0.0,3604,160.0,7137.5,0.0,0.0,125.305126119,0.0,0.0,0,38.9026143774,-77.0765222702,1473238684.0,3.46199999999 -2682,0.0,29.0,0.0,0.0,3605,160.0,7141.46,0.0,0.0,127.709966796,0.0,0.0,0,38.9026089292,-77.0764771756,1473238685.0,4.395 -2683,0.0,29.0,0.0,0.0,3606,160.0,7145.45,0.0,0.0,125.238278023,0.0,0.0,0,38.9026037324,-77.076431578,1473238686.0,3.555 -2684,0.0,26.0,0.0,0.0,3607,160.0,7149.39,0.0,0.0,127.442369568,0.0,0.0,0,38.9025986195,-77.076386651,1473238687.0,4.329 -2685,0.0,26.0,0.0,0.0,3608,160.0,7153.36,0.0,0.0,124.560264521,0.0,0.0,0,38.9025936741,-77.0763413049,1473238688.0,3.67599999999 -2686,0.0,28.0,0.0,0.0,3609,160.0,7157.31,0.0,0.0,125.104253545,0.0,0.0,0,38.902588645,-77.0762962103,1473238689.0,4.20799999999 -2687,0.0,28.0,0.0,0.0,3610,161.0,7161.4,0.0,0.0,123.672130727,0.0,0.0,0,38.9025834482,-77.0762496069,1473238690.0,3.938 -2688,0.0,28.0,0.0,0.0,3611,160.0,7165.42,0.0,0.0,122.733155804,0.0,0.0,0,38.9025784191,-77.0762036741,1473238691.0,4.07799999999 -2689,0.0,0.0,0.0,0.0,3612,160.0,7169.61,0.0,0.0,121.888029751,0.0,0.0,0,38.9025729708,-77.0761558972,1473238692.0,4.22699999999 -2690,0.0,0.0,0.0,0.0,3613,160.0,7173.67,0.0,0.0,121.268627334,0.0,0.0,0,38.9025678579,-77.0761095453,1473238693.0,3.844 -2691,0.0,0.0,0.0,0.0,3614,160.0,7177.85,0.0,0.0,123.370547445,0.0,0.0,0,38.9025624096,-77.0760618523,1473238694.0,4.46900000002 -2692,0.0,0.0,0.0,0.0,3615,160.0,7181.91,0.0,0.0,122.825692795,0.0,0.0,0,38.9025572967,-77.0760155004,1473238695.0,3.69499999999 -2693,0.0,24.0,0.0,0.0,3616,160.0,7185.94,0.0,0.0,126.124060212,0.0,0.0,0,38.9025519323,-77.0759695675,1473238696.0,4.329 -2694,0.0,24.0,0.0,0.0,3617,161.0,7189.88,0.0,0.0,124.264633102,0.0,0.0,0,38.9025469031,-77.0759246405,1473238697.0,3.54599999999 -2695,0.0,29.0,0.0,0.0,3618,160.0,7193.87,0.0,0.0,127.292645241,0.0,0.0,0,38.9025413711,-77.0758792106,1473238698.0,4.395 -2696,0.0,29.0,0.0,0.0,3619,161.0,7197.85,0.0,0.0,123.871482532,0.0,0.0,0,38.9025361743,-77.0758337807,1473238699.0,3.62000000001 -2697,0.0,26.0,0.0,0.0,3620,160.0,7201.87,0.0,0.0,124.887142031,0.0,0.0,0,38.9025309775,-77.0757879317,1473238700.0,4.38499999999 -2698,0.0,26.0,0.0,0.0,3621,161.0,7205.95,0.0,0.0,122.770989056,0.0,0.0,0,38.9025257807,-77.0757413283,1473238701.0,3.77900000001 -2699,0.0,29.0,0.0,0.0,3622,160.0,7210.0,0.0,0.0,122.920200844,0.0,0.0,0,38.9025205001,-77.075695144,1473238702.0,4.26400000002 -2700,0.0,29.0,0.0,0.0,3623,161.0,7214.12,0.0,0.0,122.187053039,0.0,0.0,0,38.9025155548,-77.0756480377,1473238703.0,3.984 -2701,0.0,28.0,0.0,0.0,3624,160.0,7218.15,0.0,0.0,121.773143487,0.0,0.0,0,38.9025105257,-77.0756021049,1473238704.0,4.07799999999 -2702,0.0,28.0,0.0,0.0,3625,161.0,7222.36,0.0,0.0,122.551490195,0.0,0.0,0,38.9025049936,-77.0755539928,1473238705.0,4.28299999998 -2703,0.0,28.0,0.0,0.0,3626,160.0,7226.41,0.0,0.0,121.864495123,0.0,0.0,0,38.9024997968,-77.0755078085,1473238706.0,3.788 -2704,0.0,26.0,0.0,0.0,3627,160.0,7230.55,0.0,0.0,123.980914453,0.0,0.0,0,38.9024944324,-77.0754606184,1473238707.0,4.43199999998 -2705,0.0,26.0,0.0,0.0,3628,160.0,7234.57,0.0,0.0,122.915622416,0.0,0.0,0,38.902489068,-77.0754147694,1473238708.0,3.592 -2706,0.0,29.0,0.0,0.0,3629,161.0,7238.64,0.0,0.0,126.029238783,0.0,0.0,0,38.9024836197,-77.0753683336,1473238709.0,4.46900000002 -2707,0.0,29.0,0.0,0.0,3630,161.0,7242.66,0.0,0.0,124.15656842,0.0,0.0,0,38.9024781715,-77.0753225684,1473238710.0,3.536 -2708,0.0,28.0,0.0,0.0,3631,160.0,7246.67,0.0,0.0,127.093745667,0.0,0.0,0,38.9024728909,-77.0752768032,1473238711.0,4.41299999999 -2709,0.0,28.0,0.0,0.0,3632,161.0,7250.65,0.0,0.0,125.030445726,0.0,0.0,0,38.9024673589,-77.0752315409,1473238712.0,3.555 -2710,0.0,28.0,0.0,0.0,3633,161.0,7254.55,0.0,0.0,126.61641475,0.0,0.0,0,38.9024619106,-77.0751871169,1473238713.0,4.28299999998 -2711,0.0,0.0,0.0,0.0,3634,161.0,7258.57,0.0,0.0,125.356805627,0.0,0.0,0,38.9024562109,-77.0751413517,1473238714.0,3.77 -2712,0.0,0.0,0.0,0.0,3635,161.0,7262.51,0.0,0.0,125.940876483,0.0,0.0,0,38.9024505112,-77.0750964247,1473238715.0,4.087 -2713,0.0,0.0,0.0,0.0,3636,161.0,7266.63,0.0,0.0,125.235969506,0.0,0.0,0,38.9024445601,-77.0750495698,1473238716.0,4.03999999999 -2714,0.0,28.0,0.0,0.0,3637,161.0,7270.56,0.0,0.0,124.470595843,0.0,0.0,0,38.9024387766,-77.0750048943,1473238717.0,3.79799999999 -2715,0.0,28.0,0.0,0.0,3638,161.0,7274.62,0.0,0.0,125.028821579,0.0,0.0,0,38.9024328254,-77.07495871,1473238718.0,4.28299999998 -2716,0.0,28.0,0.0,0.0,3639,161.0,7278.61,0.0,0.0,123.426314491,0.0,0.0,0,38.9024266228,-77.0749133639,1473238719.0,3.71399999999 -2717,0.0,28.0,0.0,0.0,3640,161.0,7282.73,0.0,0.0,125.279981778,0.0,0.0,0,38.9024200849,-77.0748666767,1473238720.0,4.44099999999 -2718,0.0,28.0,0.0,0.0,3641,161.0,7286.74,0.0,0.0,123.096402068,0.0,0.0,0,38.9024134632,-77.074821163,1473238721.0,3.56400000001 -2719,0.0,28.0,0.0,0.0,3642,162.0,7290.76,0.0,0.0,126.919032251,0.0,0.0,0,38.9024067577,-77.0747756492,1473238722.0,4.44099999999 -2720,0.0,28.0,0.0,0.0,3643,161.0,7294.76,0.0,0.0,124.518367268,0.0,0.0,0,38.9024003036,-77.0747303031,1473238723.0,3.54599999999 -2721,0.0,28.0,0.0,0.0,3644,161.0,7298.73,0.0,0.0,126.911501479,0.0,0.0,0,38.9023937657,-77.0746852923,1473238724.0,4.348 -2722,0.0,28.0,0.0,0.0,3645,161.0,7302.71,0.0,0.0,124.075343275,0.0,0.0,0,38.902387144,-77.0746401977,1473238725.0,3.61099999999 -2723,0.0,26.0,0.0,0.0,3646,161.0,7306.7,0.0,0.0,125.198230532,0.0,0.0,0,38.9023802709,-77.0745950192,1473238726.0,4.348 -2724,0.0,26.0,0.0,0.0,3647,161.0,7310.82,0.0,0.0,123.535093058,0.0,0.0,0,38.9023731463,-77.0745484158,1473238727.0,3.863 -2725,0.0,28.0,0.0,0.0,3648,161.0,7314.81,0.0,0.0,123.677295419,0.0,0.0,0,38.9023661893,-77.0745033212,1473238728.0,4.11499999999 -2726,0.0,28.0,0.0,0.0,3649,161.0,7318.93,0.0,0.0,123.874405296,0.0,0.0,0,38.9023588132,-77.0744568016,1473238729.0,4.07799999999 -2727,0.0,28.0,0.0,0.0,3650,160.0,7322.91,0.0,0.0,123.573025774,0.0,0.0,0,38.9023517724,-77.0744117908,1473238730.0,3.863 -2728,0.0,0.0,0.0,0.0,3651,160.0,7327.0,0.0,0.0,124.744705371,0.0,0.0,0,38.902344564,-77.0743656065,1473238731.0,4.30099999999 -2729,0.0,0.0,0.0,0.0,3652,160.0,7331.0,0.0,0.0,122.741242333,0.0,0.0,0,38.9023372717,-77.0743203443,1473238732.0,3.686 -2730,0.0,0.0,0.0,0.0,3653,160.0,7335.1,0.0,0.0,124.671859349,0.0,0.0,0,38.9023302309,-77.0742739923,1473238733.0,4.47899999999 -2731,0.0,0.0,0.0,0.0,3654,161.0,7339.13,0.0,0.0,121.160243076,0.0,0.0,0,38.9023231901,-77.0742283948,1473238734.0,3.592 -2732,0.0,29.0,0.0,0.0,3655,160.0,7343.22,0.0,0.0,124.077076035,0.0,0.0,0,38.9023159817,-77.0741821267,1473238735.0,4.57199999999 -2733,0.0,29.0,0.0,0.0,3656,160.0,7347.31,0.0,0.0,120.471371621,0.0,0.0,0,38.9023087732,-77.0741359424,1473238736.0,3.62000000001 -2734,0.0,29.0,0.0,0.0,3657,160.0,7351.41,0.0,0.0,124.783654314,0.0,0.0,0,38.9023013972,-77.0740895905,1473238737.0,4.57199999999 -2735,0.0,29.0,0.0,0.0,3658,160.0,7355.47,0.0,0.0,121.565255282,0.0,0.0,0,38.9022941049,-77.0740437414,1473238738.0,3.592 -2736,0.0,28.0,0.0,0.0,3659,161.0,7359.46,0.0,0.0,125.645223578,0.0,0.0,0,38.9022871479,-77.0739986468,1473238739.0,4.42299999998 -2737,0.0,28.0,0.0,0.0,3660,160.0,7363.45,0.0,0.0,123.404687241,0.0,0.0,0,38.9022799395,-77.073953636,1473238740.0,3.62000000001 -2738,0.0,27.0,0.0,0.0,3661,160.0,7367.42,0.0,0.0,125.671745401,0.0,0.0,0,38.902272312,-77.0739088766,1473238741.0,4.348 -2739,0.0,27.0,0.0,0.0,3662,160.0,7371.47,0.0,0.0,124.457988155,0.0,0.0,0,38.9022647683,-77.0738631953,1473238742.0,3.77900000001 -2740,0.0,28.0,0.0,0.0,3663,160.0,7375.41,0.0,0.0,124.016857703,0.0,0.0,0,38.902257476,-77.0738187712,1473238743.0,4.124 -2741,0.0,28.0,0.0,0.0,3664,161.0,7379.48,0.0,0.0,123.7963352,0.0,0.0,0,38.9022502676,-77.0737726707,1473238744.0,4.022 -2742,0.0,27.0,0.0,0.0,3665,160.0,7383.4,0.0,0.0,126.140451659,0.0,0.0,0,38.9022434782,-77.0737283304,1473238745.0,3.85399999999 -2743,0.0,27.0,0.0,0.0,3666,160.0,7387.5,0.0,0.0,125.42323555,0.0,0.0,0,38.9022365212,-77.0736819785,1473238746.0,4.329 -2744,0.0,27.0,0.0,0.0,3667,161.0,7391.35,0.0,0.0,129.571024554,0.0,0.0,0,38.9022302348,-77.0736383088,1473238747.0,3.40600000001 -2745,0.0,0.0,0.0,0.0,3668,160.0,7395.06,0.0,0.0,135.172300796,0.0,0.0,0,38.9022241998,-77.0735962316,1473238748.0,3.99399999998 -2746,0.0,0.0,0.0,0.0,3669,160.0,7398.84,0.0,0.0,142.994743241,0.0,0.0,0,38.9022180811,-77.0735534001,1473238749.0,3.51799999999 -2747,0.0,0.0,0.0,0.0,3670,160.0,7402.2,0.0,0.0,156.157471628,0.0,0.0,0,38.9022128005,-77.0735152625,1473238750.0,3.182 -2748,0.0,0.0,0.0,0.0,3671,159.0,7405.24,0.0,0.0,165.887498115,0.0,0.0,0,38.9022081904,-77.0734806452,1473238751.0,2.893 -2749,0.0,0.0,0.0,0.0,3672,159.0,7408.06,0.0,0.0,186.688993916,0.0,0.0,0,38.9022039995,-77.0734486263,1473238752.0,2.76199999999 -2750,0.0,0.0,0.0,0.0,3673,159.0,7410.65,0.0,0.0,201.267900645,0.0,0.0,0,38.9022001438,-77.0734192058,1473238753.0,2.445 -2751,0.0,0.0,0.0,0.0,3674,159.0,7413.01,0.0,0.0,216.843176387,0.0,0.0,0,38.9021967072,-77.0733922999,1473238754.0,2.323 -2752,0.0,0.0,0.0,0.0,3675,159.0,7415.21,0.0,0.0,232.978922972,0.0,0.0,0,38.9021937735,-77.073367238,1473238755.0,2.137 -2753,0.0,0.0,0.0,0.0,3676,159.0,7417.27,0.0,0.0,246.10231464,0.0,0.0,0,38.9021910075,-77.0733437687,1473238756.0,2.025 -2754,0.0,0.0,0.0,0.0,3677,158.0,7419.21,0.0,0.0,261.535291414,0.0,0.0,0,38.9021885768,-77.0733216405,1473238757.0,1.913 -2755,0.0,0.0,0.0,0.0,3678,157.0,7421.08,0.0,0.0,271.119123405,0.0,0.0,0,38.902186146,-77.0733003505,1473238758.0,1.857 -2756,0.0,0.0,0.0,0.0,3679,158.0,7422.92,0.0,0.0,273.886845606,0.0,0.0,0,38.9021839667,-77.0732793119,1473238759.0,1.857 -2757,0.0,0.0,0.0,0.0,3680,158.0,7424.63,0.0,0.0,276.825731611,0.0,0.0,0,38.9021816198,-77.073259782,1473238760.0,1.624 -2758,0.0,0.0,0.0,0.0,3681,158.0,7426.38,0.0,0.0,280.888629482,0.0,0.0,0,38.9021795243,-77.0732397493,1473238761.0,1.931 -2759,0.0,0.0,0.0,0.0,3682,157.0,7428.25,0.0,0.0,288.474506846,0.0,0.0,0,38.9021772612,-77.0732184593,1473238762.0,1.791 -2760,0.0,0.0,0.0,0.0,3683,156.0,7429.95,0.0,0.0,300.61685016,0.0,0.0,0,38.9021753334,-77.0731989294,1473238763.0,1.633 -2761,0.0,0.0,0.0,0.0,3684,155.0,7431.53,0.0,0.0,314.074621955,0.0,0.0,0,38.9021734055,-77.0731809083,1473238764.0,1.549 -2762,0.0,0.0,0.0,0.0,3685,155.0,7433.01,0.0,0.0,342.621185558,0.0,0.0,0,38.9021717291,-77.0731640607,1473238765.0,1.465 -2763,0.0,0.0,0.0,0.0,3686,154.0,7434.41,0.0,0.0,361.180167925,0.0,0.0,0,38.9021700528,-77.0731480513,1473238766.0,1.381 -2764,0.0,0.0,0.0,0.0,3687,153.0,7435.71,0.0,0.0,378.18758104,0.0,0.0,0,38.9021683764,-77.0731331315,1473238767.0,1.334 -2765,0.0,0.0,0.0,0.0,3688,153.0,7436.96,0.0,0.0,396.98088305,0.0,0.0,0,38.9021669514,-77.0731188823,1473238768.0,1.25 -2766,0.0,0.0,0.0,0.0,3689,152.0,7438.13,0.0,0.0,416.58100607,0.0,0.0,0,38.9021656103,-77.073105555,1473238769.0,1.204 -2767,0.0,0.0,0.0,0.0,3690,151.0,7439.24,0.0,0.0,436.943889595,0.0,0.0,0,38.9021641854,-77.0730928145,1473238770.0,1.148 -2768,0.0,0.0,0.0,0.0,3691,151.0,7440.28,0.0,0.0,458.355159769,0.0,0.0,0,38.9021627605,-77.0730809961,1473238771.0,1.092 -2769,0.0,0.0,0.0,0.0,3692,150.0,7441.29,0.0,0.0,478.816018572,0.0,0.0,0,38.9021612518,-77.0730695128,1473238772.0,1.036 -2770,0.0,0.0,0.0,0.0,3693,149.0,7442.26,0.0,0.0,502.169546351,0.0,0.0,0,38.9021598268,-77.0730585326,1473238773.0,0.998 -2771,0.0,0.0,0.0,0.0,3694,148.0,7443.22,0.0,0.0,521.018941632,0.0,0.0,0,38.9021581504,-77.0730476361,1473238774.0,0.961000000001 -2772,0.0,0.0,0.0,0.0,3695,147.0,7444.13,0.0,0.0,552.557552098,0.0,0.0,0,38.9021565579,-77.0730373263,1473238775.0,0.914 -2773,0.0,0.0,0.0,0.0,3696,146.0,7445.0,0.0,0.0,563.951075413,0.0,0.0,0,38.902155133,-77.0730275195,1473238776.0,0.877 -2774,0.0,0.0,0.0,0.0,3697,145.0,7445.85,0.0,0.0,588.385124809,0.0,0.0,0,38.9021535404,-77.0730178803,1473238777.0,0.857999999999 -2775,0.0,26.0,0.0,0.0,3698,144.0,7446.64,0.0,0.0,610.865472086,0.0,0.0,0,38.9021521155,-77.0730089955,1473238778.0,0.765 -2776,0.0,26.0,0.0,0.0,3699,144.0,7447.44,0.0,0.0,631.030300382,0.0,0.0,0,38.9021505229,-77.072999943,1473238779.0,0.896 -2777,0.0,26.0,0.0,0.0,3700,143.0,7448.22,0.0,0.0,651.085706555,0.0,0.0,0,38.9021490142,-77.072991142,1473238780.0,0.7 -2778,0.0,0.0,0.0,0.0,3701,142.0,7448.93,0.0,0.0,662.133963173,0.0,0.0,0,38.9021477569,-77.0729831792,1473238781.0,0.756 -2779,0.0,0.0,0.0,0.0,3702,141.0,7449.66,0.0,0.0,673.716875587,0.0,0.0,0,38.9021464158,-77.0729748812,1473238782.0,0.737 -2780,0.0,0.0,0.0,0.0,3703,140.0,7450.41,0.0,0.0,701.147331998,0.0,0.0,0,38.9021449909,-77.0729664993,1473238783.0,0.728 -2781,0.0,0.0,0.0,0.0,3704,139.0,7451.14,0.0,0.0,698.797221752,0.0,0.0,0,38.9021433145,-77.072958285,1473238784.0,0.737 -2782,0.0,0.0,0.0,0.0,3705,139.0,7451.83,0.0,0.0,718.650057865,0.0,0.0,0,38.902142141,-77.0729504898,1473238785.0,0.672 -2783,0.0,0.0,0.0,0.0,3706,139.0,7452.49,0.0,0.0,738.212566871,0.0,0.0,0,38.9021407999,-77.0729431137,1473238786.0,0.672 -2784,0.0,0.0,0.0,0.0,3707,139.0,7453.15,0.0,0.0,762.915062123,0.0,0.0,0,38.9021392912,-77.0729357377,1473238787.0,0.662 -2785,0.0,0.0,0.0,0.0,3708,138.0,7453.78,0.0,0.0,774.185764366,0.0,0.0,0,38.9021379501,-77.0729286969,1473238788.0,0.662 -2786,0.0,0.0,0.0,0.0,3709,138.0,7454.4,0.0,0.0,776.042786497,0.0,0.0,0,38.902136609,-77.0729216561,1473238789.0,0.616 -2787,0.0,0.0,0.0,0.0,3710,137.0,7455.0,0.0,0.0,794.005430859,0.0,0.0,0,38.9021352679,-77.0729150344,1473238790.0,0.625 -2788,0.0,0.0,0.0,0.0,3711,137.0,7455.63,0.0,0.0,809.781884724,0.0,0.0,0,38.9021339267,-77.0729079936,1473238791.0,0.653 -2789,0.0,0.0,0.0,0.0,3712,137.0,7456.26,0.0,0.0,830.744001381,0.0,0.0,0,38.9021325018,-77.0729009528,1473238792.0,0.597 -2790,0.0,0.0,0.0,0.0,3713,137.0,7456.86,0.0,0.0,848.030073863,0.0,0.0,0,38.9021311607,-77.0728942472,1473238793.0,0.569 -2791,0.0,0.0,0.0,0.0,3714,136.0,7457.42,0.0,0.0,876.115055525,0.0,0.0,0,38.9021299873,-77.0728879608,1473238794.0,0.579 -2792,0.0,0.0,0.0,0.0,3715,134.0,7457.96,0.0,0.0,905.520144883,0.0,0.0,0,38.9021285623,-77.0728819259,1473238795.0,0.551 -2793,0.0,0.0,0.0,0.0,3716,133.0,7458.51,0.0,0.0,909.191095438,0.0,0.0,0,38.9021273889,-77.0728758071,1473238796.0,0.551 -2794,0.0,0.0,0.0,0.0,3717,132.0,7459.05,0.0,0.0,931.60187127,0.0,0.0,0,38.9021262154,-77.0728697721,1473238797.0,0.541 -2795,0.0,0.0,0.0,0.0,3718,131.0,7459.57,0.0,0.0,943.835650021,0.0,0.0,0,38.9021250419,-77.0728639048,1473238798.0,0.532 -2796,0.0,0.0,0.0,0.0,3719,130.0,7460.09,0.0,0.0,995.269239718,0.0,0.0,0,38.9021240361,-77.0728581212,1473238799.0,0.541 -2797,0.0,0.0,0.0,0.0,3720,129.0,7460.57,0.0,0.0,929.704667842,0.0,0.0,0,38.9021229465,-77.0728527568,1473238800.0,0.513 -2798,0.0,0.0,0.0,0.0,3721,128.0,7461.08,0.0,0.0,789.635605387,0.0,0.0,0,38.9021218568,-77.0728470571,1473238801.0,0.588 -2799,0.0,0.0,0.0,0.0,3722,127.0,7461.62,0.0,0.0,672.101670653,0.0,0.0,0,38.9021205995,-77.0728409383,1473238802.0,0.606 -2800,0.0,0.0,0.0,0.0,3723,126.0,7462.39,0.0,0.0,590.608556921,0.0,0.0,0,38.9021186717,-77.0728323888,1473238803.0,0.998 -2801,0.0,37.0,0.0,0.0,3724,126.0,7463.36,0.0,0.0,544.069640914,0.0,0.0,0,38.9021158218,-77.0728219114,1473238804.0,1.017 -2802,0.0,47.0,0.0,0.0,3725,126.0,7464.3,0.0,0.0,530.753854284,0.0,0.0,0,38.902112972,-77.0728116855,1473238805.0,0.914 -2803,0.0,47.0,0.0,0.0,3726,126.0,7465.17,0.0,0.0,533.59820748,0.0,0.0,0,38.9021106251,-77.0728020463,1473238806.0,0.877 -2804,0.0,47.0,0.0,0.0,3727,125.0,7466.03,0.0,0.0,574.5782695,0.0,0.0,0,38.9021081943,-77.0727927424,1473238807.0,0.84 -2805,0.0,0.0,0.0,0.0,3728,125.0,7466.85,0.0,0.0,592.854943024,0.0,0.0,0,38.9021058474,-77.0727836899,1473238808.0,0.857999999999 -2806,0.0,0.0,0.0,0.0,3729,124.0,7467.7,0.0,0.0,600.433559817,0.0,0.0,0,38.9021035843,-77.0727743022,1473238809.0,0.877 -2807,0.0,0.0,0.0,0.0,3730,122.0,7468.51,0.0,0.0,614.074263111,0.0,0.0,0,38.9021013211,-77.0727654174,1473238810.0,0.793 -2808,0.0,0.0,0.0,0.0,3731,121.0,7469.28,0.0,0.0,629.475818319,0.0,0.0,0,38.902099058,-77.0727570355,1473238811.0,0.784 -2809,0.0,0.0,0.0,0.0,3732,120.0,7470.04,0.0,0.0,652.870652475,0.0,0.0,0,38.9020969626,-77.0727487374,1473238812.0,0.765 -2810,0.0,0.0,0.0,0.0,3733,119.0,7470.75,0.0,0.0,674.08254739,0.0,0.0,0,38.9020950347,-77.0727408584,1473238813.0,0.746 -2811,0.0,0.0,0.0,0.0,3734,117.0,7471.49,0.0,0.0,683.958074258,0.0,0.0,0,38.9020928554,-77.0727328118,1473238814.0,0.737 -2812,0.0,0.0,0.0,0.0,3735,117.0,7472.19,0.0,0.0,698.68308824,0.0,0.0,0,38.9020908438,-77.0727251004,1473238815.0,0.709 -2813,0.0,0.0,0.0,0.0,3736,115.0,7472.86,0.0,0.0,709.20243892,0.0,0.0,0,38.9020887483,-77.072717892,1473238816.0,0.7 -2814,0.0,0.0,0.0,0.0,3737,114.0,7473.52,0.0,0.0,726.853949554,0.0,0.0,0,38.9020869043,-77.0727105998,1473238817.0,0.69 -2815,0.0,0.0,0.0,0.0,3738,114.0,7474.2,0.0,0.0,738.731939443,0.0,0.0,0,38.9020849764,-77.0727032237,1473238818.0,0.681 -2816,0.0,0.0,0.0,0.0,3739,113.0,7474.83,0.0,0.0,748.857263267,0.0,0.0,0,38.9020832162,-77.0726962667,1473238819.0,0.662 -2817,0.0,0.0,0.0,0.0,3740,112.0,7475.47,0.0,0.0,778.648185851,0.0,0.0,0,38.9020812884,-77.0726893097,1473238820.0,0.616 -2818,0.0,0.0,0.0,0.0,3741,111.0,7476.08,0.0,0.0,852.65022885,0.0,0.0,0,38.9020793606,-77.072682688,1473238821.0,0.625 -2819,0.0,0.0,0.0,0.0,3742,111.0,7476.67,0.0,0.0,990.523562455,0.0,0.0,0,38.9020772651,-77.0726764016,1473238822.0,0.541 -2820,0.0,0.0,0.0,0.0,3743,110.0,7477.13,0.0,0.0,1252.30402255,0.0,0.0,0,38.9020752534,-77.0726715401,1473238823.0,0.410999999998 -2821,0.0,0.0,0.0,0.0,3744,110.0,7477.44,0.0,0.0,1658.31526655,0.0,0.0,0,38.9020734932,-77.0726688579,1473238824.0,0.280000000001 -2822,0.0,0.0,0.0,0.0,3745,110.0,7477.64,0.0,0.0,1938.37478602,0.0,0.0,0,38.9020723198,-77.0726670139,1473238825.0,0.224 -2823,0.0,0.0,0.0,0.0,3746,110.0,7477.69,0.0,0.0,1917.93560386,0.0,0.0,0,38.9020721521,-77.0726664271,1473238826.0,0.205 -2824,0.0,0.0,0.0,0.0,3747,111.0,7477.97,0.0,0.0,1502.75179224,0.0,0.0,0,38.902070811,-77.0726637449,1473238827.0,0.335999999999 -2825,0.0,0.0,0.0,0.0,3748,111.0,7478.39,0.0,0.0,1159.49885556,0.0,0.0,0,38.9020690508,-77.0726593863,1473238828.0,0.513 -2826,0.0,0.0,0.0,0.0,3749,111.0,7478.9,0.0,0.0,921.397972127,0.0,0.0,0,38.9020677097,-77.0726537704,1473238829.0,0.504 -2827,0.0,0.0,0.0,0.0,3750,111.0,7479.5,0.0,0.0,748.920387493,0.0,0.0,0,38.9020665362,-77.0726469811,1473238830.0,0.69 -2828,0.0,0.0,0.0,0.0,3751,112.0,7480.22,0.0,0.0,665.008463744,0.0,0.0,0,38.9020654466,-77.0726387668,1473238831.0,0.718 -2829,0.0,0.0,0.0,0.0,3752,113.0,7481.02,0.0,0.0,581.978323197,0.0,0.0,0,38.9020644408,-77.0726296306,1473238832.0,0.868000000001 -2830,0.0,0.0,0.0,0.0,3753,113.0,7481.95,0.0,0.0,529.520176782,0.0,0.0,0,38.9020640217,-77.0726188179,1473238833.0,0.989 -2831,0.0,0.0,0.0,0.0,3754,113.0,7482.9,0.0,0.0,480.001994813,0.0,0.0,0,38.9020636026,-77.07260767,1473238834.0,0.979999999999 -2832,0.0,0.0,0.0,0.0,3755,111.0,7483.94,0.0,0.0,449.245034967,0.0,0.0,0,38.9020641055,-77.0725954324,1473238835.0,1.185 -2833,0.0,0.0,0.0,0.0,3756,110.0,7485.08,0.0,0.0,419.05218016,0.0,0.0,0,38.9020665362,-77.0725826081,1473238836.0,1.092 -2834,0.0,0.0,0.0,0.0,3757,109.0,7486.3,0.0,0.0,400.585444355,0.0,0.0,0,38.902069889,-77.072569197,1473238837.0,1.362 -2835,0.0,0.0,0.0,0.0,3758,108.0,7487.58,0.0,0.0,377.837461194,0.0,0.0,0,38.9020742476,-77.0725555345,1473238838.0,1.222 -2836,0.0,0.0,0.0,0.0,3759,108.0,7488.88,0.0,0.0,366.055412232,0.0,0.0,0,38.902079612,-77.0725421235,1473238839.0,1.456 -2837,0.0,0.0,0.0,0.0,3760,108.0,7490.26,0.0,0.0,351.210078361,0.0,0.0,0,38.9020859823,-77.072528461,1473238840.0,1.344 -2838,0.0,0.0,0.0,0.0,3761,107.0,7491.67,0.0,0.0,344.054119266,0.0,0.0,0,38.9020929392,-77.0725148823,1473238841.0,1.512 -2839,0.0,0.0,0.0,0.0,3762,107.0,7493.13,0.0,0.0,334.799106043,0.0,0.0,0,38.9021009021,-77.0725015551,1473238842.0,1.465 -2840,0.0,0.0,0.0,0.0,3763,107.0,7494.56,0.0,0.0,328.24529444,0.0,0.0,0,38.9021091163,-77.0724887308,1473238843.0,1.521 -2841,0.0,0.0,0.0,0.0,3764,107.0,7496.07,0.0,0.0,324.83146731,0.0,0.0,0,38.902118504,-77.0724762417,1473238844.0,1.568 -2842,0.0,0.0,0.0,0.0,3765,107.0,7497.55,0.0,0.0,320.803035269,0.0,0.0,0,38.9021281432,-77.0724644233,1473238845.0,1.512 -2843,0.0,0.0,0.0,0.0,3766,107.0,7499.09,0.0,0.0,317.821970166,0.0,0.0,0,38.9021388721,-77.0724530239,1473238846.0,1.652 -2844,0.0,0.0,0.0,0.0,3767,107.0,7500.64,0.0,0.0,315.361805999,0.0,0.0,0,38.9021501038,-77.0724425465,1473238847.0,1.474 -2845,0.0,0.0,0.0,0.0,3768,106.0,7502.21,0.0,0.0,310.428794891,0.0,0.0,0,38.9021618385,-77.0724323206,1473238848.0,1.708 -2846,0.0,0.0,0.0,0.0,3769,105.0,7503.83,0.0,0.0,307.191472045,0.0,0.0,0,38.9021743275,-77.0724226814,1473238849.0,1.549 -2847,0.0,0.0,0.0,0.0,3770,105.0,7505.43,0.0,0.0,306.86093222,0.0,0.0,0,38.902187068,-77.072414048,1473238850.0,1.68 -2848,0.0,0.0,0.0,0.0,3771,104.0,7507.09,0.0,0.0,298.735224892,0.0,0.0,0,38.9022007305,-77.0724062528,1473238851.0,1.67 -2849,0.0,0.0,0.0,0.0,3772,104.0,7508.7,0.0,0.0,312.949611048,0.0,0.0,0,38.9022142254,-77.0723992959,1473238852.0,1.596 -2850,0.0,0.0,0.0,0.0,3773,104.0,7510.32,0.0,0.0,314.152359815,0.0,0.0,0,38.9022280555,-77.0723933447,1473238853.0,1.652 -2851,0.0,0.0,0.0,0.0,3774,104.0,7511.97,0.0,0.0,305.831451124,0.0,0.0,0,38.9022423886,-77.072388567,1473238854.0,1.642 -2852,0.0,0.0,0.0,0.0,3775,105.0,7513.48,0.0,0.0,293.790714178,0.0,0.0,0,38.9022555482,-77.0723842084,1473238855.0,1.409 -2853,0.0,0.0,0.0,0.0,3776,106.0,7515.13,0.0,0.0,283.381340504,0.0,0.0,0,38.902269965,-77.0723793469,1473238856.0,1.885 -2854,0.0,0.0,0.0,0.0,3777,106.0,7517.09,0.0,0.0,279.882618926,0.0,0.0,0,38.9022871479,-77.0723741502,1473238857.0,2.006 -2855,0.0,0.0,0.0,0.0,3778,106.0,7518.97,0.0,0.0,281.228542628,0.0,0.0,0,38.9023036603,-77.0723693725,1473238858.0,1.736 -2856,0.0,0.0,0.0,0.0,3779,105.0,7520.67,0.0,0.0,289.591988707,0.0,0.0,0,38.9023185801,-77.0723651815,1473238859.0,1.652 -2857,0.0,0.0,0.0,0.0,3780,105.0,7522.27,0.0,0.0,319.15599129,0.0,0.0,0,38.9023326617,-77.0723610744,1473238860.0,1.549 -2858,0.0,0.0,0.0,0.0,3781,105.0,7523.76,0.0,0.0,346.540891825,0.0,0.0,0,38.9023457374,-77.0723574702,1473238861.0,1.456 -2859,0.0,0.0,0.0,0.0,3782,105.0,7525.17,0.0,0.0,365.089249307,0.0,0.0,0,38.9023581427,-77.0723539498,1473238862.0,1.372 -2860,0.0,0.0,0.0,0.0,3783,105.0,7526.5,0.0,0.0,389.86683769,0.0,0.0,0,38.9023697935,-77.0723503456,1473238863.0,1.288 -2861,0.0,0.0,0.0,0.0,3784,105.0,7527.72,0.0,0.0,414.921362523,0.0,0.0,0,38.9023804385,-77.0723468252,1473238864.0,1.194 -2862,0.0,0.0,0.0,0.0,3785,105.0,7528.89,0.0,0.0,441.073699405,0.0,0.0,0,38.9023906644,-77.0723435562,1473238865.0,1.138 -2863,0.0,0.0,0.0,0.0,3786,105.0,7529.99,0.0,0.0,467.651095842,0.0,0.0,0,38.9024002198,-77.0723402873,1473238866.0,1.064 -2864,0.0,0.0,0.0,0.0,3787,104.0,7531.03,0.0,0.0,494.073259728,0.0,0.0,0,38.9024092723,-77.0723371021,1473238867.0,1.017 -2865,0.0,0.0,0.0,0.0,3788,104.0,7532.01,0.0,0.0,519.486360672,0.0,0.0,0,38.9024178218,-77.0723341685,1473238868.0,0.961000000001 -2866,0.0,0.0,0.0,0.0,3789,103.0,7532.53,0.0,0.0,547.307767031,0.0,0.0,0,38.9024221804,-77.0723318215,1473238869.0,0.914 -2867,0.0,0.0,0.0,0.0,3790,103.0,7533.45,0.0,0.0,573.796145878,0.0,0.0,0,38.9024300594,-77.0723287202,1473238870.0,0.868000000001 -2868,0.0,0.0,0.0,0.0,3791,103.0,7534.32,0.0,0.0,600.539705813,0.0,0.0,0,38.9024376031,-77.0723259542,1473238871.0,0.83 -2869,0.0,0.0,0.0,0.0,3792,103.0,7535.16,0.0,0.0,633.932687874,0.0,0.0,0,38.9024448954,-77.072323272,1473238872.0,0.784 -2870,0.0,0.0,0.0,0.0,3793,103.0,7535.95,0.0,0.0,680.07984314,0.0,0.0,0,38.9024517685,-77.0723207574,1473238873.0,0.746 -2871,0.0,0.0,0.0,0.0,3794,103.0,7536.68,0.0,0.0,746.008370795,0.0,0.0,0,38.9024579711,-77.072318159,1473238874.0,0.69 -2872,0.0,0.0,0.0,0.0,3795,102.0,7537.33,0.0,0.0,841.088827719,0.0,0.0,0,38.9024635032,-77.0723155607,1473238875.0,0.588 -2873,0.0,0.0,0.0,0.0,3796,102.0,7537.87,0.0,0.0,966.802270102,0.0,0.0,0,38.9024679456,-77.0723130461,1473238876.0,0.513 -2874,0.0,0.0,0.0,0.0,3797,102.0,7538.33,0.0,0.0,1120.23898432,0.0,0.0,0,38.9024715498,-77.0723105315,1473238877.0,0.439 -2875,0.0,0.0,0.0,0.0,3798,101.0,7538.72,0.0,0.0,1334.04174223,0.0,0.0,0,38.9024746511,-77.0723083522,1473238878.0,0.383 -2876,0.0,0.0,0.0,0.0,3799,101.0,7539.09,0.0,0.0,1459.82633755,0.0,0.0,0,38.902477501,-77.0723060891,1473238879.0,0.354999999999 -2877,0.0,0.0,0.0,0.0,3800,101.0,7539.43,0.0,0.0,1425.6091239,0.0,0.0,0,38.9024800994,-77.0723039936,1473238880.0,0.335999999999 -2878,0.0,0.0,0.0,0.0,3801,101.0,7539.77,0.0,0.0,1311.2781272,0.0,0.0,0,38.9024827816,-77.0723020658,1473238881.0,0.316999999999 -2879,0.0,28.0,0.0,0.0,3802,101.0,7540.22,0.0,0.0,1106.33243614,0.0,0.0,0,38.902486302,-77.072299635,1473238882.0,0.485000000001 -2880,0.0,28.0,0.0,0.0,3803,101.0,7540.74,0.0,0.0,963.09390791,0.0,0.0,0,38.9024905767,-77.0722971205,1473238883.0,0.56 -2881,0.0,28.0,0.0,0.0,3804,101.0,7541.32,0.0,0.0,824.805581542,0.0,0.0,0,38.9024955221,-77.072295025,1473238884.0,0.579 -2882,0.0,27.0,0.0,0.0,3805,100.0,7541.97,0.0,0.0,741.987498635,0.0,0.0,0,38.9025013056,-77.0722933486,1473238885.0,0.709 -2883,0.0,27.0,0.0,0.0,3806,101.0,7542.68,0.0,0.0,688.53690379,0.0,0.0,0,38.9025076758,-77.0722925942,1473238886.0,0.672 -2884,0.0,27.0,0.0,0.0,3807,100.0,7543.45,0.0,0.0,640.865584686,0.0,0.0,0,38.9025146328,-77.0722925942,1473238887.0,0.821 -2885,0.0,0.0,0.0,0.0,3808,100.0,7544.28,0.0,0.0,604.699378024,0.0,0.0,0,38.9025220089,-77.0722936001,1473238888.0,0.793 -2886,0.0,0.0,0.0,0.0,3809,100.0,7545.13,0.0,0.0,588.955178216,0.0,0.0,0,38.9025296364,-77.072295025,1473238889.0,0.896 -2887,0.0,0.0,0.0,0.0,3810,100.0,7546.0,0.0,0.0,567.05206569,0.0,0.0,0,38.9025372639,-77.0722973719,1473238890.0,0.868000000001 -2888,0.0,0.0,0.0,0.0,3811,100.0,7546.89,0.0,0.0,557.416291034,0.0,0.0,0,38.9025448915,-77.0723003894,1473238891.0,0.877 -2889,0.0,0.0,0.0,0.0,3812,100.0,7547.76,0.0,0.0,546.305931321,0.0,0.0,0,38.9025522675,-77.072303826,1473238892.0,0.886 -2890,0.0,0.0,0.0,0.0,3813,99.0,7548.67,0.0,0.0,550.589917769,0.0,0.0,0,38.9025597274,-77.0723081846,1473238893.0,0.933 -2891,0.0,0.0,0.0,0.0,3814,99.0,7549.59,0.0,0.0,566.076574722,0.0,0.0,0,38.9025671035,-77.0723130461,1473238894.0,0.914 -2892,0.0,0.0,0.0,0.0,3815,99.0,7550.47,0.0,0.0,606.477494696,0.0,0.0,0,38.902573809,-77.0723184105,1473238895.0,0.821 -2893,0.0,0.0,0.0,0.0,3816,99.0,7551.25,0.0,0.0,685.366389157,0.0,0.0,0,38.9025797602,-77.0723231882,1473238896.0,0.737 -2894,0.0,0.0,0.0,0.0,3817,99.0,7551.91,0.0,0.0,835.056465723,0.0,0.0,0,38.9025850408,-77.0723267924,1473238897.0,0.588 -2895,0.0,0.0,0.0,0.0,3818,98.0,7552.46,0.0,0.0,1031.27762351,0.0,0.0,0,38.9025893994,-77.0723297261,1473238898.0,0.485000000001 -2896,0.0,0.0,0.0,0.0,3819,98.0,7552.89,0.0,0.0,1476.26473069,0.0,0.0,0,38.9025930036,-77.0723317377,1473238899.0,0.345 -2897,0.0,0.0,0.0,0.0,3820,98.0,7553.17,0.0,0.0,2242.19599316,0.0,0.0,0,38.9025955182,-77.0723324083,1473238900.0,0.233 -2898,0.0,0.0,0.0,0.0,3821,98.0,7553.37,0.0,0.0,2904.12612205,0.0,0.0,0,38.9025972784,-77.0723329112,1473238901.0,0.205 -2899,0.0,0.0,0.0,0.0,3822,98.0,7553.56,0.0,0.0,3296.13880883,0.0,0.0,0,38.9025989547,-77.0723334979,1473238902.0,0.0 -2900,0.0,0.0,0.0,0.0,3823,98.0,7553.75,0.0,0.0,2618.81008525,0.0,0.0,0,38.9026006311,-77.072333917,1473238903.0,0.233 -2901,0.0,0.0,0.0,0.0,3824,98.0,7554.04,0.0,0.0,1971.19158958,0.0,0.0,0,38.9026030619,-77.0723350067,1473238904.0,0.326999999999 -2902,0.0,0.0,0.0,0.0,3825,98.0,7554.35,0.0,0.0,1478.51354984,0.0,0.0,0,38.9026056603,-77.072336683,1473238905.0,0.307999999999 -2903,0.0,0.0,0.0,0.0,3826,98.0,7554.76,0.0,0.0,1162.68535016,0.0,0.0,0,38.9026087616,-77.0723393653,1473238906.0,0.448000000001 -2904,0.0,0.0,0.0,0.0,3827,98.0,7555.27,0.0,0.0,1038.72511107,0.0,0.0,0,38.902612282,-77.0723432209,1473238907.0,0.457 -2905,0.0,0.0,0.0,0.0,3828,98.0,7555.83,0.0,0.0,906.358635518,0.0,0.0,0,38.9026158024,-77.0723479986,1473238908.0,0.56 -2906,0.0,0.0,0.0,0.0,3829,98.0,7556.45,0.0,0.0,807.585006188,0.0,0.0,0,38.9026194066,-77.0723535307,1473238909.0,0.588 -2907,0.0,0.0,0.0,0.0,3830,98.0,7557.13,0.0,0.0,787.455258224,0.0,0.0,0,38.9026227593,-77.0723600686,1473238910.0,0.69 -2908,0.0,0.0,0.0,0.0,3831,98.0,7557.85,0.0,0.0,752.09022478,0.0,0.0,0,38.902625693,-77.0723675285,1473238911.0,0.69 -2909,0.0,0.0,0.0,0.0,3832,98.0,7558.56,0.0,0.0,730.69818053,0.0,0.0,0,38.9026277885,-77.0723753236,1473238912.0,0.644 -2910,0.0,0.0,0.0,0.0,3833,98.0,7559.22,0.0,0.0,734.489863404,0.0,0.0,0,38.9026296325,-77.0723825321,1473238913.0,0.606 -2911,0.0,25.0,0.0,0.0,3834,98.0,7559.91,0.0,0.0,762.441661661,0.0,0.0,0,38.9026314765,-77.0723901596,1473238914.0,0.737 -2912,0.0,25.0,0.0,0.0,3835,98.0,7560.64,0.0,0.0,835.23158694,0.0,0.0,0,38.9026328176,-77.0723983739,1473238915.0,0.681 -2913,0.0,25.0,0.0,0.0,3836,98.0,7561.27,0.0,0.0,855.2704654,0.0,0.0,0,38.9026334882,-77.0724055823,1473238916.0,0.551 -2914,0.0,0.0,0.0,0.0,3837,98.0,7561.85,0.0,0.0,804.188744143,0.0,0.0,0,38.9026339073,-77.0724122878,1473238917.0,0.551 -2915,0.0,0.0,0.0,0.0,3838,98.0,7562.41,0.0,0.0,742.899042915,0.0,0.0,0,38.9026345778,-77.0724187419,1473238918.0,0.523 -2916,0.0,0.0,0.0,0.0,3839,99.0,7563.15,0.0,0.0,641.670231501,0.0,0.0,0,38.902635416,-77.0724272076,1473238919.0,0.877 -2917,0.0,0.0,0.0,0.0,3840,99.0,7564.11,0.0,0.0,581.905021009,0.0,0.0,0,38.9026361704,-77.0724381879,1473238920.0,0.97 -2918,0.0,42.0,0.0,0.0,3841,99.0,7565.09,0.0,0.0,562.646141855,0.0,0.0,0,38.9026367571,-77.0724494196,1473238921.0,0.896 -2919,0.0,42.0,0.0,0.0,3842,100.0,7566.0,0.0,0.0,576.758864859,0.0,0.0,0,38.9026371762,-77.0724599808,1473238922.0,0.877 -2920,0.0,42.0,0.0,0.0,3843,100.0,7566.82,0.0,0.0,646.663941907,0.0,0.0,0,38.9026375115,-77.0724693686,1473238923.0,0.69 -2921,0.0,0.0,0.0,0.0,3844,100.0,7567.54,0.0,0.0,719.106440205,0.0,0.0,0,38.9026379306,-77.0724776667,1473238924.0,0.709 -2922,0.0,0.0,0.0,0.0,3845,100.0,7568.23,0.0,0.0,753.473807815,0.0,0.0,0,38.9026384335,-77.0724855457,1473238925.0,0.672 -2923,0.0,0.0,0.0,0.0,3846,100.0,7568.88,0.0,0.0,769.871688052,0.0,0.0,0,38.9026387688,-77.0724930894,1473238926.0,0.634 -2924,0.0,0.0,0.0,0.0,3847,100.0,7569.52,0.0,0.0,773.496202837,0.0,0.0,0,38.9026386011,-77.0725004654,1473238927.0,0.616 -2925,0.0,0.0,0.0,0.0,3848,100.0,7570.2,0.0,0.0,785.708940755,0.0,0.0,0,38.9026385173,-77.0725083444,1473238928.0,0.69 -2926,0.0,0.0,0.0,0.0,3849,99.0,7570.88,0.0,0.0,828.176649003,0.0,0.0,0,38.902638685,-77.0725161396,1473238929.0,0.616 -2927,0.0,0.0,0.0,0.0,3850,99.0,7571.47,0.0,0.0,940.262785132,0.0,0.0,0,38.9026392717,-77.0725229289,1473238930.0,0.541 -2928,0.0,0.0,0.0,0.0,3851,99.0,7572.04,0.0,0.0,1022.68501302,0.0,0.0,0,38.9026401099,-77.072529383,1473238931.0,0.56 -2929,0.0,0.0,0.0,0.0,3852,99.0,7572.53,0.0,0.0,963.069816309,0.0,0.0,0,38.9026410319,-77.0725349151,1473238932.0,0.400999999999 -2930,0.0,0.0,0.0,0.0,3853,99.0,7572.97,0.0,0.0,813.357370215,0.0,0.0,0,38.9026417024,-77.0725398604,1473238933.0,0.457 -2931,0.0,0.0,0.0,0.0,3854,99.0,7573.61,0.0,0.0,686.188889087,0.0,0.0,0,38.902643295,-77.072546985,1473238934.0,0.802 -2932,0.0,0.0,0.0,0.0,3855,99.0,7574.53,0.0,0.0,604.389279024,0.0,0.0,0,38.9026457258,-77.0725572109,1473238935.0,0.989 -2933,0.0,0.0,0.0,0.0,3856,100.0,7575.5,0.0,0.0,556.119967836,0.0,0.0,0,38.9026479051,-77.0725680236,1473238936.0,0.905 -2934,0.0,0.0,0.0,0.0,3857,100.0,7576.42,0.0,0.0,567.99740344,0.0,0.0,0,38.9026499167,-77.0725782495,1473238937.0,0.84 -2935,0.0,0.0,0.0,0.0,3858,100.0,7577.25,0.0,0.0,652.534999604,0.0,0.0,0,38.9026518445,-77.0725874696,1473238938.0,0.774 -2936,0.0,0.0,0.0,0.0,3859,99.0,7578.01,0.0,0.0,736.466237327,0.0,0.0,0,38.9026536047,-77.0725960191,1473238939.0,0.7 -2937,0.0,0.0,0.0,0.0,3860,99.0,7578.69,0.0,0.0,725.867269985,0.0,0.0,0,38.9026549459,-77.0726036467,1473238940.0,0.653 -2938,0.0,0.0,0.0,0.0,3861,99.0,7579.36,0.0,0.0,631.520241454,0.0,0.0,0,38.9026563708,-77.0726111066,1473238941.0,0.644 -2939,0.0,0.0,0.0,0.0,3862,99.0,7580.13,0.0,0.0,584.375173921,0.0,0.0,0,38.9026580472,-77.0726197399,1473238942.0,0.886 -2940,0.0,0.0,0.0,0.0,3863,99.0,7581.13,0.0,0.0,526.083253245,0.0,0.0,0,38.902659975,-77.0726310555,1473238943.0,1.129 -2941,0.0,0.0,0.0,0.0,3864,99.0,7582.34,0.0,0.0,445.030111778,0.0,0.0,0,38.9026621543,-77.072644718,1473238944.0,1.204 -2942,0.0,0.0,0.0,0.0,3865,99.0,7583.44,0.0,0.0,393.2209391,0.0,0.0,0,38.9026639983,-77.0726571232,1473238945.0,0.933 -2943,0.0,29.0,0.0,0.0,3866,99.0,7584.62,0.0,0.0,360.630963681,0.0,0.0,0,38.9026658423,-77.0726706181,1473238946.0,1.4 -2944,0.0,29.0,0.0,0.0,3867,98.0,7586.19,0.0,0.0,353.910171164,0.0,0.0,0,38.9026683569,-77.0726883877,1473238947.0,1.689 -2945,0.0,29.0,0.0,0.0,3868,97.0,7587.8,0.0,0.0,344.082818202,0.0,0.0,0,38.9026709553,-77.0727066603,1473238948.0,1.474 -2946,0.0,21.0,0.0,0.0,3869,97.0,7589.32,0.0,0.0,328.174412625,0.0,0.0,0,38.902673386,-77.072723927,1473238949.0,1.493 -2947,0.0,21.0,0.0,0.0,3870,97.0,7590.73,0.0,0.0,323.728001211,0.0,0.0,0,38.9026754815,-77.0727399364,1473238950.0,1.26 -2948,0.0,21.0,0.0,0.0,3871,97.0,7592.19,0.0,0.0,323.17093644,0.0,0.0,0,38.9026777446,-77.0727564488,1473238951.0,1.614 -2949,0.0,0.0,0.0,0.0,3872,97.0,7593.89,0.0,0.0,314.76793019,0.0,0.0,0,38.9026805945,-77.072775811,1473238952.0,1.773 -2950,0.0,0.0,0.0,0.0,3873,97.0,7595.7,0.0,0.0,297.541610744,0.0,0.0,0,38.9026838634,-77.072796179,1473238953.0,1.782 -2951,0.0,0.0,0.0,0.0,3874,98.0,7597.38,0.0,0.0,284.094402971,0.0,0.0,0,38.9026872162,-77.0728151221,1473238954.0,1.484 -2952,0.0,34.0,0.0,0.0,3875,98.0,7598.99,0.0,0.0,289.935837576,0.0,0.0,0,38.9026909042,-77.0728329755,1473238955.0,1.68 -2953,0.0,34.0,0.0,0.0,3876,98.0,7600.83,0.0,0.0,285.620315394,0.0,0.0,0,38.902695179,-77.0728535112,1473238956.0,1.978 -2954,0.0,34.0,0.0,0.0,3877,98.0,7602.67,0.0,0.0,298.485862624,0.0,0.0,0,38.9026992861,-77.0728741307,1473238957.0,1.68 -2955,0.0,0.0,0.0,0.0,3878,97.0,7604.32,0.0,0.0,300.120827866,0.0,0.0,0,38.902703058,-77.072892487,1473238958.0,1.614 -2956,0.0,0.0,0.0,0.0,3879,98.0,7606.0,0.0,0.0,302.314076843,0.0,0.0,0,38.9027065784,-77.0729112625,1473238959.0,1.726 -2957,0.0,0.0,0.0,0.0,3880,98.0,7607.51,0.0,0.0,308.125715292,0.0,0.0,0,38.9027101826,-77.0729281101,1473238960.0,1.26 -2958,0.0,0.0,0.0,0.0,3881,98.0,7609.13,0.0,0.0,295.543813411,0.0,0.0,0,38.9027138706,-77.0729461312,1473238961.0,1.903 -2959,0.0,0.0,0.0,0.0,3882,99.0,7611.04,0.0,0.0,303.747534517,0.0,0.0,0,38.902718313,-77.0729675051,1473238962.0,1.885 -2960,0.0,0.0,0.0,0.0,3883,99.0,7612.8,0.0,0.0,295.912563602,0.0,0.0,0,38.9027220849,-77.0729872026,1473238963.0,1.596 -2961,0.0,0.0,0.0,0.0,3884,99.0,7614.5,0.0,0.0,271.572368746,0.0,0.0,0,38.9027254377,-77.0730062295,1473238964.0,1.726 -2962,0.0,0.0,0.0,0.0,3885,99.0,7616.12,0.0,0.0,274.162498843,0.0,0.0,0,38.9027287066,-77.0730244182,1473238965.0,1.54 -2963,0.0,0.0,0.0,0.0,3886,99.0,7618.08,0.0,0.0,262.119331244,0.0,0.0,0,38.9027324785,-77.0730465464,1473238966.0,2.295 -2964,0.0,0.0,0.0,0.0,3887,99.0,7620.37,0.0,0.0,238.0711905,0.0,0.0,0,38.9027365856,-77.0730724465,1473238967.0,2.221 -2965,0.0,0.0,0.0,0.0,3888,100.0,7622.48,0.0,0.0,219.70329593,0.0,0.0,0,38.9027402736,-77.0730963349,1473238968.0,1.913 -2966,0.0,0.0,0.0,0.0,3889,100.0,7624.62,0.0,0.0,214.616199342,0.0,0.0,0,38.9027435426,-77.0731205586,1473238969.0,2.323 -2967,0.0,0.0,0.0,0.0,3890,101.0,7627.15,0.0,0.0,214.802994968,0.0,0.0,0,38.9027473982,-77.0731493924,1473238970.0,2.622 -2968,0.0,0.0,0.0,0.0,3891,101.0,7629.74,0.0,0.0,208.227041391,0.0,0.0,0,38.9027509186,-77.0731788967,1473238971.0,2.435 -2969,0.0,0.0,0.0,0.0,3892,102.0,7632.0,0.0,0.0,202.824083911,0.0,0.0,0,38.9027536847,-77.0732047129,1473238972.0,2.081 -2970,0.0,0.0,0.0,0.0,3893,103.0,7634.35,0.0,0.0,217.026937647,0.0,0.0,0,38.9027565345,-77.073231535,1473238973.0,2.585 -2971,0.0,0.0,0.0,0.0,3894,103.0,7636.81,0.0,0.0,226.671036544,0.0,0.0,0,38.902759552,-77.0732596144,1473238974.0,2.323 -2972,0.0,0.0,0.0,0.0,3895,103.0,7639.08,0.0,0.0,214.491450984,0.0,0.0,0,38.9027619828,-77.0732855983,1473238975.0,2.239 -2973,0.0,0.0,0.0,0.0,3896,104.0,7641.16,0.0,0.0,208.05112834,0.0,0.0,0,38.902764162,-77.0733094029,1473238976.0,1.95 -2974,0.0,0.0,0.0,0.0,3897,104.0,7643.46,0.0,0.0,207.482669359,0.0,0.0,0,38.9027662575,-77.0733358059,1473238977.0,2.65 -2975,0.0,23.0,0.0,0.0,3898,105.0,7646.28,0.0,0.0,198.219627347,0.0,0.0,0,38.9027695265,-77.0733679924,1473238978.0,2.921 -2976,0.0,23.0,0.0,0.0,3899,105.0,7648.88,0.0,0.0,194.545647483,0.0,0.0,0,38.9027726278,-77.0733977482,1473238979.0,2.258 -2977,0.0,27.0,0.0,0.0,3900,106.0,7651.26,0.0,0.0,197.355268531,0.0,0.0,0,38.9027755614,-77.0734249055,1473238980.0,2.501 -2978,0.0,112.0,0.0,0.0,3901,107.0,7653.73,0.0,0.0,215.380598963,0.0,0.0,0,38.9027787466,-77.0734531526,1473238981.0,2.445 -2979,0.0,112.0,0.0,0.0,3902,106.0,7656.03,0.0,0.0,233.799988664,0.0,0.0,0,38.9027814288,-77.0734793879,1473238982.0,2.146 -2980,0.0,112.0,0.0,0.0,3903,106.0,7658.08,0.0,0.0,247.44626881,0.0,0.0,0,38.9027840272,-77.0735027734,1473238983.0,1.969 -2981,0.0,0.0,0.0,0.0,3904,106.0,7659.93,0.0,0.0,277.682278582,0.0,0.0,0,38.9027862065,-77.0735239796,1473238984.0,1.791 -2982,0.0,0.0,0.0,0.0,3905,106.0,7661.62,0.0,0.0,307.450688104,0.0,0.0,0,38.9027884696,-77.073543258,1473238985.0,1.624 -2983,0.0,0.0,0.0,0.0,3906,106.0,7663.18,0.0,0.0,333.391063388,0.0,0.0,0,38.9027904812,-77.0735610276,1473238986.0,1.493 -2984,0.0,0.0,0.0,0.0,3907,106.0,7664.59,0.0,0.0,368.556248704,0.0,0.0,0,38.9027924091,-77.0735771209,1473238987.0,1.39 -2985,0.0,0.0,0.0,0.0,3908,106.0,7665.9,0.0,0.0,398.446232182,0.0,0.0,0,38.9027942531,-77.0735920407,1473238988.0,1.278 -2986,0.0,0.0,0.0,0.0,3909,105.0,7667.12,0.0,0.0,455.587155203,0.0,0.0,0,38.9027960133,-77.0736058708,1473238989.0,1.194 -2987,0.0,0.0,0.0,0.0,3910,104.0,7668.26,0.0,0.0,407.692144778,0.0,0.0,0,38.9027977735,-77.073618779,1473238990.0,1.11 -2988,0.0,0.0,0.0,0.0,3911,104.0,7669.46,0.0,0.0,366.886798746,0.0,0.0,0,38.9027994499,-77.0736325253,1473238991.0,1.306 -2989,0.0,0.0,0.0,0.0,3912,104.0,7670.81,0.0,0.0,280.62656258,0.0,0.0,0,38.9028013777,-77.0736478642,1473238992.0,1.428 -2990,0.0,27.0,0.0,0.0,3913,104.0,7672.93,0.0,0.0,225.789236011,0.0,0.0,0,38.9028043114,-77.073672004,1473238993.0,2.75299999999 -2991,0.0,27.0,0.0,0.0,3914,105.0,7675.5,0.0,0.0,183.281839864,0.0,0.0,0,38.9028078318,-77.0737013407,1473238994.0,2.351 -2992,0.0,30.0,0.0,0.0,3915,106.0,7678.48,0.0,0.0,157.783220882,0.0,0.0,0,38.9028120227,-77.0737352874,1473238995.0,3.56400000001 -2993,0.0,30.0,0.0,0.0,3916,107.0,7681.88,0.0,0.0,145.405195812,0.0,0.0,0,38.9028170519,-77.0737738442,1473238996.0,3.172 -2994,0.0,26.0,0.0,0.0,3917,108.0,7685.39,0.0,0.0,138.639983771,0.0,0.0,0,38.9028222486,-77.0738138258,1473238997.0,3.79799999999 -2995,0.0,26.0,0.0,0.0,3918,109.0,7689.19,0.0,0.0,134.451316401,0.0,0.0,0,38.9028279483,-77.0738569926,1473238998.0,3.67599999999 -2996,0.0,28.0,0.0,0.0,3919,110.0,7692.88,0.0,0.0,132.502145273,0.0,0.0,0,38.9028328937,-77.0738990698,1473238999.0,3.62000000001 -2997,0.0,28.0,0.0,0.0,3920,112.0,7696.8,0.0,0.0,132.258167944,0.0,0.0,0,38.9028375875,-77.0739438292,1473239000.0,4.03100000001 -2998,0.0,28.0,0.0,0.0,3921,113.0,7700.61,0.0,0.0,131.614782334,0.0,0.0,0,38.9028416108,-77.0739874989,1473239001.0,3.45199999999 -2999,0.0,0.0,0.0,0.0,3922,114.0,7704.49,0.0,0.0,133.58284218,0.0,0.0,0,38.9028456341,-77.074031923,1473239002.0,4.19900000001 -3000,0.0,0.0,0.0,0.0,3923,115.0,7708.27,0.0,0.0,132.805484234,0.0,0.0,0,38.902849406,-77.0740751736,1473239003.0,3.29399999999 -3001,0.0,0.0,0.0,0.0,3924,116.0,7712.01,0.0,0.0,135.674531483,0.0,0.0,0,38.9028529264,-77.0741180889,1473239004.0,4.106 -3002,0.0,0.0,0.0,0.0,3925,118.0,7715.74,0.0,0.0,134.266573203,0.0,0.0,0,38.9028557763,-77.0741610043,1473239005.0,3.30299999999 -3003,0.0,0.0,0.0,0.0,3926,119.0,7719.43,0.0,0.0,136.052819121,0.0,0.0,0,38.9028583746,-77.0742034167,1473239006.0,4.022 -3004,0.0,0.0,0.0,0.0,3927,120.0,7723.21,0.0,0.0,134.887517825,0.0,0.0,0,38.9028604701,-77.0742469188,1473239007.0,3.48999999999 -3005,0.0,0.0,0.0,0.0,3928,121.0,7726.91,0.0,0.0,134.640021543,0.0,0.0,0,38.9028624818,-77.074289415,1473239008.0,3.82599999999 -3006,0.0,0.0,0.0,0.0,3929,122.0,7730.71,0.0,0.0,134.026480384,0.0,0.0,0,38.9028640743,-77.0743331686,1473239009.0,3.71399999999 -3007,0.0,0.0,0.0,0.0,3930,123.0,7734.39,0.0,0.0,134.605814738,0.0,0.0,0,38.9028655831,-77.074375581,1473239010.0,3.54599999999 -3008,0.0,0.0,0.0,0.0,3931,123.0,7738.23,0.0,0.0,136.5604963,0.0,0.0,0,38.9028665889,-77.0744198374,1473239011.0,4.05000000001 -3009,0.0,0.0,0.0,0.0,3932,125.0,7741.9,0.0,0.0,137.205498199,0.0,0.0,0,38.9028675109,-77.0744621661,1473239012.0,3.275 -3010,0.0,0.0,0.0,0.0,3933,125.0,7745.49,0.0,0.0,138.768409342,0.0,0.0,0,38.90286793,-77.0745035727,1473239013.0,3.91899999999 -3011,0.0,0.0,0.0,0.0,3934,127.0,7749.04,0.0,0.0,138.795924327,0.0,0.0,0,38.90286793,-77.0745444763,1473239014.0,3.172 -3012,0.0,0.0,0.0,0.0,3935,127.0,7752.66,0.0,0.0,139.09612807,0.0,0.0,0,38.9028675947,-77.0745862182,1473239015.0,3.99399999998 -3013,0.0,0.0,0.0,0.0,3936,128.0,7756.39,0.0,0.0,137.338137196,0.0,0.0,0,38.9028672595,-77.0746291336,1473239016.0,3.39600000001 -3014,0.0,0.0,0.0,0.0,3937,129.0,7760.01,0.0,0.0,135.590593887,0.0,0.0,0,38.9028669242,-77.0746709593,1473239017.0,3.80699999999 -3015,0.0,0.0,0.0,0.0,3938,130.0,7763.8,0.0,0.0,135.21344408,0.0,0.0,0,38.9028662536,-77.074714629,1473239018.0,3.71399999999 -3016,0.0,0.0,0.0,0.0,3939,130.0,7767.42,0.0,0.0,135.098147927,0.0,0.0,0,38.9028658345,-77.0747563709,1473239019.0,3.527 -3017,0.0,0.0,0.0,0.0,3940,131.0,7771.2,0.0,0.0,135.814445718,0.0,0.0,0,38.9028653316,-77.0747999568,1473239020.0,4.03100000001 -3018,0.0,0.0,0.0,0.0,3941,132.0,7774.84,0.0,0.0,135.610971456,0.0,0.0,0,38.9028655831,-77.0748418663,1473239021.0,3.26599999999 -3019,0.0,0.0,0.0,0.0,3942,132.0,7778.49,0.0,0.0,136.629636684,0.0,0.0,0,38.9028660022,-77.0748839434,1473239022.0,4.07799999999 -3020,0.0,0.0,0.0,0.0,3943,133.0,7782.12,0.0,0.0,135.973695271,0.0,0.0,0,38.9028666727,-77.0749257691,1473239023.0,3.238 -3021,0.0,0.0,0.0,0.0,3944,134.0,7785.76,0.0,0.0,136.163169454,0.0,0.0,0,38.9028675109,-77.0749677625,1473239024.0,4.06799999999 -3022,0.0,0.0,0.0,0.0,3945,135.0,7789.47,0.0,0.0,134.763341571,0.0,0.0,0,38.9028686844,-77.0750105102,1473239025.0,3.415 -3023,0.0,0.0,0.0,0.0,3946,135.0,7793.13,0.0,0.0,133.729775542,0.0,0.0,0,38.9028701093,-77.0750526711,1473239026.0,3.88200000001 -3024,0.0,0.0,0.0,0.0,3947,136.0,7796.95,0.0,0.0,133.684114276,0.0,0.0,0,38.9028720371,-77.0750965923,1473239027.0,3.75099999999 -3025,0.0,0.0,0.0,0.0,3948,137.0,7800.6,0.0,0.0,134.662469395,0.0,0.0,0,38.9028740488,-77.0751385856,1473239028.0,3.57399999999 -3026,0.0,0.0,0.0,0.0,3949,137.0,7804.4,0.0,0.0,136.08263456,0.0,0.0,0,38.9028762281,-77.0751822554,1473239029.0,4.03999999999 -3027,0.0,0.0,0.0,0.0,3950,138.0,7808.0,0.0,0.0,137.810072664,0.0,0.0,0,38.902878575,-77.0752237458,1473239030.0,3.172 -3028,0.0,0.0,0.0,0.0,3951,138.0,7811.61,0.0,0.0,137.974863489,0.0,0.0,0,38.9028810896,-77.0752651524,1473239031.0,4.00299999999 -3029,0.0,0.0,0.0,0.0,3952,139.0,7815.22,0.0,0.0,138.475095464,0.0,0.0,0,38.9028831851,-77.0753067266,1473239032.0,3.21000000001 -3030,0.0,0.0,0.0,0.0,3953,139.0,7818.83,0.0,0.0,136.199136108,0.0,0.0,0,38.9028850291,-77.075348217,1473239033.0,3.99399999998 -3031,0.0,0.0,0.0,0.0,3954,139.0,7822.61,0.0,0.0,134.425809755,0.0,0.0,0,38.9028867055,-77.0753918029,1473239034.0,3.56400000001 -3032,0.0,0.0,0.0,0.0,3955,140.0,7826.28,0.0,0.0,133.754554024,0.0,0.0,0,38.9028883819,-77.0754340477,1473239035.0,3.72299999999 -3033,0.0,0.0,0.0,0.0,3956,140.0,7830.16,0.0,0.0,134.413920394,0.0,0.0,0,38.9028895553,-77.0754787233,1473239036.0,3.975 -3034,0.0,0.0,0.0,0.0,3957,140.0,7833.8,0.0,0.0,136.545320633,0.0,0.0,0,38.9028904773,-77.0755207166,1473239037.0,3.33100000001 -3035,0.0,25.0,0.0,0.0,3958,141.0,7837.46,0.0,0.0,137.04871815,0.0,0.0,0,38.9028913155,-77.0755628776,1473239038.0,4.00299999999 -3036,0.0,25.0,0.0,0.0,3959,141.0,7841.02,0.0,0.0,139.324487334,0.0,0.0,0,38.9028920699,-77.0756038651,1473239039.0,3.135 -3037,0.0,25.0,0.0,0.0,3960,141.0,7844.57,0.0,0.0,139.248564112,0.0,0.0,0,38.9028930757,-77.0756448526,1473239040.0,3.984 -3038,0.0,0.0,0.0,0.0,3961,142.0,7848.23,0.0,0.0,139.297098399,0.0,0.0,0,38.9028944168,-77.0756870136,1473239041.0,3.368 -3039,0.0,0.0,0.0,0.0,3962,142.0,7851.77,0.0,0.0,138.05963459,0.0,0.0,0,38.9028956741,-77.0757277496,1473239042.0,3.686 -3040,0.0,0.0,0.0,0.0,3963,142.0,7855.44,0.0,0.0,138.129475754,0.0,0.0,0,38.9028965961,-77.0757700782,1473239043.0,3.69499999999 -3041,0.0,0.0,0.0,0.0,3964,143.0,7858.98,0.0,0.0,138.424643662,0.0,0.0,0,38.9028978534,-77.0758108143,1473239044.0,3.40600000001 -3042,0.0,0.0,0.0,0.0,3965,143.0,7862.68,0.0,0.0,137.899415808,0.0,0.0,0,38.9028989431,-77.0758534782,1473239045.0,3.99399999998 -3043,0.0,0.0,0.0,0.0,3966,143.0,7866.26,0.0,0.0,137.889537945,0.0,0.0,0,38.9029002003,-77.0758947171,1473239046.0,3.154 -3044,0.0,0.0,0.0,0.0,3967,144.0,7869.9,0.0,0.0,136.105886845,0.0,0.0,0,38.9029018767,-77.0759366266,1473239047.0,4.096 -3045,0.0,0.0,0.0,0.0,3968,144.0,7873.61,0.0,0.0,136.558074425,0.0,0.0,0,38.9029036369,-77.0759792905,1473239048.0,3.30299999999 -3046,0.0,0.0,0.0,0.0,3969,145.0,7877.24,0.0,0.0,134.992671826,0.0,0.0,0,38.9029050618,-77.0760211162,1473239049.0,3.96599999999 -3047,0.0,0.0,0.0,0.0,3970,145.0,7881.05,0.0,0.0,135.352725688,0.0,0.0,0,38.9029065706,-77.0760650374,1473239050.0,3.65800000001 -3048,0.0,0.0,0.0,0.0,3971,145.0,7884.61,0.0,0.0,136.455627111,0.0,0.0,0,38.9029080793,-77.0761060249,1473239051.0,3.499 -3049,0.0,0.0,0.0,0.0,3972,146.0,7888.34,0.0,0.0,137.166228843,0.0,0.0,0,38.9029093366,-77.0761490241,1473239052.0,3.975 -3050,0.0,29.0,0.0,0.0,3973,146.0,7891.89,0.0,0.0,138.547850589,0.0,0.0,0,38.9029104263,-77.0761898439,1473239053.0,3.163 -3051,0.0,29.0,0.0,0.0,3974,146.0,7895.47,0.0,0.0,139.656867309,0.0,0.0,0,38.9029114321,-77.0762311667,1473239054.0,4.03999999999 -3052,0.0,29.0,0.0,0.0,3975,147.0,7899.1,0.0,0.0,138.297350079,0.0,0.0,0,38.9029121865,-77.0762729086,1473239055.0,3.191 -3053,0.0,25.0,0.0,0.0,3976,147.0,7902.69,0.0,0.0,138.755906136,0.0,0.0,0,38.902912857,-77.0763143152,1473239056.0,3.96599999999 -3054,0.0,25.0,0.0,0.0,3977,147.0,7906.38,0.0,0.0,136.034231159,0.0,0.0,0,38.9029131923,-77.0763568953,1473239057.0,3.34000000001 -3055,0.0,25.0,0.0,0.0,3978,148.0,7910.06,0.0,0.0,134.899333562,0.0,0.0,0,38.9029132761,-77.0763993077,1473239058.0,3.95600000002 -3056,0.0,0.0,0.0,0.0,3979,148.0,7913.91,0.0,0.0,133.419584378,0.0,0.0,0,38.9029132761,-77.076443648,1473239059.0,3.64799999999 -3057,0.0,0.0,0.0,0.0,3980,148.0,7917.62,0.0,0.0,132.581692707,0.0,0.0,0,38.9029134437,-77.0764864795,1473239060.0,3.71399999999 -3058,0.0,0.0,0.0,0.0,3981,148.0,7921.54,0.0,0.0,133.235973021,0.0,0.0,0,38.9029136952,-77.0765316579,1473239061.0,4.03100000001 -3059,0.0,0.0,0.0,0.0,3982,149.0,7925.23,0.0,0.0,133.524931012,0.0,0.0,0,38.9029140305,-77.076574238,1473239062.0,3.35000000001 -3060,0.0,0.0,0.0,0.0,3983,149.0,7928.99,0.0,0.0,134.618522576,0.0,0.0,0,38.9029145334,-77.0766175725,1473239063.0,4.124 -3061,0.0,0.0,0.0,0.0,3984,149.0,7932.68,0.0,0.0,134.521627117,0.0,0.0,0,38.9029157069,-77.0766600687,1473239064.0,3.275 -3062,0.0,0.0,0.0,0.0,3985,150.0,7936.39,0.0,0.0,134.727500507,0.0,0.0,0,38.9029175509,-77.0767027326,1473239065.0,4.124 -3063,0.0,0.0,0.0,0.0,3986,150.0,7940.15,0.0,0.0,133.60725713,0.0,0.0,0,38.9029191434,-77.076746067,1473239066.0,3.39600000001 -3064,0.0,0.0,0.0,0.0,3987,150.0,7943.87,0.0,0.0,132.800292506,0.0,0.0,0,38.9029213227,-77.0767888986,1473239067.0,4.00299999999 -3065,0.0,0.0,0.0,0.0,3988,150.0,7947.75,0.0,0.0,132.300890024,0.0,0.0,0,38.9029240049,-77.0768334903,1473239068.0,3.69499999999 -3066,0.0,0.0,0.0,0.0,3989,151.0,7951.46,0.0,0.0,132.365176613,0.0,0.0,0,38.9029269386,-77.0768760704,1473239069.0,3.67599999999 -3067,0.0,0.0,0.0,0.0,3990,151.0,7955.36,0.0,0.0,133.293787587,0.0,0.0,0,38.9029307105,-77.0769207459,1473239070.0,4.06799999999 -3068,0.0,0.0,0.0,0.0,3991,151.0,7959.04,0.0,0.0,134.456481501,0.0,0.0,0,38.902934147,-77.0769629907,1473239071.0,3.32199999999 -3069,0.0,0.0,0.0,0.0,3992,152.0,7962.75,0.0,0.0,135.612722939,0.0,0.0,0,38.9029376674,-77.0770054869,1473239072.0,4.106 -3070,0.0,0.0,0.0,0.0,3993,152.0,7966.41,0.0,0.0,135.77788384,0.0,0.0,0,38.9029409364,-77.0770474803,1473239073.0,3.21899999999 -3071,0.0,0.0,0.0,0.0,3994,152.0,7970.05,0.0,0.0,135.728580444,0.0,0.0,0,38.9029444568,-77.0770892221,1473239074.0,4.06799999999 -3072,0.0,0.0,0.0,0.0,3995,153.0,7973.79,0.0,0.0,134.237704175,0.0,0.0,0,38.9029484801,-77.0771319699,1473239075.0,3.424 -3073,0.0,0.0,0.0,0.0,3996,153.0,7977.46,0.0,0.0,133.270102151,0.0,0.0,0,38.9029526711,-77.0771739632,1473239076.0,3.94700000001 -3074,0.0,0.0,0.0,0.0,3997,153.0,7981.32,0.0,0.0,133.116351759,0.0,0.0,0,38.9029572811,-77.077218052,1473239077.0,3.75099999999 -3075,0.0,0.0,0.0,0.0,3998,153.0,7984.97,0.0,0.0,134.012173642,0.0,0.0,0,38.9029615559,-77.0772597939,1473239078.0,3.592 -3076,0.0,0.0,0.0,0.0,3999,153.0,7988.76,0.0,0.0,135.810612982,0.0,0.0,0,38.9029666688,-77.0773029607,1473239079.0,4.012 -3077,0.0,0.0,0.0,0.0,4000,153.0,7992.33,0.0,0.0,136.373457829,0.0,0.0,0,38.9029713627,-77.0773436967,1473239080.0,3.21000000001 -3078,0.0,0.0,0.0,0.0,4001,153.0,7995.96,0.0,0.0,137.894476699,0.0,0.0,0,38.9029761404,-77.0773851033,1473239081.0,4.05000000001 -3079,0.0,0.0,0.0,0.0,4002,153.0,7999.57,0.0,0.0,136.392943938,0.0,0.0,0,38.9029805828,-77.0774263423,1473239082.0,3.21899999999 -3080,0.0,0.0,0.0,0.0,4003,153.0,8003.25,0.0,0.0,137.02026595,0.0,0.0,0,38.9029850252,-77.0774683356,1473239083.0,4.106 -3081,0.0,0.0,0.0,0.0,4004,154.0,8006.97,0.0,0.0,134.320130808,0.0,0.0,0,38.9029895514,-77.0775109157,1473239084.0,3.35900000001 -3082,0.0,0.0,0.0,0.0,4005,153.0,8010.63,0.0,0.0,133.65162864,0.0,0.0,0,38.90299391,-77.0775527414,1473239085.0,3.984 -3083,0.0,0.0,0.0,0.0,4006,154.0,8014.43,0.0,0.0,132.514763062,0.0,0.0,0,38.9029983524,-77.0775960758,1473239086.0,3.63 -3084,0.0,0.0,0.0,0.0,4007,153.0,8018.13,0.0,0.0,131.954456862,0.0,0.0,0,38.9030024596,-77.0776384883,1473239087.0,3.77900000001 -3085,0.0,0.0,0.0,0.0,4008,154.0,8022.07,0.0,0.0,131.86226045,0.0,0.0,0,38.9030068181,-77.0776834991,1473239088.0,4.022 -3086,0.0,0.0,0.0,0.0,4009,154.0,8025.78,0.0,0.0,131.764179765,0.0,0.0,0,38.9030105062,-77.0777259953,1473239089.0,3.43399999999 -3087,0.0,0.0,0.0,0.0,4010,154.0,8029.58,0.0,0.0,133.285327536,0.0,0.0,0,38.9030150324,-77.0777694136,1473239090.0,4.17100000001 -3088,0.0,0.0,0.0,0.0,4011,154.0,8033.3,0.0,0.0,133.582224196,0.0,0.0,0,38.9030196425,-77.0778119098,1473239091.0,3.30299999999 -3089,0.0,0.0,0.0,0.0,4012,154.0,8037.03,0.0,0.0,135.083927469,0.0,0.0,0,38.903024001,-77.0778545737,1473239092.0,4.124 -3090,0.0,0.0,0.0,0.0,4013,155.0,8040.75,0.0,0.0,134.592325091,0.0,0.0,0,38.9030283596,-77.07789707,1473239093.0,3.312 -3091,0.0,26.0,0.0,0.0,4014,154.0,8044.41,0.0,0.0,135.422553542,0.0,0.0,0,38.9030331373,-77.0779388119,1473239094.0,4.00299999999 -3092,0.0,26.0,0.0,0.0,4015,155.0,8048.19,0.0,0.0,134.906739146,0.0,0.0,0,38.9030382503,-77.0779818948,1473239095.0,3.536 -3093,0.0,30.0,0.0,0.0,4016,154.0,8051.79,0.0,0.0,135.768786345,0.0,0.0,0,38.9030431118,-77.0780229662,1473239096.0,3.686 -3094,0.0,30.0,0.0,0.0,4017,155.0,8055.57,0.0,0.0,137.163785435,0.0,0.0,0,38.9030483924,-77.0780659653,1473239097.0,3.844 -3095,0.0,25.0,0.0,0.0,4018,154.0,8059.16,0.0,0.0,138.111472101,0.0,0.0,0,38.9030532539,-77.078106869,1473239098.0,3.34000000001 -3096,0.0,25.0,0.0,0.0,4019,154.0,8062.78,0.0,0.0,140.091866302,0.0,0.0,0,38.9030577801,-77.0781482756,1473239099.0,3.9 -3097,0.0,25.0,0.0,0.0,4020,154.0,8066.27,0.0,0.0,138.988835165,0.0,0.0,0,38.9030618872,-77.0781881735,1473239100.0,3.14400000001 -3098,0.0,27.0,0.0,0.0,4021,154.0,8069.87,0.0,0.0,140.365972371,0.0,0.0,0,38.9030662458,-77.0782292448,1473239101.0,4.03100000001 -3099,0.0,27.0,0.0,0.0,4022,154.0,8073.47,0.0,0.0,137.76240458,0.0,0.0,0,38.9030706044,-77.0782703999,1473239102.0,3.2 -3100,0.0,26.0,0.0,0.0,4023,154.0,8077.12,0.0,0.0,136.73315489,0.0,0.0,0,38.9030748792,-77.078312058,1473239103.0,4.05000000001 -3101,0.0,26.0,0.0,0.0,4024,155.0,8080.83,0.0,0.0,135.737034469,0.0,0.0,0,38.903079154,-77.0783545543,1473239104.0,3.37799999999 -3102,0.0,26.0,0.0,0.0,4025,154.0,8084.45,0.0,0.0,134.733629864,0.0,0.0,0,38.9030833449,-77.078395877,1473239105.0,3.85399999999 -3103,0.0,0.0,0.0,0.0,4026,155.0,8088.29,0.0,0.0,134.709587124,0.0,0.0,0,38.903087955,-77.0784397982,1473239106.0,3.788 -3104,0.0,0.0,0.0,0.0,4027,155.0,8091.88,0.0,0.0,135.324497601,0.0,0.0,0,38.9030923136,-77.0784807857,1473239107.0,3.43399999999 -3105,0.0,0.0,0.0,0.0,4028,155.0,8095.66,0.0,0.0,136.128023987,0.0,0.0,0,38.9030970074,-77.0785239525,1473239108.0,4.106 -3106,0.0,0.0,0.0,0.0,4029,155.0,8099.28,0.0,0.0,136.66116078,0.0,0.0,0,38.903101366,-77.0785652753,1473239109.0,3.172 -3107,0.0,0.0,0.0,0.0,4030,155.0,8102.92,0.0,0.0,136.994750314,0.0,0.0,0,38.9031057246,-77.0786068495,1473239110.0,4.06799999999 -3108,0.0,0.0,0.0,0.0,4031,155.0,8106.62,0.0,0.0,135.707370262,0.0,0.0,0,38.9031097479,-77.078649262,1473239111.0,3.26599999999 -3109,0.0,0.0,0.0,0.0,4032,155.0,8110.32,0.0,0.0,134.862002894,0.0,0.0,0,38.9031139389,-77.0786915068,1473239112.0,4.07799999999 -3110,0.0,0.0,0.0,0.0,4033,156.0,8114.11,0.0,0.0,132.850241546,0.0,0.0,0,38.9031177945,-77.0787350088,1473239113.0,3.51799999999 -3111,0.0,0.0,0.0,0.0,4034,155.0,8117.82,0.0,0.0,131.865873569,0.0,0.0,0,38.9031216502,-77.0787774213,1473239114.0,3.88200000001 -3112,0.0,0.0,0.0,0.0,4035,155.0,8121.76,0.0,0.0,131.946467433,0.0,0.0,0,38.9031260088,-77.0788225159,1473239115.0,3.90999999999 -3113,0.0,0.0,0.0,0.0,4036,155.0,8125.49,0.0,0.0,132.503665361,0.0,0.0,0,38.9031299483,-77.0788651798,1473239116.0,3.499 -3114,0.0,0.0,0.0,0.0,4037,156.0,8129.35,0.0,0.0,133.578670898,0.0,0.0,0,38.9031340554,-77.0789094362,1473239117.0,4.15200000001 -3115,0.0,0.0,0.0,0.0,4038,156.0,8133.06,0.0,0.0,134.118770009,0.0,0.0,0,38.9031376597,-77.0789519325,1473239118.0,3.24700000001 -3116,0.0,0.0,0.0,0.0,4039,156.0,8136.78,0.0,0.0,135.076976334,0.0,0.0,0,38.9031411801,-77.0789945964,1473239119.0,4.14299999999 -3117,0.0,0.0,0.0,0.0,4040,156.0,8140.53,0.0,0.0,134.168469132,0.0,0.0,0,38.9031448681,-77.0790375955,1473239120.0,3.32199999999 -3118,0.0,0.0,0.0,0.0,4041,155.0,8144.24,0.0,0.0,133.323944865,0.0,0.0,0,38.9031485561,-77.0790800918,1473239121.0,4.07799999999 -3119,0.0,0.0,0.0,0.0,4042,156.0,8148.06,0.0,0.0,131.928833818,0.0,0.0,0,38.9031524956,-77.0791237615,1473239122.0,3.555 -3120,0.0,0.0,0.0,0.0,4043,156.0,8151.76,0.0,0.0,131.203482402,0.0,0.0,0,38.9031566028,-77.0791661739,1473239123.0,3.89099999999 -3121,0.0,0.0,0.0,0.0,4044,156.0,8155.72,0.0,0.0,131.257606975,0.0,0.0,0,38.9031612128,-77.0792114362,1473239124.0,3.975 -3122,0.0,0.0,0.0,0.0,4045,156.0,8159.43,0.0,0.0,131.893430108,0.0,0.0,0,38.9031653199,-77.0792538486,1473239125.0,3.47100000001 -3123,0.0,0.0,0.0,0.0,4046,156.0,8163.26,0.0,0.0,133.591494559,0.0,0.0,0,38.9031695109,-77.079297686,1473239126.0,4.17100000001 -3124,0.0,0.0,0.0,0.0,4047,156.0,8166.95,0.0,0.0,134.816352114,0.0,0.0,0,38.9031730313,-77.0793399308,1473239127.0,3.24700000001 -3125,0.0,0.0,0.0,0.0,4048,156.0,8170.62,0.0,0.0,135.106839681,0.0,0.0,0,38.9031766355,-77.0793820918,1473239128.0,4.106 -3126,0.0,0.0,0.0,0.0,4049,156.0,8174.31,0.0,0.0,135.004032588,0.0,0.0,0,38.9031797368,-77.0794243366,1473239129.0,3.28399999999 -3127,0.0,0.0,0.0,0.0,4050,157.0,8177.98,0.0,0.0,134.370760922,0.0,0.0,0,38.9031831734,-77.0794664975,1473239130.0,4.05900000001 -3128,0.0,0.0,0.0,0.0,4051,157.0,8181.8,0.0,0.0,133.812664586,0.0,0.0,0,38.90318661,-77.0795103349,1473239131.0,3.62000000001 -3129,0.0,28.0,0.0,0.0,4052,156.0,8185.43,0.0,0.0,133.729001363,0.0,0.0,0,38.9031897113,-77.0795519929,1473239132.0,3.65800000001 -3130,0.0,28.0,0.0,0.0,4053,157.0,8189.27,0.0,0.0,134.336065802,0.0,0.0,0,38.9031928964,-77.0795960817,1473239133.0,3.984 -3131,0.0,28.0,0.0,0.0,4054,156.0,8192.88,0.0,0.0,135.755541294,0.0,0.0,0,38.9031959977,-77.0796374884,1473239134.0,3.29399999999 -3132,0.0,0.0,0.0,0.0,4055,156.0,8196.56,0.0,0.0,137.638949797,0.0,0.0,0,38.9031989314,-77.0796797331,1473239135.0,4.096 -3133,0.0,0.0,0.0,0.0,4056,156.0,8200.2,0.0,0.0,137.491161283,0.0,0.0,0,38.9032016974,-77.079721475,1473239136.0,3.172 -3134,0.0,0.0,0.0,0.0,4057,156.0,8203.79,0.0,0.0,139.91605037,0.0,0.0,0,38.9032043796,-77.079762714,1473239137.0,3.99399999998 -3135,0.0,0.0,0.0,0.0,4058,156.0,8207.37,0.0,0.0,137.967776461,0.0,0.0,0,38.9032068104,-77.0798038691,1473239138.0,3.21899999999 -3136,0.0,26.0,0.0,0.0,4059,156.0,8210.96,0.0,0.0,137.728728066,0.0,0.0,0,38.9032095764,-77.0798451081,1473239139.0,3.95600000002 -3137,0.0,26.0,0.0,0.0,4060,156.0,8214.63,0.0,0.0,135.875958778,0.0,0.0,0,38.90321251,-77.0798873529,1473239140.0,3.44299999999 -3138,0.0,26.0,0.0,0.0,4061,156.0,8218.27,0.0,0.0,134.467125989,0.0,0.0,0,38.9032156952,-77.0799290948,1473239141.0,3.80699999999 -3139,0.0,0.0,0.0,0.0,4062,156.0,8222.14,0.0,0.0,134.367478184,0.0,0.0,0,38.9032192994,-77.079973435,1473239142.0,3.88200000001 -3140,0.0,0.0,0.0,0.0,4063,156.0,8225.78,0.0,0.0,134.767272672,0.0,0.0,0,38.9032224845,-77.0800151769,1473239143.0,3.40600000001 -3141,0.0,0.0,0.0,0.0,4064,156.0,8229.54,0.0,0.0,135.272987917,0.0,0.0,0,38.9032255858,-77.0800583437,1473239144.0,4.106 -3142,0.0,0.0,0.0,0.0,4065,157.0,8233.19,0.0,0.0,136.46126981,0.0,0.0,0,38.9032285195,-77.0801002532,1473239145.0,3.191 -3143,0.0,0.0,0.0,0.0,4066,157.0,8236.85,0.0,0.0,135.616226041,0.0,0.0,0,38.9032317046,-77.0801422466,1473239146.0,4.087 -3144,0.0,0.0,0.0,0.0,4067,157.0,8240.57,0.0,0.0,135.215976792,0.0,0.0,0,38.9032349735,-77.0801849943,1473239147.0,3.35900000001 -3145,0.0,0.0,0.0,0.0,4068,157.0,8244.27,0.0,0.0,133.185733559,0.0,0.0,0,38.9032381587,-77.0802274905,1473239148.0,3.975 -3146,0.0,0.0,0.0,0.0,4069,157.0,8248.12,0.0,0.0,132.511418354,0.0,0.0,0,38.9032410923,-77.0802716631,1473239149.0,3.72299999999 -3147,0.0,0.0,0.0,0.0,4070,157.0,8251.81,0.0,0.0,133.060837028,0.0,0.0,0,38.903244026,-77.0803140756,1473239150.0,3.64799999999 -3148,0.0,0.0,0.0,0.0,4071,157.0,8255.71,0.0,0.0,134.16285861,0.0,0.0,0,38.9032473788,-77.0803588349,1473239151.0,4.096 -3149,0.0,0.0,0.0,0.0,4072,156.0,8259.36,0.0,0.0,135.888907583,0.0,0.0,0,38.9032499772,-77.0804007445,1473239152.0,3.2 -3150,0.0,0.0,0.0,0.0,4073,157.0,8262.99,0.0,0.0,136.915988113,0.0,0.0,0,38.9032525755,-77.0804424863,1473239153.0,4.06799999999 -3151,0.0,0.0,0.0,0.0,4074,157.0,8266.61,0.0,0.0,137.601890924,0.0,0.0,0,38.9032550901,-77.0804840606,1473239154.0,3.21000000001 -3152,0.0,27.0,0.0,0.0,4075,157.0,8270.24,0.0,0.0,137.104030503,0.0,0.0,0,38.9032571856,-77.0805258024,1473239155.0,4.022 -3153,0.0,27.0,0.0,0.0,4076,157.0,8273.95,0.0,0.0,135.562743837,0.0,0.0,0,38.9032590296,-77.0805685502,1473239156.0,3.43399999999 -3154,0.0,26.0,0.0,0.0,4077,157.0,8277.6,0.0,0.0,134.824850263,0.0,0.0,0,38.9032603707,-77.0806105435,1473239157.0,3.81599999999 -3155,0.0,26.0,0.0,0.0,4078,156.0,8281.44,0.0,0.0,134.521783794,0.0,0.0,0,38.9032619633,-77.0806547999,1473239158.0,3.79799999999 -3156,0.0,26.0,0.0,0.0,4079,156.0,8285.08,0.0,0.0,134.522410502,0.0,0.0,0,38.9032633882,-77.0806967095,1473239159.0,3.47999999999 -3157,0.0,0.0,0.0,0.0,4080,156.0,8288.86,0.0,0.0,135.116639,0.0,0.0,0,38.9032648131,-77.0807402954,1473239160.0,4.07799999999 -3158,0.0,0.0,0.0,0.0,4081,157.0,8292.52,0.0,0.0,134.959704888,0.0,0.0,0,38.9032668248,-77.0807823725,1473239161.0,3.24700000001 -3159,0.0,0.0,0.0,0.0,4082,157.0,8296.23,0.0,0.0,135.726666471,0.0,0.0,0,38.9032689203,-77.0808250364,1473239162.0,4.13300000001 -3160,0.0,0.0,0.0,0.0,4083,157.0,8299.94,0.0,0.0,134.805652267,0.0,0.0,0,38.9032710157,-77.0808677841,1473239163.0,3.28399999999 -3161,0.0,0.0,0.0,0.0,4084,157.0,8303.64,0.0,0.0,134.715400595,0.0,0.0,0,38.9032729436,-77.0809103642,1473239164.0,4.07799999999 -3162,0.0,0.0,0.0,0.0,4085,157.0,8307.46,0.0,0.0,133.1441265,0.0,0.0,0,38.9032744523,-77.0809542853,1473239165.0,3.47999999999 -3163,0.0,0.0,0.0,0.0,4086,157.0,8311.16,0.0,0.0,133.36612639,0.0,0.0,0,38.9032758772,-77.0809968654,1473239166.0,3.872 -3164,0.0,0.0,0.0,0.0,4087,157.0,8315.07,0.0,0.0,132.931125564,0.0,0.0,0,38.903277386,-77.08104196,1473239167.0,3.85399999999 -3165,0.0,25.0,0.0,0.0,4088,157.0,8318.79,0.0,0.0,132.418290463,0.0,0.0,0,38.9032787271,-77.0810847916,1473239168.0,3.54599999999 -3166,0.0,25.0,0.0,0.0,4089,157.0,8322.63,0.0,0.0,133.164542952,0.0,0.0,0,38.9032803196,-77.0811289642,1473239169.0,4.03999999999 -3167,0.0,29.0,0.0,0.0,4090,157.0,8326.36,0.0,0.0,132.283010051,0.0,0.0,0,38.9032818284,-77.0811719634,1473239170.0,3.40600000001 -3168,0.0,29.0,0.0,0.0,4091,157.0,8330.15,0.0,0.0,134.785044111,0.0,0.0,0,38.90328384,-77.0812156331,1473239171.0,4.19900000001 -3169,0.0,29.0,0.0,0.0,4092,157.0,8333.89,0.0,0.0,131.501496612,0.0,0.0,0,38.903286187,-77.0812586322,1473239172.0,3.28399999999 -3170,0.0,0.0,0.0,0.0,4093,158.0,8337.62,0.0,0.0,135.273621644,0.0,0.0,0,38.9032891206,-77.0813013799,1473239173.0,4.17100000001 -3171,0.0,0.0,0.0,0.0,4094,157.0,8341.34,0.0,0.0,131.51871665,0.0,0.0,0,38.903292641,-77.0813441277,1473239174.0,3.34000000001 -3172,0.0,0.0,0.0,0.0,4095,158.0,8345.08,0.0,0.0,134.490455835,0.0,0.0,0,38.9032964967,-77.0813869592,1473239175.0,4.18000000001 -3173,0.0,0.0,0.0,0.0,4096,158.0,8348.87,0.0,0.0,130.469260087,0.0,0.0,0,38.9033004362,-77.0814302936,1473239176.0,3.38699999999 -3174,0.0,0.0,0.0,0.0,4097,157.0,8352.64,0.0,0.0,132.672917035,0.0,0.0,0,38.9033052139,-77.0814732928,1473239177.0,4.14299999999 -3175,0.0,0.0,0.0,0.0,4098,158.0,8356.52,0.0,0.0,130.579592502,0.0,0.0,0,38.9033104945,-77.0815175492,1473239178.0,3.58299999999 -3176,0.0,0.0,0.0,0.0,4099,158.0,8360.3,0.0,0.0,130.591256152,0.0,0.0,0,38.9033157751,-77.0815605484,1473239179.0,3.96599999999 -3177,0.0,0.0,0.0,0.0,4100,158.0,8364.18,0.0,0.0,130.340136976,0.0,0.0,0,38.9033210557,-77.0816048048,1473239180.0,3.76000000001 -3178,0.0,0.0,0.0,0.0,4101,158.0,8367.95,0.0,0.0,130.070936522,0.0,0.0,0,38.9033261687,-77.081647804,1473239181.0,3.79799999999 -3179,0.0,0.0,0.0,0.0,4102,158.0,8371.91,0.0,0.0,131.844498831,0.0,0.0,0,38.903332036,-77.0816928148,1473239182.0,4.05000000001 -3180,0.0,0.0,0.0,0.0,4103,159.0,8375.65,0.0,0.0,131.420248959,0.0,0.0,0,38.903337568,-77.0817353949,1473239183.0,3.43399999999 -3181,0.0,0.0,0.0,0.0,4104,159.0,8379.5,0.0,0.0,134.363570372,0.0,0.0,0,38.903343603,-77.0817790646,1473239184.0,4.17100000001 -3182,0.0,0.0,0.0,0.0,4105,159.0,8383.19,0.0,0.0,132.261045515,0.0,0.0,0,38.9033491351,-77.0818210579,1473239185.0,3.238 -3183,0.0,0.0,0.0,0.0,4106,159.0,8386.94,0.0,0.0,134.835867975,0.0,0.0,0,38.9033548348,-77.081863638,1473239186.0,4.20799999999 -3184,0.0,0.0,0.0,0.0,4107,159.0,8390.68,0.0,0.0,130.088809547,0.0,0.0,0,38.9033605345,-77.0819061343,1473239187.0,3.35000000001 -3185,0.0,0.0,0.0,0.0,4108,159.0,8394.51,0.0,0.0,133.420663222,0.0,0.0,0,38.9033669047,-77.0819495525,1473239188.0,4.28299999998 -3186,0.0,0.0,0.0,0.0,4109,159.0,8398.34,0.0,0.0,128.948993137,0.0,0.0,0,38.9033735264,-77.081992887,1473239189.0,3.415 -3187,0.0,28.0,0.0,0.0,4110,159.0,8402.14,0.0,0.0,132.543504106,0.0,0.0,0,38.9033803158,-77.0820357185,1473239190.0,4.18899999999 -3188,0.0,28.0,0.0,0.0,4111,159.0,8405.95,0.0,0.0,129.711299708,0.0,0.0,0,38.9033873565,-77.0820787176,1473239191.0,3.46199999999 -3189,0.0,28.0,0.0,0.0,4112,159.0,8409.71,0.0,0.0,131.119923077,0.0,0.0,0,38.9033946488,-77.0821210463,1473239192.0,4.096 -3190,0.0,0.0,0.0,0.0,4113,160.0,8413.61,0.0,0.0,129.17815849,0.0,0.0,0,38.9034018572,-77.0821650513,1473239193.0,3.67599999999 -3191,0.0,0.0,0.0,0.0,4114,159.0,8417.46,0.0,0.0,128.171979053,0.0,0.0,0,38.9034093171,-77.0822084695,1473239194.0,3.99399999998 -3192,0.0,0.0,0.0,0.0,4115,160.0,8421.47,0.0,0.0,127.856570389,0.0,0.0,0,38.9034172799,-77.0822534803,1473239195.0,3.96599999999 -3193,0.0,0.0,0.0,0.0,4116,160.0,8425.35,0.0,0.0,127.115286411,0.0,0.0,0,38.9034249075,-77.08229715,1473239196.0,3.75099999999 -3194,0.0,0.0,0.0,0.0,4117,160.0,8429.37,0.0,0.0,128.573623149,0.0,0.0,0,38.903432535,-77.0823424961,1473239197.0,4.22699999999 -3195,0.0,0.0,0.0,0.0,4118,160.0,8433.21,0.0,0.0,127.520461238,0.0,0.0,0,38.9034392405,-77.0823859144,1473239198.0,3.47100000001 -3196,0.0,0.0,0.0,0.0,4119,160.0,8437.12,0.0,0.0,130.444799827,0.0,0.0,0,38.9034460299,-77.0824301708,1473239199.0,4.30099999999 -3197,0.0,0.0,0.0,0.0,4120,160.0,8440.97,0.0,0.0,128.288717368,0.0,0.0,0,38.9034527354,-77.0824737567,1473239200.0,3.424 -3198,0.0,0.0,0.0,0.0,4121,160.0,8444.85,0.0,0.0,131.473355303,0.0,0.0,0,38.9034596924,-77.0825175103,1473239201.0,4.292 -3199,0.0,0.0,0.0,0.0,4122,160.0,8448.68,0.0,0.0,128.836942627,0.0,0.0,0,38.903466817,-77.0825607609,1473239202.0,3.38699999999 -3200,0.0,0.0,0.0,0.0,4123,160.0,8452.52,0.0,0.0,131.504940259,0.0,0.0,0,38.9034741931,-77.0826040115,1473239203.0,4.26400000002 -3201,0.0,0.0,0.0,0.0,4124,161.0,8456.41,0.0,0.0,129.567826794,0.0,0.0,0,38.9034815691,-77.0826478489,1473239204.0,3.48999999999 -3202,0.0,0.0,0.0,0.0,4125,161.0,8460.18,0.0,0.0,130.263402751,0.0,0.0,0,38.9034888614,-77.0826902613,1473239205.0,4.05900000001 -3203,0.0,0.0,0.0,0.0,4126,161.0,8464.1,0.0,0.0,129.466307374,0.0,0.0,0,38.9034959022,-77.0827346016,1473239206.0,3.77 -3204,0.0,0.0,0.0,0.0,4127,161.0,8467.91,0.0,0.0,129.025339236,0.0,0.0,0,38.9035030268,-77.0827775169,1473239207.0,3.844 -3205,0.0,0.0,0.0,0.0,4128,161.0,8471.89,0.0,0.0,129.172379702,0.0,0.0,0,38.9035102352,-77.0828225277,1473239208.0,4.05000000001 -3206,0.0,0.0,0.0,0.0,4129,161.0,8475.71,0.0,0.0,128.477799481,0.0,0.0,0,38.9035170246,-77.0828656945,1473239209.0,3.57399999999 -3207,0.0,0.0,0.0,0.0,4130,161.0,8479.68,0.0,0.0,130.612521839,0.0,0.0,0,38.9035241492,-77.0829105377,1473239210.0,4.27300000001 -3208,0.0,0.0,0.0,0.0,4131,161.0,8483.51,0.0,0.0,129.369728603,0.0,0.0,0,38.9035310224,-77.0829537883,1473239211.0,3.368 -3209,0.0,0.0,0.0,0.0,4132,161.0,8487.36,0.0,0.0,132.880504186,0.0,0.0,0,38.9035379793,-77.0829972904,1473239212.0,4.27300000001 -3210,0.0,0.0,0.0,0.0,4133,160.0,8491.15,0.0,0.0,130.02686096,0.0,0.0,0,38.9035446011,-77.0830401219,1473239213.0,3.33100000001 -3211,0.0,28.0,0.0,0.0,4134,160.0,8494.92,0.0,0.0,133.246886291,0.0,0.0,0,38.9035513066,-77.083082702,1473239214.0,4.217 -3212,0.0,28.0,0.0,0.0,4135,160.0,8498.72,0.0,0.0,129.182203949,0.0,0.0,0,38.9035580121,-77.0831257012,1473239215.0,3.415 -3213,0.0,28.0,0.0,0.0,4136,161.0,8502.52,0.0,0.0,131.869486885,0.0,0.0,0,38.9035651367,-77.0831685327,1473239216.0,4.217 -3214,0.0,28.0,0.0,0.0,4137,161.0,8506.43,0.0,0.0,128.95604776,0.0,0.0,0,38.9035725128,-77.0832126215,1473239217.0,3.57399999999 -3215,0.0,29.0,0.0,0.0,4138,160.0,8510.26,0.0,0.0,130.667046789,0.0,0.0,0,38.9035798889,-77.0832557045,1473239218.0,4.03999999999 -3216,0.0,29.0,0.0,0.0,4139,161.0,8514.18,0.0,0.0,130.087930431,0.0,0.0,0,38.9035878517,-77.0832997095,1473239219.0,3.704 -3217,0.0,29.0,0.0,0.0,4140,160.0,8517.96,0.0,0.0,130.46159685,0.0,0.0,0,38.9035959821,-77.0833421219,1473239220.0,3.863 -3218,0.0,0.0,0.0,0.0,4141,161.0,8521.87,0.0,0.0,130.873293123,0.0,0.0,0,38.9036046993,-77.0833857916,1473239221.0,3.9 -3219,0.0,0.0,0.0,0.0,4142,161.0,8525.63,0.0,0.0,129.702851329,0.0,0.0,0,38.9036136679,-77.0834275335,1473239222.0,3.639 -3220,0.0,0.0,0.0,0.0,4143,161.0,8529.54,0.0,0.0,131.657690006,0.0,0.0,0,38.903622888,-77.0834711194,1473239223.0,4.15200000001 -3221,0.0,29.0,0.0,0.0,4144,160.0,8533.33,0.0,0.0,129.657278208,0.0,0.0,0,38.9036321919,-77.0835131127,1473239224.0,3.44299999999 -3222,0.0,29.0,0.0,0.0,4145,160.0,8537.18,0.0,0.0,132.081664206,0.0,0.0,0,38.9036415797,-77.0835557766,1473239225.0,4.22699999999 -3223,0.0,29.0,0.0,0.0,4146,161.0,8540.93,0.0,0.0,129.590359824,0.0,0.0,0,38.9036504645,-77.0835975185,1473239226.0,3.34000000001 -3224,0.0,30.0,0.0,0.0,4147,161.0,8544.78,0.0,0.0,134.25065469,0.0,0.0,0,38.9036600199,-77.0836402662,1473239227.0,4.292 -3225,0.0,30.0,0.0,0.0,4148,161.0,8548.62,0.0,0.0,130.215526426,0.0,0.0,0,38.9036694076,-77.0836827625,1473239228.0,3.35900000001 -3226,0.0,26.0,0.0,0.0,4149,161.0,8552.36,0.0,0.0,134.732215348,0.0,0.0,0,38.9036790468,-77.0837241691,1473239229.0,4.124 -3227,0.0,26.0,0.0,0.0,4150,161.0,8556.11,0.0,0.0,130.490780911,0.0,0.0,0,38.9036883507,-77.0837657433,1473239230.0,3.35900000001 -3228,0.0,28.0,0.0,0.0,4151,161.0,8559.9,0.0,0.0,133.613130411,0.0,0.0,0,38.9036981575,-77.0838074852,1473239231.0,4.20799999999 -3229,0.0,28.0,0.0,0.0,4152,161.0,8563.74,0.0,0.0,130.053068408,0.0,0.0,0,38.903708132,-77.0838498976,1473239232.0,3.46199999999 -3230,0.0,27.0,0.0,0.0,4153,161.0,8567.54,0.0,0.0,130.836082213,0.0,0.0,0,38.9037185255,-77.0838917233,1473239233.0,4.13300000001 -3231,0.0,27.0,0.0,0.0,4154,161.0,8571.46,0.0,0.0,129.724265738,0.0,0.0,0,38.903729422,-77.0839346386,1473239234.0,3.65800000001 -3232,0.0,28.0,0.0,0.0,4155,161.0,8575.26,0.0,0.0,129.490982719,0.0,0.0,0,38.9037405699,-77.0839761291,1473239235.0,3.91899999999 -3233,0.0,28.0,0.0,0.0,4156,161.0,8579.22,0.0,0.0,129.198532842,0.0,0.0,0,38.9037528075,-77.0840189606,1473239236.0,3.91899999999 -3234,0.0,28.0,0.0,0.0,4157,161.0,8583.05,0.0,0.0,128.427227907,0.0,0.0,0,38.9037649613,-77.0840602834,1473239237.0,3.704 -3235,0.0,0.0,0.0,0.0,4158,161.0,8587.02,0.0,0.0,129.601992841,0.0,0.0,0,38.903777618,-77.0841031149,1473239238.0,4.20799999999 -3236,0.0,0.0,0.0,0.0,4159,162.0,8590.86,0.0,0.0,128.21907589,0.0,0.0,0,38.9037898555,-77.0841444377,1473239239.0,3.47999999999 -3237,0.0,0.0,0.0,0.0,4160,162.0,8594.72,0.0,0.0,131.302670276,0.0,0.0,0,38.9038021769,-77.0841860957,1473239240.0,4.26400000002 -3238,0.0,0.0,0.0,0.0,4161,162.0,8598.54,0.0,0.0,129.507825412,0.0,0.0,0,38.9038144983,-77.0842272509,1473239241.0,3.368 -3239,0.0,0.0,0.0,0.0,4162,162.0,8602.36,0.0,0.0,133.559053916,0.0,0.0,0,38.9038266521,-77.084268406,1473239242.0,4.255 -3240,0.0,0.0,0.0,0.0,4163,162.0,8606.14,0.0,0.0,130.502871063,0.0,0.0,0,38.9038385544,-77.0843092259,1473239243.0,3.33100000001 -3241,0.0,28.0,0.0,0.0,4164,162.0,8609.88,0.0,0.0,133.28317424,0.0,0.0,0,38.9038502052,-77.0843497105,1473239244.0,4.18899999999 -3242,0.0,28.0,0.0,0.0,4165,161.0,8613.68,0.0,0.0,130.301317567,0.0,0.0,0,38.9038618561,-77.0843909495,1473239245.0,3.44299999999 -3243,0.0,29.0,0.0,0.0,4166,162.0,8617.43,0.0,0.0,132.173714024,0.0,0.0,0,38.9038731717,-77.0844316855,1473239246.0,4.106 -3244,0.0,29.0,0.0,0.0,4167,162.0,8621.31,0.0,0.0,129.854798725,0.0,0.0,0,38.9038844872,-77.0844740141,1473239247.0,3.67599999999 -3245,0.0,27.0,0.0,0.0,4168,162.0,8625.07,0.0,0.0,130.681091747,0.0,0.0,0,38.9038952999,-77.0845150016,1473239248.0,3.88200000001 -3246,0.0,27.0,0.0,0.0,4169,161.0,8628.95,0.0,0.0,130.18059599,0.0,0.0,0,38.903906364,-77.0845574141,1473239249.0,3.863 -3247,0.0,27.0,0.0,0.0,4170,161.0,8632.75,0.0,0.0,129.076238796,0.0,0.0,0,38.9039169252,-77.0845991559,1473239250.0,3.76000000001 -3248,0.0,0.0,0.0,0.0,4171,162.0,8636.66,0.0,0.0,129.798615481,0.0,0.0,0,38.9039274026,-77.0846421551,1473239251.0,4.05000000001 -3249,0.0,0.0,0.0,0.0,4172,162.0,8640.48,0.0,0.0,127.195358856,0.0,0.0,0,38.9039376285,-77.0846842322,1473239252.0,3.62000000001 -3250,0.0,0.0,0.0,0.0,4173,162.0,8644.47,0.0,0.0,129.40480512,0.0,0.0,0,38.9039483573,-77.0847281534,1473239253.0,4.31099999999 -3251,0.0,0.0,0.0,0.0,4174,162.0,8648.35,0.0,0.0,126.207301229,0.0,0.0,0,38.9039584994,-77.0847709011,1473239254.0,3.45199999999 -3252,0.0,0.0,0.0,0.0,4175,162.0,8652.28,0.0,0.0,129.578438148,0.0,0.0,0,38.903968893,-77.0848142356,1473239255.0,4.37600000001 -3253,0.0,0.0,0.0,0.0,4176,162.0,8656.16,0.0,0.0,126.137972007,0.0,0.0,0,38.9039789513,-77.0848570671,1473239256.0,3.43399999999 -3254,0.0,0.0,0.0,0.0,4177,162.0,8660.09,0.0,0.0,130.746033471,0.0,0.0,0,38.903989261,-77.0849004015,1473239257.0,4.37600000001 -3255,0.0,0.0,0.0,0.0,4178,162.0,8664.0,0.0,0.0,126.291480738,0.0,0.0,0,38.9039994869,-77.0849434845,1473239258.0,3.415 -3256,0.0,0.0,0.0,0.0,4179,162.0,8667.89,0.0,0.0,130.900436335,0.0,0.0,0,38.9040097967,-77.0849863999,1473239259.0,4.329 -3257,0.0,0.0,0.0,0.0,4180,162.0,8671.78,0.0,0.0,126.929632629,0.0,0.0,0,38.9040199388,-77.0850293152,1473239260.0,3.44299999999 -3258,0.0,0.0,0.0,0.0,4181,162.0,8675.67,0.0,0.0,130.667046789,0.0,0.0,0,38.9040300809,-77.0850722305,1473239261.0,4.292 -3259,0.0,0.0,0.0,0.0,4182,163.0,8679.56,0.0,0.0,127.756865964,0.0,0.0,0,38.9040399715,-77.0851153135,1473239262.0,3.527 -3260,0.0,0.0,0.0,0.0,4183,163.0,8683.42,0.0,0.0,130.586826672,0.0,0.0,0,38.9040497784,-77.0851579774,1473239263.0,4.14299999999 -3261,0.0,0.0,0.0,0.0,4184,163.0,8687.33,0.0,0.0,128.965551124,0.0,0.0,0,38.9040594175,-77.0852013119,1473239264.0,3.64799999999 -3262,0.0,0.0,0.0,0.0,4185,163.0,8691.17,0.0,0.0,130.010468375,0.0,0.0,0,38.9040696435,-77.0852436405,1473239265.0,3.95600000002 -3263,0.0,0.0,0.0,0.0,4186,163.0,8695.09,0.0,0.0,129.692656476,0.0,0.0,0,38.9040798694,-77.0852868073,1473239266.0,3.82599999999 -3264,0.0,0.0,0.0,0.0,4187,163.0,8698.89,0.0,0.0,129.193908312,0.0,0.0,0,38.9040898439,-77.0853288006,1473239267.0,3.80699999999 -3265,0.0,0.0,0.0,0.0,4188,163.0,8702.83,0.0,0.0,130.523075463,0.0,0.0,0,38.9041002374,-77.0853722189,1473239268.0,4.03999999999 -3266,0.0,0.0,0.0,0.0,4189,163.0,8706.6,0.0,0.0,129.350893697,0.0,0.0,0,38.9041099604,-77.0854137931,1473239269.0,3.54599999999 -3267,0.0,28.0,0.0,0.0,4190,163.0,8710.46,0.0,0.0,132.571801117,0.0,0.0,0,38.9041201863,-77.0854563732,1473239270.0,4.18000000001 -3268,0.0,28.0,0.0,0.0,4191,163.0,8714.19,0.0,0.0,130.593766324,0.0,0.0,0,38.9041299932,-77.0854975283,1473239271.0,3.35900000001 -3269,0.0,27.0,0.0,0.0,4192,163.0,8717.98,0.0,0.0,134.388427935,0.0,0.0,0,38.9041400515,-77.0855392702,1473239272.0,4.217 -3270,0.0,27.0,0.0,0.0,4193,163.0,8721.73,0.0,0.0,130.414016514,0.0,0.0,0,38.9041499421,-77.0855805092,1473239273.0,3.29399999999 -3271,0.0,27.0,0.0,0.0,4194,163.0,8725.49,0.0,0.0,134.514263753,0.0,0.0,0,38.904160168,-77.0856219158,1473239274.0,4.255 -3272,0.0,0.0,0.0,0.0,4195,163.0,8729.28,0.0,0.0,129.832903367,0.0,0.0,0,38.9041707292,-77.0856634062,1473239275.0,3.34000000001 -3273,0.0,0.0,0.0,0.0,4196,163.0,8733.07,0.0,0.0,133.673748096,0.0,0.0,0,38.9041813742,-77.0857048966,1473239276.0,4.245 -3274,0.0,0.0,0.0,0.0,4197,163.0,8736.88,0.0,0.0,130.045746828,0.0,0.0,0,38.9041921031,-77.0857466385,1473239277.0,3.37799999999 -3275,0.0,0.0,0.0,0.0,4198,163.0,8740.64,0.0,0.0,133.79468366,0.0,0.0,0,38.9042027481,-77.0857878774,1473239278.0,4.15200000001 -3276,0.0,0.0,0.0,0.0,4199,163.0,8744.46,0.0,0.0,130.996640588,0.0,0.0,0,38.9042132255,-77.085829787,1473239279.0,3.48999999999 -3277,0.0,0.0,0.0,0.0,4200,163.0,8748.2,0.0,0.0,132.778766433,0.0,0.0,0,38.9042234514,-77.0858708583,1473239280.0,3.975 -3278,0.0,0.0,0.0,0.0,4201,163.0,8752.03,0.0,0.0,130.677247564,0.0,0.0,0,38.9042335097,-77.0859131031,1473239281.0,3.66700000001 -3279,0.0,0.0,0.0,0.0,4202,163.0,8755.82,0.0,0.0,131.192901271,0.0,0.0,0,38.9042434841,-77.085954845,1473239282.0,3.9 -3280,0.0,0.0,0.0,0.0,4203,163.0,8759.74,0.0,0.0,130.40915732,0.0,0.0,0,38.9042538777,-77.0859980118,1473239283.0,3.89099999999 -3281,0.0,0.0,0.0,0.0,4204,163.0,8763.51,0.0,0.0,129.239300832,0.0,0.0,0,38.9042638522,-77.0860396698,1473239284.0,3.704 -3282,0.0,0.0,0.0,0.0,4205,163.0,8767.41,0.0,0.0,130.582249859,0.0,0.0,0,38.9042740781,-77.086082669,1473239285.0,4.03100000001 -3283,0.0,0.0,0.0,0.0,4206,162.0,8771.19,0.0,0.0,129.602138267,0.0,0.0,0,38.904284304,-77.0861242432,1473239286.0,3.592 -3284,0.0,0.0,0.0,0.0,4207,162.0,8775.07,0.0,0.0,133.300402556,0.0,0.0,0,38.9042943623,-77.0861670747,1473239287.0,4.16100000001 -3285,0.0,0.0,0.0,0.0,4208,162.0,8778.84,0.0,0.0,130.840528618,0.0,0.0,0,38.9043040015,-77.086208649,1473239288.0,3.37799999999 -3286,0.0,0.0,0.0,0.0,4209,163.0,8782.59,0.0,0.0,135.217876389,0.0,0.0,0,38.9043136407,-77.0862501394,1473239289.0,4.106 -3287,0.0,0.0,0.0,0.0,4210,163.0,8786.3,0.0,0.0,131.417258329,0.0,0.0,0,38.9043228608,-77.0862912107,1473239290.0,3.30299999999 -3288,0.0,0.0,0.0,0.0,4211,163.0,8790.09,0.0,0.0,135.448281038,0.0,0.0,0,38.9043322485,-77.0863332879,1473239291.0,4.245 -3289,0.0,0.0,0.0,0.0,4212,162.0,8793.89,0.0,0.0,130.034473208,0.0,0.0,0,38.9043416362,-77.086375365,1473239292.0,3.33100000001 -3290,0.0,0.0,0.0,0.0,4213,163.0,8797.69,0.0,0.0,134.188109655,0.0,0.0,0,38.9043511916,-77.0864174422,1473239293.0,4.23600000001 -3291,0.0,0.0,0.0,0.0,4214,162.0,8801.51,0.0,0.0,129.314543352,0.0,0.0,0,38.9043608308,-77.086459687,1473239294.0,3.368 -3292,0.0,0.0,0.0,0.0,4215,162.0,8805.3,0.0,0.0,133.592267147,0.0,0.0,0,38.9043706376,-77.0865015127,1473239295.0,4.20799999999 -3293,0.0,0.0,0.0,0.0,4216,163.0,8809.11,0.0,0.0,128.678764327,0.0,0.0,0,38.9043805283,-77.0865436736,1473239296.0,3.424 -3294,0.0,0.0,0.0,0.0,4217,162.0,8812.95,0.0,0.0,132.563888908,0.0,0.0,0,38.9043904189,-77.0865860023,1473239297.0,4.217 -3295,0.0,0.0,0.0,0.0,4218,162.0,8816.83,0.0,0.0,127.901169493,0.0,0.0,0,38.9044004772,-77.0866289176,1473239298.0,3.527 -3296,0.0,0.0,0.0,0.0,4219,162.0,8820.69,0.0,0.0,130.876555646,0.0,0.0,0,38.9044106193,-77.0866714139,1473239299.0,4.14299999999 -3297,0.0,0.0,0.0,0.0,4220,162.0,8824.55,0.0,0.0,127.671004533,0.0,0.0,0,38.9044205099,-77.0867141616,1473239300.0,3.60200000001 -3298,0.0,0.0,0.0,0.0,4221,163.0,8828.46,0.0,0.0,130.274128348,0.0,0.0,0,38.9044304844,-77.0867573284,1473239301.0,4.15200000001 -3299,0.0,0.0,0.0,0.0,4222,163.0,8832.39,0.0,0.0,128.166005493,0.0,0.0,0,38.9044401236,-77.0868009143,1473239302.0,3.65800000001 -3300,0.0,0.0,0.0,0.0,4223,162.0,8836.24,0.0,0.0,130.209067286,0.0,0.0,0,38.9044498466,-77.0868434943,1473239303.0,4.00299999999 -3301,0.0,0.0,0.0,0.0,4224,163.0,8840.13,0.0,0.0,128.754503621,0.0,0.0,0,38.9044592343,-77.0868867449,1473239304.0,3.77 -3302,0.0,0.0,0.0,0.0,4225,163.0,8843.97,0.0,0.0,130.321165511,0.0,0.0,0,38.9044685382,-77.0869294088,1473239305.0,3.89099999999 -3303,0.0,0.0,0.0,0.0,4226,163.0,8847.84,0.0,0.0,129.091242361,0.0,0.0,0,38.904477926,-77.0869723242,1473239306.0,3.85399999999 -3304,0.0,0.0,0.0,0.0,4227,163.0,8851.68,0.0,0.0,129.758077019,0.0,0.0,0,38.9044874813,-77.0870149042,1473239307.0,3.872 -3305,0.0,0.0,0.0,0.0,4228,163.0,8855.55,0.0,0.0,129.363497989,0.0,0.0,0,38.9044972882,-77.0870577358,1473239308.0,3.872 -3306,0.0,0.0,0.0,0.0,4229,163.0,8859.38,0.0,0.0,129.070469124,0.0,0.0,0,38.9045066759,-77.087100232,1473239309.0,3.82599999999 -3307,0.0,0.0,0.0,0.0,4230,163.0,8863.28,0.0,0.0,128.968287201,0.0,0.0,0,38.9045163151,-77.0871433988,1473239310.0,3.938 -3308,0.0,0.0,0.0,0.0,4231,163.0,8867.16,0.0,0.0,127.921284662,0.0,0.0,0,38.904525619,-77.0871865656,1473239311.0,3.82599999999 -3309,0.0,0.0,0.0,0.0,4232,163.0,8871.1,0.0,0.0,127.983086287,0.0,0.0,0,38.9045350067,-77.087230403,1473239312.0,4.00299999999 -3310,0.0,0.0,0.0,0.0,4233,163.0,8875.01,0.0,0.0,126.510873911,0.0,0.0,0,38.9045443106,-77.0872739051,1473239313.0,3.863 -3311,0.0,0.0,0.0,0.0,4234,163.0,8878.94,0.0,0.0,127.666770937,0.0,0.0,0,38.9045531955,-77.0873177424,1473239314.0,4.022 -3312,0.0,0.0,0.0,0.0,4235,163.0,8882.85,0.0,0.0,125.769179256,0.0,0.0,0,38.9045619126,-77.0873614121,1473239315.0,3.844 -3313,0.0,0.0,0.0,0.0,4236,164.0,8886.8,0.0,0.0,127.710108006,0.0,0.0,0,38.9045707136,-77.0874055009,1473239316.0,4.06799999999 -3314,0.0,0.0,0.0,0.0,4237,164.0,8890.68,0.0,0.0,126.158363153,0.0,0.0,0,38.9045795146,-77.0874488354,1473239317.0,3.77 -3315,0.0,0.0,0.0,0.0,4238,164.0,8894.64,0.0,0.0,128.640498256,0.0,0.0,0,38.9045883995,-77.087493008,1473239318.0,4.15200000001 -3316,0.0,0.0,0.0,0.0,4239,164.0,8898.54,0.0,0.0,126.554816315,0.0,0.0,0,38.9045975357,-77.0875364263,1473239319.0,3.65800000001 -3317,0.0,0.0,0.0,0.0,4240,164.0,8902.43,0.0,0.0,129.583962554,0.0,0.0,0,38.904606672,-77.0875797607,1473239320.0,4.13300000001 -3318,0.0,29.0,0.0,0.0,4241,165.0,8906.32,0.0,0.0,126.846829433,0.0,0.0,0,38.9046160597,-77.0876229275,1473239321.0,3.639 -3319,0.0,29.0,0.0,0.0,4242,165.0,8910.23,0.0,0.0,130.0600979,0.0,0.0,0,38.9046254475,-77.0876663458,1473239322.0,4.20799999999 -3320,0.0,29.0,0.0,0.0,4243,164.0,8914.12,0.0,0.0,125.976041647,0.0,0.0,0,38.9046350867,-77.0877094287,1473239323.0,3.555 -3321,0.0,29.0,0.0,0.0,4244,165.0,8918.03,0.0,0.0,129.718875051,0.0,0.0,0,38.9046445582,-77.087752847,1473239324.0,4.27300000001 -3322,0.0,30.0,0.0,0.0,4245,165.0,8921.94,0.0,0.0,125.781780046,0.0,0.0,0,38.9046547003,-77.0877960976,1473239325.0,3.555 -3323,0.0,30.0,0.0,0.0,4246,165.0,8925.89,0.0,0.0,130.429921866,0.0,0.0,0,38.9046652615,-77.0878395159,1473239326.0,4.30099999999 -3324,0.0,30.0,0.0,0.0,4247,165.0,8929.76,0.0,0.0,126.407168983,0.0,0.0,0,38.9046758227,-77.0878820959,1473239327.0,3.46199999999 -3325,0.0,0.0,0.0,0.0,4248,165.0,8933.67,0.0,0.0,132.168722815,0.0,0.0,0,38.9046866354,-77.0879249275,1473239328.0,4.292 -3326,0.0,0.0,0.0,0.0,4249,165.0,8937.49,0.0,0.0,128.314656422,0.0,0.0,0,38.9046975318,-77.0879667532,1473239329.0,3.368 -3327,0.0,0.0,0.0,0.0,4250,165.0,8941.34,0.0,0.0,134.209783254,0.0,0.0,0,38.9047086798,-77.0880087465,1473239330.0,4.27300000001 -3328,0.0,0.0,0.0,0.0,4251,165.0,8945.18,0.0,0.0,129.399151007,0.0,0.0,0,38.904720163,-77.0880504884,1473239331.0,3.312 -3329,0.0,29.0,0.0,0.0,4252,165.0,8948.98,0.0,0.0,134.814621141,0.0,0.0,0,38.9047315624,-77.088091895,1473239332.0,4.23600000001 -3330,0.0,29.0,0.0,0.0,4253,165.0,8952.8,0.0,0.0,128.89891312,0.0,0.0,0,38.9047434647,-77.0881331339,1473239333.0,3.34000000001 -3331,0.0,29.0,0.0,0.0,4254,165.0,8956.6,0.0,0.0,133.693708293,0.0,0.0,0,38.9047552831,-77.0881742891,1473239334.0,4.27300000001 -3332,0.0,29.0,0.0,0.0,4255,165.0,8960.44,0.0,0.0,128.046651109,0.0,0.0,0,38.9047676884,-77.0882156119,1473239335.0,3.38699999999 -3333,0.0,31.0,0.0,0.0,4256,165.0,8964.28,0.0,0.0,133.503786653,0.0,0.0,0,38.9047805127,-77.088256767,1473239336.0,4.292 -3334,0.0,31.0,0.0,0.0,4257,165.0,8968.1,0.0,0.0,128.592232361,0.0,0.0,0,38.9047932532,-77.0882975869,1473239337.0,3.37799999999 -3335,0.0,28.0,0.0,0.0,4258,165.0,8971.87,0.0,0.0,134.324348527,0.0,0.0,0,38.9048064966,-77.0883376524,1473239338.0,4.18899999999 -3336,0.0,28.0,0.0,0.0,4259,165.0,8975.65,0.0,0.0,129.594721961,0.0,0.0,0,38.9048199076,-77.0883777179,1473239339.0,3.368 -3337,0.0,29.0,0.0,0.0,4260,165.0,8979.46,0.0,0.0,134.206820263,0.0,0.0,0,38.9048339892,-77.0884177834,1473239340.0,4.20799999999 -3338,0.0,29.0,0.0,0.0,4261,165.0,8983.26,0.0,0.0,129.756036184,0.0,0.0,0,38.9048478194,-77.0884577651,1473239341.0,3.38699999999 -3339,0.0,29.0,0.0,0.0,4262,165.0,8987.05,0.0,0.0,133.407255969,0.0,0.0,0,38.9048622362,-77.0884974115,1473239342.0,4.19900000001 -3340,0.0,0.0,0.0,0.0,4263,165.0,8990.87,0.0,0.0,130.635715239,0.0,0.0,0,38.9048767369,-77.0885373931,1473239343.0,3.45199999999 -3341,0.0,0.0,0.0,0.0,4264,164.0,8994.61,0.0,0.0,133.62843428,0.0,0.0,0,38.90489107,-77.0885764528,1473239344.0,4.05000000001 -3342,0.0,0.0,0.0,0.0,4265,164.0,8998.38,0.0,0.0,131.987329216,0.0,0.0,0,38.904905403,-77.0886158478,1473239345.0,3.527 -3343,0.0,0.0,0.0,0.0,4266,165.0,9002.1,0.0,0.0,132.476764952,0.0,0.0,0,38.9049194846,-77.088654656,1473239346.0,3.9 -3344,0.0,0.0,0.0,0.0,4267,165.0,9005.88,0.0,0.0,130.61857792,0.0,0.0,0,38.9049337339,-77.0886943024,1473239347.0,3.686 -3345,0.0,0.0,0.0,0.0,4268,164.0,9009.55,0.0,0.0,136.644184459,0.0,0.0,0,38.9049473125,-77.0887328591,1473239348.0,3.71399999999 -3346,0.0,25.0,0.0,0.0,4269,164.0,9013.32,0.0,0.0,143.220464034,0.0,0.0,0,38.9049613103,-77.0887725055,1473239349.0,3.82599999999 -3347,0.0,25.0,0.0,0.0,4270,164.0,9016.74,0.0,0.0,154.934980965,0.0,0.0,0,38.9049736317,-77.0888086315,1473239350.0,3.06000000001 -3348,0.0,25.0,0.0,0.0,4271,163.0,9019.65,0.0,0.0,171.611708822,0.0,0.0,0,38.9049842767,-77.0888392255,1473239351.0,2.771 -3349,0.0,0.0,0.0,0.0,4272,163.0,9022.31,0.0,0.0,193.78511831,0.0,0.0,0,38.9049940836,-77.088867221,1473239352.0,2.57499999999 -3350,0.0,0.0,0.0,0.0,4273,163.0,9024.85,0.0,0.0,212.373954679,0.0,0.0,0,38.9050032198,-77.0888941269,1473239353.0,2.54699999999 -3351,0.0,0.0,0.0,0.0,4274,162.0,9027.07,0.0,0.0,220.319358156,0.0,0.0,0,38.9050110988,-77.0889175963,1473239354.0,1.997 -3352,0.0,0.0,0.0,0.0,4275,162.0,9029.12,0.0,0.0,231.793196318,0.0,0.0,0,38.9050181396,-77.0889393892,1473239355.0,2.183 -3353,0.0,0.0,0.0,0.0,4276,162.0,9031.26,0.0,0.0,245.603067168,0.0,0.0,0,38.9050255995,-77.088962188,1473239356.0,2.211 -3354,0.0,0.0,0.0,0.0,4277,161.0,9033.27,0.0,0.0,262.0449946,0.0,0.0,0,38.9050325565,-77.0889836457,1473239357.0,1.903 -3355,0.0,0.0,0.0,0.0,4278,161.0,9035.08,0.0,0.0,276.008086679,0.0,0.0,0,38.9050388429,-77.0890028402,1473239358.0,1.754 -3356,0.0,0.0,0.0,0.0,4279,160.0,9036.74,0.0,0.0,307.68411098,0.0,0.0,0,38.9050446264,-77.0890204422,1473239359.0,1.605 -3357,0.0,0.0,0.0,0.0,4280,160.0,9038.25,0.0,0.0,340.628585079,0.0,0.0,0,38.905049907,-77.0890365355,1473239360.0,1.484 -3358,0.0,0.0,0.0,0.0,4281,160.0,9039.66,0.0,0.0,367.215741633,0.0,0.0,0,38.9050548524,-77.0890515391,1473239361.0,1.362 -3359,0.0,0.0,0.0,0.0,4282,159.0,9040.94,0.0,0.0,399.991688484,0.0,0.0,0,38.9050592948,-77.0890652016,1473239362.0,1.25 -3360,0.0,0.0,0.0,0.0,4283,159.0,9042.14,0.0,0.0,435.572919809,0.0,0.0,0,38.9050636534,-77.0890777744,1473239363.0,1.148 -3361,0.0,0.0,0.0,0.0,4284,158.0,9043.23,0.0,0.0,475.343852631,0.0,0.0,0,38.9050676767,-77.0890892576,1473239364.0,1.054 -3362,0.0,0.0,0.0,0.0,4285,158.0,9044.23,0.0,0.0,518.516190724,0.0,0.0,0,38.9050713647,-77.089099735,1473239365.0,0.961000000001 -3363,0.0,0.0,0.0,0.0,4286,157.0,9045.14,0.0,0.0,565.112728981,0.0,0.0,0,38.9050747175,-77.0891093742,1473239366.0,0.886 -3364,0.0,0.0,0.0,0.0,4287,157.0,9045.99,0.0,0.0,615.668359977,0.0,0.0,0,38.9050782379,-77.0891180914,1473239367.0,0.812 -3365,0.0,0.0,0.0,0.0,4288,156.0,9046.76,0.0,0.0,668.47241032,0.0,0.0,0,38.9050811715,-77.0891260542,1473239368.0,0.746 -3366,0.0,0.0,0.0,0.0,4289,156.0,9047.44,0.0,0.0,727.659896174,0.0,0.0,0,38.9050837699,-77.0891331788,1473239369.0,0.69 -3367,0.0,0.0,0.0,0.0,4290,155.0,9048.06,0.0,0.0,788.95059325,0.0,0.0,0,38.9050862845,-77.0891395491,1473239370.0,0.634 -3368,0.0,0.0,0.0,0.0,4291,155.0,9048.63,0.0,0.0,853.759498536,0.0,0.0,0,38.9050887153,-77.0891454164,1473239371.0,0.588 -3369,0.0,0.0,0.0,0.0,4292,154.0,9049.17,0.0,0.0,920.318725099,0.0,0.0,0,38.9050908107,-77.0891510323,1473239372.0,0.532 -3370,0.0,0.0,0.0,0.0,4293,153.0,9049.66,0.0,0.0,980.492028727,0.0,0.0,0,38.9050927386,-77.0891560614,1473239373.0,0.513 -3371,0.0,0.0,0.0,0.0,4294,152.0,9050.1,0.0,0.0,1066.49184203,0.0,0.0,0,38.9050945826,-77.0891605876,1473239374.0,0.467000000001 -3372,0.0,0.0,0.0,0.0,4295,152.0,9050.5,0.0,0.0,1200.0623409,0.0,0.0,0,38.9050964266,-77.0891645271,1473239375.0,0.439 -3373,0.0,0.0,0.0,0.0,4296,150.0,9050.87,0.0,0.0,1283.33333333,0.0,0.0,0,38.9050980192,-77.089168299,1473239376.0,0.400999999999 -3374,0.0,0.0,0.0,0.0,4297,150.0,9051.16,0.0,0.0,1430.55314722,0.0,0.0,0,38.9050995279,-77.089171065,1473239377.0,0.307999999999 -3375,0.0,0.0,0.0,0.0,4298,149.0,9051.43,0.0,0.0,1539.52787812,0.0,0.0,0,38.9051010367,-77.0891735796,1473239378.0,0.298999999999 -3376,0.0,0.0,0.0,0.0,4299,148.0,9051.73,0.0,0.0,1675.7831203,0.0,0.0,0,38.9051026292,-77.0891763456,1473239379.0,0.372999999999 -3377,0.0,0.0,0.0,0.0,4300,147.0,9052.01,0.0,0.0,1757.00138431,0.0,0.0,0,38.9051040541,-77.0891790278,1473239380.0,0.243000000001 -3378,0.0,0.0,0.0,0.0,4301,147.0,9052.26,0.0,0.0,1817.38076881,0.0,0.0,0,38.9051053952,-77.0891812909,1473239381.0,0.289 -3379,0.0,0.0,0.0,0.0,4302,146.0,9052.5,0.0,0.0,1993.71677139,0.0,0.0,0,38.9051067363,-77.0891834702,1473239382.0,0.233 -3380,0.0,0.0,0.0,0.0,4303,145.0,9052.73,0.0,0.0,2025.2143571,0.0,0.0,0,38.9051080775,-77.0891855657,1473239383.0,0.252 -3381,0.0,0.0,0.0,0.0,4304,145.0,9052.93,0.0,0.0,2133.79149809,0.0,0.0,0,38.9051094186,-77.0891871583,1473239384.0,0.215 -3382,0.0,0.0,0.0,0.0,4305,144.0,9052.93,0.0,0.0,2697.2117136,0.0,0.0,0,38.9051085804,-77.0891876612,1473239385.0,0.205 -3383,0.0,0.0,0.0,0.0,4306,144.0,9053.02,0.0,0.0,3689.3886156,0.0,0.0,0,38.9051089995,-77.0891884994,1473239386.0,0.224 -3384,0.0,0.0,0.0,0.0,4307,143.0,9053.11,0.0,0.0,6485.48486719,0.0,0.0,0,38.9051093347,-77.0891894214,1473239387.0,0.0 -3385,0.0,0.0,0.0,0.0,4308,143.0,9053.18,0.0,0.0,16288.2527147,0.0,0.0,0,38.9051095024,-77.0891903434,1473239388.0,0.0 -3386,0.0,0.0,0.0,0.0,4309,142.0,9053.29,0.0,0.0,17368.4210526,0.0,0.0,0,38.9051103406,-77.0891910978,1473239389.0,0.0 -3387,0.0,0.0,0.0,0.0,4310,142.0,9053.39,0.0,0.0,7617.72853186,0.0,0.0,0,38.9051109273,-77.089191936,1473239390.0,0.0 -3388,0.0,0.0,0.0,0.0,4311,140.0,9053.45,0.0,0.0,21095.8904109,0.0,0.0,0,38.9051113464,-77.0891924389,1473239391.0,0.0 -3389,0.0,0.0,0.0,0.0,4312,140.0,9053.54,0.0,0.0,3140.80600424,0.0,0.0,0,38.9051117655,-77.0891932771,1473239392.0,0.0 -3390,0.0,0.0,0.0,0.0,4313,139.0,9053.75,0.0,0.0,1544.96448588,0.0,0.0,0,38.9051132742,-77.0891948696,1473239393.0,0.261 -3391,0.0,0.0,0.0,0.0,4314,139.0,9054.21,0.0,0.0,1043.15312223,0.0,0.0,0,38.9051161241,-77.0891987253,1473239394.0,0.672 -3392,0.0,0.0,0.0,0.0,4315,138.0,9054.87,0.0,0.0,835.3101134,0.0,0.0,0,38.9051195607,-77.0892049279,1473239395.0,0.672 -3393,0.0,0.0,0.0,0.0,4316,137.0,9055.47,0.0,0.0,765.83894175,0.0,0.0,0,38.9051228296,-77.0892106276,1473239396.0,0.616 -3394,0.0,0.0,0.0,0.0,4317,135.0,9056.03,0.0,0.0,818.783096914,0.0,0.0,0,38.9051259309,-77.0892157406,1473239397.0,0.56 -3395,0.0,0.0,0.0,0.0,4318,134.0,9056.56,0.0,0.0,968.042040682,0.0,0.0,0,38.9051287808,-77.0892206021,1473239398.0,0.532 -3396,0.0,0.0,0.0,0.0,4319,133.0,9057.04,0.0,0.0,1076.9933702,0.0,0.0,0,38.9051316306,-77.0892248768,1473239399.0,0.495 -3397,0.0,0.0,0.0,0.0,4320,132.0,9057.51,0.0,0.0,1013.06014332,0.0,0.0,0,38.9051343966,-77.089228984,1473239400.0,0.457 -3398,0.0,0.0,0.0,0.0,4321,131.0,9057.94,0.0,0.0,892.160573454,0.0,0.0,0,38.905136995,-77.0892327558,1473239401.0,0.467000000001 -3399,0.0,0.0,0.0,0.0,4322,130.0,9058.46,0.0,0.0,777.097490412,0.0,0.0,0,38.9051401801,-77.0892371144,1473239402.0,0.606 -3400,0.0,0.0,0.0,0.0,4323,130.0,9059.18,0.0,0.0,692.815711021,0.0,0.0,0,38.9051444549,-77.0892434008,1473239403.0,0.877 -3401,0.0,0.0,0.0,0.0,4324,129.0,9059.97,0.0,0.0,652.10395271,0.0,0.0,0,38.9051489811,-77.0892504416,1473239404.0,0.784 -3402,0.0,0.0,0.0,0.0,4325,128.0,9060.69,0.0,0.0,656.813516142,0.0,0.0,0,38.9051534235,-77.0892566442,1473239405.0,0.746 -3403,0.0,0.0,0.0,0.0,4326,127.0,9061.35,0.0,0.0,702.879676736,0.0,0.0,0,38.9051574469,-77.0892623439,1473239406.0,0.681 -3404,0.0,0.0,0.0,0.0,4327,125.0,9061.96,0.0,0.0,785.890710159,0.0,0.0,0,38.9051613025,-77.0892673731,1473239407.0,0.616 -3405,0.0,0.0,0.0,0.0,4328,125.0,9062.52,0.0,0.0,832.138560076,0.0,0.0,0,38.9051649068,-77.0892719831,1473239408.0,0.597 -3406,0.0,0.0,0.0,0.0,4329,125.0,9063.09,0.0,0.0,880.261563436,0.0,0.0,0,38.9051686786,-77.0892765094,1473239409.0,0.597 -3407,0.0,0.0,0.0,0.0,4330,125.0,9063.61,0.0,0.0,918.357610839,0.0,0.0,0,38.9051721152,-77.0892806165,1473239410.0,0.532 -3408,0.0,0.0,0.0,0.0,4331,124.0,9064.09,0.0,0.0,962.355646652,0.0,0.0,0,38.9051753841,-77.0892843045,1473239411.0,0.513 -3409,0.0,0.0,0.0,0.0,4332,124.0,9064.57,0.0,0.0,1020.89520577,0.0,0.0,0,38.9051787369,-77.0892877411,1473239412.0,0.495 -3410,0.0,0.0,0.0,0.0,4333,123.0,9065.01,0.0,0.0,1088.45204214,0.0,0.0,0,38.905181922,-77.0892908424,1473239413.0,0.467000000001 -3411,0.0,0.0,0.0,0.0,4334,122.0,9065.43,0.0,0.0,1143.39454536,0.0,0.0,0,38.9051849395,-77.0892936084,1473239414.0,0.429 -3412,0.0,0.0,0.0,0.0,4335,121.0,9065.81,0.0,0.0,1219.51219512,0.0,0.0,0,38.9051877894,-77.0892962068,1473239415.0,0.410999999998 -3413,0.0,0.0,0.0,0.0,4336,120.0,9066.19,0.0,0.0,1300.76356511,0.0,0.0,0,38.9051906392,-77.0892986376,1473239416.0,0.383 -3414,0.0,0.0,0.0,0.0,4337,120.0,9066.56,0.0,0.0,1390.57778206,0.0,0.0,0,38.9051934052,-77.0893009007,1473239417.0,0.363999999999 -3415,0.0,0.0,0.0,0.0,4338,119.0,9066.9,0.0,0.0,1477.37883575,0.0,0.0,0,38.9051960874,-77.0893029124,1473239418.0,0.335999999999 -3416,0.0,0.0,0.0,0.0,4339,119.0,9067.23,0.0,0.0,1588.17463046,0.0,0.0,0,38.9051986858,-77.0893046726,1473239419.0,0.316999999999 -3417,0.0,0.0,0.0,0.0,4340,118.0,9067.54,0.0,0.0,1694.51739265,0.0,0.0,0,38.9052011166,-77.0893063489,1473239420.0,0.289 -3418,0.0,0.0,0.0,0.0,4341,117.0,9067.82,0.0,0.0,1818.09595769,0.0,0.0,0,38.9052034635,-77.0893077739,1473239421.0,0.280000000001 -3419,0.0,0.0,0.0,0.0,4342,116.0,9067.98,0.0,0.0,1958.78911218,0.0,0.0,0,38.9052053075,-77.0893071871,1473239422.0,0.252 -3420,0.0,0.0,0.0,0.0,4343,115.0,9068.11,0.0,0.0,2115.46210484,0.0,0.0,0,38.9052065648,-77.0893074386,1473239423.0,0.243000000001 -3421,0.0,0.0,0.0,0.0,4344,114.0,9068.26,0.0,0.0,2150.23736386,0.0,0.0,0,38.9052077383,-77.0893083606,1473239424.0,0.215 -3422,0.0,0.0,0.0,0.0,4345,114.0,9068.39,0.0,0.0,2460.11629641,0.0,0.0,0,38.9052089117,-77.089308612,1473239425.0,0.196 -3423,0.0,0.0,0.0,0.0,4346,114.0,9068.5,0.0,0.0,3106.17469879,0.0,0.0,0,38.9052097499,-77.0893091988,1473239426.0,0.187 -3424,0.0,0.0,0.0,0.0,4347,114.0,9068.61,0.0,0.0,4518.60255858,0.0,0.0,0,38.9052107558,-77.0893094502,1473239427.0,0.168 -3425,0.0,0.0,0.0,0.0,4348,113.0,9068.7,0.0,0.0,7914.21131971,0.0,0.0,0,38.9052115101,-77.0893099532,1473239428.0,0.0 -3426,0.0,0.0,0.0,0.0,4349,112.0,9068.81,0.0,0.0,22853.1855956,0.0,0.0,0,38.9052124321,-77.0893102046,1473239429.0,0.0 -3427,0.0,0.0,0.0,0.0,4350,111.0,9068.95,0.0,0.0,73333.3333331,0.0,0.0,0,38.9052138571,-77.0893099532,1473239430.0,0.0 -3428,0.0,0.0,0.0,0.0,4351,110.0,9069.03,0.0,0.0,32738.0952381,0.0,0.0,0,38.9052147791,-77.0893097017,1473239431.0,0.0 -3429,0.0,0.0,0.0,0.0,4352,109.0,9069.14,0.0,0.0,inf,0.0,0.0,0,38.9052158687,-77.0893095341,1473239432.0,0.0 -3430,0.0,0.0,0.0,0.0,4353,109.0,9069.2,0.0,0.0,inf,0.0,0.0,0,38.9052165393,-77.0893091988,1473239433.0,0.0 -3431,0.0,0.0,0.0,0.0,4354,109.0,9069.25,0.0,0.0,inf,0.0,0.0,0,38.9052170422,-77.0893090311,1473239434.0,0.0 -3432,0.0,0.0,0.0,0.0,4355,109.0,9069.32,0.0,0.0,inf,0.0,0.0,0,38.9052177966,-77.0893088635,1473239435.0,0.0 -3433,0.0,0.0,0.0,0.0,4356,108.0,9069.36,0.0,0.0,inf,0.0,0.0,0,38.9052182995,-77.0893085282,1473239436.0,0.0 -3434,0.0,56.0,0.0,0.0,4357,108.0,9069.39,0.0,0.0,inf,0.0,0.0,0,38.9052186348,-77.0893082768,1473239437.0,0.0 -3435,0.0,56.0,0.0,0.0,4358,108.0,9069.4,0.0,0.0,inf,0.0,0.0,0,38.9052188024,-77.0893079415,1473239438.0,0.0 -3436,0.0,56.0,0.0,0.0,4359,108.0,9069.4,0.0,0.0,21825.3968254,0.0,0.0,0,38.9052187186,-77.0893072709,1473239439.0,0.0 -3437,0.0,0.0,0.0,0.0,4360,107.0,9069.4,0.0,0.0,148648.648646,0.0,0.0,0,38.9052186348,-77.089306768,1473239440.0,0.0 -3438,0.0,0.0,0.0,0.0,4361,107.0,9069.4,0.0,0.0,12860.4832424,0.0,0.0,0,38.9052185509,-77.0893064328,1473239441.0,0.0 -3439,0.0,0.0,0.0,0.0,4362,107.0,9069.4,0.0,0.0,7026.82971345,0.0,0.0,0,38.9052188024,-77.0893057622,1473239442.0,0.0 -3440,0.0,0.0,0.0,0.0,4363,107.0,9069.5,0.0,0.0,3044.52117985,0.0,0.0,0,38.9052196406,-77.0893055107,1473239443.0,0.252 -3441,0.0,0.0,0.0,0.0,4364,106.0,9069.73,0.0,0.0,3195.63954293,0.0,0.0,0,38.9052217361,-77.0893056784,1473239444.0,0.205 -3442,0.0,0.0,0.0,0.0,4365,106.0,9069.82,0.0,0.0,2939.45486474,0.0,0.0,0,38.9052225742,-77.0893062651,1473239445.0,0.177 -3443,0.0,0.0,0.0,0.0,4366,106.0,9070.1,0.0,0.0,1955.70456162,0.0,0.0,0,38.9052247535,-77.0893077739,1473239446.0,0.363999999999 -3444,0.0,0.0,0.0,0.0,4367,106.0,9070.35,0.0,0.0,1276.89212196,0.0,0.0,0,38.905226849,-77.089309115,1473239447.0,0.0 -3445,0.0,0.0,0.0,0.0,4368,106.0,9070.73,0.0,0.0,829.276698402,0.0,0.0,0,38.9052293636,-77.0893120486,1473239448.0,0.634 -3446,0.0,0.0,0.0,0.0,4369,105.0,9071.56,0.0,0.0,673.677579661,0.0,0.0,0,38.9052349795,-77.0893184189,1473239449.0,0.979999999999 -3447,0.0,0.0,0.0,0.0,4370,105.0,9072.54,0.0,0.0,557.209226034,0.0,0.0,0,38.9052404277,-77.0893273037,1473239450.0,1.045 -3448,0.0,0.0,0.0,0.0,4371,105.0,9073.58,0.0,0.0,461.793116684,0.0,0.0,0,38.9052471332,-77.0893357694,1473239451.0,0.989 -3449,0.0,0.0,0.0,0.0,4372,105.0,9074.49,0.0,0.0,419.125171461,0.0,0.0,0,38.9052520785,-77.0893441513,1473239452.0,0.857999999999 -3450,0.0,0.0,0.0,0.0,4373,105.0,9075.6,0.0,0.0,414.751508187,0.0,0.0,0,38.905258365,-77.0893541258,1473239453.0,1.381 -3451,0.0,0.0,0.0,0.0,4374,104.0,9077.05,0.0,0.0,388.382814313,0.0,0.0,0,38.9052673336,-77.0893662795,1473239454.0,1.456 -3452,0.0,0.0,0.0,0.0,4375,104.0,9078.57,0.0,0.0,355.20646568,0.0,0.0,0,38.9052765537,-77.0893793553,1473239455.0,1.54 -3453,0.0,0.0,0.0,0.0,4376,104.0,9079.91,0.0,0.0,317.668997156,0.0,0.0,0,38.9052846003,-77.0893908385,1473239456.0,1.073 -3454,0.0,0.0,0.0,0.0,4377,104.0,9081.32,0.0,0.0,324.313396249,0.0,0.0,0,38.9052929822,-77.0894030761,1473239457.0,1.698 -3455,0.0,0.0,0.0,0.0,4378,102.0,9083.1,0.0,0.0,317.536248619,0.0,0.0,0,38.9053035434,-77.0894184988,1473239458.0,1.773 -3456,0.0,0.0,0.0,0.0,4379,102.0,9084.91,0.0,0.0,300.317478477,0.0,0.0,0,38.9053141885,-77.0894344244,1473239459.0,1.829 -3457,0.0,0.0,0.0,0.0,4380,101.0,9086.5,0.0,0.0,278.007779404,0.0,0.0,0,38.9053234924,-77.0894483384,1473239460.0,1.306 -3458,0.0,0.0,0.0,0.0,4381,101.0,9088.11,0.0,0.0,292.861779383,0.0,0.0,0,38.9053328801,-77.0894625038,1473239461.0,1.847 -3459,0.0,0.0,0.0,0.0,4382,100.0,9090.02,0.0,0.0,292.533926337,0.0,0.0,0,38.9053437766,-77.0894795191,1473239462.0,1.95 -3460,0.0,0.0,0.0,0.0,4383,101.0,9091.91,0.0,0.0,277.784458501,0.0,0.0,0,38.9053545054,-77.0894964505,1473239463.0,1.801 -3461,0.0,0.0,0.0,0.0,4384,101.0,9093.58,0.0,0.0,266.2014096,0.0,0.0,0,38.905363977,-77.0895115379,1473239464.0,1.512 -3462,0.0,0.0,0.0,0.0,4385,101.0,9095.39,0.0,0.0,276.247058148,0.0,0.0,0,38.9053739514,-77.0895280503,1473239465.0,2.015 -3463,0.0,0.0,0.0,0.0,4386,101.0,9097.48,0.0,0.0,268.4429611,0.0,0.0,0,38.9053851832,-77.0895473287,1473239466.0,2.081 -3464,0.0,0.0,0.0,0.0,4387,101.0,9099.43,0.0,0.0,243.225485819,0.0,0.0,0,38.9053953253,-77.0895657688,1473239467.0,1.764 -3465,0.0,0.0,0.0,0.0,4388,102.0,9101.37,0.0,0.0,234.40068514,0.0,0.0,0,38.9054052997,-77.0895840414,1473239468.0,1.987 -3466,0.0,0.0,0.0,0.0,4389,101.0,9103.62,0.0,0.0,236.9882183,0.0,0.0,0,38.9054166153,-77.0896056667,1473239469.0,2.389 -3467,0.0,0.0,0.0,0.0,4390,101.0,9106.07,0.0,0.0,232.88121445,0.0,0.0,0,38.9054286014,-77.0896293875,1473239470.0,2.417 -3468,0.0,0.0,0.0,0.0,4391,101.0,9108.23,0.0,0.0,220.579809786,0.0,0.0,0,38.9054390788,-77.0896503422,1473239471.0,1.801 -3469,0.0,0.0,0.0,0.0,4392,101.0,9110.29,0.0,0.0,230.306317372,0.0,0.0,0,38.9054492209,-77.0896702912,1473239472.0,2.183 -3470,0.0,0.0,0.0,0.0,4393,101.0,9112.58,0.0,0.0,240.427148492,0.0,0.0,0,38.9054604527,-77.0896925032,1473239473.0,2.277 -3471,0.0,0.0,0.0,0.0,4394,102.0,9114.91,0.0,0.0,238.135000897,0.0,0.0,0,38.9054710139,-77.0897157211,1473239474.0,2.305 -3472,0.0,0.0,0.0,0.0,4395,102.0,9116.97,0.0,0.0,224.094309751,0.0,0.0,0,38.9054804854,-77.0897360891,1473239475.0,1.717 -3473,0.0,0.0,0.0,0.0,4396,103.0,9119.01,0.0,0.0,235.126948195,0.0,0.0,0,38.9054895379,-77.0897566248,1473239476.0,2.258 -3474,0.0,0.0,0.0,0.0,4397,103.0,9121.36,0.0,0.0,240.494231262,0.0,0.0,0,38.9054995961,-77.0897805132,1473239477.0,2.323 -3475,0.0,0.0,0.0,0.0,4398,103.0,9123.68,0.0,0.0,235.228945991,0.0,0.0,0,38.9055089839,-77.0898044016,1473239478.0,2.23 -3476,0.0,0.0,0.0,0.0,4399,102.0,9125.65,0.0,0.0,229.766155744,0.0,0.0,0,38.9055168629,-77.0898247696,1473239479.0,1.698 -3477,0.0,0.0,0.0,0.0,4400,102.0,9127.66,0.0,0.0,244.404615545,0.0,0.0,0,38.9055248257,-77.0898454729,1473239480.0,2.23 -3478,0.0,0.0,0.0,0.0,4401,102.0,9129.96,0.0,0.0,248.16828173,0.0,0.0,0,38.905533459,-77.0898696966,1473239481.0,2.286 -3479,0.0,0.0,0.0,0.0,4402,102.0,9132.1,0.0,0.0,235.292200318,0.0,0.0,0,38.9055409189,-77.0898924116,1473239482.0,1.922 -3480,0.0,0.0,0.0,0.0,4403,102.0,9134.11,0.0,0.0,231.522778434,0.0,0.0,0,38.9055483788,-77.089913534,1473239483.0,1.931 -3481,0.0,0.0,0.0,0.0,4404,102.0,9136.31,0.0,0.0,242.008988905,0.0,0.0,0,38.9055558387,-77.0899370871,1473239484.0,2.295 -3482,0.0,0.0,0.0,0.0,4405,102.0,9138.74,0.0,0.0,237.582459626,0.0,0.0,0,38.9055636339,-77.0899633225,1473239485.0,2.37 -3483,0.0,0.0,0.0,0.0,4406,103.0,9140.89,0.0,0.0,233.574930029,0.0,0.0,0,38.9055701718,-77.0899866242,1473239486.0,1.754 -3484,0.0,35.0,0.0,0.0,4407,103.0,9142.91,0.0,0.0,229.81461621,0.0,0.0,0,38.9055762067,-77.0900086686,1473239487.0,2.118 -3485,0.0,35.0,0.0,0.0,4408,104.0,9145.22,0.0,0.0,245.404769139,0.0,0.0,0,38.9055830799,-77.0900338143,1473239488.0,2.314 -3486,0.0,35.0,0.0,0.0,4409,104.0,9147.43,0.0,0.0,247.962627416,0.0,0.0,0,38.905589534,-77.0900578704,1473239489.0,1.978 -3487,0.0,21.0,0.0,0.0,4410,104.0,9149.55,0.0,0.0,243.197318302,0.0,0.0,0,38.9055958204,-77.0900810044,1473239490.0,2.165 -3488,0.0,21.0,0.0,0.0,4411,103.0,9151.5,0.0,0.0,242.171872838,0.0,0.0,0,38.9056016039,-77.0901022106,1473239491.0,1.596 -3489,0.0,21.0,0.0,0.0,4412,103.0,9153.49,0.0,0.0,250.716876611,0.0,0.0,0,38.9056075551,-77.0901239198,1473239492.0,2.249 -3490,0.0,0.0,0.0,0.0,4413,103.0,9155.73,0.0,0.0,251.19999652,0.0,0.0,0,38.9056147635,-77.0901479758,1473239493.0,2.09 -3491,0.0,0.0,0.0,0.0,4414,103.0,9157.92,0.0,0.0,252.117349166,0.0,0.0,0,38.9056219719,-77.0901714452,1473239494.0,2.183 -3492,0.0,0.0,0.0,0.0,4415,103.0,9159.84,0.0,0.0,247.928030035,0.0,0.0,0,38.9056285936,-77.0901919808,1473239495.0,1.558 -3493,0.0,0.0,0.0,0.0,4416,103.0,9161.62,0.0,0.0,263.163291113,0.0,0.0,0,38.9056347962,-77.0902108401,1473239496.0,1.978 -3494,0.0,0.0,0.0,0.0,4417,103.0,9163.66,0.0,0.0,271.509806088,0.0,0.0,0,38.9056420885,-77.0902324654,1473239497.0,2.015 -3495,0.0,0.0,0.0,0.0,4418,103.0,9165.58,0.0,0.0,285.411400147,0.0,0.0,0,38.9056486264,-77.0902530011,1473239498.0,1.791 -3496,0.0,0.0,0.0,0.0,4419,103.0,9167.31,0.0,0.0,297.247564757,0.0,0.0,0,38.9056544099,-77.0902714413,1473239499.0,1.614 -3497,0.0,0.0,0.0,0.0,4420,103.0,9168.84,0.0,0.0,338.731531066,0.0,0.0,0,38.905659439,-77.0902878698,1473239500.0,1.446 -3498,0.0,0.0,0.0,0.0,4421,102.0,9170.22,0.0,0.0,379.820514254,0.0,0.0,0,38.9056638815,-77.0903027058,1473239501.0,1.316 -3499,0.0,0.0,0.0,0.0,4422,102.0,9171.46,0.0,0.0,420.820216859,0.0,0.0,0,38.9056678209,-77.0903161168,1473239502.0,1.185 -3500,0.0,0.0,0.0,0.0,4423,102.0,9172.62,0.0,0.0,462.970385929,0.0,0.0,0,38.9056716766,-77.0903286058,1473239503.0,1.092 -3501,0.0,0.0,0.0,0.0,4424,102.0,9173.66,0.0,0.0,512.097471436,0.0,0.0,0,38.905675197,-77.0903397538,1473239504.0,0.979999999999 -3502,0.0,0.0,0.0,0.0,4425,101.0,9174.56,0.0,0.0,577.794675284,0.0,0.0,0,38.9056781307,-77.090349393,1473239505.0,0.84 -3503,0.0,0.0,0.0,0.0,4426,100.0,9175.37,0.0,0.0,661.966987621,0.0,0.0,0,38.9056808129,-77.0903581101,1473239506.0,0.802 -3504,0.0,0.0,0.0,0.0,4427,100.0,9176.06,0.0,0.0,772.477076492,0.0,0.0,0,38.9056829084,-77.09036557,1473239507.0,0.644 -3505,0.0,0.0,0.0,0.0,4428,100.0,9176.61,0.0,0.0,950.437365767,0.0,0.0,0,38.9056848362,-77.0903714374,1473239508.0,0.532 -3506,0.0,0.0,0.0,0.0,4429,100.0,9177.1,0.0,0.0,1040.53116639,0.0,0.0,0,38.905686345,-77.0903768018,1473239509.0,0.475999999999 -3507,0.0,0.0,0.0,0.0,4430,100.0,9177.53,0.0,0.0,1053.07305865,0.0,0.0,0,38.9056874346,-77.0903815795,1473239510.0,0.429 -3508,0.0,0.0,0.0,0.0,4431,101.0,9177.92,0.0,0.0,958.196102507,0.0,0.0,0,38.9056888595,-77.0903857704,1473239511.0,0.410999999998 -3509,0.0,0.0,0.0,0.0,4432,101.0,9178.5,0.0,0.0,865.071340299,0.0,0.0,0,38.9056910388,-77.0903918054,1473239512.0,0.728 -3510,0.0,0.0,0.0,0.0,4433,100.0,9179.18,0.0,0.0,773.853791884,0.0,0.0,0,38.905692799,-77.0903993491,1473239513.0,0.662 -3511,0.0,22.0,0.0,0.0,4434,100.0,9179.81,0.0,0.0,710.441334769,0.0,0.0,0,38.905693721,-77.0904065575,1473239514.0,0.672 -3512,0.0,22.0,0.0,0.0,4435,100.0,9180.46,0.0,0.0,694.060524481,0.0,0.0,0,38.905694643,-77.0904139336,1473239515.0,0.662 -3513,0.0,22.0,0.0,0.0,4436,100.0,9181.13,0.0,0.0,767.497956661,0.0,0.0,0,38.9056954812,-77.090421645,1473239516.0,0.718 -3514,0.0,0.0,0.0,0.0,4437,100.0,9181.8,0.0,0.0,843.355019606,0.0,0.0,0,38.9056959003,-77.0904293563,1473239517.0,0.634 -3515,0.0,0.0,0.0,0.0,4438,100.0,9182.4,0.0,0.0,1014.1008306,0.0,0.0,0,38.9056963194,-77.0904362295,1473239518.0,0.504 -3516,0.0,0.0,0.0,0.0,4439,99.0,9182.83,0.0,0.0,1342.00894673,0.0,0.0,0,38.9056967385,-77.0904411748,1473239519.0,0.326999999999 -3517,0.0,0.0,0.0,0.0,4440,99.0,9183.17,0.0,0.0,1706.383796,0.0,0.0,0,38.9056966547,-77.0904450305,1473239520.0,0.298999999999 -3518,0.0,0.0,0.0,0.0,4441,99.0,9183.44,0.0,0.0,1890.46746105,0.0,0.0,0,38.9056964871,-77.0904482156,1473239521.0,0.224 -3519,0.0,0.0,0.0,0.0,4442,100.0,9183.69,0.0,0.0,1561.33828996,0.0,0.0,0,38.9056961518,-77.0904511493,1473239522.0,0.271000000001 -3520,0.0,0.0,0.0,0.0,4443,99.0,9184.1,0.0,0.0,1211.78420799,0.0,0.0,0,38.905695565,-77.0904557593,1473239523.0,0.475999999999 -3521,0.0,0.0,0.0,0.0,4444,100.0,9184.6,0.0,0.0,946.403257922,0.0,0.0,0,38.9056945592,-77.0904613752,1473239524.0,0.495 -3522,0.0,0.0,0.0,0.0,4445,100.0,9185.23,0.0,0.0,778.543214204,0.0,0.0,0,38.9056925476,-77.0904681645,1473239525.0,0.709 -3523,0.0,0.0,0.0,0.0,4446,101.0,9185.97,0.0,0.0,677.498826842,0.0,0.0,0,38.9056896139,-77.0904757921,1473239526.0,0.7 -3524,0.0,0.0,0.0,0.0,4447,101.0,9186.77,0.0,0.0,622.188703639,0.0,0.0,0,38.9056859259,-77.0904838387,1473239527.0,0.84 -3525,0.0,0.0,0.0,0.0,4448,100.0,9187.66,0.0,0.0,566.529162763,0.0,0.0,0,38.9056814834,-77.0904923044,1473239528.0,0.84 -3526,0.0,0.0,0.0,0.0,4449,100.0,9188.58,0.0,0.0,529.459492911,0.0,0.0,0,38.9056762867,-77.0905006025,1473239529.0,0.961000000001 -3527,0.0,0.0,0.0,0.0,4450,100.0,9189.58,0.0,0.0,492.146953802,0.0,0.0,0,38.9056701679,-77.0905090682,1473239530.0,0.998 -3528,0.0,0.0,0.0,0.0,4451,100.0,9190.63,0.0,0.0,464.028733623,0.0,0.0,0,38.9056633785,-77.0905175339,1473239531.0,1.101 -3529,0.0,0.0,0.0,0.0,4452,100.0,9191.77,0.0,0.0,435.924726556,0.0,0.0,0,38.9056554995,-77.0905259997,1473239532.0,1.148 -3530,0.0,0.0,0.0,0.0,4453,100.0,9192.92,0.0,0.0,417.151236284,0.0,0.0,0,38.9056471176,-77.0905337948,1473239533.0,1.166 -3531,0.0,0.0,0.0,0.0,4454,100.0,9194.13,0.0,0.0,404.942045956,0.0,0.0,0,38.9056379814,-77.0905413385,1473239534.0,1.26 -3532,0.0,0.0,0.0,0.0,4455,99.0,9195.41,0.0,0.0,404.390525707,0.0,0.0,0,38.9056278393,-77.0905483793,1473239535.0,1.269 -3533,0.0,0.0,0.0,0.0,4456,99.0,9196.68,0.0,0.0,408.207984619,0.0,0.0,0,38.9056176133,-77.0905550011,1473239536.0,1.278 -3534,0.0,22.0,0.0,0.0,4457,99.0,9197.94,0.0,0.0,380.755841553,0.0,0.0,0,38.905607136,-77.0905607007,1473239537.0,1.241 -3535,0.0,22.0,0.0,0.0,4458,99.0,9199.25,0.0,0.0,351.205806603,0.0,0.0,0,38.9055961557,-77.090566149,1473239538.0,1.288 -3536,0.0,31.0,0.0,0.0,4459,100.0,9200.69,0.0,0.0,323.092286906,0.0,0.0,0,38.9055840019,-77.0905720163,1473239539.0,1.484 -3537,0.0,31.0,0.0,0.0,4460,100.0,9202.42,0.0,0.0,303.187007321,0.0,0.0,0,38.9055693336,-77.090578638,1473239540.0,1.922 -3538,0.0,31.0,0.0,0.0,4461,100.0,9204.27,0.0,0.0,294.288509754,0.0,0.0,0,38.905553408,-77.0905850083,1473239541.0,1.708 -3539,0.0,0.0,0.0,0.0,4462,99.0,9205.96,0.0,0.0,295.577848296,0.0,0.0,0,38.9055388235,-77.0905904565,1473239542.0,1.633 -3540,0.0,0.0,0.0,0.0,4463,99.0,9207.58,0.0,0.0,314.884637719,0.0,0.0,0,38.9055247419,-77.0905954856,1473239543.0,1.549 -3541,0.0,0.0,0.0,0.0,4464,99.0,9209.12,0.0,0.0,337.530794206,0.0,0.0,0,38.9055113308,-77.0906000957,1473239544.0,1.474 -3542,0.0,0.0,0.0,0.0,4465,99.0,9210.61,0.0,0.0,342.212082605,0.0,0.0,0,38.9054984227,-77.0906047057,1473239545.0,1.484 -3543,0.0,0.0,0.0,0.0,4466,100.0,9212.02,0.0,0.0,350.354601324,0.0,0.0,0,38.9054861013,-77.0906088967,1473239546.0,1.353 -3544,0.0,0.0,0.0,0.0,4467,100.0,9213.45,0.0,0.0,353.162408843,0.0,0.0,0,38.9054736961,-77.0906130038,1473239547.0,1.502 -3545,0.0,0.0,0.0,0.0,4468,100.0,9214.9,0.0,0.0,354.85833318,0.0,0.0,0,38.9054608718,-77.0906161889,1473239548.0,1.409 -3546,0.0,0.0,0.0,0.0,4469,99.0,9216.25,0.0,0.0,353.72699626,0.0,0.0,0,38.9054488856,-77.0906190388,1473239549.0,1.353 -3547,0.0,0.0,0.0,0.0,4470,98.0,9217.66,0.0,0.0,351.632426903,0.0,0.0,0,38.9054363128,-77.0906215534,1473239550.0,1.437 -3548,0.0,0.0,0.0,0.0,4471,98.0,9219.09,0.0,0.0,357.050116853,0.0,0.0,0,38.9054234885,-77.0906234812,1473239551.0,1.409 -3549,0.0,0.0,0.0,0.0,4472,97.0,9220.52,0.0,0.0,359.491669442,0.0,0.0,0,38.9054106642,-77.0906245708,1473239552.0,1.437 -3550,0.0,0.0,0.0,0.0,4473,96.0,9221.9,0.0,0.0,362.889163281,0.0,0.0,0,38.9053982589,-77.0906246547,1473239553.0,1.353 -3551,0.0,0.0,0.0,0.0,4474,96.0,9223.27,0.0,0.0,369.377782326,0.0,0.0,0,38.9053859375,-77.0906242356,1473239554.0,1.334 -3552,0.0,0.0,0.0,0.0,4475,96.0,9224.56,0.0,0.0,382.094805826,0.0,0.0,0,38.9053742867,-77.0906239003,1473239555.0,1.297 -3553,0.0,0.0,0.0,0.0,4476,97.0,9225.91,0.0,0.0,386.261788509,0.0,0.0,0,38.9053621329,-77.0906233136,1473239556.0,1.344 -3554,0.0,0.0,0.0,0.0,4477,96.0,9227.28,0.0,0.0,387.978380702,0.0,0.0,0,38.9053498115,-77.0906218886,1473239557.0,1.297 -3555,0.0,0.0,0.0,0.0,4478,96.0,9228.53,0.0,0.0,381.308929562,0.0,0.0,0,38.9053385798,-77.0906202961,1473239558.0,1.204 -3556,0.0,0.0,0.0,0.0,4479,96.0,9229.87,0.0,0.0,378.426727739,0.0,0.0,0,38.9053266775,-77.0906182844,1473239559.0,1.409 -3557,0.0,0.0,0.0,0.0,4480,95.0,9231.26,0.0,0.0,363.237245813,0.0,0.0,0,38.9053143561,-77.0906152669,1473239560.0,1.325 -3558,0.0,0.0,0.0,0.0,4481,94.0,9232.7,0.0,0.0,353.986098,0.0,0.0,0,38.9053016994,-77.0906114951,1473239561.0,1.465 -3559,0.0,0.0,0.0,0.0,4482,94.0,9234.14,0.0,0.0,341.495721694,0.0,0.0,0,38.9052892104,-77.0906072203,1473239562.0,1.381 -3560,0.0,0.0,0.0,0.0,4483,94.0,9235.64,0.0,0.0,352.81719182,0.0,0.0,0,38.9052763861,-77.0906015206,1473239563.0,1.577 -3561,0.0,0.0,0.0,0.0,4484,94.0,9237.11,0.0,0.0,356.326413505,0.0,0.0,0,38.9052641485,-77.0905950665,1473239564.0,1.344 -3562,0.0,22.0,0.0,0.0,4485,94.0,9238.56,0.0,0.0,352.79779341,0.0,0.0,0,38.90525233,-77.0905881934,1473239565.0,1.484 -3563,0.0,22.0,0.0,0.0,4486,95.0,9239.95,0.0,0.0,318.636511606,0.0,0.0,0,38.9052409306,-77.0905813202,1473239566.0,1.278 -3564,0.0,22.0,0.0,0.0,4487,96.0,9241.46,0.0,0.0,313.51791531,0.0,0.0,0,38.9052286092,-77.0905741118,1473239567.0,1.652 -3565,0.0,0.0,0.0,0.0,4488,96.0,9243.27,0.0,0.0,291.410578583,0.0,0.0,0,38.9052138571,-77.0905651432,1473239568.0,1.903 -3566,0.0,0.0,0.0,0.0,4489,95.0,9245.31,0.0,0.0,272.24064659,0.0,0.0,0,38.9051974285,-77.0905547496,1473239569.0,2.043 -3567,0.0,0.0,0.0,0.0,4490,95.0,9247.09,0.0,0.0,255.27287676,0.0,0.0,0,38.9051832631,-77.0905451104,1473239570.0,1.456 -3568,0.0,24.0,0.0,0.0,4491,95.0,9248.93,0.0,0.0,253.987381995,0.0,0.0,0,38.9051686786,-77.0905348845,1473239571.0,2.118 -3569,0.0,24.0,0.0,0.0,4492,95.0,9251.11,0.0,0.0,256.390334861,0.0,0.0,0,38.9051515795,-77.0905225631,1473239572.0,2.109 -3570,0.0,24.0,0.0,0.0,4493,94.0,9253.19,0.0,0.0,259.946030253,0.0,0.0,0,38.9051353186,-77.090510577,1473239573.0,1.95 -3571,0.0,0.0,0.0,0.0,4494,95.0,9255.09,0.0,0.0,262.517898948,0.0,0.0,0,38.9051207341,-77.0904990938,1473239574.0,1.819 -3572,0.0,0.0,0.0,0.0,4495,94.0,9256.88,0.0,0.0,290.407500811,0.0,0.0,0,38.9051068202,-77.0904887002,1473239575.0,1.708 -3573,0.0,0.0,0.0,0.0,4496,94.0,9258.57,0.0,0.0,309.888252418,0.0,0.0,0,38.9050938282,-77.0904785581,1473239576.0,1.614 -3574,0.0,0.0,0.0,0.0,4497,94.0,9260.18,0.0,0.0,326.243538683,0.0,0.0,0,38.9050815068,-77.0904687513,1473239577.0,1.53 -3575,0.0,0.0,0.0,0.0,4498,94.0,9261.73,0.0,0.0,342.68116114,0.0,0.0,0,38.9050696883,-77.0904592797,1473239578.0,1.456 -3576,0.0,0.0,0.0,0.0,4499,95.0,9263.18,0.0,0.0,359.135090763,0.0,0.0,0,38.905058708,-77.0904501434,1473239579.0,1.409 -3577,0.0,0.0,0.0,0.0,4500,94.0,9264.55,0.0,0.0,375.597541543,0.0,0.0,0,38.9050483145,-77.0904417615,1473239580.0,1.325 -3578,0.0,0.0,0.0,0.0,4501,94.0,9265.85,0.0,0.0,392.107603832,0.0,0.0,0,38.9050382562,-77.0904339664,1473239581.0,1.269 -3579,0.0,0.0,0.0,0.0,4502,93.0,9267.13,0.0,0.0,409.303050814,0.0,0.0,0,38.9050283656,-77.0904264227,1473239582.0,1.222 -3580,0.0,0.0,0.0,0.0,4503,92.0,9268.33,0.0,0.0,427.066001109,0.0,0.0,0,38.9050190616,-77.0904194657,1473239583.0,1.176 -3581,0.0,0.0,0.0,0.0,4504,92.0,9269.47,0.0,0.0,443.141663373,0.0,0.0,0,38.9050102606,-77.0904125087,1473239584.0,1.129 -3582,0.0,0.0,0.0,0.0,4505,91.0,9270.61,0.0,0.0,460.770663869,0.0,0.0,0,38.9050014596,-77.090405887,1473239585.0,1.082 -3583,0.0,0.0,0.0,0.0,4506,91.0,9271.67,0.0,0.0,478.161871248,0.0,0.0,0,38.904993413,-77.0903993491,1473239586.0,1.045 -3584,0.0,0.0,0.0,0.0,4507,92.0,9272.68,0.0,0.0,496.466704493,0.0,0.0,0,38.9049857017,-77.0903931465,1473239587.0,1.008 -3585,0.0,0.0,0.0,0.0,4508,92.0,9273.7,0.0,0.0,515.645717909,0.0,0.0,0,38.9049779065,-77.0903867763,1473239588.0,0.97 -3586,0.0,0.0,0.0,0.0,4509,92.0,9274.67,0.0,0.0,534.108985979,0.0,0.0,0,38.9049704466,-77.0903809927,1473239589.0,0.941999999999 -3587,0.0,0.0,0.0,0.0,4510,91.0,9275.58,0.0,0.0,553.648809296,0.0,0.0,0,38.9049634058,-77.0903755445,1473239590.0,0.896 -3588,0.0,0.0,0.0,0.0,4511,90.0,9276.48,0.0,0.0,574.138419554,0.0,0.0,0,38.9049564488,-77.0903701801,1473239591.0,0.868000000001 -3589,0.0,0.0,0.0,0.0,4512,89.0,9277.34,0.0,0.0,593.613642321,0.0,0.0,0,38.9049497433,-77.0903652348,1473239592.0,0.848999999999 -3590,0.0,0.0,0.0,0.0,4513,87.0,9278.16,0.0,0.0,615.497753833,0.0,0.0,0,38.9049433731,-77.0903605409,1473239593.0,0.812 -3591,0.0,0.0,0.0,0.0,4514,87.0,9278.96,0.0,0.0,635.995704964,0.0,0.0,0,38.9049371704,-77.0903557632,1473239594.0,0.784 -3592,0.0,0.0,0.0,0.0,4515,87.0,9279.75,0.0,0.0,657.000324234,0.0,0.0,0,38.9049311355,-77.0903509017,1473239595.0,0.765 -3593,0.0,0.0,0.0,0.0,4516,87.0,9280.5,0.0,0.0,678.836750047,0.0,0.0,0,38.9049254358,-77.0903462917,1473239596.0,0.728 -3594,0.0,0.0,0.0,0.0,4517,87.0,9281.24,0.0,0.0,699.74978644,0.0,0.0,0,38.9049198199,-77.0903418493,1473239597.0,0.718 -3595,0.0,0.0,0.0,0.0,4518,88.0,9281.97,0.0,0.0,722.923238696,0.0,0.0,0,38.904914204,-77.0903374068,1473239598.0,0.7 -3596,0.0,0.0,0.0,0.0,4519,89.0,9282.69,0.0,0.0,735.959423467,0.0,0.0,0,38.904908672,-77.0903330483,1473239599.0,0.672 -3597,0.0,0.0,0.0,0.0,4520,88.0,9283.37,0.0,0.0,757.367116497,0.0,0.0,0,38.9049034752,-77.0903288573,1473239600.0,0.653 -3598,0.0,0.0,0.0,0.0,4521,88.0,9284.05,0.0,0.0,782.631675239,0.0,0.0,0,38.9048984461,-77.0903243311,1473239601.0,0.644 -3599,0.0,0.0,0.0,0.0,4522,87.0,9284.74,0.0,0.0,820.61556825,0.0,0.0,0,38.9048930816,-77.0903203916,1473239602.0,0.653 -3600,0.0,0.0,0.0,0.0,4523,86.0,9285.37,0.0,0.0,820.95970545,0.0,0.0,0,38.904888304,-77.0903164521,1473239603.0,0.579 -3601,0.0,0.0,0.0,0.0,4524,85.0,9286.04,0.0,0.0,809.827306956,0.0,0.0,0,38.9048831072,-77.0903125964,1473239604.0,0.606 -3602,0.0,0.0,0.0,0.0,4525,86.0,9286.68,0.0,0.0,750.560483478,0.0,0.0,0,38.904878078,-77.0903089084,1473239605.0,0.616 -3603,0.0,0.0,0.0,0.0,4526,86.0,9287.43,0.0,0.0,680.18397357,0.0,0.0,0,38.9048718754,-77.0903055556,1473239606.0,0.774 -3604,0.0,0.0,0.0,0.0,4527,87.0,9288.24,0.0,0.0,625.51449244,0.0,0.0,0,38.9048653375,-77.0903013647,1473239607.0,0.784 -3605,0.0,0.0,0.0,0.0,4528,88.0,9289.13,0.0,0.0,579.429500236,0.0,0.0,0,38.9048583806,-77.0902962517,1473239608.0,0.933 -3606,0.0,0.0,0.0,0.0,4529,89.0,9290.04,0.0,0.0,553.115886159,0.0,0.0,0,38.904851675,-77.0902901329,1473239609.0,0.896 -3607,0.0,0.0,0.0,0.0,4530,90.0,9290.91,0.0,0.0,525.38209607,0.0,0.0,0,38.9048453886,-77.0902840979,1473239610.0,0.877 -3608,0.0,0.0,0.0,0.0,4531,90.0,9291.86,0.0,0.0,502.735665504,0.0,0.0,0,38.9048385993,-77.0902775601,1473239611.0,1.017 -3609,0.0,0.0,0.0,0.0,4532,91.0,9292.86,0.0,0.0,489.220212631,0.0,0.0,0,38.9048315585,-77.0902702678,1473239612.0,0.998 -3610,0.0,0.0,0.0,0.0,4533,91.0,9293.91,0.0,0.0,475.819707587,0.0,0.0,0,38.9048247691,-77.0902618859,1473239613.0,1.138 -3611,0.0,0.0,0.0,0.0,4534,91.0,9294.95,0.0,0.0,476.135511052,0.0,0.0,0,38.9048186503,-77.0902526658,1473239614.0,1.008 -3612,0.0,0.0,0.0,0.0,4535,91.0,9295.94,0.0,0.0,495.119536002,0.0,0.0,0,38.9048132021,-77.0902436972,1473239615.0,1.026 -3613,0.0,0.0,0.0,0.0,4536,91.0,9296.91,0.0,0.0,514.277317922,0.0,0.0,0,38.9048080053,-77.0902346447,1473239616.0,0.951999999999 -3614,0.0,0.0,0.0,0.0,4537,91.0,9297.83,0.0,0.0,548.542444362,0.0,0.0,0,38.9048033115,-77.0902260114,1473239617.0,0.914 -3615,0.0,0.0,0.0,0.0,4538,91.0,9298.71,0.0,0.0,564.723138981,0.0,0.0,0,38.9047986176,-77.0902177133,1473239618.0,0.877 -3616,0.0,0.0,0.0,0.0,4539,91.0,9299.58,0.0,0.0,589.04829176,0.0,0.0,0,38.9047945105,-77.0902091637,1473239619.0,0.857999999999 -3617,0.0,0.0,0.0,0.0,4540,92.0,9300.44,0.0,0.0,611.638608959,0.0,0.0,0,38.9047901519,-77.0902010333,1473239620.0,0.802 -3618,0.0,0.0,0.0,0.0,4541,92.0,9301.26,0.0,0.0,635.317025947,0.0,0.0,0,38.9047858771,-77.0901933219,1473239621.0,0.812 -3619,0.0,0.0,0.0,0.0,4542,92.0,9302.02,0.0,0.0,659.393358111,0.0,0.0,0,38.9047818538,-77.0901861973,1473239622.0,0.756 -3620,0.0,0.0,0.0,0.0,4543,92.0,9302.73,0.0,0.0,683.796104434,0.0,0.0,0,38.9047784172,-77.0901792403,1473239623.0,0.709 -3621,0.0,0.0,0.0,0.0,4544,92.0,9303.43,0.0,0.0,703.654740074,0.0,0.0,0,38.9047750644,-77.0901723672,1473239624.0,0.718 -3622,0.0,0.0,0.0,0.0,4545,93.0,9304.11,0.0,0.0,730.804517701,0.0,0.0,0,38.9047718793,-77.0901657455,1473239625.0,0.69 -3623,0.0,0.0,0.0,0.0,4546,93.0,9304.76,0.0,0.0,746.075834895,0.0,0.0,0,38.9047689456,-77.0901591238,1473239626.0,0.672 -3624,0.0,0.0,0.0,0.0,4547,94.0,9305.42,0.0,0.0,765.742471857,0.0,0.0,0,38.9047659282,-77.0901526697,1473239627.0,0.653 -3625,0.0,0.0,0.0,0.0,4548,94.0,9306.05,0.0,0.0,792.284316886,0.0,0.0,0,38.9047624916,-77.0901468862,1473239628.0,0.625 -3626,0.0,0.0,0.0,0.0,4549,94.0,9306.67,0.0,0.0,811.369000787,0.0,0.0,0,38.9047593065,-77.0901410189,1473239629.0,0.625 -3627,0.0,0.0,0.0,0.0,4550,93.0,9307.26,0.0,0.0,837.223462553,0.0,0.0,0,38.9047560375,-77.0901355706,1473239630.0,0.597 -3628,0.0,0.0,0.0,0.0,4551,92.0,9307.84,0.0,0.0,835.6545961,0.0,0.0,0,38.9047531039,-77.0901301224,1473239631.0,0.597 -3629,0.0,0.0,0.0,0.0,4552,92.0,9308.43,0.0,0.0,814.694119389,0.0,0.0,0,38.9047500864,-77.0901244227,1473239632.0,0.597 -3630,0.0,0.0,0.0,0.0,4553,90.0,9309.01,0.0,0.0,834.851244687,0.0,0.0,0,38.9047478233,-77.0901183877,1473239633.0,0.597 -3631,0.0,0.0,0.0,0.0,4554,90.0,9309.68,0.0,0.0,805.428097237,0.0,0.0,0,38.9047447219,-77.0901118498,1473239634.0,0.681 -3632,0.0,0.0,0.0,0.0,4555,89.0,9310.33,0.0,0.0,746.071015625,0.0,0.0,0,38.9047413692,-77.0901056472,1473239635.0,0.653 -3633,0.0,0.0,0.0,0.0,4556,89.0,9310.93,0.0,0.0,678.693148431,0.0,0.0,0,38.9047380164,-77.090100199,1473239636.0,0.597 -3634,0.0,0.0,0.0,0.0,4557,89.0,9311.66,0.0,0.0,629.853415932,0.0,0.0,0,38.9047336578,-77.0900939126,1473239637.0,0.868000000001 -3635,0.0,0.0,0.0,0.0,4558,89.0,9312.57,0.0,0.0,606.05424579,0.0,0.0,0,38.904728042,-77.090086285,1473239638.0,0.896 -3636,0.0,0.0,0.0,0.0,4559,90.0,9313.43,0.0,0.0,588.85608969,0.0,0.0,0,38.9047230966,-77.0900785737,1473239639.0,0.868000000001 -3637,0.0,0.0,0.0,0.0,4560,90.0,9314.25,0.0,0.0,597.714711544,0.0,0.0,0,38.904718319,-77.0900714491,1473239640.0,0.793 -3638,0.0,0.0,0.0,0.0,4561,91.0,9315.01,0.0,0.0,645.734795881,0.0,0.0,0,38.9047137927,-77.0900647435,1473239641.0,0.756 -3639,0.0,0.0,0.0,0.0,4562,90.0,9315.77,0.0,0.0,680.584772579,0.0,0.0,0,38.9047091827,-77.0900582895,1473239642.0,0.746 -3640,0.0,0.0,0.0,0.0,4563,89.0,9316.49,0.0,0.0,704.680788755,0.0,0.0,0,38.9047047403,-77.0900522545,1473239643.0,0.7 -3641,0.0,0.0,0.0,0.0,4564,89.0,9317.16,0.0,0.0,721.104319758,0.0,0.0,0,38.9047003817,-77.0900469739,1473239644.0,0.7 -3642,0.0,0.0,0.0,0.0,4565,88.0,9317.83,0.0,0.0,740.968840817,0.0,0.0,0,38.9046961069,-77.0900415257,1473239645.0,0.672 -3643,0.0,0.0,0.0,0.0,4566,88.0,9318.46,0.0,0.0,764.647467726,0.0,0.0,0,38.9046924189,-77.0900359936,1473239646.0,0.662 -3644,0.0,0.0,0.0,0.0,4567,88.0,9319.11,0.0,0.0,783.151728019,0.0,0.0,0,38.9046884794,-77.0900304615,1473239647.0,0.634 -3645,0.0,0.0,0.0,0.0,4568,88.0,9319.76,0.0,0.0,809.078491121,0.0,0.0,0,38.9046844561,-77.0900250133,1473239648.0,0.616 -3646,0.0,0.0,0.0,0.0,4569,89.0,9320.36,0.0,0.0,835.902557644,0.0,0.0,0,38.9046806842,-77.0900199842,1473239649.0,0.597 -3647,0.0,0.0,0.0,0.0,4570,88.0,9320.97,0.0,0.0,864.074691963,0.0,0.0,0,38.9046768285,-77.090014955,1473239650.0,0.588 -3648,0.0,0.0,0.0,0.0,4571,89.0,9321.57,0.0,0.0,887.348939406,0.0,0.0,0,38.9046732243,-77.0900099259,1473239651.0,0.56 -3649,0.0,0.0,0.0,0.0,4572,88.0,9322.12,0.0,0.0,906.579174581,0.0,0.0,0,38.9046698716,-77.0900051482,1473239652.0,0.541 -3650,0.0,0.0,0.0,0.0,4573,88.0,9322.71,0.0,0.0,927.427773049,0.0,0.0,0,38.9046660159,-77.0900004543,1473239653.0,0.541 -3651,0.0,0.0,0.0,0.0,4574,88.0,9323.27,0.0,0.0,951.831554658,0.0,0.0,0,38.9046624117,-77.0899959281,1473239654.0,0.532 -3652,0.0,0.0,0.0,0.0,4575,88.0,9323.83,0.0,0.0,969.561640616,0.0,0.0,0,38.9046590589,-77.0899911504,1473239655.0,0.523 -3653,0.0,0.0,0.0,0.0,4576,88.0,9324.37,0.0,0.0,991.807924158,0.0,0.0,0,38.9046557061,-77.0899866242,1473239656.0,0.495 -3654,0.0,0.0,0.0,0.0,4577,88.0,9324.87,0.0,0.0,1020.11976471,0.0,0.0,0,38.9046526048,-77.0899824332,1473239657.0,0.485000000001 -3655,0.0,0.0,0.0,0.0,4578,88.0,9325.4,0.0,0.0,1046.63174873,0.0,0.0,0,38.9046491683,-77.0899781585,1473239658.0,0.485000000001 -3656,0.0,0.0,0.0,0.0,4579,88.0,9325.92,0.0,0.0,1061.01526759,0.0,0.0,0,38.9046458155,-77.0899739675,1473239659.0,0.467000000001 -3657,0.0,0.0,0.0,0.0,4580,88.0,9326.42,0.0,0.0,1098.35769373,0.0,0.0,0,38.9046427142,-77.0899698604,1473239660.0,0.457 -3658,0.0,0.0,0.0,0.0,4581,88.0,9326.92,0.0,0.0,1182.9047224,0.0,0.0,0,38.9046396129,-77.0899656694,1473239661.0,0.448000000001 -3659,0.0,0.0,0.0,0.0,4582,88.0,9327.38,0.0,0.0,1190.81986143,0.0,0.0,0,38.9046366792,-77.0899618138,1473239662.0,0.439 -3660,0.0,0.0,0.0,0.0,4583,88.0,9327.8,0.0,0.0,1150.7766497,0.0,0.0,0,38.904633997,-77.0899583772,1473239663.0,0.383 -3661,0.0,0.0,0.0,0.0,4584,88.0,9328.21,0.0,0.0,1056.77295393,0.0,0.0,0,38.9046311472,-77.0899554435,1473239664.0,0.429 -3662,0.0,0.0,0.0,0.0,4585,88.0,9328.72,0.0,0.0,896.335501094,0.0,0.0,0,38.9046274591,-77.0899520069,1473239665.0,0.616 -3663,0.0,0.0,0.0,0.0,4586,89.0,9329.35,0.0,0.0,771.151586369,0.0,0.0,0,38.9046227653,-77.0899477322,1473239666.0,0.634 -3664,0.0,0.0,0.0,0.0,4587,89.0,9330.03,0.0,0.0,707.490827121,0.0,0.0,0,38.9046180714,-77.089942703,1473239667.0,0.765 -3665,0.0,0.0,0.0,0.0,4588,90.0,9330.88,0.0,0.0,576.171923716,0.0,0.0,0,38.9046125393,-77.0899359975,1473239668.0,0.914 -3666,0.0,0.0,0.0,0.0,4589,90.0,9331.77,0.0,0.0,457.937181328,0.0,0.0,0,38.9046073426,-77.0899281185,1473239669.0,0.914 -3667,0.0,33.0,0.0,0.0,4590,91.0,9332.77,0.0,0.0,374.007907596,0.0,0.0,0,38.9046019781,-77.0899188146,1473239670.0,1.12 -3668,0.0,33.0,0.0,0.0,4591,92.0,9334.26,0.0,0.0,325.432783338,0.0,0.0,0,38.9045940153,-77.0899050683,1473239671.0,1.847 -3669,0.0,33.0,0.0,0.0,4592,93.0,9336.07,0.0,0.0,299.44932436,0.0,0.0,0,38.9045846276,-77.089888053,1473239672.0,1.81 -3670,0.0,0.0,0.0,0.0,4593,93.0,9337.78,0.0,0.0,290.009365671,0.0,0.0,0,38.9045759942,-77.0898717083,1473239673.0,1.652 -3671,0.0,0.0,0.0,0.0,4594,93.0,9339.41,0.0,0.0,302.163016293,0.0,0.0,0,38.9045681991,-77.0898557827,1473239674.0,1.577 -3672,0.0,0.0,0.0,0.0,4595,93.0,9340.98,0.0,0.0,335.544148023,0.0,0.0,0,38.9045606554,-77.0898404438,1473239675.0,1.484 -3673,0.0,0.0,0.0,0.0,4596,94.0,9342.44,0.0,0.0,356.600348264,0.0,0.0,0,38.9045537822,-77.0898261108,1473239676.0,1.409 -3674,0.0,0.0,0.0,0.0,4597,94.0,9343.84,0.0,0.0,369.389595686,0.0,0.0,0,38.9045470767,-77.0898124482,1473239677.0,1.344 -3675,0.0,0.0,0.0,0.0,4598,94.0,9345.12,0.0,0.0,389.140454435,0.0,0.0,0,38.9045409579,-77.0897999592,1473239678.0,1.278 -3676,0.0,0.0,0.0,0.0,4599,95.0,9346.36,0.0,0.0,407.89083358,0.0,0.0,0,38.9045348391,-77.0897878893,1473239679.0,1.232 -3677,0.0,0.0,0.0,0.0,4600,95.0,9347.57,0.0,0.0,425.695025449,0.0,0.0,0,38.9045292232,-77.089775987,1473239680.0,1.222 -3678,0.0,0.0,0.0,0.0,4601,95.0,9348.72,0.0,0.0,449.953835905,0.0,0.0,0,38.9045240264,-77.0897645038,1473239681.0,1.054 -3679,0.0,0.0,0.0,0.0,4602,95.0,9349.8,0.0,0.0,467.013860809,0.0,0.0,0,38.9045188297,-77.0897540264,1473239682.0,1.082 -3680,0.0,0.0,0.0,0.0,4603,96.0,9350.85,0.0,0.0,487.973873329,0.0,0.0,0,38.9045139682,-77.0897436328,1473239683.0,1.036 -3681,0.0,0.0,0.0,0.0,4604,96.0,9351.84,0.0,0.0,507.041511554,0.0,0.0,0,38.9045094419,-77.0897337422,1473239684.0,0.951999999999 -3682,0.0,0.0,0.0,0.0,4605,96.0,9352.82,0.0,0.0,518.544125636,0.0,0.0,0,38.9045049157,-77.0897240192,1473239685.0,1.017 -3683,0.0,0.0,0.0,0.0,4606,96.0,9353.77,0.0,0.0,541.450242832,0.0,0.0,0,38.9045007247,-77.0897144638,1473239686.0,0.896 -3684,0.0,0.0,0.0,0.0,4607,96.0,9354.65,0.0,0.0,558.143580624,0.0,0.0,0,38.9044967853,-77.0897057466,1473239687.0,0.896 -3685,0.0,0.0,0.0,0.0,4608,97.0,9355.5,0.0,0.0,581.726241142,0.0,0.0,0,38.9044930134,-77.0896971133,1473239688.0,0.857999999999 -3686,0.0,0.0,0.0,0.0,4609,97.0,9356.32,0.0,0.0,616.486613434,0.0,0.0,0,38.9044895768,-77.0896887314,1473239689.0,0.83 -3687,0.0,47.0,0.0,0.0,4610,97.0,9357.08,0.0,0.0,642.312547617,0.0,0.0,0,38.9044856373,-77.0896816067,1473239690.0,0.802 -3688,0.0,47.0,0.0,0.0,4611,96.0,9357.77,0.0,0.0,650.458700096,0.0,0.0,0,38.9044821169,-77.089674985,1473239691.0,0.737 -3689,0.0,47.0,0.0,0.0,4612,96.0,9358.47,0.0,0.0,626.549421459,0.0,0.0,0,38.9044789318,-77.0896680281,1473239692.0,0.765 -3690,0.0,0.0,0.0,0.0,4613,96.0,9359.2,0.0,0.0,585.741381234,0.0,0.0,0,38.9044751599,-77.0896610711,1473239693.0,0.802 -3691,0.0,0.0,0.0,0.0,4614,96.0,9360.03,0.0,0.0,557.233420497,0.0,0.0,0,38.9044704661,-77.0896536112,1473239694.0,0.97 -3692,0.0,0.0,0.0,0.0,4615,96.0,9360.98,0.0,0.0,525.343861437,0.0,0.0,0,38.9044656884,-77.0896444749,1473239695.0,0.998 -3693,0.0,0.0,0.0,0.0,4616,97.0,9361.93,0.0,0.0,573.619464324,0.0,0.0,0,38.9044614136,-77.0896350872,1473239696.0,0.979999999999 -3694,0.0,0.0,0.0,0.0,4617,97.0,9362.82,0.0,0.0,563.777651951,0.0,0.0,0,38.9044578094,-77.0896258671,1473239697.0,0.905 -3695,0.0,0.0,0.0,0.0,4618,97.0,9363.74,0.0,0.0,447.927897182,0.0,0.0,0,38.9044546243,-77.0896160603,1473239698.0,1.017 -3696,0.0,0.0,0.0,0.0,4619,97.0,9364.71,0.0,0.0,353.025320015,0.0,0.0,0,38.9044516906,-77.0896054991,1473239699.0,0.97 -3697,0.0,0.0,0.0,0.0,4620,98.0,9366.3,0.0,0.0,249.801024292,0.0,0.0,0,38.9044465777,-77.0895884,1473239700.0,2.165 -3698,0.0,28.0,0.0,0.0,4621,98.0,9368.83,0.0,0.0,199.974029346,0.0,0.0,0,38.9044382796,-77.0895612426,1473239701.0,2.865 -3699,0.0,28.0,0.0,0.0,4622,98.0,9371.69,0.0,0.0,159.018190029,0.0,0.0,0,38.9044285566,-77.0895306487,1473239702.0,2.84600000001 -3700,0.0,28.0,0.0,0.0,4623,99.0,9375.1,0.0,0.0,142.415891394,0.0,0.0,0,38.9044167381,-77.0894944388,1473239703.0,3.88200000001 -3701,0.0,0.0,0.0,0.0,4624,101.0,9378.73,0.0,0.0,132.768540178,0.0,0.0,0,38.9044040814,-77.0894557983,1473239704.0,3.312 -3702,0.0,0.0,0.0,0.0,4625,102.0,9382.64,0.0,0.0,129.339740223,0.0,0.0,0,38.9043902513,-77.0894143078,1473239705.0,4.42299999998 -3703,0.0,0.0,0.0,0.0,4626,104.0,9386.62,0.0,0.0,123.615876774,0.0,0.0,0,38.904376002,-77.0893723145,1473239706.0,3.50799999999 -3704,0.0,0.0,0.0,0.0,4627,106.0,9390.64,0.0,0.0,123.613363086,0.0,0.0,0,38.9043614175,-77.0893298183,1473239707.0,4.46900000002 -3705,0.0,0.0,0.0,0.0,4628,108.0,9394.78,0.0,0.0,119.773146549,0.0,0.0,0,38.9043463301,-77.0892862324,1473239708.0,3.76000000001 -3706,0.0,0.0,0.0,0.0,4629,110.0,9398.94,0.0,0.0,119.52426239,0.0,0.0,0,38.9043308236,-77.0892425627,1473239709.0,4.48800000002 -3707,0.0,0.0,0.0,0.0,4630,111.0,9403.23,0.0,0.0,117.335598096,0.0,0.0,0,38.9043149818,-77.0891973842,1473239710.0,4.096 -3708,0.0,0.0,0.0,0.0,4631,112.0,9407.5,0.0,0.0,116.776837946,0.0,0.0,0,38.90429914,-77.089152541,1473239711.0,4.35700000002 -3709,0.0,0.0,0.0,0.0,4632,115.0,9411.88,0.0,0.0,117.457069695,0.0,0.0,0,38.9042827953,-77.0891066082,1473239712.0,4.33900000002 -3710,0.0,0.0,0.0,0.0,4633,116.0,9416.07,0.0,0.0,117.944638523,0.0,0.0,0,38.9042669535,-77.0890627708,1473239713.0,3.99399999998 -3711,0.0,0.0,0.0,0.0,4634,117.0,9420.37,0.0,0.0,120.2474912,0.0,0.0,0,38.9042506926,-77.08901776,1473239714.0,4.55299999999 -3712,0.0,0.0,0.0,0.0,4635,118.0,9424.5,0.0,0.0,120.303477239,0.0,0.0,0,38.9042351022,-77.0889745932,1473239715.0,3.65800000001 -3713,0.0,0.0,0.0,0.0,4636,120.0,9428.65,0.0,0.0,122.707338218,0.0,0.0,0,38.9042195119,-77.0889310073,1473239716.0,4.57199999999 -3714,0.0,0.0,0.0,0.0,4637,121.0,9432.79,0.0,0.0,121.777123614,0.0,0.0,0,38.9042037539,-77.0888877567,1473239717.0,3.63 -3715,0.0,0.0,0.0,0.0,4638,121.0,9436.88,0.0,0.0,122.836665522,0.0,0.0,0,38.9041884989,-77.0888449252,1473239718.0,4.50699999999 -3716,0.0,0.0,0.0,0.0,4639,122.0,9441.0,0.0,0.0,121.513074491,0.0,0.0,0,38.90417316,-77.0888015907,1473239719.0,3.72299999999 -3717,0.0,0.0,0.0,0.0,4640,123.0,9445.09,0.0,0.0,121.147915836,0.0,0.0,0,38.9041581564,-77.0887585916,1473239720.0,4.395 -3718,0.0,0.0,0.0,0.0,4641,124.0,9449.35,0.0,0.0,120.508828967,0.0,0.0,0,38.9041428175,-77.0887135807,1473239721.0,4.05900000001 -3719,0.0,0.0,0.0,0.0,4642,125.0,9453.46,0.0,0.0,120.767643055,0.0,0.0,0,38.9041279815,-77.0886701625,1473239722.0,4.03999999999 -3720,0.0,0.0,0.0,0.0,4643,126.0,9457.75,0.0,0.0,121.252077295,0.0,0.0,0,38.9041127264,-77.0886247326,1473239723.0,4.45100000001 -3721,0.0,0.0,0.0,0.0,4644,126.0,9461.84,0.0,0.0,123.278766914,0.0,0.0,0,38.9040983096,-77.0885813143,1473239724.0,3.64799999999 -3722,0.0,0.0,0.0,0.0,4645,126.0,9465.92,0.0,0.0,123.876132448,0.0,0.0,0,38.9040844794,-77.0885377284,1473239725.0,4.44099999999 -3723,0.0,0.0,0.0,0.0,4646,127.0,9469.95,0.0,0.0,125.884049347,0.0,0.0,0,38.9040704817,-77.0884948969,1473239726.0,3.56400000001 -3724,0.0,24.0,0.0,0.0,4647,128.0,9473.91,0.0,0.0,126.022363241,0.0,0.0,0,38.9040567353,-77.0884527359,1473239727.0,4.28299999998 -3725,0.0,24.0,0.0,0.0,4648,128.0,9477.97,0.0,0.0,125.825217334,0.0,0.0,0,38.9040430728,-77.0884093177,1473239728.0,3.788 -3726,0.0,28.0,0.0,0.0,4649,129.0,9481.91,0.0,0.0,125.275769388,0.0,0.0,0,38.9040299971,-77.0883670729,1473239729.0,4.00299999999 -3727,0.0,28.0,0.0,0.0,4650,129.0,9486.02,0.0,0.0,125.007035028,0.0,0.0,0,38.9040166698,-77.0883229002,1473239730.0,4.16100000001 -3728,0.0,28.0,0.0,0.0,4651,130.0,9489.97,0.0,0.0,124.885926708,0.0,0.0,0,38.9040037617,-77.088280404,1473239731.0,3.732 -3729,0.0,0.0,0.0,0.0,4652,130.0,9494.01,0.0,0.0,125.31749812,0.0,0.0,0,38.9039906021,-77.0882369857,1473239732.0,4.38499999999 -3730,0.0,0.0,0.0,0.0,4653,131.0,9497.95,0.0,0.0,125.690891818,0.0,0.0,0,38.9039776102,-77.0881947409,1473239733.0,3.527 -3731,0.0,0.0,0.0,0.0,4654,131.0,9501.94,0.0,0.0,125.331912543,0.0,0.0,0,38.903964702,-77.0881518256,1473239734.0,4.40400000001 -3732,0.0,0.0,0.0,0.0,4655,132.0,9505.96,0.0,0.0,125.909574033,0.0,0.0,0,38.9039517939,-77.088108575,1473239735.0,3.58299999999 -3733,0.0,26.0,0.0,0.0,4656,133.0,9509.92,0.0,0.0,125.050751116,0.0,0.0,0,38.9039393049,-77.0880658273,1473239736.0,4.27300000001 -3734,0.0,26.0,0.0,0.0,4657,133.0,9514.05,0.0,0.0,125.046012602,0.0,0.0,0,38.9039263129,-77.0880211517,1473239737.0,3.95600000002 -3735,0.0,26.0,0.0,0.0,4658,134.0,9517.94,0.0,0.0,125.38715319,0.0,0.0,0,38.9039140753,-77.0879790746,1473239738.0,3.81599999999 -3736,0.0,0.0,0.0,0.0,4659,135.0,9522.05,0.0,0.0,125.480465245,0.0,0.0,0,38.9039017539,-77.0879344828,1473239739.0,4.329 -3737,0.0,0.0,0.0,0.0,4660,136.0,9525.97,0.0,0.0,126.811037281,0.0,0.0,0,38.9038900193,-77.087891819,1473239740.0,3.527 -3738,0.0,0.0,0.0,0.0,4661,136.0,9529.93,0.0,0.0,125.363744805,0.0,0.0,0,38.9038782846,-77.0878486522,1473239741.0,4.38499999999 -3739,0.0,0.0,0.0,0.0,4662,137.0,9533.89,0.0,0.0,126.11896458,0.0,0.0,0,38.90386655,-77.0878055692,1473239742.0,3.555 -3740,0.0,0.0,0.0,0.0,4663,137.0,9537.85,0.0,0.0,124.535686752,0.0,0.0,0,38.9038545638,-77.0877626538,1473239743.0,4.33900000002 -3741,0.0,0.0,0.0,0.0,4664,138.0,9541.95,0.0,0.0,124.417901959,0.0,0.0,0,38.9038418233,-77.0877182297,1473239744.0,3.89099999999 -3742,0.0,0.0,0.0,0.0,4665,138.0,9545.86,0.0,0.0,124.789856043,0.0,0.0,0,38.9038295019,-77.0876759849,1473239745.0,3.938 -3743,0.0,0.0,0.0,0.0,4666,139.0,9550.0,0.0,0.0,125.749461346,0.0,0.0,0,38.9038164262,-77.0876313094,1473239746.0,4.28299999998 -3744,0.0,0.0,0.0,0.0,4667,139.0,9553.91,0.0,0.0,127.553555929,0.0,0.0,0,38.9038041886,-77.0875890646,1473239747.0,3.50799999999 -3745,0.0,0.0,0.0,0.0,4668,140.0,9557.83,0.0,0.0,128.128754423,0.0,0.0,0,38.9037923701,-77.0875464845,1473239748.0,4.30099999999 -3746,0.0,0.0,0.0,0.0,4669,140.0,9561.7,0.0,0.0,129.392337734,0.0,0.0,0,38.9037807193,-77.0875044074,1473239749.0,3.43399999999 -3747,0.0,27.0,0.0,0.0,4670,140.0,9565.58,0.0,0.0,128.485803153,0.0,0.0,0,38.9037690684,-77.0874622464,1473239750.0,4.28299999998 -3748,0.0,27.0,0.0,0.0,4671,141.0,9569.5,0.0,0.0,127.853598221,0.0,0.0,0,38.9037575014,-77.0874194987,1473239751.0,3.61099999999 -3749,0.0,26.0,0.0,0.0,4672,141.0,9573.35,0.0,0.0,127.157969832,0.0,0.0,0,38.9037462696,-77.0873775054,1473239752.0,4.05900000001 -3750,0.0,26.0,0.0,0.0,4673,141.0,9577.4,0.0,0.0,127.29040065,0.0,0.0,0,38.9037352894,-77.0873329975,1473239753.0,4.05900000001 -3751,0.0,26.0,0.0,0.0,4674,141.0,9581.26,0.0,0.0,128.190329898,0.0,0.0,0,38.9037244767,-77.0872906689,1473239754.0,3.63 -3752,0.0,26.0,0.0,0.0,4675,141.0,9585.24,0.0,0.0,128.336613047,0.0,0.0,0,38.9037144184,-77.0872466639,1473239755.0,4.27300000001 -3753,0.0,26.0,0.0,0.0,4676,141.0,9589.09,0.0,0.0,129.221660459,0.0,0.0,0,38.9037047792,-77.0872040838,1473239756.0,3.40600000001 -3754,0.0,26.0,0.0,0.0,4677,142.0,9592.96,0.0,0.0,128.399244946,0.0,0.0,0,38.9036958106,-77.087160917,1473239757.0,4.30099999999 -3755,0.0,0.0,0.0,0.0,4678,142.0,9596.92,0.0,0.0,127.355525907,0.0,0.0,0,38.9036869258,-77.0871167444,1473239758.0,3.57399999999 -3756,0.0,0.0,0.0,0.0,4679,142.0,9600.86,0.0,0.0,125.661354075,0.0,0.0,0,38.9036777895,-77.0870728232,1473239759.0,4.245 -3757,0.0,0.0,0.0,0.0,4680,143.0,9604.96,0.0,0.0,124.313049319,0.0,0.0,0,38.9036682341,-77.0870271418,1473239760.0,3.90999999999 -3758,0.0,0.0,0.0,0.0,4681,143.0,9608.92,0.0,0.0,123.937810046,0.0,0.0,0,38.9036590979,-77.086983053,1473239761.0,3.984 -3759,0.0,0.0,0.0,0.0,4682,143.0,9613.09,0.0,0.0,124.207972539,0.0,0.0,0,38.9036497101,-77.0869365335,1473239762.0,4.292 -3760,0.0,0.0,0.0,0.0,4683,144.0,9617.07,0.0,0.0,123.701270535,0.0,0.0,0,38.9036399871,-77.086892277,1473239763.0,3.64799999999 -3761,0.0,0.0,0.0,0.0,4684,144.0,9621.14,0.0,0.0,125.043034291,0.0,0.0,0,38.9036300965,-77.0868471824,1473239764.0,4.40400000001 -3762,0.0,0.0,0.0,0.0,4685,144.0,9625.15,0.0,0.0,124.164710132,0.0,0.0,0,38.9036202896,-77.0868025906,1473239765.0,3.58299999999 -3763,0.0,0.0,0.0,0.0,4686,145.0,9629.24,0.0,0.0,125.423644149,0.0,0.0,0,38.9036104828,-77.0867571607,1473239766.0,4.48800000002 -3764,0.0,0.0,0.0,0.0,4687,145.0,9633.31,0.0,0.0,123.897393649,0.0,0.0,0,38.9036002569,-77.0867121499,1473239767.0,3.555 -3765,0.0,0.0,0.0,0.0,4688,146.0,9637.32,0.0,0.0,123.505899412,0.0,0.0,0,38.9035904501,-77.086667642,1473239768.0,4.40400000001 -3766,0.0,0.0,0.0,0.0,4689,146.0,9641.45,0.0,0.0,122.850645524,0.0,0.0,0,38.9035803918,-77.086621793,1473239769.0,3.82599999999 -3767,0.0,0.0,0.0,0.0,4690,146.0,9645.46,0.0,0.0,122.414069033,0.0,0.0,0,38.903570082,-77.0865774527,1473239770.0,4.16100000001 -3768,0.0,0.0,0.0,0.0,4691,147.0,9649.69,0.0,0.0,122.358434999,0.0,0.0,0,38.9035596885,-77.0865305979,1473239771.0,4.28299999998 -3769,0.0,0.0,0.0,0.0,4692,147.0,9653.71,0.0,0.0,123.157962082,0.0,0.0,0,38.9035490435,-77.0864862576,1473239772.0,3.72299999999 -3770,0.0,0.0,0.0,0.0,4693,147.0,9657.81,0.0,0.0,123.311934353,0.0,0.0,0,38.9035379793,-77.086441163,1473239773.0,4.45100000001 -3771,0.0,0.0,0.0,0.0,4694,148.0,9661.85,0.0,0.0,124.377171889,0.0,0.0,0,38.9035261609,-77.086397158,1473239774.0,3.555 -3772,0.0,0.0,0.0,0.0,4695,148.0,9665.88,0.0,0.0,123.152578047,0.0,0.0,0,38.9035147615,-77.0863529854,1473239775.0,4.47899999999 -3773,0.0,0.0,0.0,0.0,4696,148.0,9670.02,0.0,0.0,122.636721363,0.0,0.0,0,38.9035026915,-77.0863078907,1473239776.0,3.72299999999 -3774,0.0,0.0,0.0,0.0,4697,148.0,9674.06,0.0,0.0,121.898449621,0.0,0.0,0,38.9034909569,-77.0862638019,1473239777.0,4.31999999999 -3775,0.0,0.0,0.0,0.0,4698,148.0,9678.29,0.0,0.0,121.914404477,0.0,0.0,0,38.9034789708,-77.08621745,1473239778.0,4.13300000001 -3776,0.0,0.0,0.0,0.0,4699,148.0,9682.32,0.0,0.0,122.864105916,0.0,0.0,0,38.9034669008,-77.0861736126,1473239779.0,3.88200000001 -3777,0.0,0.0,0.0,0.0,4700,149.0,9686.46,0.0,0.0,123.895798806,0.0,0.0,0,38.9034549147,-77.0861284342,1473239780.0,4.348 -3778,0.0,0.0,0.0,0.0,4701,149.0,9690.41,0.0,0.0,125.556579817,0.0,0.0,0,38.9034432638,-77.086085435,1473239781.0,3.56400000001 -3779,0.0,0.0,0.0,0.0,4702,149.0,9694.42,0.0,0.0,126.606560522,0.0,0.0,0,38.9034307748,-77.0860421006,1473239782.0,4.38499999999 -3780,0.0,0.0,0.0,0.0,4703,149.0,9698.37,0.0,0.0,127.207126242,0.0,0.0,0,38.903418202,-77.0859994367,1473239783.0,3.51799999999 -3781,0.0,0.0,0.0,0.0,4704,149.0,9702.3,0.0,0.0,126.124473389,0.0,0.0,0,38.9034052938,-77.0859572757,1473239784.0,4.292 -3782,0.0,0.0,0.0,0.0,4705,149.0,9706.3,0.0,0.0,126.070370188,0.0,0.0,0,38.9033922181,-77.0859143604,1473239785.0,3.704 -3783,0.0,0.0,0.0,0.0,4706,149.0,9710.19,0.0,0.0,126.091014787,0.0,0.0,0,38.9033789746,-77.0858727861,1473239786.0,4.05900000001 -3784,0.0,0.0,0.0,0.0,4707,149.0,9714.31,0.0,0.0,126.77721347,0.0,0.0,0,38.9033655636,-77.0858285297,1473239787.0,4.18000000001 -3785,0.0,0.0,0.0,0.0,4708,149.0,9718.17,0.0,0.0,128.824153358,0.0,0.0,0,38.9033529907,-77.0857869554,1473239788.0,3.51799999999 -3786,0.0,25.0,0.0,0.0,4709,149.0,9722.07,0.0,0.0,128.757517823,0.0,0.0,0,38.9033405017,-77.0857449621,1473239789.0,4.255 -3787,0.0,25.0,0.0,0.0,4710,149.0,9725.88,0.0,0.0,131.913163449,0.0,0.0,0,38.9033284318,-77.0857038908,1473239790.0,3.35900000001 -3788,0.0,27.0,0.0,0.0,4711,149.0,9729.67,0.0,0.0,129.614064304,0.0,0.0,0,38.9033159427,-77.0856631547,1473239791.0,4.20799999999 -3789,0.0,27.0,0.0,0.0,4712,149.0,9733.57,0.0,0.0,129.586724934,0.0,0.0,0,38.9033035375,-77.0856211614,1473239792.0,3.639 -3790,0.0,27.0,0.0,0.0,4713,149.0,9737.36,0.0,0.0,128.483516288,0.0,0.0,0,38.9032910485,-77.0855805092,1473239793.0,3.92799999999 -3791,0.0,25.0,0.0,0.0,4714,149.0,9741.41,0.0,0.0,127.559895169,0.0,0.0,0,38.9032777213,-77.0855370071,1473239794.0,4.14299999999 -3792,0.0,28.0,0.0,0.0,4715,149.0,9745.19,0.0,0.0,129.520024581,0.0,0.0,0,38.9032653999,-77.0854963548,1473239795.0,3.50799999999 -3793,0.0,28.0,0.0,0.0,4716,149.0,9749.09,0.0,0.0,128.79413011,0.0,0.0,0,38.9032522403,-77.0854546968,1473239796.0,4.292 -3794,0.0,28.0,0.0,0.0,4717,149.0,9752.96,0.0,0.0,131.709186117,0.0,0.0,0,38.9032387454,-77.0854136255,1473239797.0,3.415 -3795,0.0,24.0,0.0,0.0,4718,149.0,9756.74,0.0,0.0,129.598938972,0.0,0.0,0,38.9032253344,-77.08537356,1473239798.0,4.096 -3796,0.0,24.0,0.0,0.0,4719,149.0,9760.64,0.0,0.0,130.173260045,0.0,0.0,0,38.9032116719,-77.0853321534,1473239799.0,3.66700000001 -3797,0.0,25.0,0.0,0.0,4720,149.0,9764.47,0.0,0.0,129.650874329,0.0,0.0,0,38.9031977579,-77.0852917526,1473239800.0,3.88200000001 -3798,0.0,25.0,0.0,0.0,4721,150.0,9768.51,0.0,0.0,129.22643156,0.0,0.0,0,38.9031837601,-77.0852487534,1473239801.0,4.15200000001 -3799,0.0,25.0,0.0,0.0,4722,149.0,9772.29,0.0,0.0,130.498742467,0.0,0.0,0,38.9031714387,-77.0852081012,1473239802.0,3.424 -3800,0.0,26.0,0.0,0.0,4723,150.0,9776.15,0.0,0.0,129.910884508,0.0,0.0,0,38.9031586982,-77.0851666108,1473239803.0,4.255 -3801,0.0,26.0,0.0,0.0,4724,150.0,9779.99,0.0,0.0,131.244630901,0.0,0.0,0,38.9031466283,-77.0851252042,1473239804.0,3.37799999999 -3802,0.0,27.0,0.0,0.0,4725,149.0,9783.77,0.0,0.0,130.230796031,0.0,0.0,0,38.9031358156,-77.0850838814,1473239805.0,4.17100000001 -3803,0.0,27.0,0.0,0.0,4726,150.0,9787.7,0.0,0.0,128.929129165,0.0,0.0,0,38.9031250868,-77.0850407146,1473239806.0,3.704 -3804,0.0,29.0,0.0,0.0,4727,150.0,9791.52,0.0,0.0,128.234307951,0.0,0.0,0,38.90311528,-77.0849984698,1473239807.0,3.95600000002 -3805,0.0,29.0,0.0,0.0,4728,150.0,9795.51,0.0,0.0,127.089829953,0.0,0.0,0,38.903106479,-77.0849538781,1473239808.0,4.012 -3806,0.0,26.0,0.0,0.0,4729,150.0,9799.37,0.0,0.0,126.07890247,0.0,0.0,0,38.9030987676,-77.0849104598,1473239809.0,3.75099999999 -3807,0.0,26.0,0.0,0.0,4730,150.0,9803.4,0.0,0.0,126.181517849,0.0,0.0,0,38.9030917268,-77.0848648623,1473239810.0,4.28299999998 -3808,0.0,26.0,0.0,0.0,4731,150.0,9807.36,0.0,0.0,123.664053483,0.0,0.0,0,38.9030853566,-77.0848200191,1473239811.0,3.63 -3809,0.0,28.0,0.0,0.0,4732,150.0,9811.42,0.0,0.0,125.073500986,0.0,0.0,0,38.9030798245,-77.084773751,1473239812.0,4.46900000002 -3810,0.0,28.0,0.0,0.0,4733,150.0,9815.42,0.0,0.0,122.026979056,0.0,0.0,0,38.9030744601,-77.0847281534,1473239813.0,3.61099999999 -3811,0.0,27.0,0.0,0.0,4734,150.0,9819.47,0.0,0.0,124.600039268,0.0,0.0,0,38.903069431,-77.0846818853,1473239814.0,4.516 -3812,0.0,27.0,0.0,0.0,4735,150.0,9823.51,0.0,0.0,121.755300309,0.0,0.0,0,38.9030647371,-77.0846356172,1473239815.0,3.63 -3813,0.0,27.0,0.0,0.0,4736,150.0,9827.56,0.0,0.0,123.673852242,0.0,0.0,0,38.9030604623,-77.0845892653,1473239816.0,4.45100000001 -3814,0.0,27.0,0.0,0.0,4737,151.0,9831.64,0.0,0.0,121.951605801,0.0,0.0,0,38.9030561037,-77.0845425781,1473239817.0,3.732 -3815,0.0,28.0,0.0,0.0,4738,151.0,9835.7,0.0,0.0,122.654563334,0.0,0.0,0,38.9030514099,-77.0844962262,1473239818.0,4.35700000002 -3816,0.0,28.0,0.0,0.0,4739,151.0,9839.88,0.0,0.0,122.347029138,0.0,0.0,0,38.9030464645,-77.0844483655,1473239819.0,3.975 -3817,0.0,28.0,0.0,0.0,4740,151.0,9843.9,0.0,0.0,122.628908995,0.0,0.0,0,38.903042106,-77.0844024327,1473239820.0,4.03100000001 -3818,0.0,28.0,0.0,0.0,4741,151.0,9848.02,0.0,0.0,123.809472764,0.0,0.0,0,38.9030386694,-77.0843550749,1473239821.0,4.245 -3819,0.0,28.0,0.0,0.0,4742,152.0,9852.01,0.0,0.0,123.806818486,0.0,0.0,0,38.9030348975,-77.0843093935,1473239822.0,3.704 -3820,0.0,0.0,0.0,0.0,4743,152.0,9856.07,0.0,0.0,125.125260677,0.0,0.0,0,38.9030322153,-77.0842626225,1473239823.0,4.40400000001 -3821,0.0,0.0,0.0,0.0,4744,152.0,9860.02,0.0,0.0,124.030042116,0.0,0.0,0,38.9030290302,-77.0842172764,1473239824.0,3.555 -3822,0.0,0.0,0.0,0.0,4745,152.0,9864.06,0.0,0.0,124.746187411,0.0,0.0,0,38.9030259289,-77.0841709245,1473239825.0,4.49699999999 -3823,0.0,0.0,0.0,0.0,4746,152.0,9868.11,0.0,0.0,123.385440091,0.0,0.0,0,38.9030229114,-77.0841244049,1473239826.0,3.60200000001 -3824,0.0,0.0,0.0,0.0,4747,152.0,9872.11,0.0,0.0,122.944930252,0.0,0.0,0,38.9030199777,-77.0840783883,1473239827.0,4.43199999998 -3825,0.0,0.0,0.0,0.0,4748,152.0,9876.23,0.0,0.0,121.770319038,0.0,0.0,0,38.9030169602,-77.0840310305,1473239828.0,3.85399999999 -3826,0.0,0.0,0.0,0.0,4749,152.0,9880.23,0.0,0.0,122.191318809,0.0,0.0,0,38.9030137751,-77.0839850977,1473239829.0,4.15200000001 -3827,0.0,0.0,0.0,0.0,4750,152.0,9884.46,0.0,0.0,122.930928783,0.0,0.0,0,38.9030106738,-77.0839365665,1473239830.0,4.26400000002 -3828,0.0,0.0,0.0,0.0,4751,152.0,9888.47,0.0,0.0,124.442835486,0.0,0.0,0,38.9030074049,-77.083890466,1473239831.0,3.76000000001 -3829,0.0,23.0,0.0,0.0,4752,153.0,9892.52,0.0,0.0,125.356125356,0.0,0.0,0,38.9030038845,-77.0838440303,1473239832.0,4.292 -3830,0.0,23.0,0.0,0.0,4753,153.0,9896.43,0.0,0.0,126.113180847,0.0,0.0,0,38.9030005317,-77.0837991871,1473239833.0,3.50799999999 -3831,0.0,28.0,0.0,0.0,4754,153.0,9900.39,0.0,0.0,125.952550239,0.0,0.0,0,38.9029969275,-77.0837537572,1473239834.0,4.40400000001 -3832,0.0,28.0,0.0,0.0,4755,153.0,9904.42,0.0,0.0,124.778396808,0.0,0.0,0,38.9029930718,-77.0837074891,1473239835.0,3.66700000001 -3833,0.0,28.0,0.0,0.0,4756,153.0,9908.43,0.0,0.0,122.65208859,0.0,0.0,0,38.9029893,-77.0836615562,1473239836.0,4.329 -3834,0.0,0.0,0.0,0.0,4757,153.0,9912.58,0.0,0.0,121.982645724,0.0,0.0,0,38.9029853605,-77.083613947,1473239837.0,3.975 -3835,0.0,0.0,0.0,0.0,4758,153.0,9916.6,0.0,0.0,121.735281098,0.0,0.0,0,38.9029818401,-77.0835678466,1473239838.0,4.05900000001 -3836,0.0,0.0,0.0,0.0,4759,154.0,9920.86,0.0,0.0,122.282392923,0.0,0.0,0,38.902978152,-77.0835189801,1473239839.0,4.38499999999 -3837,0.0,0.0,0.0,0.0,4760,154.0,9924.89,0.0,0.0,122.64583705,0.0,0.0,0,38.9029746316,-77.083472712,1473239840.0,3.65800000001 -3838,0.0,0.0,0.0,0.0,4761,154.0,9928.99,0.0,0.0,123.845582251,0.0,0.0,0,38.9029711112,-77.0834256895,1473239841.0,4.46900000002 -3839,0.0,0.0,0.0,0.0,4762,154.0,9933.0,0.0,0.0,123.746729551,0.0,0.0,0,38.9029675908,-77.0833796728,1473239842.0,3.57399999999 -3840,0.0,27.0,0.0,0.0,4763,154.0,9937.03,0.0,0.0,124.26008766,0.0,0.0,0,38.9029642381,-77.0833334047,1473239843.0,4.46900000002 -3841,0.0,27.0,0.0,0.0,4764,154.0,9941.11,0.0,0.0,122.902673852,0.0,0.0,0,38.9029613044,-77.0832865499,1473239844.0,3.67599999999 -3842,0.0,27.0,0.0,0.0,4765,154.0,9945.13,0.0,0.0,122.079731277,0.0,0.0,0,38.9029584546,-77.0832403656,1473239845.0,4.36699999999 -3843,0.0,0.0,0.0,0.0,4766,155.0,9949.31,0.0,0.0,122.104898151,0.0,0.0,0,38.9029556885,-77.0831922535,1473239846.0,3.975 -3844,0.0,0.0,0.0,0.0,4767,154.0,9953.33,0.0,0.0,122.585438336,0.0,0.0,0,38.9029527549,-77.0831460692,1473239847.0,4.05000000001 -3845,0.0,0.0,0.0,0.0,4768,155.0,9957.53,0.0,0.0,123.793681484,0.0,0.0,0,38.9029494021,-77.0830977894,1473239848.0,4.33900000002 -3846,0.0,0.0,0.0,0.0,4769,155.0,9961.42,0.0,0.0,125.722359313,0.0,0.0,0,38.9029464684,-77.0830531139,1473239849.0,3.51799999999 -3847,0.0,0.0,0.0,0.0,4770,155.0,9965.38,0.0,0.0,126.489121935,0.0,0.0,0,38.9029432833,-77.083007684,1473239850.0,4.40400000001 -3848,0.0,0.0,0.0,0.0,4771,155.0,9969.25,0.0,0.0,128.065392074,0.0,0.0,0,38.9029403497,-77.0829631761,1473239851.0,3.45199999999 -3849,0.0,0.0,0.0,0.0,4772,154.0,9973.13,0.0,0.0,126.516139845,0.0,0.0,0,38.9029376674,-77.0829186682,1473239852.0,4.31999999999 -3850,0.0,0.0,0.0,0.0,4773,155.0,9977.14,0.0,0.0,125.582791135,0.0,0.0,0,38.902935572,-77.0828724839,1473239853.0,3.71399999999 -3851,0.0,0.0,0.0,0.0,4774,155.0,9981.05,0.0,0.0,124.8991615,0.0,0.0,0,38.9029330574,-77.0828275569,1473239854.0,4.096 -3852,0.0,0.0,0.0,0.0,4775,155.0,9985.2,0.0,0.0,124.775566028,0.0,0.0,0,38.9029310457,-77.0827796962,1473239855.0,4.18899999999 -3853,0.0,0.0,0.0,0.0,4776,155.0,9989.15,0.0,0.0,125.685831126,0.0,0.0,0,38.9029292855,-77.0827342663,1473239856.0,3.67599999999 -3854,0.0,0.0,0.0,0.0,4777,155.0,9993.16,0.0,0.0,126.591573933,0.0,0.0,0,38.9029279444,-77.082688082,1473239857.0,4.33900000002 -3855,0.0,0.0,0.0,0.0,4778,155.0,9997.02,0.0,0.0,127.344433064,0.0,0.0,0,38.9029266033,-77.0826435741,1473239858.0,3.43399999999 -3856,0.0,0.0,0.0,0.0,4779,155.0,10000.91,0.0,0.0,128.66514645,0.0,0.0,0,38.9029255137,-77.0825987309,1473239859.0,4.348 -3857,0.0,0.0,0.0,0.0,4780,155.0,10004.85,0.0,0.0,126.961025713,0.0,0.0,0,38.9029246755,-77.082553301,1473239860.0,3.536 -3858,0.0,27.0,0.0,0.0,4781,155.0,10008.74,0.0,0.0,127.762660118,0.0,0.0,0,38.9029241726,-77.0825084578,1473239861.0,4.255 -3859,0.0,27.0,0.0,0.0,4782,155.0,10012.71,0.0,0.0,126.210886918,0.0,0.0,0,38.9029240888,-77.0824626926,1473239862.0,3.72299999999 -3860,0.0,29.0,0.0,0.0,4783,155.0,10016.61,0.0,0.0,125.404034427,0.0,0.0,0,38.9029238373,-77.0824177656,1473239863.0,4.096 -3861,0.0,29.0,0.0,0.0,4784,156.0,10020.67,0.0,0.0,125.73919405,0.0,0.0,0,38.902923502,-77.0823709946,1473239864.0,3.975 -3862,0.0,25.0,0.0,0.0,4785,155.0,10024.57,0.0,0.0,125.786026534,0.0,0.0,0,38.9029228315,-77.0823259838,1473239865.0,3.85399999999 -3863,0.0,25.0,0.0,0.0,4786,156.0,10028.73,0.0,0.0,126.66932069,0.0,0.0,0,38.9029221609,-77.0822781231,1473239866.0,4.33900000002 -3864,0.0,25.0,0.0,0.0,4787,156.0,10032.57,0.0,0.0,125.840982758,0.0,0.0,0,38.9029211551,-77.0822337829,1473239867.0,3.40600000001 -3865,0.0,0.0,0.0,0.0,4788,156.0,10036.52,0.0,0.0,126.851287458,0.0,0.0,0,38.9029200654,-77.0821882691,1473239868.0,4.41299999999 -3866,0.0,0.0,0.0,0.0,4789,156.0,10040.52,0.0,0.0,124.997429707,0.0,0.0,0,38.902918892,-77.0821421687,1473239869.0,3.58299999999 -3867,0.0,0.0,0.0,0.0,4790,156.0,10044.52,0.0,0.0,126.076012374,0.0,0.0,0,38.9029176347,-77.082096152,1473239870.0,4.41299999999 -3868,0.0,0.0,0.0,0.0,4791,156.0,10048.59,0.0,0.0,123.194480888,0.0,0.0,0,38.9029166289,-77.0820492972,1473239871.0,3.67599999999 -3869,0.0,30.0,0.0,0.0,4792,157.0,10052.56,0.0,0.0,124.302747683,0.0,0.0,0,38.9029153716,-77.0820034482,1473239872.0,4.31099999999 -3870,0.0,30.0,0.0,0.0,4793,156.0,10056.65,0.0,0.0,123.694646646,0.0,0.0,0,38.9029140305,-77.0819564257,1473239873.0,3.82599999999 -3871,0.0,27.0,0.0,0.0,4794,157.0,10060.67,0.0,0.0,123.575670037,0.0,0.0,0,38.9029124379,-77.0819100738,1473239874.0,4.124 -3872,0.0,27.0,0.0,0.0,4795,157.0,10064.83,0.0,0.0,124.033638352,0.0,0.0,0,38.902911013,-77.0818621293,1473239875.0,4.16100000001 -3873,0.0,27.0,0.0,0.0,4796,157.0,10068.78,0.0,0.0,123.447817378,0.0,0.0,0,38.9029095881,-77.0818166155,1473239876.0,3.76000000001 -3874,0.0,0.0,0.0,0.0,4797,157.0,10072.9,0.0,0.0,124.624642446,0.0,0.0,0,38.9029081631,-77.0817692578,1473239877.0,4.395 -3875,0.0,0.0,0.0,0.0,4798,157.0,10076.89,0.0,0.0,123.930495915,0.0,0.0,0,38.9029064029,-77.0817232411,1473239878.0,3.57399999999 -3876,0.0,0.0,0.0,0.0,4799,157.0,10080.92,0.0,0.0,126.273807532,0.0,0.0,0,38.9029047266,-77.0816768054,1473239879.0,4.46900000002 -3877,0.0,0.0,0.0,0.0,4800,157.0,10084.92,0.0,0.0,124.350791969,0.0,0.0,0,38.9029029664,-77.0816307887,1473239880.0,3.527 -3878,0.0,28.0,0.0,0.0,4801,157.0,10088.85,0.0,0.0,127.933470165,0.0,0.0,0,38.9029010385,-77.0815855265,1473239881.0,4.37600000001 -3879,0.0,28.0,0.0,0.0,4802,157.0,10092.84,0.0,0.0,125.777533845,0.0,0.0,0,38.9028990269,-77.0815396775,1473239882.0,3.555 -3880,0.0,28.0,0.0,0.0,4803,157.0,10096.76,0.0,0.0,127.351734464,0.0,0.0,0,38.9028967638,-77.081494499,1473239883.0,4.26400000002 -3881,0.0,0.0,0.0,0.0,4804,157.0,10100.74,0.0,0.0,125.554123067,0.0,0.0,0,38.9028947521,-77.0814487338,1473239884.0,3.67599999999 -3882,0.0,0.0,0.0,0.0,4805,156.0,10104.67,0.0,0.0,125.681728162,0.0,0.0,0,38.9028924052,-77.0814034715,1473239885.0,4.17100000001 -3883,0.0,0.0,0.0,0.0,4806,157.0,10108.8,0.0,0.0,125.135427952,0.0,0.0,0,38.9028902259,-77.08135603,1473239886.0,4.03999999999 -3884,0.0,26.0,0.0,0.0,4807,157.0,10112.74,0.0,0.0,124.095606263,0.0,0.0,0,38.9028879628,-77.0813106,1473239887.0,3.83499999999 -3885,0.0,26.0,0.0,0.0,4808,157.0,10116.81,0.0,0.0,124.677242463,0.0,0.0,0,38.9028856996,-77.081263829,1473239888.0,4.26400000002 -3886,0.0,29.0,0.0,0.0,4809,157.0,10120.78,0.0,0.0,123.800448683,0.0,0.0,0,38.902882766,-77.0812181477,1473239889.0,3.67599999999 -3887,0.0,29.0,0.0,0.0,4810,157.0,10124.88,0.0,0.0,125.667506626,0.0,0.0,0,38.9028798323,-77.0811711252,1473239890.0,4.46900000002 -3888,0.0,29.0,0.0,0.0,4811,157.0,10128.88,0.0,0.0,122.918631059,0.0,0.0,0,38.9028764796,-77.0811251923,1473239891.0,3.54599999999 -3889,0.0,27.0,0.0,0.0,4812,157.0,10132.89,0.0,0.0,126.713512268,0.0,0.0,0,38.9028732106,-77.0810791757,1473239892.0,4.45100000001 -3890,0.0,27.0,0.0,0.0,4813,157.0,10136.85,0.0,0.0,123.324705943,0.0,0.0,0,38.9028696902,-77.081033662,1473239893.0,3.555 -3891,0.0,29.0,0.0,0.0,4814,157.0,10140.84,0.0,0.0,127.320989995,0.0,0.0,0,38.9028660022,-77.0809878968,1473239894.0,4.43199999998 -3892,0.0,29.0,0.0,0.0,4815,157.0,10144.84,0.0,0.0,123.021012628,0.0,0.0,0,38.9028622303,-77.0809420478,1473239895.0,3.54599999999 -3893,0.0,29.0,0.0,0.0,4816,157.0,10148.85,0.0,0.0,126.356002293,0.0,0.0,0,38.902858207,-77.0808961987,1473239896.0,4.44099999999 -3894,0.0,0.0,0.0,0.0,4817,157.0,10152.91,0.0,0.0,122.273978404,0.0,0.0,0,38.902853597,-77.080849763,1473239897.0,3.66700000001 -3895,0.0,0.0,0.0,0.0,4818,158.0,10156.92,0.0,0.0,124.676973297,0.0,0.0,0,38.9028491545,-77.0808038302,1473239898.0,4.36699999999 -3896,0.0,0.0,0.0,0.0,4819,158.0,10161.01,0.0,0.0,121.656679584,0.0,0.0,0,38.902844293,-77.0807570592,1473239899.0,3.81599999999 -3897,0.0,0.0,0.0,0.0,4820,158.0,10165.06,0.0,0.0,123.74964643,0.0,0.0,0,38.9028393477,-77.0807108749,1473239900.0,4.30099999999 -3898,0.0,0.0,0.0,0.0,4821,158.0,10169.17,0.0,0.0,121.945554214,0.0,0.0,0,38.9028343186,-77.0806639362,1473239901.0,3.90999999999 -3899,0.0,0.0,0.0,0.0,4822,158.0,10173.23,0.0,0.0,122.314508195,0.0,0.0,0,38.9028295409,-77.0806175005,1473239902.0,4.17100000001 -3900,0.0,0.0,0.0,0.0,4823,158.0,10177.36,0.0,0.0,122.150224682,0.0,0.0,0,38.9028247632,-77.0805702265,1473239903.0,4.06799999999 -3901,0.0,0.0,0.0,0.0,4824,158.0,10181.45,0.0,0.0,120.96571486,0.0,0.0,0,38.9028198179,-77.0805235393,1473239904.0,4.07799999999 -3902,0.0,0.0,0.0,0.0,4825,158.0,10185.63,0.0,0.0,122.09637897,0.0,0.0,0,38.9028150402,-77.0804757625,1473239905.0,4.27300000001 -3903,0.0,0.0,0.0,0.0,4826,158.0,10189.68,0.0,0.0,121.062583591,0.0,0.0,0,38.9028103463,-77.0804294106,1473239906.0,3.85399999999 -3904,0.0,0.0,0.0,0.0,4827,158.0,10193.85,0.0,0.0,124.056819097,0.0,0.0,0,38.9028056525,-77.0803818014,1473239907.0,4.43199999998 -3905,0.0,0.0,0.0,0.0,4828,158.0,10197.87,0.0,0.0,122.841630018,0.0,0.0,0,38.902800791,-77.0803357847,1473239908.0,3.60200000001 -3906,0.0,0.0,0.0,0.0,4829,158.0,10201.89,0.0,0.0,126.664458721,0.0,0.0,0,38.9027964324,-77.0802898519,1473239909.0,4.41299999999 -3907,0.0,0.0,0.0,0.0,4830,158.0,10205.87,0.0,0.0,124.333523871,0.0,0.0,0,38.9027919061,-77.0802443381,1473239910.0,3.527 -3908,0.0,0.0,0.0,0.0,4831,158.0,10209.84,0.0,0.0,127.656752545,0.0,0.0,0,38.902787799,-77.0801987406,1473239911.0,4.42299999998 -3909,0.0,0.0,0.0,0.0,4832,158.0,10213.79,0.0,0.0,124.459463391,0.0,0.0,0,38.9027840272,-77.0801535621,1473239912.0,3.51799999999 -3910,0.0,0.0,0.0,0.0,4833,158.0,10217.75,0.0,0.0,126.966747904,0.0,0.0,0,38.9027800877,-77.080108216,1473239913.0,4.395 -3911,0.0,0.0,0.0,0.0,4834,158.0,10221.76,0.0,0.0,125.145325687,0.0,0.0,0,38.9027763996,-77.0800621994,1473239914.0,3.64799999999 -3912,0.0,0.0,0.0,0.0,4835,158.0,10225.69,0.0,0.0,126.167458627,0.0,0.0,0,38.9027727116,-77.0800171047,1473239915.0,4.217 -3913,0.0,0.0,0.0,0.0,4836,157.0,10229.74,0.0,0.0,124.882685962,0.0,0.0,0,38.9027698617,-77.0799705852,1473239916.0,3.844 -3914,0.0,0.0,0.0,0.0,4837,157.0,10233.67,0.0,0.0,124.17191844,0.0,0.0,0,38.9027669281,-77.0799254067,1473239917.0,4.00299999999 -3915,0.0,0.0,0.0,0.0,4838,158.0,10237.78,0.0,0.0,123.530204472,0.0,0.0,0,38.902764162,-77.0798782166,1473239918.0,4.20799999999 -3916,0.0,0.0,0.0,0.0,4839,157.0,10241.82,0.0,0.0,122.225197015,0.0,0.0,0,38.9027612284,-77.0798317809,1473239919.0,3.844 -3917,0.0,0.0,0.0,0.0,4840,158.0,10245.98,0.0,0.0,122.989704005,0.0,0.0,0,38.9027591329,-77.0797838364,1473239920.0,4.46000000002 -3918,0.0,0.0,0.0,0.0,4841,157.0,10250.03,0.0,0.0,121.631056674,0.0,0.0,0,38.9027556963,-77.0797373168,1473239921.0,3.639 -3919,0.0,0.0,0.0,0.0,4842,158.0,10254.11,0.0,0.0,124.667822317,0.0,0.0,0,38.9027530979,-77.079690462,1473239922.0,4.48800000002 -3920,0.0,0.0,0.0,0.0,4843,158.0,10258.15,0.0,0.0,121.881727238,0.0,0.0,0,38.9027504995,-77.0796439424,1473239923.0,3.62000000001 -3921,0.0,0.0,0.0,0.0,4844,158.0,10262.18,0.0,0.0,125.822064724,0.0,0.0,0,38.9027478173,-77.0795976743,1473239924.0,4.44099999999 -3922,0.0,0.0,0.0,0.0,4845,158.0,10266.2,0.0,0.0,121.689749087,0.0,0.0,0,38.9027442969,-77.07955149,1473239925.0,3.639 -3923,0.0,0.0,0.0,0.0,4846,158.0,10270.24,0.0,0.0,125.326064783,0.0,0.0,0,38.9027406089,-77.0795051381,1473239926.0,4.46900000002 -3924,0.0,0.0,0.0,0.0,4847,158.0,10274.28,0.0,0.0,121.864752282,0.0,0.0,0,38.9027369209,-77.07945887,1473239927.0,3.63 -3925,0.0,0.0,0.0,0.0,4848,158.0,10278.31,0.0,0.0,124.533135518,0.0,0.0,0,38.9027333166,-77.0794126019,1473239928.0,4.45100000001 -3926,0.0,0.0,0.0,0.0,4849,158.0,10282.4,0.0,0.0,122.978311098,0.0,0.0,0,38.9027293772,-77.079365747,1473239929.0,3.72299999999 -3927,0.0,0.0,0.0,0.0,4850,158.0,10286.41,0.0,0.0,124.347578937,0.0,0.0,0,38.9027253538,-77.0793198142,1473239930.0,4.28299999998 -3928,0.0,0.0,0.0,0.0,4851,159.0,10290.49,0.0,0.0,123.412994373,0.0,0.0,0,38.902721582,-77.0792730432,1473239931.0,3.872 -3929,0.0,0.0,0.0,0.0,4852,158.0,10294.46,0.0,0.0,123.552272239,0.0,0.0,0,38.9027175587,-77.0792275295,1473239932.0,4.06799999999 -3930,0.0,0.0,0.0,0.0,4853,159.0,10298.59,0.0,0.0,123.106373499,0.0,0.0,0,38.9027134515,-77.0791802555,1473239933.0,4.18000000001 -3931,0.0,0.0,0.0,0.0,4854,159.0,10302.62,0.0,0.0,121.293460865,0.0,0.0,0,38.9027097635,-77.0791339874,1473239934.0,3.89099999999 -3932,0.0,0.0,0.0,0.0,4855,159.0,10306.82,0.0,0.0,122.685831858,0.0,0.0,0,38.9027060755,-77.0790858753,1473239935.0,4.395 -3933,0.0,0.0,0.0,0.0,4856,159.0,10310.92,0.0,0.0,121.199147514,0.0,0.0,0,38.9027024712,-77.079038769,1473239936.0,3.76000000001 -3934,0.0,0.0,0.0,0.0,4857,159.0,10315.09,0.0,0.0,124.263830941,0.0,0.0,0,38.9026992861,-77.0789909083,1473239937.0,4.525 -3935,0.0,0.0,0.0,0.0,4858,158.0,10319.01,0.0,0.0,122.022338011,0.0,0.0,0,38.902696101,-77.0789458975,1473239938.0,3.48999999999 -3936,0.0,0.0,0.0,0.0,4859,159.0,10323.05,0.0,0.0,126.202750455,0.0,0.0,0,38.9026934188,-77.078899378,1473239939.0,4.525 -3937,0.0,0.0,0.0,0.0,4860,159.0,10327.11,0.0,0.0,122.875216228,0.0,0.0,0,38.9026908204,-77.0788527746,1473239940.0,3.56400000001 -3938,0.0,0.0,0.0,0.0,4861,159.0,10331.13,0.0,0.0,126.158500953,0.0,0.0,0,38.9026883896,-77.0788065065,1473239941.0,4.45100000001 -3939,0.0,0.0,0.0,0.0,4862,159.0,10335.15,0.0,0.0,121.866038098,0.0,0.0,0,38.9026862942,-77.0787602384,1473239942.0,3.61099999999 -3940,0.0,27.0,0.0,0.0,4863,159.0,10339.18,0.0,0.0,124.774083289,0.0,0.0,0,38.9026841149,-77.0787138864,1473239943.0,4.46000000002 -3941,0.0,27.0,0.0,0.0,4864,159.0,10343.25,0.0,0.0,121.501570053,0.0,0.0,0,38.9026816003,-77.0786670316,1473239944.0,3.75099999999 -3942,0.0,29.0,0.0,0.0,4865,159.0,10347.29,0.0,0.0,123.144831116,0.0,0.0,0,38.9026791696,-77.0786205959,1473239945.0,4.348 -3943,0.0,29.0,0.0,0.0,4866,159.0,10351.42,0.0,0.0,120.770673744,0.0,0.0,0,38.9026773255,-77.0785729866,1473239946.0,3.938 -3944,0.0,29.0,0.0,0.0,4867,159.0,10355.5,0.0,0.0,121.313844693,0.0,0.0,0,38.9026746433,-77.0785261318,1473239947.0,4.19900000001 -3945,0.0,0.0,0.0,0.0,4868,159.0,10359.68,0.0,0.0,120.736208632,0.0,0.0,0,38.9026721288,-77.0784780197,1473239948.0,4.14299999999 -3946,0.0,0.0,0.0,0.0,4869,159.0,10363.81,0.0,0.0,119.8869015,0.0,0.0,0,38.902669698,-77.0784304943,1473239949.0,4.124 -3947,0.0,0.0,0.0,0.0,4870,160.0,10368.02,0.0,0.0,121.476906767,0.0,0.0,0,38.9026673511,-77.0783820469,1473239950.0,4.27300000001 -3948,0.0,0.0,0.0,0.0,4871,160.0,10372.04,0.0,0.0,120.672884541,0.0,0.0,0,38.9026652556,-77.0783358626,1473239951.0,3.863 -3949,0.0,27.0,0.0,0.0,4872,160.0,10376.22,0.0,0.0,124.123745463,0.0,0.0,0,38.9026634954,-77.0782876667,1473239952.0,4.46000000002 -3950,0.0,27.0,0.0,0.0,4873,160.0,10380.23,0.0,0.0,122.021564538,0.0,0.0,0,38.9026617352,-77.0782415662,1473239953.0,3.57399999999 -3951,0.0,27.0,0.0,0.0,4874,160.0,10384.25,0.0,0.0,124.744974829,0.0,0.0,0,38.9026602264,-77.0781952143,1473239954.0,4.48800000002 -3952,0.0,0.0,0.0,0.0,4875,160.0,10388.23,0.0,0.0,121.583682733,0.0,0.0,0,38.9026584662,-77.0781493653,1473239955.0,3.58299999999 -3953,0.0,0.0,0.0,0.0,4876,160.0,10392.37,0.0,0.0,124.909427147,0.0,0.0,0,38.9026567899,-77.0781016722,1473239956.0,4.60900000002 -3954,0.0,0.0,0.0,0.0,4877,160.0,10396.45,0.0,0.0,121.06017267,0.0,0.0,0,38.902654862,-77.0780547336,1473239957.0,3.60200000001 -3955,0.0,0.0,0.0,0.0,4878,160.0,10400.5,0.0,0.0,124.869724659,0.0,0.0,0,38.9026529342,-77.0780081302,1473239958.0,4.46900000002 -3956,0.0,0.0,0.0,0.0,4879,160.0,10404.56,0.0,0.0,122.158751379,0.0,0.0,0,38.9026509225,-77.0779613592,1473239959.0,3.639 -3957,0.0,0.0,0.0,0.0,4880,160.0,10408.6,0.0,0.0,125.352996208,0.0,0.0,0,38.9026489947,-77.0779148396,1473239960.0,4.37600000001 -3958,0.0,0.0,0.0,0.0,4881,160.0,10412.7,0.0,0.0,122.475597665,0.0,0.0,0,38.902647486,-77.0778676495,1473239961.0,3.77900000001 -3959,0.0,0.0,0.0,0.0,4882,160.0,10416.72,0.0,0.0,124.169649067,0.0,0.0,0,38.902646061,-77.0778212976,1473239962.0,4.23600000001 -3960,0.0,0.0,0.0,0.0,4883,160.0,10420.84,0.0,0.0,122.700298942,0.0,0.0,0,38.9026449714,-77.077773856,1473239963.0,3.96599999999 -3961,0.0,0.0,0.0,0.0,4884,160.0,10424.85,0.0,0.0,123.249825796,0.0,0.0,0,38.9026435465,-77.0777276717,1473239964.0,4.096 -3962,0.0,0.0,0.0,0.0,4885,161.0,10428.97,0.0,0.0,123.635460577,0.0,0.0,0,38.9026425406,-77.0776801463,1473239965.0,4.087 -3963,0.0,0.0,0.0,0.0,4886,161.0,10432.98,0.0,0.0,122.540568355,0.0,0.0,0,38.9026417863,-77.077633962,1473239966.0,3.938 -3964,0.0,0.0,0.0,0.0,4887,160.0,10437.06,0.0,0.0,124.267708148,0.0,0.0,0,38.9026408643,-77.0775869396,1473239967.0,4.255 -3965,0.0,0.0,0.0,0.0,4888,160.0,10441.09,0.0,0.0,122.264917908,0.0,0.0,0,38.9026400261,-77.0775405038,1473239968.0,3.75099999999 -3966,0.0,0.0,0.0,0.0,4889,160.0,10445.23,0.0,0.0,124.557174979,0.0,0.0,0,38.9026393555,-77.0774928108,1473239969.0,4.46900000002 -3967,0.0,0.0,0.0,0.0,4890,161.0,10449.22,0.0,0.0,122.022338011,0.0,0.0,0,38.902638685,-77.0774467941,1473239970.0,3.592 -3968,0.0,0.0,0.0,0.0,4891,161.0,10453.25,0.0,0.0,124.467510747,0.0,0.0,0,38.9026380982,-77.0774003584,1473239971.0,4.516 -3969,0.0,0.0,0.0,0.0,4892,160.0,10457.27,0.0,0.0,121.340353915,0.0,0.0,0,38.90263726,-77.0773540065,1473239972.0,3.61099999999 -3970,0.0,0.0,0.0,0.0,4893,160.0,10461.31,0.0,0.0,124.463084573,0.0,0.0,0,38.902636338,-77.0773074031,1473239973.0,4.516 -3971,0.0,0.0,0.0,0.0,4894,161.0,10465.39,0.0,0.0,120.907338919,0.0,0.0,0,38.902635416,-77.0772604644,1473239974.0,3.704 -3972,0.0,0.0,0.0,0.0,4895,161.0,10469.39,0.0,0.0,123.770466331,0.0,0.0,0,38.9026343264,-77.0772142801,1473239975.0,4.42299999998 -3973,0.0,0.0,0.0,0.0,4896,161.0,10473.49,0.0,0.0,121.044186892,0.0,0.0,0,38.9026328176,-77.07716709,1473239976.0,3.77 -3974,0.0,0.0,0.0,0.0,4897,161.0,10477.57,0.0,0.0,123.180291154,0.0,0.0,0,38.9026305545,-77.0771201514,1473239977.0,4.348 -3975,0.0,0.0,0.0,0.0,4898,161.0,10481.71,0.0,0.0,121.510517761,0.0,0.0,0,38.9026287105,-77.0770724583,1473239978.0,3.92799999999 -3976,0.0,0.0,0.0,0.0,4899,162.0,10485.79,0.0,0.0,122.759767107,0.0,0.0,0,38.9026260283,-77.0770256035,1473239979.0,4.18000000001 -3977,0.0,0.0,0.0,0.0,4900,162.0,10489.91,0.0,0.0,122.751939056,0.0,0.0,0,38.9026230108,-77.0769782458,1473239980.0,4.06799999999 -3978,0.0,29.0,0.0,0.0,4901,161.0,10493.96,0.0,0.0,122.466766973,0.0,0.0,0,38.9026198257,-77.0769317262,1473239981.0,4.00299999999 -3979,0.0,29.0,0.0,0.0,4902,162.0,10498.07,0.0,0.0,123.343538988,0.0,0.0,0,38.9026163053,-77.0768845361,1473239982.0,4.17100000001 -3980,0.0,28.0,0.0,0.0,4903,162.0,10502.07,0.0,0.0,121.437823834,0.0,0.0,0,38.9026126172,-77.0768386871,1473239983.0,3.88200000001 -3981,0.0,28.0,0.0,0.0,4904,162.0,10506.23,0.0,0.0,123.407719874,0.0,0.0,0,38.9026085939,-77.076790994,1473239984.0,4.42299999998 -3982,0.0,28.0,0.0,0.0,4905,162.0,10510.28,0.0,0.0,120.951780557,0.0,0.0,0,38.9026042353,-77.0767446421,1473239985.0,3.71399999999 -3983,0.0,27.0,0.0,0.0,4906,162.0,10514.4,0.0,0.0,124.058418089,0.0,0.0,0,38.9025997091,-77.0766975358,1473239986.0,4.50699999999 -3984,0.0,27.0,0.0,0.0,4907,162.0,10518.41,0.0,0.0,121.843283165,0.0,0.0,0,38.9025950991,-77.0766516868,1473239987.0,3.58299999999 -3985,0.0,29.0,0.0,0.0,4908,162.0,10522.43,0.0,0.0,125.994456244,0.0,0.0,0,38.9025907405,-77.0766056702,1473239988.0,4.49699999999 -3986,0.0,29.0,0.0,0.0,4909,162.0,10526.45,0.0,0.0,122.369454041,0.0,0.0,0,38.9025862142,-77.0765596535,1473239989.0,3.56400000001 -3987,0.0,29.0,0.0,0.0,4910,162.0,10530.47,0.0,0.0,125.905593696,0.0,0.0,0,38.9025818557,-77.0765136369,1473239990.0,4.45100000001 -3988,0.0,0.0,0.0,0.0,4911,162.0,10534.51,0.0,0.0,121.827860924,0.0,0.0,0,38.9025775809,-77.0764674526,1473239991.0,3.63 -3989,0.0,0.0,0.0,0.0,4912,163.0,10538.57,0.0,0.0,124.833555259,0.0,0.0,0,38.9025731385,-77.076420933,1473239992.0,4.46900000002 -3990,0.0,0.0,0.0,0.0,4913,163.0,10542.65,0.0,0.0,121.491090127,0.0,0.0,0,38.9025679417,-77.0763743296,1473239993.0,3.742 -3991,0.0,0.0,0.0,0.0,4914,163.0,10546.67,0.0,0.0,123.207753875,0.0,0.0,0,38.9025629126,-77.0763284806,1473239994.0,4.348 -3992,0.0,0.0,0.0,0.0,4915,163.0,10550.76,0.0,0.0,121.368915267,0.0,0.0,0,38.9025575481,-77.0762818772,1473239995.0,3.872 -3993,0.0,0.0,0.0,0.0,4916,162.0,10554.81,0.0,0.0,121.969764171,0.0,0.0,0,38.9025519323,-77.0762356929,1473239996.0,4.255 -3994,0.0,0.0,0.0,0.0,4917,163.0,10558.98,0.0,0.0,121.699365688,0.0,0.0,0,38.9025462326,-77.0761882514,1473239997.0,4.087 -3995,0.0,0.0,0.0,0.0,4918,162.0,10563.01,0.0,0.0,121.198893155,0.0,0.0,0,38.9025407005,-77.0761423185,1473239998.0,4.05000000001 -3996,0.0,0.0,0.0,0.0,4919,162.0,10567.14,0.0,0.0,122.344566789,0.0,0.0,0,38.9025354199,-77.0760951284,1473239999.0,4.27300000001 -3997,0.0,0.0,0.0,0.0,4920,162.0,10571.15,0.0,0.0,121.32429406,0.0,0.0,0,38.9025299717,-77.0760494471,1473240000.0,3.79799999999 -3998,0.0,0.0,0.0,0.0,4921,162.0,10575.29,0.0,0.0,123.533243277,0.0,0.0,0,38.9025244396,-77.0760022569,1473240001.0,4.46000000002 -3999,0.0,0.0,0.0,0.0,4922,162.0,10579.34,0.0,0.0,121.596738891,0.0,0.0,0,38.9025185723,-77.0759561565,1473240002.0,3.65800000001 -4000,0.0,0.0,0.0,0.0,4923,162.0,10583.43,0.0,0.0,124.794979676,0.0,0.0,0,38.9025127888,-77.0759096369,1473240003.0,4.50699999999 -4001,0.0,0.0,0.0,0.0,4924,162.0,10587.46,0.0,0.0,121.711805413,0.0,0.0,0,38.9025065862,-77.0758637879,1473240004.0,3.58299999999 -4002,0.0,0.0,0.0,0.0,4925,162.0,10591.53,0.0,0.0,125.802878326,0.0,0.0,0,38.9025002159,-77.0758176036,1473240005.0,4.48800000002 -4003,0.0,0.0,0.0,0.0,4926,163.0,10595.55,0.0,0.0,121.583810721,0.0,0.0,0,38.9024938457,-77.0757719222,1473240006.0,3.60200000001 -4004,0.0,0.0,0.0,0.0,4927,163.0,10599.61,0.0,0.0,125.451162568,0.0,0.0,0,38.9024879783,-77.075725738,1473240007.0,4.48800000002 -4005,0.0,0.0,0.0,0.0,4928,162.0,10603.67,0.0,0.0,120.741257235,0.0,0.0,0,38.9024821948,-77.0756795537,1473240008.0,3.65800000001 -4006,0.0,30.0,0.0,0.0,4929,163.0,10607.73,0.0,0.0,124.222934457,0.0,0.0,0,38.9024768304,-77.0756332856,1473240009.0,4.48800000002 -4007,0.0,30.0,0.0,0.0,4930,162.0,10611.81,0.0,0.0,119.242300354,0.0,0.0,0,38.902471466,-77.0755866822,1473240010.0,3.75099999999 -4008,0.0,29.0,0.0,0.0,4931,163.0,10615.92,0.0,0.0,122.164178078,0.0,0.0,0,38.9024662692,-77.0755398273,1473240011.0,4.48800000002 -4009,0.0,29.0,0.0,0.0,4932,163.0,10620.1,0.0,0.0,117.838865809,0.0,0.0,0,38.9024606533,-77.0754922181,1473240012.0,3.863 -4010,0.0,29.0,0.0,0.0,4933,163.0,10624.31,0.0,0.0,120.813119363,0.0,0.0,0,38.9024549536,-77.0754441898,1473240013.0,4.54399999998 -4011,0.0,29.0,0.0,0.0,4934,163.0,10628.52,0.0,0.0,117.623815615,0.0,0.0,0,38.9024492539,-77.0753961615,1473240014.0,3.88200000001 -4012,0.0,29.0,0.0,0.0,4935,163.0,10632.71,0.0,0.0,120.62360839,0.0,0.0,0,38.9024433028,-77.0753485523,1473240015.0,4.47899999999 -4013,0.0,29.0,0.0,0.0,4936,164.0,10636.87,0.0,0.0,118.175493165,0.0,0.0,0,38.9024377707,-77.0753010269,1473240016.0,3.9 -4014,0.0,30.0,0.0,0.0,4937,164.0,10641.04,0.0,0.0,121.24418579,0.0,0.0,0,38.9024319872,-77.0752535854,1473240017.0,4.42299999998 -4015,0.0,30.0,0.0,0.0,4938,164.0,10645.24,0.0,0.0,118.67052029,0.0,0.0,0,38.9024262037,-77.0752057247,1473240018.0,3.95600000002 -4016,0.0,29.0,0.0,0.0,4939,163.0,10649.42,0.0,0.0,121.217845786,0.0,0.0,0,38.9024204202,-77.0751581155,1473240019.0,4.37600000001 -4017,0.0,29.0,0.0,0.0,4940,164.0,10653.58,0.0,0.0,118.78084574,0.0,0.0,0,38.9024150558,-77.0751106739,1473240020.0,3.94700000001 -4018,0.0,29.0,0.0,0.0,4941,163.0,10657.74,0.0,0.0,120.404810355,0.0,0.0,0,38.9024096914,-77.0750631485,1473240021.0,4.38499999999 -4019,0.0,0.0,0.0,0.0,4942,164.0,10661.92,0.0,0.0,118.550907607,0.0,0.0,0,38.9024043269,-77.0750155393,1473240022.0,3.99399999998 -4020,0.0,0.0,0.0,0.0,4943,164.0,10666.09,0.0,0.0,120.241857909,0.0,0.0,0,38.9023986273,-77.0749680139,1473240023.0,4.38499999999 -4021,0.0,0.0,0.0,0.0,4944,164.0,10670.31,0.0,0.0,118.946719079,0.0,0.0,0,38.9023927599,-77.0749199018,1473240024.0,4.05000000001 -4022,0.0,0.0,0.0,0.0,4945,164.0,10674.49,0.0,0.0,121.238713253,0.0,0.0,0,38.9023866411,-77.0748723764,1473240025.0,4.245 -4023,0.0,0.0,0.0,0.0,4946,164.0,10678.63,0.0,0.0,120.115310698,0.0,0.0,0,38.9023809414,-77.0748251863,1473240026.0,4.022 -4024,0.0,0.0,0.0,0.0,4947,164.0,10682.75,0.0,0.0,121.849967348,0.0,0.0,0,38.9023749903,-77.0747782476,1473240027.0,4.22699999999 -4025,0.0,0.0,0.0,0.0,4948,164.0,10686.89,0.0,0.0,120.454410352,0.0,0.0,0,38.9023692906,-77.0747311413,1473240028.0,4.012 -4026,0.0,0.0,0.0,0.0,4949,164.0,10691.05,0.0,0.0,121.956756563,0.0,0.0,0,38.9023633394,-77.0746837836,1473240029.0,4.26400000002 -4027,0.0,0.0,0.0,0.0,4950,165.0,10695.21,0.0,0.0,120.375697241,0.0,0.0,0,38.9023575559,-77.074636342,1473240030.0,4.03999999999 -4028,0.0,30.0,0.0,0.0,4951,165.0,10699.35,0.0,0.0,121.332705835,0.0,0.0,0,38.9023516048,-77.0745893195,1473240031.0,4.20799999999 -4029,0.0,30.0,0.0,0.0,4952,165.0,10703.43,0.0,0.0,119.868860353,0.0,0.0,0,38.9023460727,-77.0745428,1473240032.0,4.00299999999 -4030,0.0,30.0,0.0,0.0,4953,165.0,10707.6,0.0,0.0,120.148547295,0.0,0.0,0,38.9023401216,-77.0744952746,1473240033.0,4.35700000002 -4031,0.0,0.0,0.0,0.0,4954,165.0,10711.79,0.0,0.0,119.493966331,0.0,0.0,0,38.9023346733,-77.0744474977,1473240034.0,4.03100000001 -4032,0.0,0.0,0.0,0.0,4955,165.0,10715.96,0.0,0.0,119.341113065,0.0,0.0,0,38.9023288898,-77.0744000562,1473240035.0,4.31999999999 -4033,0.0,0.0,0.0,0.0,4956,165.0,10720.19,0.0,0.0,120.67099341,0.0,0.0,0,38.9023231063,-77.0743518602,1473240036.0,4.087 -4034,0.0,25.0,0.0,0.0,4957,165.0,10724.29,0.0,0.0,121.602499853,0.0,0.0,0,38.9023175742,-77.0743050892,1473240037.0,4.11499999999 -4035,0.0,25.0,0.0,0.0,4958,165.0,10728.43,0.0,0.0,122.706034587,0.0,0.0,0,38.9023120422,-77.0742578991,1473240038.0,4.14299999999 -4036,0.0,30.0,0.0,0.0,4959,165.0,10732.44,0.0,0.0,122.699647199,0.0,0.0,0,38.9023071807,-77.0742121339,1473240039.0,3.88200000001 -4037,0.0,30.0,0.0,0.0,4960,165.0,10736.51,0.0,0.0,123.417214297,0.0,0.0,0,38.9023023192,-77.0741655305,1473240040.0,4.26400000002 -4038,0.0,30.0,0.0,0.0,4961,165.0,10740.59,0.0,0.0,121.448549978,0.0,0.0,0,38.9022975415,-77.0741189271,1473240041.0,3.9 -4039,0.0,0.0,0.0,0.0,4962,165.0,10744.74,0.0,0.0,122.662769778,0.0,0.0,0,38.9022931829,-77.0740714855,1473240042.0,4.33900000002 -4040,0.0,0.0,0.0,0.0,4963,165.0,10748.86,0.0,0.0,119.632588124,0.0,0.0,0,38.9022884052,-77.0740243793,1473240043.0,3.88200000001 -4041,0.0,0.0,0.0,0.0,4964,166.0,10753.05,0.0,0.0,122.533938188,0.0,0.0,0,38.9022840466,-77.0739763509,1473240044.0,4.42299999998 -4042,0.0,0.0,0.0,0.0,4965,165.0,10757.17,0.0,0.0,119.581805344,0.0,0.0,0,38.9022788499,-77.0739293285,1473240045.0,3.80699999999 -4043,0.0,0.0,0.0,0.0,4966,166.0,10761.34,0.0,0.0,123.086563423,0.0,0.0,0,38.9022742398,-77.0738815516,1473240046.0,4.47899999999 -4044,0.0,29.0,0.0,0.0,4967,165.0,10765.46,0.0,0.0,119.734531439,0.0,0.0,0,38.9022692945,-77.0738345291,1473240047.0,3.72299999999 -4045,0.0,29.0,0.0,0.0,4968,165.0,10769.6,0.0,0.0,123.356448873,0.0,0.0,0,38.9022649359,-77.0737870876,1473240048.0,4.50699999999 -4046,0.0,29.0,0.0,0.0,4969,166.0,10773.7,0.0,0.0,119.171925365,0.0,0.0,0,38.9022603258,-77.0737402327,1473240049.0,3.71399999999 -4047,0.0,0.0,0.0,0.0,4970,165.0,10777.85,0.0,0.0,122.913137127,0.0,0.0,0,38.9022560511,-77.0736927073,1473240050.0,4.57199999999 -4048,0.0,0.0,0.0,0.0,4971,165.0,10781.98,0.0,0.0,118.541538803,0.0,0.0,0,38.9022517763,-77.0736454334,1473240051.0,3.71399999999 -4049,0.0,0.0,0.0,0.0,4972,165.0,10786.15,0.0,0.0,122.884628889,0.0,0.0,0,38.9022475854,-77.0735975727,1473240052.0,4.6 -4050,0.0,0.0,0.0,0.0,4973,165.0,10790.29,0.0,0.0,118.454613423,0.0,0.0,0,38.9022429753,-77.073550215,1473240053.0,3.686 -4051,0.0,0.0,0.0,0.0,4974,165.0,10794.44,0.0,0.0,123.299165409,0.0,0.0,0,38.9022386167,-77.0735027734,1473240054.0,4.57199999999 -4052,0.0,0.0,0.0,0.0,4975,165.0,10798.55,0.0,0.0,118.465305051,0.0,0.0,0,38.9022340905,-77.0734556671,1473240055.0,3.69499999999 -4053,0.0,0.0,0.0,0.0,4976,165.0,10802.72,0.0,0.0,122.784954113,0.0,0.0,0,38.9022298995,-77.0734079741,1473240056.0,4.60900000002 -4054,0.0,0.0,0.0,0.0,4977,165.0,10806.83,0.0,0.0,117.819392562,0.0,0.0,0,38.902225541,-77.0733608678,1473240057.0,3.67599999999 -4055,0.0,30.0,0.0,0.0,4978,165.0,10811.01,0.0,0.0,122.438595189,0.0,0.0,0,38.90222135,-77.0733130071,1473240058.0,4.67499999999 -4056,0.0,30.0,0.0,0.0,4979,165.0,10815.19,0.0,0.0,117.737003058,0.0,0.0,0,38.9022169914,-77.0732651465,1473240059.0,3.704 -4057,0.0,30.0,0.0,0.0,4980,165.0,10819.36,0.0,0.0,122.167537705,0.0,0.0,0,38.902212549,-77.0732174534,1473240060.0,4.60900000002 -4058,0.0,0.0,0.0,0.0,4981,165.0,10823.49,0.0,0.0,117.308545851,0.0,0.0,0,38.902207939,-77.0731700957,1473240061.0,3.69499999999 -4059,0.0,0.0,0.0,0.0,4982,165.0,10827.69,0.0,0.0,122.173482113,0.0,0.0,0,38.9022036642,-77.0731219836,1473240062.0,4.665 -4060,0.0,0.0,0.0,0.0,4983,165.0,10831.87,0.0,0.0,117.227463908,0.0,0.0,0,38.9021993056,-77.0730742067,1473240063.0,3.742 -4061,0.0,0.0,0.0,0.0,4984,166.0,10836.07,0.0,0.0,121.668854248,0.0,0.0,0,38.9021953661,-77.0730260108,1473240064.0,4.637 -4062,0.0,0.0,0.0,0.0,4985,166.0,10840.23,0.0,0.0,117.358727527,0.0,0.0,0,38.9021913428,-77.0729783177,1473240065.0,3.704 -4063,0.0,0.0,0.0,0.0,4986,166.0,10844.42,0.0,0.0,121.146390991,0.0,0.0,0,38.9021871518,-77.0729303733,1473240066.0,4.64700000001 -4064,0.0,0.0,0.0,0.0,4987,165.0,10848.61,0.0,0.0,118.302709491,0.0,0.0,0,38.902182458,-77.0728824288,1473240067.0,3.72299999999 -4065,0.0,26.0,0.0,0.0,4988,165.0,10852.77,0.0,0.0,120.481424998,0.0,0.0,0,38.902178267,-77.0728347357,1473240068.0,4.6 -4066,0.0,26.0,0.0,0.0,4989,165.0,10856.96,0.0,0.0,119.911670261,0.0,0.0,0,38.9021739084,-77.0727867913,1473240069.0,3.76000000001 -4067,0.0,26.0,0.0,0.0,4990,166.0,10860.98,0.0,0.0,127.054319847,0.0,0.0,0,38.9021698851,-77.0727406908,1473240070.0,4.245 -4068,0.0,23.0,0.0,0.0,4991,165.0,10865.0,0.0,0.0,132.599653519,0.0,0.0,0,38.902165778,-77.0726946741,1473240071.0,3.788 -4069,0.0,23.0,0.0,0.0,4992,165.0,10868.56,0.0,0.0,148.366237239,0.0,0.0,0,38.9021622576,-77.0726538543,1473240072.0,3.38699999999 -4070,0.0,23.0,0.0,0.0,4993,165.0,10871.75,0.0,0.0,157.806934488,0.0,0.0,0,38.9021590725,-77.0726173092,1473240073.0,3.042 -4071,0.0,0.0,0.0,0.0,4994,164.0,10874.62,0.0,0.0,179.773811859,0.0,0.0,0,38.9021561388,-77.0725844521,1473240074.0,2.74300000001 -4072,0.0,0.0,0.0,0.0,4995,164.0,10877.27,0.0,0.0,192.859361277,0.0,0.0,0,38.902153708,-77.0725540258,1473240075.0,2.59399999999 -4073,0.0,0.0,0.0,0.0,4996,164.0,10879.88,0.0,0.0,204.761094328,0.0,0.0,0,38.9021512773,-77.0725241024,1473240076.0,2.622 -4074,0.0,0.0,0.0,0.0,4997,163.0,10882.22,0.0,0.0,205.814848606,0.0,0.0,0,38.9021489304,-77.0724972803,1473240077.0,2.127 -4075,0.0,0.0,0.0,0.0,4998,163.0,10884.47,0.0,0.0,214.495434312,0.0,0.0,0,38.9021466672,-77.0724715479,1473240078.0,2.463 -4076,0.0,0.0,0.0,0.0,4999,163.0,10886.78,0.0,0.0,222.926924361,0.0,0.0,0,38.9021442365,-77.0724450611,1473240079.0,2.277 -4077,0.0,0.0,0.0,0.0,5000,162.0,10889.15,0.0,0.0,225.561266736,0.0,0.0,0,38.9021418896,-77.0724179875,1473240080.0,2.473 -4078,0.0,0.0,0.0,0.0,5001,162.0,10891.26,0.0,0.0,220.363494831,0.0,0.0,0,38.9021397103,-77.0723937638,1473240081.0,1.81 -4079,0.0,0.0,0.0,0.0,5002,161.0,10893.27,0.0,0.0,231.3502643,0.0,0.0,0,38.9021374471,-77.0723707974,1473240082.0,2.258 -4080,0.0,0.0,0.0,0.0,5003,161.0,10895.57,0.0,0.0,228.293805233,0.0,0.0,0,38.9021346811,-77.0723444782,1473240083.0,2.389 -4081,0.0,0.0,0.0,0.0,5004,161.0,10897.89,0.0,0.0,225.841332288,0.0,0.0,0,38.9021316636,-77.0723180752,1473240084.0,2.23 -4082,0.0,0.0,0.0,0.0,5005,160.0,10899.96,0.0,0.0,218.340198604,0.0,0.0,0,38.9021285623,-77.0722945221,1473240085.0,1.959 -4083,0.0,0.0,0.0,0.0,5006,160.0,10902.16,0.0,0.0,226.67192624,0.0,0.0,0,38.9021256287,-77.0722694602,1473240086.0,2.463 -4084,0.0,0.0,0.0,0.0,5007,159.0,10904.49,0.0,0.0,233.817500886,0.0,0.0,0,38.9021216892,-77.0722430572,1473240087.0,2.174 -4085,0.0,0.0,0.0,0.0,5008,159.0,10906.6,0.0,0.0,240.81464153,0.0,0.0,0,38.9021182526,-77.0722190849,1473240088.0,2.043 -4086,0.0,0.0,0.0,0.0,5009,158.0,10908.57,0.0,0.0,254.854368932,0.0,0.0,0,38.9021152351,-77.0721967891,1473240089.0,1.913 -4087,0.0,0.0,0.0,0.0,5010,158.0,10910.42,0.0,0.0,283.78866467,0.0,0.0,0,38.9021122176,-77.0721757505,1473240090.0,1.829 -4088,0.0,0.0,0.0,0.0,5011,157.0,10912.15,0.0,0.0,287.010001864,0.0,0.0,0,38.9021095354,-77.0721561369,1473240091.0,1.68 -4089,0.0,0.0,0.0,0.0,5012,157.0,10913.75,0.0,0.0,305.753729269,0.0,0.0,0,38.902106937,-77.0721379481,1473240092.0,1.577 -4090,0.0,0.0,0.0,0.0,5013,156.0,10915.37,0.0,0.0,314.364412315,0.0,0.0,0,38.902104171,-77.0721196756,1473240093.0,1.642 -4091,0.0,0.0,0.0,0.0,5014,156.0,10917.09,0.0,0.0,308.833438506,0.0,0.0,0,38.9021013211,-77.0721001457,1473240094.0,1.801 -4092,0.0,0.0,0.0,0.0,5015,155.0,10918.61,0.0,0.0,298.516720813,0.0,0.0,0,38.9020988066,-77.0720829628,1473240095.0,1.306 -4093,0.0,0.0,0.0,0.0,5016,154.0,10920.13,0.0,0.0,291.604811101,0.0,0.0,0,38.9020964596,-77.0720656961,1473240096.0,1.829 -4094,0.0,0.0,0.0,0.0,5017,154.0,10921.94,0.0,0.0,290.214859504,0.0,0.0,0,38.902093526,-77.0720450766,1473240097.0,1.875 -4095,0.0,0.0,0.0,0.0,5018,153.0,10923.71,0.0,0.0,295.544569657,0.0,0.0,0,38.9020903409,-77.0720251277,1473240098.0,1.698 -4096,0.0,67.0,0.0,0.0,5019,152.0,10925.34,0.0,0.0,297.541610744,0.0,0.0,0,38.9020877425,-77.0720066037,1473240099.0,1.614 -4097,0.0,67.0,0.0,0.0,5020,152.0,10926.89,0.0,0.0,325.006964435,0.0,0.0,0,38.9020853117,-77.0719890855,1473240100.0,1.549 -4098,0.0,67.0,0.0,0.0,5021,151.0,10928.33,0.0,0.0,345.945104053,0.0,0.0,0,38.9020827133,-77.0719728246,1473240101.0,1.4 -4099,0.0,0.0,0.0,0.0,5022,150.0,10929.7,0.0,0.0,360.790928685,0.0,0.0,0,38.9020804502,-77.0719572343,1473240102.0,1.409 -4100,0.0,0.0,0.0,0.0,5023,149.0,10931.03,0.0,0.0,378.091016819,0.0,0.0,0,38.9020782709,-77.0719421469,1473240103.0,1.334 -4101,0.0,0.0,0.0,0.0,5024,148.0,10932.31,0.0,0.0,397.212974936,0.0,0.0,0,38.9020760078,-77.07192773,1473240104.0,1.26 -4102,0.0,0.0,0.0,0.0,5025,147.0,10933.51,0.0,0.0,416.747851313,0.0,0.0,0,38.9020741638,-77.0719140675,1473240105.0,1.213 -4103,0.0,0.0,0.0,0.0,5026,146.0,10934.65,0.0,0.0,429.820219785,0.0,0.0,0,38.9020724874,-77.0719010755,1473240106.0,1.148 -4104,0.0,0.0,0.0,0.0,5027,145.0,10935.75,0.0,0.0,456.976909807,0.0,0.0,0,38.9020707272,-77.0718886703,1473240107.0,1.101 -4105,0.0,0.0,0.0,0.0,5028,144.0,10936.84,0.0,0.0,453.993372876,0.0,0.0,0,38.9020687155,-77.0718763489,1473240108.0,1.11 -4106,0.0,0.0,0.0,0.0,5029,143.0,10938.01,0.0,0.0,418.166151351,0.0,0.0,0,38.9020664524,-77.0718631055,1473240109.0,1.204 -4107,0.0,0.0,0.0,0.0,5030,143.0,10939.12,0.0,0.0,381.97602315,0.0,0.0,0,38.9020644408,-77.0718506165,1473240110.0,1.064 -4108,0.0,0.0,0.0,0.0,5031,142.0,10940.42,0.0,0.0,355.391176452,0.0,0.0,0,38.9020619262,-77.0718359482,1473240111.0,1.568 -4109,0.0,0.0,0.0,0.0,5032,141.0,10941.98,0.0,0.0,342.787949297,0.0,0.0,0,38.9020587411,-77.07181843,1473240112.0,1.633 -4110,0.0,0.0,0.0,0.0,5033,139.0,10943.51,0.0,0.0,342.09450694,0.0,0.0,0,38.9020552207,-77.0718014147,1473240113.0,1.418 -4111,0.0,0.0,0.0,0.0,5034,138.0,10944.89,0.0,0.0,350.836692354,0.0,0.0,0,38.9020521194,-77.071785992,1473240114.0,1.344 -4112,0.0,0.0,0.0,0.0,5035,137.0,10946.2,0.0,0.0,388.433754389,0.0,0.0,0,38.9020489343,-77.0717714075,1473240115.0,1.269 -4113,0.0,0.0,0.0,0.0,5036,136.0,10947.45,0.0,0.0,414.217523374,0.0,0.0,0,38.9020460006,-77.0717574935,1473240116.0,1.232 -4114,0.0,0.0,0.0,0.0,5037,135.0,10948.66,0.0,0.0,432.830675141,0.0,0.0,0,38.9020429831,-77.0717441663,1473240117.0,1.157 -4115,0.0,0.0,0.0,0.0,5038,134.0,10949.79,0.0,0.0,464.955255604,0.0,0.0,0,38.9020398818,-77.0717317611,1473240118.0,1.082 -4116,0.0,0.0,0.0,0.0,5039,132.0,10950.86,0.0,0.0,487.547488392,0.0,0.0,0,38.9020371996,-77.0717198588,1473240119.0,1.054 -4117,0.0,0.0,0.0,0.0,5040,132.0,10951.88,0.0,0.0,500.366068682,0.0,0.0,0,38.9020343497,-77.0717087109,1473240120.0,0.941999999999 -4118,0.0,0.0,0.0,0.0,5041,131.0,10952.8,0.0,0.0,511.100392508,0.0,0.0,0,38.9020325895,-77.0716982335,1473240121.0,0.914 -4119,0.0,0.0,0.0,0.0,5042,130.0,10953.77,0.0,0.0,521.866429304,0.0,0.0,0,38.9020304941,-77.071687337,1473240122.0,1.045 -4120,0.0,0.0,0.0,0.0,5043,129.0,10954.79,0.0,0.0,533.913935847,0.0,0.0,0,38.9020273928,-77.0716763567,1473240123.0,0.979999999999 -4121,0.0,0.0,0.0,0.0,5044,127.0,10955.69,0.0,0.0,554.944289359,0.0,0.0,0,38.9020252973,-77.0716662984,1473240124.0,0.857999999999 -4122,0.0,0.0,0.0,0.0,5045,125.0,10956.5,0.0,0.0,601.647106625,0.0,0.0,0,38.9020233694,-77.071657246,1473240125.0,0.83 -4123,0.0,0.0,0.0,0.0,5046,123.0,10957.3,0.0,0.0,664.47667428,0.0,0.0,0,38.9020213578,-77.0716483612,1473240126.0,0.784 -4124,0.0,0.0,0.0,0.0,5047,120.0,10958.01,0.0,0.0,694.26495074,0.0,0.0,0,38.9020195976,-77.0716404822,1473240127.0,0.681 -4125,0.0,0.0,0.0,0.0,5048,118.0,10958.69,0.0,0.0,707.798654263,0.0,0.0,0,38.9020178374,-77.0716330223,1473240128.0,0.672 -4126,0.0,0.0,0.0,0.0,5049,117.0,10959.39,0.0,0.0,711.474137453,0.0,0.0,0,38.9020159934,-77.0716252271,1473240129.0,0.728 -4127,0.0,0.0,0.0,0.0,5050,116.0,10960.14,0.0,0.0,726.821931773,0.0,0.0,0,38.9020139817,-77.0716170128,1473240130.0,0.746 -4128,0.0,0.0,0.0,0.0,5051,117.0,10960.83,0.0,0.0,682.055733697,0.0,0.0,0,38.902012473,-77.0716092177,1473240131.0,0.718 -4129,0.0,0.0,0.0,0.0,5052,117.0,10961.55,0.0,0.0,625.609359766,0.0,0.0,0,38.902010629,-77.0716012549,1473240132.0,0.756 -4130,0.0,0.0,0.0,0.0,5053,118.0,10962.29,0.0,0.0,573.793295312,0.0,0.0,0,38.9020091202,-77.0715929568,1473240133.0,0.756 -4131,0.0,0.0,0.0,0.0,5054,119.0,10963.18,0.0,0.0,544.197814728,0.0,0.0,0,38.9020066895,-77.07158315,1473240134.0,1.073 -4132,0.0,0.0,0.0,0.0,5055,119.0,10964.25,0.0,0.0,511.87278964,0.0,0.0,0,38.90200275,-77.0715718344,1473240135.0,1.054 -4133,0.0,0.0,0.0,0.0,5056,119.0,10965.27,0.0,0.0,466.220225481,0.0,0.0,0,38.901999481,-77.0715608541,1473240136.0,1.017 -4134,0.0,0.0,0.0,0.0,5057,119.0,10966.27,0.0,0.0,444.51457469,0.0,0.0,0,38.9019959606,-77.0715502929,1473240137.0,0.979999999999 -4135,0.0,0.0,0.0,0.0,5058,118.0,10967.36,0.0,0.0,422.946785604,0.0,0.0,0,38.901992524,-77.0715384744,1473240138.0,1.241 -4136,0.0,0.0,0.0,0.0,5059,118.0,10968.7,0.0,0.0,374.101185463,0.0,0.0,0,38.9019874111,-77.0715243928,1473240139.0,1.428 -4137,0.0,32.0,0.0,0.0,5060,118.0,10970.07,0.0,0.0,346.725024541,0.0,0.0,0,38.9019826334,-77.0715098083,1473240140.0,1.288 -4138,0.0,53.0,0.0,0.0,5061,118.0,10971.55,0.0,0.0,328.074670363,0.0,0.0,0,38.9019777719,-77.0714939665,1473240141.0,1.614 -4139,0.0,53.0,0.0,0.0,5062,118.0,10973.19,0.0,0.0,325.851445596,0.0,0.0,0,38.9019724913,-77.0714762807,1473240142.0,1.661 -4140,0.0,41.0,0.0,0.0,5063,116.0,10974.7,0.0,0.0,328.982035587,0.0,0.0,0,38.9019678812,-77.0714598522,1473240143.0,1.362 -4141,0.0,41.0,0.0,0.0,5064,116.0,10976.14,0.0,0.0,341.58560786,0.0,0.0,0,38.9019634388,-77.0714442618,1473240144.0,1.512 -4142,0.0,26.0,0.0,0.0,5065,116.0,10977.61,0.0,0.0,372.082534671,0.0,0.0,0,38.9019592479,-77.0714281686,1473240145.0,1.39 -4143,0.0,26.0,0.0,0.0,5066,116.0,10978.98,0.0,0.0,390.492933937,0.0,0.0,0,38.9019550569,-77.0714133326,1473240146.0,1.278 -4144,0.0,26.0,0.0,0.0,5067,116.0,10980.19,0.0,0.0,405.257470071,0.0,0.0,0,38.9019513689,-77.071400173,1473240147.0,1.129 -4145,0.0,68.0,0.0,0.0,5068,116.0,10981.38,0.0,0.0,417.874160181,0.0,0.0,0,38.9019479323,-77.0713872649,1473240148.0,1.222 -4146,0.0,68.0,0.0,0.0,5069,115.0,10982.63,0.0,0.0,446.530400795,0.0,0.0,0,38.9019442443,-77.0713736024,1473240149.0,1.232 -4147,0.0,68.0,0.0,0.0,5070,114.0,10983.83,0.0,0.0,434.753150549,0.0,0.0,0,38.9019408915,-77.0713604428,1473240150.0,1.129 -4148,0.0,24.0,0.0,0.0,5071,114.0,10985.08,0.0,0.0,381.516752054,0.0,0.0,0,38.9019372873,-77.0713468641,1473240151.0,1.297 -4149,0.0,44.0,0.0,0.0,5072,114.0,10986.29,0.0,0.0,344.416281497,0.0,0.0,0,38.9019335993,-77.0713337045,1473240152.0,1.092 -4150,0.0,44.0,0.0,0.0,5073,113.0,10987.82,0.0,0.0,298.741406335,0.0,0.0,0,38.9019284863,-77.071317276,1473240153.0,1.885 -4151,0.0,41.0,0.0,0.0,5074,113.0,10989.82,0.0,0.0,283.27917101,0.0,0.0,0,38.9019222837,-77.0712956507,1473240154.0,2.053 -4152,0.0,41.0,0.0,0.0,5075,112.0,10991.75,0.0,0.0,270.991900744,0.0,0.0,0,38.9019165002,-77.0712746121,1473240155.0,1.782 -4153,0.0,28.0,0.0,0.0,5076,112.0,10993.67,0.0,0.0,253.682236094,0.0,0.0,0,38.9019113034,-77.0712535735,1473240156.0,1.978 -4154,0.0,28.0,0.0,0.0,5077,112.0,10995.4,0.0,0.0,254.216024193,0.0,0.0,0,38.9019062743,-77.0712346304,1473240157.0,1.53 -4155,0.0,24.0,0.0,0.0,5078,111.0,10997.3,0.0,0.0,245.481441178,0.0,0.0,0,38.9019009937,-77.0712138433,1473240158.0,2.239 -4156,0.0,24.0,0.0,0.0,5079,111.0,10999.61,0.0,0.0,238.254860502,0.0,0.0,0,38.9018945396,-77.07118853,1473240159.0,2.342 -4157,0.0,86.0,0.0,0.0,5080,111.0,11001.81,0.0,0.0,232.343409594,0.0,0.0,0,38.9018889237,-77.0711642224,1473240160.0,2.09 -4158,0.0,86.0,0.0,0.0,5081,111.0,11003.87,0.0,0.0,243.004929529,0.0,0.0,0,38.9018835593,-77.0711414237,1473240161.0,2.043 -4159,0.0,86.0,0.0,0.0,5082,110.0,11005.85,0.0,0.0,258.607950347,0.0,0.0,0,38.9018785302,-77.0711195469,1473240162.0,1.894 -4160,0.0,0.0,0.0,0.0,5083,111.0,11007.86,0.0,0.0,254.644225639,0.0,0.0,0,38.9018737525,-77.071097251,1473240163.0,2.062 -4161,0.0,0.0,0.0,0.0,5084,111.0,11009.67,0.0,0.0,239.731003134,0.0,0.0,0,38.9018691424,-77.0710771345,1473240164.0,1.568 -4162,0.0,0.0,0.0,0.0,5085,111.0,11011.72,0.0,0.0,227.929335985,0.0,0.0,0,38.9018642809,-77.0710543357,1473240165.0,2.53800000001 -4163,0.0,0.0,0.0,0.0,5086,110.0,11014.21,0.0,0.0,220.525901769,0.0,0.0,0,38.9018584136,-77.0710266754,1473240166.0,2.417 -4164,0.0,0.0,0.0,0.0,5087,109.0,11016.58,0.0,0.0,222.633006355,0.0,0.0,0,38.9018528815,-77.0710002724,1473240167.0,2.267 -4165,0.0,0.0,0.0,0.0,5088,109.0,11018.77,0.0,0.0,229.784440311,0.0,0.0,0,38.90184802,-77.0709758811,1473240168.0,2.081 -4166,0.0,0.0,0.0,0.0,5089,109.0,11020.75,0.0,0.0,263.656493255,0.0,0.0,0,38.9018435776,-77.070953669,1473240169.0,1.894 -4167,0.0,0.0,0.0,0.0,5090,109.0,11022.56,0.0,0.0,285.794173758,0.0,0.0,0,38.9018395543,-77.0709335525,1473240170.0,1.726 -4168,0.0,0.0,0.0,0.0,5091,108.0,11024.22,0.0,0.0,309.936483147,0.0,0.0,0,38.9018356986,-77.0709150285,1473240171.0,1.596 -4169,0.0,0.0,0.0,0.0,5092,109.0,11025.76,0.0,0.0,334.286508139,0.0,0.0,0,38.9018323459,-77.0708977617,1473240172.0,1.493 -4170,0.0,0.0,0.0,0.0,5093,109.0,11027.29,0.0,0.0,358.039616851,0.0,0.0,0,38.9018290769,-77.0708806626,1473240173.0,1.493 -4171,0.0,0.0,0.0,0.0,5094,109.0,11028.71,0.0,0.0,359.101593105,0.0,0.0,0,38.9018259756,-77.070864737,1473240174.0,1.306 -4172,0.0,0.0,0.0,0.0,5095,109.0,11030.03,0.0,0.0,375.138850094,0.0,0.0,0,38.9018232934,-77.0708499011,1473240175.0,1.297 -4173,0.0,0.0,0.0,0.0,5096,108.0,11031.36,0.0,0.0,375.029223056,0.0,0.0,0,38.9018205274,-77.0708349813,1473240176.0,1.362 -4174,0.0,0.0,0.0,0.0,5097,108.0,11032.83,0.0,0.0,355.293878794,0.0,0.0,0,38.9018177614,-77.0708183013,1473240177.0,1.568 -4175,0.0,0.0,0.0,0.0,5098,108.0,11034.23,0.0,0.0,322.351069619,0.0,0.0,0,38.9018162526,-77.0708023757,1473240178.0,1.213 -4176,0.0,0.0,0.0,0.0,5099,109.0,11035.71,0.0,0.0,305.394778939,0.0,0.0,0,38.9018146601,-77.0707854442,1473240179.0,1.736 -4177,0.0,21.0,0.0,0.0,5100,109.0,11037.51,0.0,0.0,291.60039385,0.0,0.0,0,38.9018127322,-77.0707648247,1473240180.0,1.866 -4178,0.0,21.0,0.0,0.0,5101,109.0,11039.32,0.0,0.0,291.535622876,0.0,0.0,0,38.9018108882,-77.0707440376,1473240181.0,1.801 -4179,0.0,21.0,0.0,0.0,5102,109.0,11041.02,0.0,0.0,292.494662922,0.0,0.0,0,38.9018090442,-77.0707245916,1473240182.0,1.596 -4180,0.0,0.0,0.0,0.0,5103,108.0,11042.67,0.0,0.0,296.424428452,0.0,0.0,0,38.9018074516,-77.0707057323,1473240183.0,1.717 -4181,0.0,0.0,0.0,0.0,5104,108.0,11044.28,0.0,0.0,290.465196988,0.0,0.0,0,38.9018057752,-77.0706872921,1473240184.0,1.521 -4182,0.0,38.0,0.0,0.0,5105,108.0,11045.91,0.0,0.0,278.941038385,0.0,0.0,0,38.9018037636,-77.0706686843,1473240185.0,1.764 -4183,0.0,38.0,0.0,0.0,5106,107.0,11047.87,0.0,0.0,268.606525162,0.0,0.0,0,38.9018016681,-77.0706462208,1473240186.0,2.137 -4184,0.0,38.0,0.0,0.0,5107,107.0,11049.86,0.0,0.0,268.32197708,0.0,0.0,0,38.9017998241,-77.0706233382,1473240187.0,1.838 -4185,0.0,0.0,0.0,0.0,5108,107.0,11051.68,0.0,0.0,271.026239094,0.0,0.0,0,38.9017980639,-77.0706025511,1473240188.0,1.782 -4186,0.0,0.0,0.0,0.0,5109,107.0,11053.42,0.0,0.0,289.899451325,0.0,0.0,0,38.9017964713,-77.0705826022,1473240189.0,1.698 -4187,0.0,0.0,0.0,0.0,5110,106.0,11055.09,0.0,0.0,315.107136427,0.0,0.0,0,38.9017948788,-77.0705634076,1473240190.0,1.605 -4188,0.0,0.0,0.0,0.0,5111,106.0,11056.7,0.0,0.0,325.53918308,0.0,0.0,0,38.9017935377,-77.0705449674,1473240191.0,1.54 -4189,0.0,0.0,0.0,0.0,5112,106.0,11058.21,0.0,0.0,341.133626915,0.0,0.0,0,38.9017921966,-77.0705276169,1473240192.0,1.437 -4190,0.0,0.0,0.0,0.0,5113,106.0,11059.66,0.0,0.0,356.801942485,0.0,0.0,0,38.9017913584,-77.0705109369,1473240193.0,1.4 -4191,0.0,0.0,0.0,0.0,5114,106.0,11061.09,0.0,0.0,371.720890714,0.0,0.0,0,38.9017906878,-77.0704944246,1473240194.0,1.381 -4192,0.0,0.0,0.0,0.0,5115,105.0,11062.45,0.0,0.0,388.737058926,0.0,0.0,0,38.9017901011,-77.0704787504,1473240195.0,1.278 -4193,0.0,0.0,0.0,0.0,5116,104.0,11063.7,0.0,0.0,405.075543958,0.0,0.0,0,38.9017893467,-77.0704644173,1473240196.0,1.222 -4194,0.0,0.0,0.0,0.0,5117,102.0,11064.91,0.0,0.0,423.640224914,0.0,0.0,0,38.9017890953,-77.0704505034,1473240197.0,1.185 -4195,0.0,0.0,0.0,0.0,5118,101.0,11066.06,0.0,0.0,442.78490621,0.0,0.0,0,38.9017888438,-77.0704371762,1473240198.0,1.12 -4196,0.0,0.0,0.0,0.0,5119,100.0,11067.17,0.0,0.0,453.993372876,0.0,0.0,0,38.9017886762,-77.0704244357,1473240199.0,1.101 -4197,0.0,0.0,0.0,0.0,5120,100.0,11068.25,0.0,0.0,473.211322656,0.0,0.0,0,38.9017884247,-77.0704119466,1473240200.0,1.064 -4198,0.0,0.0,0.0,0.0,5121,100.0,11069.3,0.0,0.0,495.46361238,0.0,0.0,0,38.9017881732,-77.0703998767,1473240201.0,1.017 -4199,0.0,0.0,0.0,0.0,5122,100.0,11070.33,0.0,0.0,520.81454493,0.0,0.0,0,38.9017881732,-77.0703879744,1473240202.0,0.998 -4200,0.0,0.0,0.0,0.0,5123,100.0,11071.24,0.0,0.0,535.272363262,0.0,0.0,0,38.9017879218,-77.0703774132,1473240203.0,0.886 -4201,0.0,0.0,0.0,0.0,5124,100.0,11072.12,0.0,0.0,542.156798318,0.0,0.0,0,38.9017877541,-77.0703672711,1473240204.0,0.905 -4202,0.0,0.0,0.0,0.0,5125,99.0,11073.03,0.0,0.0,535.091336153,0.0,0.0,0,38.9017880894,-77.0703567099,1473240205.0,0.914 -4203,0.0,0.0,0.0,0.0,5126,99.0,11074.0,0.0,0.0,513.509067547,0.0,0.0,0,38.9017883409,-77.0703454781,1473240206.0,1.017 -4204,0.0,0.0,0.0,0.0,5127,99.0,11074.95,0.0,0.0,496.006183973,0.0,0.0,0,38.9017879218,-77.0703344978,1473240207.0,0.979999999999 -4205,0.0,0.0,0.0,0.0,5128,99.0,11075.9,0.0,0.0,494.64456255,0.0,0.0,0,38.9017870836,-77.0703236014,1473240208.0,1.036 -4206,0.0,0.0,0.0,0.0,5129,99.0,11076.91,0.0,0.0,507.275338513,0.0,0.0,0,38.901785491,-77.0703120343,1473240209.0,1.036 -4207,0.0,0.0,0.0,0.0,5130,99.0,11077.88,0.0,0.0,531.851210594,0.0,0.0,0,38.9017835632,-77.070301054,1473240210.0,0.905 -4208,0.0,0.0,0.0,0.0,5131,99.0,11078.79,0.0,0.0,553.927610534,0.0,0.0,0,38.9017818868,-77.0702907443,1473240211.0,0.886 -4209,0.0,0.0,0.0,0.0,5132,100.0,11079.59,0.0,0.0,579.339402603,0.0,0.0,0,38.9017800428,-77.0702818595,1473240212.0,0.84 -4210,0.0,0.0,0.0,0.0,5133,100.0,11080.39,0.0,0.0,603.489265206,0.0,0.0,0,38.9017783664,-77.070272807,1473240213.0,0.848999999999 -4211,0.0,0.0,0.0,0.0,5134,100.0,11081.24,0.0,0.0,629.304332665,0.0,0.0,0,38.90177669,-77.0702631678,1473240214.0,0.83 -4212,0.0,0.0,0.0,0.0,5135,99.0,11081.9,0.0,0.0,644.509670435,0.0,0.0,0,38.9017753489,-77.0702557918,1473240215.0,0.812 -4213,0.0,0.0,0.0,0.0,5136,99.0,11082.53,0.0,0.0,610.565156024,0.0,0.0,0,38.9017741755,-77.0702485833,1473240216.0,0.746 -4214,0.0,0.0,0.0,0.0,5137,98.0,11083.22,0.0,0.0,556.071774182,0.0,0.0,0,38.9017730858,-77.0702406205,1473240217.0,0.784 -4215,0.0,0.0,0.0,0.0,5138,98.0,11084.01,0.0,0.0,508.759024416,0.0,0.0,0,38.9017713256,-77.0702317357,1473240218.0,1.017 -4216,0.0,0.0,0.0,0.0,5139,98.0,11085.06,0.0,0.0,473.56250205,0.0,0.0,0,38.9017673861,-77.0702206716,1473240219.0,1.185 -4217,0.0,0.0,0.0,0.0,5140,99.0,11086.15,0.0,0.0,457.41849634,0.0,0.0,0,38.9017631114,-77.0702092722,1473240220.0,1.138 -4218,0.0,0.0,0.0,0.0,5141,100.0,11087.14,0.0,0.0,459.600883389,0.0,0.0,0,38.9017594233,-77.070198711,1473240221.0,1.017 -4219,0.0,0.0,0.0,0.0,5142,101.0,11087.92,0.0,0.0,487.609237134,0.0,0.0,0,38.9017554838,-77.0701909158,1473240222.0,0.998 -4220,0.0,0.0,0.0,0.0,5143,99.0,11088.77,0.0,0.0,517.329415664,0.0,0.0,0,38.9017524663,-77.0701817796,1473240223.0,0.951999999999 -4221,0.0,0.0,0.0,0.0,5144,98.0,11089.61,0.0,0.0,531.763059272,0.0,0.0,0,38.9017489459,-77.0701731462,1473240224.0,0.989 -4222,0.0,0.0,0.0,0.0,5145,98.0,11090.56,0.0,0.0,535.622365364,0.0,0.0,0,38.9017444197,-77.0701633394,1473240225.0,0.905 -4223,0.0,0.0,0.0,0.0,5146,97.0,11091.5,0.0,0.0,543.212431334,0.0,0.0,0,38.9017400611,-77.0701539516,1473240226.0,0.914 -4224,0.0,0.0,0.0,0.0,5147,97.0,11092.47,0.0,0.0,555.251088869,0.0,0.0,0,38.9017348643,-77.0701446477,1473240227.0,0.905 -4225,0.0,0.0,0.0,0.0,5148,97.0,11093.43,0.0,0.0,577.936341938,0.0,0.0,0,38.901728075,-77.0701364335,1473240228.0,0.905 -4226,0.0,22.0,0.0,0.0,5149,97.0,11094.36,0.0,0.0,572.609911357,0.0,0.0,0,38.9017223753,-77.0701279677,1473240229.0,0.868000000001 -4227,0.0,22.0,0.0,0.0,5150,97.0,11095.25,0.0,0.0,573.434350455,0.0,0.0,0,38.9017171785,-77.070119502,1473240230.0,0.83 -4228,0.0,22.0,0.0,0.0,5151,98.0,11096.12,0.0,0.0,556.012882168,0.0,0.0,0,38.9017144963,-77.0701100305,1473240231.0,0.868000000001 -4229,0.0,0.0,0.0,0.0,5152,100.0,11097.1,0.0,0.0,520.27027027,0.0,0.0,0,38.901712317,-77.0700989664,1473240232.0,1.017 -4230,0.0,0.0,0.0,0.0,5153,100.0,11098.27,0.0,0.0,487.128011337,0.0,0.0,0,38.901707707,-77.0700867288,1473240233.0,0.97 -4231,0.0,0.0,0.0,0.0,5154,100.0,11099.4,0.0,0.0,464.43549976,0.0,0.0,0,38.9017041866,-77.0700744912,1473240234.0,1.11 -4232,0.0,0.0,0.0,0.0,5155,101.0,11100.69,0.0,0.0,456.949790911,0.0,0.0,0,38.9016999956,-77.0700605772,1473240235.0,1.148 -4233,0.0,0.0,0.0,0.0,5156,101.0,11101.91,0.0,0.0,464.95899907,0.0,0.0,0,38.9016971458,-77.0700469986,1473240236.0,1.054 -4234,0.0,0.0,0.0,0.0,5157,101.0,11103.1,0.0,0.0,473.30828146,0.0,0.0,0,38.9016942959,-77.070033839,1473240237.0,1.036 -4235,0.0,0.0,0.0,0.0,5158,100.0,11104.22,0.0,0.0,497.636763939,0.0,0.0,0,38.9016912784,-77.0700215176,1473240238.0,1.008 -4236,0.0,0.0,0.0,0.0,5159,100.0,11105.3,0.0,0.0,516.364969443,0.0,0.0,0,38.9016883448,-77.0700096153,1473240239.0,0.961000000001 -4237,0.0,0.0,0.0,0.0,5160,99.0,11106.38,0.0,0.0,528.077250158,0.0,0.0,0,38.9016854111,-77.069997713,1473240240.0,0.951999999999 -4238,0.0,0.0,0.0,0.0,5161,98.0,11107.42,0.0,0.0,544.459476659,0.0,0.0,0,38.9016827289,-77.0699862298,1473240241.0,0.914 -4239,0.0,0.0,0.0,0.0,5162,97.0,11108.46,0.0,0.0,559.381629035,0.0,0.0,0,38.9016798791,-77.0699747466,1473240242.0,0.905 -4240,0.0,0.0,0.0,0.0,5163,97.0,11109.44,0.0,0.0,570.516873469,0.0,0.0,0,38.9016771968,-77.0699639339,1473240243.0,0.868000000001 -4241,0.0,0.0,0.0,0.0,5164,97.0,11110.37,0.0,0.0,585.017474548,0.0,0.0,0,38.9016747661,-77.069953708,1473240244.0,0.848999999999 -4242,0.0,0.0,0.0,0.0,5165,97.0,11111.44,0.0,0.0,598.467301923,0.0,0.0,0,38.9016712457,-77.069942141,1473240245.0,0.84 -4243,0.0,0.0,0.0,0.0,5166,97.0,11112.37,0.0,0.0,606.388340544,0.0,0.0,0,38.9016683958,-77.0699319988,1473240246.0,0.83 -4244,0.0,0.0,0.0,0.0,5167,98.0,11113.46,0.0,0.0,625.267295002,0.0,0.0,0,38.9016649593,-77.0699200965,1473240247.0,0.793 -4245,0.0,0.0,0.0,0.0,5168,97.0,11114.33,0.0,0.0,652.612427323,0.0,0.0,0,38.9016631991,-77.0699102897,1473240248.0,0.784 -4246,0.0,0.0,0.0,0.0,5169,97.0,11115.28,0.0,0.0,669.941938365,0.0,0.0,0,38.901660433,-77.06989998,1473240249.0,0.784 -4247,0.0,0.0,0.0,0.0,5170,97.0,11116.15,0.0,0.0,658.847957286,0.0,0.0,0,38.9016578346,-77.0698904246,1473240250.0,0.69 -4248,0.0,0.0,0.0,0.0,5171,97.0,11117.06,0.0,0.0,632.720699006,0.0,0.0,0,38.9016549848,-77.0698806178,1473240251.0,0.756 -4249,0.0,29.0,0.0,0.0,5172,96.0,11117.8,0.0,0.0,592.87928875,0.0,0.0,0,38.9016531408,-77.0698724035,1473240252.0,0.868000000001 -4250,0.0,29.0,0.0,0.0,5173,96.0,11118.77,0.0,0.0,546.063144757,0.0,0.0,0,38.9016507939,-77.0698615909,1473240253.0,0.951999999999 -4251,0.0,29.0,0.0,0.0,5174,95.0,11119.9,0.0,0.0,509.115593484,0.0,0.0,0,38.9016490337,-77.0698486827,1473240254.0,0.951999999999 -4252,0.0,0.0,0.0,0.0,5175,95.0,11120.86,0.0,0.0,497.849119389,0.0,0.0,0,38.9016491175,-77.069837451,1473240255.0,1.026 -4253,0.0,0.0,0.0,0.0,5176,95.0,11122.01,0.0,0.0,502.748795362,0.0,0.0,0,38.9016487822,-77.0698241238,1473240256.0,1.026 -4254,0.0,0.0,0.0,0.0,5177,95.0,11123.23,0.0,0.0,515.574363232,0.0,0.0,0,38.9016476925,-77.069810126,1473240257.0,0.951999999999 -4255,0.0,0.0,0.0,0.0,5178,95.0,11124.27,0.0,0.0,530.624620983,0.0,0.0,0,38.9016476925,-77.0697981399,1473240258.0,0.923999999999 -4256,0.0,0.0,0.0,0.0,5179,94.0,11125.17,0.0,0.0,555.879083065,0.0,0.0,0,38.901647944,-77.0697877463,1473240259.0,0.896 -4257,0.0,0.0,0.0,0.0,5180,93.0,11126.12,0.0,0.0,574.235471346,0.0,0.0,0,38.9016475249,-77.069776766,1473240260.0,0.877 -4258,0.0,0.0,0.0,0.0,5181,92.0,11127.04,0.0,0.0,586.714348849,0.0,0.0,0,38.9016471058,-77.069766121,1473240261.0,0.857999999999 -4259,0.0,0.0,0.0,0.0,5182,92.0,11127.81,0.0,0.0,601.258739075,0.0,0.0,0,38.9016474411,-77.0697572362,1473240262.0,0.821 -4260,0.0,0.0,0.0,0.0,5183,91.0,11128.56,0.0,0.0,612.881658124,0.0,0.0,0,38.9016477764,-77.0697486028,1473240263.0,0.821 -4261,0.0,0.0,0.0,0.0,5184,91.0,11129.25,0.0,0.0,626.739813443,0.0,0.0,0,38.9016482793,-77.0697404724,1473240264.0,0.793 -4262,0.0,0.0,0.0,0.0,5185,91.0,11129.96,0.0,0.0,641.609634699,0.0,0.0,0,38.9016481116,-77.0697322581,1473240265.0,0.784 -4263,0.0,0.0,0.0,0.0,5186,90.0,11130.72,0.0,0.0,653.044146915,0.0,0.0,0,38.9016476087,-77.0697236247,1473240266.0,0.774 -4264,0.0,0.0,0.0,0.0,5187,90.0,11131.44,0.0,0.0,670.221840528,0.0,0.0,0,38.9016471896,-77.0697153267,1473240267.0,0.737 -4265,0.0,0.0,0.0,0.0,5188,90.0,11132.11,0.0,0.0,682.192703196,0.0,0.0,0,38.9016467705,-77.0697075315,1473240268.0,0.728 -4266,0.0,0.0,0.0,0.0,5189,90.0,11132.8,0.0,0.0,694.202358485,0.0,0.0,0,38.9016461,-77.0696996525,1473240269.0,0.728 -4267,0.0,0.0,0.0,0.0,5190,90.0,11133.46,0.0,0.0,706.162876009,0.0,0.0,0,38.9016455133,-77.0696921088,1473240270.0,0.7 -4268,0.0,0.0,0.0,0.0,5191,89.0,11134.09,0.0,0.0,711.645101664,0.0,0.0,0,38.9016448427,-77.0696849003,1473240271.0,0.709 -4269,0.0,0.0,0.0,0.0,5192,89.0,11134.7,0.0,0.0,727.92588391,0.0,0.0,0,38.9016441721,-77.0696778595,1473240272.0,0.69 -4270,0.0,0.0,0.0,0.0,5193,89.0,11135.31,0.0,0.0,745.820499409,0.0,0.0,0,38.9016429987,-77.0696709864,1473240273.0,0.672 -4271,0.0,0.0,0.0,0.0,5194,88.0,11135.88,0.0,0.0,791.958365617,0.0,0.0,0,38.9016423281,-77.0696644485,1473240274.0,0.672 -4272,0.0,0.0,0.0,0.0,5195,88.0,11136.44,0.0,0.0,768.949102893,0.0,0.0,0,38.9016415738,-77.0696580783,1473240275.0,0.634 -4273,0.0,0.0,0.0,0.0,5196,88.0,11137.0,0.0,0.0,695.862779475,0.0,0.0,0,38.9016412385,-77.0696516242,1473240276.0,0.662 -4274,0.0,0.0,0.0,0.0,5197,89.0,11137.59,0.0,0.0,615.986858947,0.0,0.0,0,38.9016407356,-77.0696448348,1473240277.0,0.69 -4275,0.0,0.0,0.0,0.0,5198,90.0,11138.38,0.0,0.0,554.89629925,0.0,0.0,0,38.9016402327,-77.0696357824,1473240278.0,1.045 -4276,0.0,0.0,0.0,0.0,5199,90.0,11139.34,0.0,0.0,512.95033042,0.0,0.0,0,38.9016398136,-77.0696246345,1473240279.0,1.036 -4277,0.0,0.0,0.0,0.0,5200,90.0,11140.33,0.0,0.0,498.31307004,0.0,0.0,0,38.9016393945,-77.0696132351,1473240280.0,0.998 -4278,0.0,0.0,0.0,0.0,5201,90.0,11141.29,0.0,0.0,499.416266701,0.0,0.0,0,38.9016392268,-77.069602171,1473240281.0,0.941999999999 -4279,0.0,107.0,0.0,0.0,5202,90.0,11142.21,0.0,0.0,544.333744922,0.0,0.0,0,38.9016388077,-77.0695916098,1473240282.0,0.923999999999 -4280,0.0,56.0,0.0,0.0,5203,89.0,11143.11,0.0,0.0,560.309698452,0.0,0.0,0,38.9016384725,-77.0695812162,1473240283.0,0.896 -4281,0.0,56.0,0.0,0.0,5204,89.0,11144.0,0.0,0.0,579.455662862,0.0,0.0,0,38.9016378019,-77.0695709903,1473240284.0,0.905 -4282,0.0,56.0,0.0,0.0,5205,89.0,11144.8,0.0,0.0,583.465939229,0.0,0.0,0,38.901637299,-77.0695617702,1473240285.0,0.774 -4283,0.0,0.0,0.0,0.0,5206,90.0,11145.62,0.0,0.0,578.159101375,0.0,0.0,0,38.9016366284,-77.0695522986,1473240286.0,0.914 -4284,0.0,0.0,0.0,0.0,5207,91.0,11146.49,0.0,0.0,572.601395065,0.0,0.0,0,38.9016358741,-77.069542408,1473240287.0,0.83 -4285,0.0,0.0,0.0,0.0,5208,91.0,11147.36,0.0,0.0,555.641079916,0.0,0.0,0,38.9016348682,-77.0695323497,1473240288.0,0.941999999999 -4286,0.0,0.0,0.0,0.0,5209,93.0,11148.3,0.0,0.0,540.993742272,0.0,0.0,0,38.9016347006,-77.0695216209,1473240289.0,0.933 -4287,0.0,0.0,0.0,0.0,5210,94.0,11149.23,0.0,0.0,539.717104126,0.0,0.0,0,38.9016347844,-77.069510892,1473240290.0,0.905 -4288,0.0,0.0,0.0,0.0,5211,94.0,11150.17,0.0,0.0,525.884442016,0.0,0.0,0,38.9016348682,-77.0694999956,1473240291.0,0.979999999999 -4289,0.0,0.0,0.0,0.0,5212,93.0,11151.1,0.0,0.0,516.046591635,0.0,0.0,0,38.9016353711,-77.0694892667,1473240292.0,0.923999999999 -4290,0.0,0.0,0.0,0.0,5213,93.0,11151.97,0.0,0.0,495.202325522,0.0,0.0,0,38.901635455,-77.0694792084,1473240293.0,1.017 -4291,0.0,0.0,0.0,0.0,5214,92.0,11153.03,0.0,0.0,471.557527977,0.0,0.0,0,38.9016366284,-77.0694671385,1473240294.0,1.054 -4292,0.0,0.0,0.0,0.0,5215,91.0,11154.08,0.0,0.0,450.719394982,0.0,0.0,0,38.9016377181,-77.0694550686,1473240295.0,1.12 -4293,0.0,0.0,0.0,0.0,5216,91.0,11155.08,0.0,0.0,437.076168564,0.0,0.0,0,38.9016393106,-77.0694436692,1473240296.0,1.138 -4294,0.0,0.0,0.0,0.0,5217,91.0,11156.27,0.0,0.0,437.972811558,0.0,0.0,0,38.9016420767,-77.0694304258,1473240297.0,1.166 -4295,0.0,0.0,0.0,0.0,5218,91.0,11157.49,0.0,0.0,455.30519245,0.0,0.0,0,38.9016453456,-77.0694170985,1473240298.0,1.148 -4296,0.0,0.0,0.0,0.0,5219,92.0,11158.63,0.0,0.0,467.893587629,0.0,0.0,0,38.9016489498,-77.0694046933,1473240299.0,1.036 -4297,0.0,0.0,0.0,0.0,5220,93.0,11159.71,0.0,0.0,481.430536451,0.0,0.0,0,38.9016524702,-77.0693931263,1473240300.0,1.026 -4298,0.0,0.0,0.0,0.0,5221,94.0,11160.74,0.0,0.0,473.667374775,0.0,0.0,0,38.9016554877,-77.0693818945,1473240301.0,0.97 -4299,0.0,0.0,0.0,0.0,5222,95.0,11161.84,0.0,0.0,458.937965892,0.0,0.0,0,38.9016586728,-77.0693699084,1473240302.0,1.166 -4300,0.0,0.0,0.0,0.0,5223,95.0,11163.04,0.0,0.0,429.039471631,0.0,0.0,0,38.9016630314,-77.0693571679,1473240303.0,1.129 -4301,0.0,0.0,0.0,0.0,5224,94.0,11164.31,0.0,0.0,401.321755809,0.0,0.0,0,38.9016678091,-77.0693439245,1473240304.0,1.306 -4302,0.0,0.0,0.0,0.0,5225,93.0,11165.6,0.0,0.0,380.526279376,0.0,0.0,0,38.9016733412,-77.0693307649,1473240305.0,1.241 -4303,0.0,0.0,0.0,0.0,5226,93.0,11166.94,0.0,0.0,370.433326812,0.0,0.0,0,38.9016797114,-77.0693176053,1473240306.0,1.39 -4304,0.0,0.0,0.0,0.0,5227,92.0,11168.36,0.0,0.0,363.537932272,0.0,0.0,0,38.9016874228,-77.0693046134,1473240307.0,1.39 -4305,0.0,0.0,0.0,0.0,5228,92.0,11169.76,0.0,0.0,367.755924691,0.0,0.0,0,38.9016951341,-77.0692918729,1473240308.0,1.353 -4306,0.0,0.0,0.0,0.0,5229,92.0,11171.11,0.0,0.0,375.147379328,0.0,0.0,0,38.9017033484,-77.0692803897,1473240309.0,1.353 -4307,0.0,0.0,0.0,0.0,5230,92.0,11172.43,0.0,0.0,393.79072154,0.0,0.0,0,38.9017118141,-77.0692697447,1473240310.0,1.25 -4308,0.0,0.0,0.0,0.0,5231,93.0,11173.71,0.0,0.0,410.185382484,0.0,0.0,0,38.9017199446,-77.0692592673,1473240311.0,1.222 -4309,0.0,0.0,0.0,0.0,5232,93.0,11174.93,0.0,0.0,428.56506768,0.0,0.0,0,38.9017279074,-77.0692495443,1473240312.0,1.138 -4310,0.0,0.0,0.0,0.0,5233,93.0,11176.1,0.0,0.0,451.154251787,0.0,0.0,0,38.9017351996,-77.0692398213,1473240313.0,1.129 -4311,0.0,0.0,0.0,0.0,5234,93.0,11177.25,0.0,0.0,470.869294022,0.0,0.0,0,38.9017422404,-77.0692300983,1473240314.0,1.082 -4312,0.0,0.0,0.0,0.0,5235,93.0,11178.32,0.0,0.0,507.217418417,0.0,0.0,0,38.9017487783,-77.0692210458,1473240315.0,1.008 -4313,0.0,0.0,0.0,0.0,5236,93.0,11179.34,0.0,0.0,511.055162985,0.0,0.0,0,38.9017549809,-77.0692122448,1473240316.0,0.961000000001 -4314,0.0,0.0,0.0,0.0,5237,93.0,11180.35,0.0,0.0,494.727193291,0.0,0.0,0,38.9017609321,-77.0692035276,1473240317.0,0.951999999999 -4315,0.0,0.0,0.0,0.0,5238,93.0,11181.36,0.0,0.0,470.658228777,0.0,0.0,0,38.9017670508,-77.0691948105,1473240318.0,0.951999999999 -4316,0.0,0.0,0.0,0.0,5239,93.0,11182.54,0.0,0.0,442.267780696,0.0,0.0,0,38.9017744269,-77.0691850875,1473240319.0,1.278 -4317,0.0,0.0,0.0,0.0,5240,93.0,11183.82,0.0,0.0,429.833016386,0.0,0.0,0,38.9017824735,-77.0691745263,1473240320.0,1.222 -4318,0.0,45.0,0.0,0.0,5241,93.0,11185.04,0.0,0.0,432.898810372,0.0,0.0,0,38.9017901011,-77.0691643842,1473240321.0,1.129 -4319,0.0,45.0,0.0,0.0,5242,93.0,11186.18,0.0,0.0,446.753206566,0.0,0.0,0,38.9017971419,-77.069154745,1473240322.0,1.12 -4320,0.0,45.0,0.0,0.0,5243,92.0,11187.28,0.0,0.0,475.596348409,0.0,0.0,0,38.9018038474,-77.0691455249,1473240323.0,0.989 -4321,0.0,0.0,0.0,0.0,5244,92.0,11188.29,0.0,0.0,484.317343174,0.0,0.0,0,38.9018103015,-77.0691372268,1473240324.0,1.008 -4322,0.0,0.0,0.0,0.0,5245,93.0,11189.38,0.0,0.0,493.925359539,0.0,0.0,0,38.9018174261,-77.0691285934,1473240325.0,1.054 -4323,0.0,0.0,0.0,0.0,5246,93.0,11190.48,0.0,0.0,505.913272011,0.0,0.0,0,38.9018243831,-77.069119541,1473240326.0,1.026 -4324,0.0,0.0,0.0,0.0,5247,94.0,11191.5,0.0,0.0,518.653566361,0.0,0.0,0,38.9018305857,-77.0691109076,1473240327.0,0.961000000001 -4325,0.0,0.0,0.0,0.0,5248,94.0,11192.47,0.0,0.0,542.900924107,0.0,0.0,0,38.9018365368,-77.0691026933,1473240328.0,0.886 -4326,0.0,0.0,0.0,0.0,5249,93.0,11193.41,0.0,0.0,573.474211039,0.0,0.0,0,38.9018420689,-77.0690944791,1473240329.0,0.886 -4327,0.0,0.0,0.0,0.0,5250,92.0,11194.28,0.0,0.0,589.180503482,0.0,0.0,0,38.9018469304,-77.0690866001,1473240330.0,0.84 -4328,0.0,0.0,0.0,0.0,5251,92.0,11195.15,0.0,0.0,584.336739856,0.0,0.0,0,38.9018519595,-77.0690788887,1473240331.0,0.857999999999 -4329,0.0,0.0,0.0,0.0,5252,93.0,11196.0,0.0,0.0,578.999608987,0.0,0.0,0,38.9018565696,-77.0690710936,1473240332.0,0.84 -4330,0.0,0.0,0.0,0.0,5253,93.0,11196.88,0.0,0.0,565.173564557,0.0,0.0,0,38.9018610958,-77.0690627117,1473240333.0,0.905 -4331,0.0,23.0,0.0,0.0,5254,95.0,11197.81,0.0,0.0,541.668620738,0.0,0.0,0,38.9018662088,-77.0690542459,1473240334.0,0.933 -4332,0.0,39.0,0.0,0.0,5255,96.0,11198.74,0.0,0.0,531.518347737,0.0,0.0,0,38.901871657,-77.0690460317,1473240335.0,0.896 -4333,0.0,39.0,0.0,0.0,5256,96.0,11199.67,0.0,0.0,546.29559558,0.0,0.0,0,38.9018771052,-77.0690379012,1473240336.0,0.989 -4334,0.0,39.0,0.0,0.0,5257,94.0,11200.63,0.0,0.0,547.217010632,0.0,0.0,0,38.9018829726,-77.069029687,1473240337.0,0.961000000001 -4335,0.0,0.0,0.0,0.0,5258,93.0,11201.57,0.0,0.0,523.681275334,0.0,0.0,0,38.9018891752,-77.0690223109,1473240338.0,0.868000000001 -4336,0.0,0.0,0.0,0.0,5259,91.0,11202.43,0.0,0.0,497.052115161,0.0,0.0,0,38.9018946234,-77.0690153539,1473240339.0,0.857999999999 -4337,0.0,0.0,0.0,0.0,5260,90.0,11203.47,0.0,0.0,480.607187886,0.0,0.0,0,38.9019016642,-77.0690073073,1473240340.0,1.166 -4338,0.0,0.0,0.0,0.0,5261,90.0,11204.64,0.0,0.0,464.157403612,0.0,0.0,0,38.9019097108,-77.0689985901,1473240341.0,1.176 -4339,0.0,0.0,0.0,0.0,5262,90.0,11205.8,0.0,0.0,462.888746393,0.0,0.0,0,38.9019175898,-77.0689898729,1473240342.0,1.064 -4340,0.0,0.0,0.0,0.0,5263,90.0,11206.85,0.0,0.0,484.565233808,0.0,0.0,0,38.9019247144,-77.0689819101,1473240343.0,1.017 -4341,0.0,0.0,0.0,0.0,5264,91.0,11207.88,0.0,0.0,499.45082031,0.0,0.0,0,38.9019316714,-77.068974115,1473240344.0,0.979999999999 -4342,0.0,0.0,0.0,0.0,5265,93.0,11208.86,0.0,0.0,481.161787006,0.0,0.0,0,38.9019383769,-77.0689666551,1473240345.0,0.941999999999 -4343,0.0,0.0,0.0,0.0,5266,94.0,11209.89,0.0,0.0,449.943318829,0.0,0.0,0,38.9019454177,-77.0689590275,1473240346.0,1.064 -4344,0.0,0.0,0.0,0.0,5267,95.0,11211.1,0.0,0.0,427.138651795,0.0,0.0,0,38.9019537997,-77.0689499751,1473240347.0,1.325 -4345,0.0,0.0,0.0,0.0,5268,95.0,11212.4,0.0,0.0,414.598162845,0.0,0.0,0,38.9019628521,-77.0689405035,1473240348.0,1.232 -4346,0.0,0.0,0.0,0.0,5269,94.0,11213.62,0.0,0.0,416.889248228,0.0,0.0,0,38.9019714016,-77.0689317863,1473240349.0,1.176 -4347,0.0,0.0,0.0,0.0,5270,93.0,11214.78,0.0,0.0,439.824070372,0.0,0.0,0,38.9019796997,-77.0689236559,1473240350.0,1.101 -4348,0.0,0.0,0.0,0.0,5271,92.0,11215.85,0.0,0.0,475.296906249,0.0,0.0,0,38.9019874111,-77.0689161122,1473240351.0,1.054 -4349,0.0,0.0,0.0,0.0,5272,91.0,11216.85,0.0,0.0,497.8856027,0.0,0.0,0,38.9019945357,-77.0689090714,1473240352.0,0.998 -4350,0.0,0.0,0.0,0.0,5273,91.0,11217.8,0.0,0.0,523.709769568,0.0,0.0,0,38.9020012412,-77.0689023659,1473240353.0,0.961000000001 -4351,0.0,0.0,0.0,0.0,5274,92.0,11218.7,0.0,0.0,544.231149812,0.0,0.0,0,38.9020076115,-77.068895828,1473240354.0,0.923999999999 -4352,0.0,0.0,0.0,0.0,5275,91.0,11219.56,0.0,0.0,573.690693793,0.0,0.0,0,38.9020136464,-77.0688896254,1473240355.0,0.868000000001 -4353,0.0,0.0,0.0,0.0,5276,92.0,11220.39,0.0,0.0,604.566439496,0.0,0.0,0,38.9020195138,-77.0688836742,1473240356.0,0.83 -4354,0.0,0.0,0.0,0.0,5277,92.0,11221.2,0.0,0.0,624.020746664,0.0,0.0,0,38.9020252135,-77.0688778069,1473240357.0,0.821 -4355,0.0,0.0,0.0,0.0,5278,92.0,11221.98,0.0,0.0,658.299705902,0.0,0.0,0,38.9020306617,-77.0688722748,1473240358.0,0.737 -4356,0.0,0.0,0.0,0.0,5279,91.0,11222.76,0.0,0.0,656.089705356,0.0,0.0,0,38.9020362776,-77.0688668266,1473240359.0,0.774 -4357,0.0,0.0,0.0,0.0,5280,90.0,11223.55,0.0,0.0,608.272506083,0.0,0.0,0,38.9020421449,-77.068861546,1473240360.0,0.821 -4358,0.0,0.0,0.0,0.0,5281,90.0,11224.36,0.0,0.0,553.296063694,0.0,0.0,0,38.9020478446,-77.0688558463,1473240361.0,0.774 -4359,0.0,0.0,0.0,0.0,5282,90.0,11225.24,0.0,0.0,505.143277002,0.0,0.0,0,38.9020538796,-77.0688491408,1473240362.0,1.054 -4360,0.0,0.0,0.0,0.0,5283,90.0,11226.32,0.0,0.0,481.059580583,0.0,0.0,0,38.9020611718,-77.0688408427,1473240363.0,1.148 -4361,0.0,0.0,0.0,0.0,5284,91.0,11227.4,0.0,0.0,473.455734963,0.0,0.0,0,38.9020685479,-77.0688328799,1473240364.0,1.054 -4362,0.0,0.0,0.0,0.0,5285,91.0,11228.42,0.0,0.0,480.957417571,0.0,0.0,0,38.9020756725,-77.06882542,1473240365.0,0.998 -4363,0.0,0.0,0.0,0.0,5286,91.0,11229.39,0.0,0.0,520.532881454,0.0,0.0,0,38.9020825457,-77.0688183792,1473240366.0,0.941999999999 -4364,0.0,0.0,0.0,0.0,5287,91.0,11230.27,0.0,0.0,554.525988305,0.0,0.0,0,38.9020885807,-77.0688118413,1473240367.0,0.905 -4365,0.0,0.0,0.0,0.0,5288,91.0,11231.12,0.0,0.0,578.005755036,0.0,0.0,0,38.9020941965,-77.0688052196,1473240368.0,0.868000000001 -4366,0.0,0.0,0.0,0.0,5289,90.0,11231.92,0.0,0.0,608.291727232,0.0,0.0,0,38.9020995609,-77.068799017,1473240369.0,0.821 -4367,0.0,0.0,0.0,0.0,5290,90.0,11232.71,0.0,0.0,648.50478939,0.0,0.0,0,38.9021047577,-77.0687928144,1473240370.0,0.802 -4368,0.0,0.0,0.0,0.0,5291,89.0,11233.49,0.0,0.0,669.068748986,0.0,0.0,0,38.9021101221,-77.0687870309,1473240371.0,0.746 -4369,0.0,0.0,0.0,0.0,5292,89.0,11234.2,0.0,0.0,653.824163756,0.0,0.0,0,38.9021148998,-77.0687815826,1473240372.0,0.709 -4370,0.0,0.0,0.0,0.0,5293,89.0,11234.86,0.0,0.0,637.185131244,0.0,0.0,0,38.9021192584,-77.0687763859,1473240373.0,0.728 -4371,0.0,0.0,0.0,0.0,5294,89.0,11235.58,0.0,0.0,623.744410602,0.0,0.0,0,38.9021240361,-77.0687706862,1473240374.0,0.877 -4372,0.0,0.0,0.0,0.0,5295,90.0,11236.39,0.0,0.0,619.29962842,0.0,0.0,0,38.9021294843,-77.0687644836,1473240375.0,0.896 -4373,0.0,0.0,0.0,0.0,5296,91.0,11237.17,0.0,0.0,611.460517121,0.0,0.0,0,38.9021350164,-77.0687590353,1473240376.0,0.765 -4374,0.0,0.0,0.0,0.0,5297,91.0,11237.9,0.0,0.0,637.195677,0.0,0.0,0,38.902140297,-77.0687540062,1473240377.0,0.765 -4375,0.0,0.0,0.0,0.0,5298,92.0,11238.63,0.0,0.0,636.458316113,0.0,0.0,0,38.90214541,-77.0687486418,1473240378.0,0.765 -4376,0.0,0.0,0.0,0.0,5299,93.0,11239.47,0.0,0.0,585.133060778,0.0,0.0,0,38.9021514449,-77.0687428582,1473240379.0,0.868000000001 -4377,0.0,0.0,0.0,0.0,5300,94.0,11240.3,0.0,0.0,525.582919237,0.0,0.0,0,38.9021576475,-77.06873741,1473240380.0,0.83 -4378,0.0,0.0,0.0,0.0,5301,94.0,11241.28,0.0,0.0,498.145432588,0.0,0.0,0,38.9021652751,-77.0687317103,1473240381.0,1.138 -4379,0.0,0.0,0.0,0.0,5302,94.0,11242.41,0.0,0.0,476.571654921,0.0,0.0,0,38.9021741599,-77.0687253401,1473240382.0,1.148 -4380,0.0,0.0,0.0,0.0,5303,93.0,11243.51,0.0,0.0,446.924347897,0.0,0.0,0,38.9021827932,-77.0687193051,1473240383.0,1.054 -4381,0.0,0.0,0.0,0.0,5304,94.0,11244.55,0.0,0.0,420.230744882,0.0,0.0,0,38.9021911751,-77.068713773,1473240384.0,1.026 -4382,0.0,0.0,0.0,0.0,5305,94.0,11245.68,0.0,0.0,411.364340588,0.0,0.0,0,38.9022001438,-77.0687076543,1473240385.0,1.241 -4383,0.0,0.0,0.0,0.0,5306,95.0,11247.02,0.0,0.0,396.429049497,0.0,0.0,0,38.9022107888,-77.0687005296,1473240386.0,1.409 -4384,0.0,0.0,0.0,0.0,5307,96.0,11248.36,0.0,0.0,387.01894885,0.0,0.0,0,38.9022216015,-77.0686936565,1473240387.0,1.288 -4385,0.0,0.0,0.0,0.0,5308,97.0,11249.61,0.0,0.0,394.782715695,0.0,0.0,0,38.9022315759,-77.068686951,1473240388.0,1.232 -4386,0.0,0.0,0.0,0.0,5309,97.0,11250.79,0.0,0.0,434.79406572,0.0,0.0,0,38.9022412151,-77.0686809998,1473240389.0,1.176 -4387,0.0,0.0,0.0,0.0,5310,97.0,11251.9,0.0,0.0,451.212413615,0.0,0.0,0,38.9022500999,-77.0686751325,1473240390.0,1.12 -4388,0.0,0.0,0.0,0.0,5311,97.0,11252.96,0.0,0.0,447.306864127,0.0,0.0,0,38.902258398,-77.0686690137,1473240391.0,1.064 -4389,0.0,0.0,0.0,0.0,5312,97.0,11254.02,0.0,0.0,415.334659048,0.0,0.0,0,38.9022665285,-77.0686627273,1473240392.0,1.073 -4390,0.0,0.0,0.0,0.0,5313,95.0,11255.29,0.0,0.0,364.505093604,0.0,0.0,0,38.9022765029,-77.068655435,1473240393.0,1.484 -4391,0.0,0.0,0.0,0.0,5314,93.0,11256.75,0.0,0.0,335.453515727,0.0,0.0,0,38.9022878185,-77.0686468855,1473240394.0,1.437 -4392,0.0,0.0,0.0,0.0,5315,93.0,11258.36,0.0,0.0,306.269373858,0.0,0.0,0,38.9023003075,-77.0686375815,1473240395.0,1.764 -4393,0.0,0.0,0.0,0.0,5316,92.0,11260.11,0.0,0.0,286.312762608,0.0,0.0,0,38.9023142215,-77.0686280262,1473240396.0,1.801 -4394,0.0,0.0,0.0,0.0,5317,93.0,11261.81,0.0,0.0,278.120244264,0.0,0.0,0,38.9023277164,-77.0686187223,1473240397.0,1.558 -4395,0.0,35.0,0.0,0.0,5318,93.0,11263.58,0.0,0.0,272.689926763,0.0,0.0,0,38.9023417141,-77.0686089154,1473240398.0,1.959 -4396,0.0,38.0,0.0,0.0,5319,94.0,11265.55,0.0,0.0,267.085987814,0.0,0.0,0,38.9023577236,-77.0685991086,1473240399.0,1.931 -4397,0.0,38.0,0.0,0.0,5320,95.0,11267.45,0.0,0.0,255.450156256,0.0,0.0,0,38.9023732301,-77.0685898047,1473240400.0,1.903 -4398,0.0,38.0,0.0,0.0,5321,97.0,11269.36,0.0,0.0,251.815030414,0.0,0.0,0,38.9023888204,-77.0685806684,1473240401.0,1.875 -4399,0.0,0.0,0.0,0.0,5322,97.0,11271.39,0.0,0.0,254.044923061,0.0,0.0,0,38.9024055842,-77.0685711969,1473240402.0,2.174 -4400,0.0,0.0,0.0,0.0,5323,97.0,11273.5,0.0,0.0,244.661403446,0.0,0.0,0,38.9024230186,-77.0685616415,1473240403.0,2.025 -4401,0.0,40.0,0.0,0.0,5324,99.0,11275.43,0.0,0.0,234.778048354,0.0,0.0,0,38.9024391957,-77.0685533434,1473240404.0,1.866 -4402,0.0,40.0,0.0,0.0,5325,99.0,11277.5,0.0,0.0,236.291995532,0.0,0.0,0,38.9024563786,-77.0685440395,1473240405.0,2.249 -4403,0.0,40.0,0.0,0.0,5326,100.0,11279.79,0.0,0.0,236.949809722,0.0,0.0,0,38.9024754893,-77.0685341489,1473240406.0,2.314 -4404,0.0,26.0,0.0,0.0,5327,100.0,11282.01,0.0,0.0,228.084622357,0.0,0.0,0,38.9024941809,-77.0685251802,1473240407.0,2.137 -4405,0.0,26.0,0.0,0.0,5328,101.0,11284.06,0.0,0.0,222.868422728,0.0,0.0,0,38.9025116153,-77.0685173851,1473240408.0,1.913 -4406,0.0,26.0,0.0,0.0,5329,101.0,11286.19,0.0,0.0,226.734222341,0.0,0.0,0,38.902529804,-77.0685095061,1473240409.0,2.37 -4407,0.0,0.0,0.0,0.0,5330,100.0,11288.55,0.0,0.0,229.288134786,0.0,0.0,0,38.9025500882,-77.0685012918,1473240410.0,2.342 -4408,0.0,0.0,0.0,0.0,5331,101.0,11290.78,0.0,0.0,233.423873503,0.0,0.0,0,38.902569199,-77.0684935804,1473240411.0,2.118 -4409,0.0,0.0,0.0,0.0,5332,100.0,11292.82,0.0,0.0,244.642747455,0.0,0.0,0,38.9025867172,-77.0684862044,1473240412.0,1.978 -4410,0.0,0.0,0.0,0.0,5333,101.0,11294.74,0.0,0.0,270.12867948,0.0,0.0,0,38.9026031457,-77.068479415,1473240413.0,1.857 -4411,0.0,0.0,0.0,0.0,5334,101.0,11296.55,0.0,0.0,295.409263318,0.0,0.0,0,38.902618736,-77.0684732962,1473240414.0,1.708 -4412,0.0,0.0,0.0,0.0,5335,101.0,11298.24,0.0,0.0,309.398481134,0.0,0.0,0,38.9026333205,-77.0684675965,1473240415.0,1.624 -4413,0.0,0.0,0.0,0.0,5336,102.0,11299.88,0.0,0.0,308.679094007,0.0,0.0,0,38.902647486,-77.0684622321,1473240416.0,1.568 -4414,0.0,0.0,0.0,0.0,5337,102.0,11301.47,0.0,0.0,310.901749663,0.0,0.0,0,38.9026612323,-77.068457203,1473240417.0,1.521 -4415,0.0,0.0,0.0,0.0,5338,102.0,11303.19,0.0,0.0,295.028953707,0.0,0.0,0,38.9026760682,-77.0684515033,1473240418.0,1.801 -4416,0.0,0.0,0.0,0.0,5339,101.0,11305.06,0.0,0.0,275.170343546,0.0,0.0,0,38.902692413,-77.0684459712,1473240419.0,1.885 -4417,0.0,0.0,0.0,0.0,5340,101.0,11306.87,0.0,0.0,261.850135573,0.0,0.0,0,38.9027082548,-77.0684408583,1473240420.0,1.708 -4418,0.0,0.0,0.0,0.0,5341,102.0,11308.87,0.0,0.0,248.76104079,0.0,0.0,0,38.9027257729,-77.0684357453,1473240421.0,2.183 -4419,0.0,0.0,0.0,0.0,5342,102.0,11311.02,0.0,0.0,242.12872024,0.0,0.0,0,38.9027448837,-77.0684313029,1473240422.0,2.09 -4420,0.0,0.0,0.0,0.0,5343,101.0,11313.11,0.0,0.0,229.802727788,0.0,0.0,0,38.9027634077,-77.0684273634,1473240423.0,2.025 -4421,0.0,0.0,0.0,0.0,5344,101.0,11315.27,0.0,0.0,222.149988748,0.0,0.0,0,38.9027826861,-77.0684235916,1473240424.0,2.277 -4422,0.0,0.0,0.0,0.0,5345,101.0,11317.53,0.0,0.0,225.597834261,0.0,0.0,0,38.9028028864,-77.068420155,1473240425.0,2.249 -4423,0.0,0.0,0.0,0.0,5346,100.0,11319.82,0.0,0.0,227.714983646,0.0,0.0,0,38.9028233383,-77.0684169699,1473240426.0,2.333 -4424,0.0,0.0,0.0,0.0,5347,101.0,11321.99,0.0,0.0,237.371526515,0.0,0.0,0,38.9028427843,-77.0684142876,1473240427.0,2.025 -4425,0.0,0.0,0.0,0.0,5348,101.0,11323.96,0.0,0.0,253.920376725,0.0,0.0,0,38.9028603863,-77.0684119407,1473240428.0,1.941 -4426,0.0,0.0,0.0,0.0,5349,101.0,11325.81,0.0,0.0,273.59489479,0.0,0.0,0,38.9028769825,-77.0684099291,1473240429.0,1.819 -4427,0.0,0.0,0.0,0.0,5350,102.0,11327.53,0.0,0.0,293.173995593,0.0,0.0,0,38.9028924052,-77.0684078336,1473240430.0,1.698 -4428,0.0,0.0,0.0,0.0,5351,103.0,11329.25,0.0,0.0,302.622994631,0.0,0.0,0,38.9029078279,-77.0684060734,1473240431.0,1.689 -4429,0.0,0.0,0.0,0.0,5352,103.0,11330.86,0.0,0.0,314.236975489,0.0,0.0,0,38.9029222447,-77.0684041455,1473240432.0,1.512 -4430,0.0,0.0,0.0,0.0,5353,103.0,11332.43,0.0,0.0,329.077642379,0.0,0.0,0,38.9029363263,-77.0684024692,1473240433.0,1.577 -4431,0.0,0.0,0.0,0.0,5354,102.0,11334.03,0.0,0.0,338.684847152,0.0,0.0,0,38.9029507432,-77.0684018824,1473240434.0,1.512 -4432,0.0,0.0,0.0,0.0,5355,100.0,11335.52,0.0,0.0,350.622620775,0.0,0.0,0,38.9029641543,-77.0684014633,1473240435.0,1.409 -4433,0.0,0.0,0.0,0.0,5356,99.0,11336.9,0.0,0.0,355.971694857,0.0,0.0,0,38.9029766433,-77.0684007928,1473240436.0,1.316 -4434,0.0,0.0,0.0,0.0,5357,99.0,11338.28,0.0,0.0,365.396478907,0.0,0.0,0,38.9029890485,-77.0684006251,1473240437.0,1.437 -4435,0.0,0.0,0.0,0.0,5358,99.0,11339.66,0.0,0.0,370.991366019,0.0,0.0,0,38.9030014537,-77.0684010442,1473240438.0,1.325 -4436,0.0,0.0,0.0,0.0,5359,99.0,11341.02,0.0,0.0,382.012660991,0.0,0.0,0,38.9030136913,-77.0684019662,1473240439.0,1.344 -4437,0.0,0.0,0.0,0.0,5360,100.0,11342.31,0.0,0.0,398.741977691,0.0,0.0,0,38.9030252583,-77.0684035588,1473240440.0,1.269 -4438,0.0,0.0,0.0,0.0,5361,99.0,11343.52,0.0,0.0,435.697795482,0.0,0.0,0,38.903036071,-77.0684052352,1473240441.0,1.166 -4439,0.0,0.0,0.0,0.0,5362,99.0,11344.61,0.0,0.0,452.964268767,0.0,0.0,0,38.903045794,-77.0684065763,1473240442.0,1.054 -4440,0.0,0.0,0.0,0.0,5363,99.0,11345.66,0.0,0.0,473.356775764,0.0,0.0,0,38.9030551817,-77.0684081689,1473240443.0,1.054 -4441,0.0,0.0,0.0,0.0,5364,99.0,11346.67,0.0,0.0,470.075904031,0.0,0.0,0,38.903064318,-77.0684091747,1473240444.0,0.989 -4442,0.0,0.0,0.0,0.0,5365,99.0,11347.83,0.0,0.0,464.075344943,0.0,0.0,0,38.9030747116,-77.068410432,1473240445.0,1.185 -4443,0.0,0.0,0.0,0.0,5366,99.0,11349.01,0.0,0.0,444.781614153,0.0,0.0,0,38.9030851889,-77.0684128627,1473240446.0,1.082 -4444,0.0,0.0,0.0,0.0,5367,99.0,11350.2,0.0,0.0,438.511566454,0.0,0.0,0,38.9030955825,-77.0684160478,1473240447.0,1.185 -4445,0.0,0.0,0.0,0.0,5368,99.0,11351.4,0.0,0.0,427.37730941,0.0,0.0,0,38.9031059761,-77.0684197359,1473240448.0,1.101 -4446,0.0,0.0,0.0,0.0,5369,99.0,11352.6,0.0,0.0,434.41957032,0.0,0.0,0,38.903116202,-77.0684243459,1473240449.0,1.232 -4447,0.0,0.0,0.0,0.0,5370,100.0,11353.82,0.0,0.0,421.179302046,0.0,0.0,0,38.9031263441,-77.0684297942,1473240450.0,1.12 -4448,0.0,0.0,0.0,0.0,5371,99.0,11355.03,0.0,0.0,421.107128924,0.0,0.0,0,38.9031360671,-77.0684361644,1473240451.0,1.241 -4449,0.0,0.0,0.0,0.0,5372,99.0,11356.25,0.0,0.0,406.036764783,0.0,0.0,0,38.9031455386,-77.0684433728,1473240452.0,1.157 -4450,0.0,0.0,0.0,0.0,5373,99.0,11357.52,0.0,0.0,397.557516763,0.0,0.0,0,38.9031546749,-77.06845209,1473240453.0,1.325 -4451,0.0,0.0,0.0,0.0,5374,98.0,11358.82,0.0,0.0,381.796725473,0.0,0.0,0,38.9031635597,-77.068461813,1473240454.0,1.232 -4452,0.0,0.0,0.0,0.0,5375,99.0,11360.16,0.0,0.0,375.735612254,0.0,0.0,0,38.9031721931,-77.0684726257,1473240455.0,1.4 -4453,0.0,0.0,0.0,0.0,5376,99.0,11361.53,0.0,0.0,372.226429688,0.0,0.0,0,38.9031804074,-77.0684844442,1473240456.0,1.325 -4454,0.0,0.0,0.0,0.0,5377,99.0,11362.88,0.0,0.0,384.671746776,0.0,0.0,0,38.9031877834,-77.0684967656,1473240457.0,1.334 -4455,0.0,0.0,0.0,0.0,5378,99.0,11364.19,0.0,0.0,395.734970637,0.0,0.0,0,38.9031944051,-77.0685093384,1473240458.0,1.269 -4456,0.0,0.0,0.0,0.0,5379,99.0,11365.43,0.0,0.0,429.213257673,0.0,0.0,0,38.9032002725,-77.0685214922,1473240459.0,1.185 -4457,0.0,0.0,0.0,0.0,5380,99.0,11366.61,0.0,0.0,431.245309507,0.0,0.0,0,38.9032058883,-77.0685329754,1473240460.0,1.138 -4458,0.0,0.0,0.0,0.0,5381,99.0,11367.77,0.0,0.0,401.108518087,0.0,0.0,0,38.9032112528,-77.0685445424,1473240461.0,1.176 -4459,0.0,0.0,0.0,0.0,5382,100.0,11368.97,0.0,0.0,382.099862047,0.0,0.0,0,38.9032170363,-77.0685562771,1473240462.0,1.204 -4460,0.0,0.0,0.0,0.0,5383,100.0,11370.46,0.0,0.0,341.09534427,0.0,0.0,0,38.9032239933,-77.0685708616,1473240463.0,1.652 -4461,0.0,0.0,0.0,0.0,5384,100.0,11372.2,0.0,0.0,289.642824005,0.0,0.0,0,38.9032316208,-77.0685884636,1473240464.0,1.773 -4462,0.0,0.0,0.0,0.0,5385,98.0,11373.92,0.0,0.0,268.270872287,0.0,0.0,0,38.9032390807,-77.0686058141,1473240465.0,1.577 -4463,0.0,0.0,0.0,0.0,5386,97.0,11375.86,0.0,0.0,247.425065552,0.0,0.0,0,38.9032480493,-77.0686250087,1473240466.0,2.239 -4464,0.0,20.0,0.0,0.0,5387,96.0,11378.2,0.0,0.0,227.731596132,0.0,0.0,0,38.9032590296,-77.0686480589,1473240467.0,2.351 -4465,0.0,20.0,0.0,0.0,5388,95.0,11380.34,0.0,0.0,219.733390153,0.0,0.0,0,38.9032690041,-77.0686691813,1473240468.0,1.903 -4466,0.0,20.0,0.0,0.0,5389,96.0,11382.6,0.0,0.0,209.479348601,0.0,0.0,0,38.9032796491,-77.0686913934,1473240469.0,2.57499999999 -4467,0.0,19.0,0.0,0.0,5390,96.0,11385.24,0.0,0.0,207.84034982,0.0,0.0,0,38.9032924734,-77.068717042,1473240470.0,2.60300000001 -4468,0.0,19.0,0.0,0.0,5391,97.0,11387.59,0.0,0.0,203.361897904,0.0,0.0,0,38.903303789,-77.0687399246,1473240471.0,2.081 -4469,0.0,22.0,0.0,0.0,5392,97.0,11389.99,0.0,0.0,200.701673904,0.0,0.0,0,38.903315356,-77.0687633101,1473240472.0,2.64100000001 -4470,0.0,22.0,0.0,0.0,5393,97.0,11392.57,0.0,0.0,212.527140912,0.0,0.0,0,38.9033276774,-77.0687885396,1473240473.0,2.473 -4471,0.0,22.0,0.0,0.0,5394,97.0,11394.96,0.0,0.0,222.556217122,0.0,0.0,0,38.9033390768,-77.0688119251,1473240474.0,2.239 -4472,0.0,0.0,0.0,0.0,5395,97.0,11397.15,0.0,0.0,232.90798219,0.0,0.0,0,38.9033493865,-77.0688334666,1473240475.0,2.071 -4473,0.0,0.0,0.0,0.0,5396,98.0,11399.18,0.0,0.0,263.706457041,0.0,0.0,0,38.9033588581,-77.0688534155,1473240476.0,1.913 -4474,0.0,0.0,0.0,0.0,5397,98.0,11401.07,0.0,0.0,281.478701445,0.0,0.0,0,38.9033678267,-77.0688719396,1473240477.0,1.764 -4475,0.0,0.0,0.0,0.0,5398,99.0,11402.83,0.0,0.0,307.023256679,0.0,0.0,0,38.903376041,-77.0688892901,1473240478.0,1.68 -4476,0.0,0.0,0.0,0.0,5399,99.0,11404.48,0.0,0.0,313.479623825,0.0,0.0,0,38.9033836685,-77.068905551,1473240479.0,1.549 -4477,0.0,0.0,0.0,0.0,5400,98.0,11406.13,0.0,0.0,291.456906015,0.0,0.0,0,38.9033911284,-77.0689220633,1473240480.0,1.698 -4478,0.0,0.0,0.0,0.0,5401,98.0,11407.79,0.0,0.0,282.915573584,0.0,0.0,0,38.9033987559,-77.0689385757,1473240481.0,1.53 -4479,0.0,0.0,0.0,0.0,5402,97.0,11409.71,0.0,0.0,263.911928819,0.0,0.0,0,38.9034074731,-77.0689576864,1473240482.0,2.193 -4480,0.0,0.0,0.0,0.0,5403,96.0,11411.98,0.0,0.0,234.088090085,0.0,0.0,0,38.9034176152,-77.0689804014,1473240483.0,2.277 -4481,0.0,0.0,0.0,0.0,5404,96.0,11414.04,0.0,0.0,225.984942164,0.0,0.0,0,38.9034265,-77.0690012723,1473240484.0,1.791 -4482,0.0,0.0,0.0,0.0,5405,97.0,11416.25,0.0,0.0,214.163335237,0.0,0.0,0,38.903436223,-77.0690234005,1473240485.0,2.519 -4483,0.0,20.0,0.0,0.0,5406,97.0,11418.81,0.0,0.0,212.128224625,0.0,0.0,0,38.9034474548,-77.0690492168,1473240486.0,2.622 -4484,0.0,20.0,0.0,0.0,5407,98.0,11421.07,0.0,0.0,206.458670728,0.0,0.0,0,38.9034570102,-77.0690721832,1473240487.0,1.997 -4485,0.0,20.0,0.0,0.0,5408,98.0,11423.36,0.0,0.0,205.607110624,0.0,0.0,0,38.9034669008,-77.0690954011,1473240488.0,2.622 -4486,0.0,0.0,0.0,0.0,5409,99.0,11425.86,0.0,0.0,223.407712305,0.0,0.0,0,38.9034778811,-77.0691205468,1473240489.0,2.361 -4487,0.0,0.0,0.0,0.0,5410,99.0,11428.09,0.0,0.0,232.838492739,0.0,0.0,0,38.9034872688,-77.0691432618,1473240490.0,2.146 -4488,0.0,0.0,0.0,0.0,5411,100.0,11430.08,0.0,0.0,249.577554875,0.0,0.0,0,38.9034954831,-77.0691637136,1473240491.0,1.866 -4489,0.0,0.0,0.0,0.0,5412,100.0,11431.87,0.0,0.0,275.746485128,0.0,0.0,0,38.9035027754,-77.06918207,1473240492.0,1.81 -4490,0.0,19.0,0.0,0.0,5413,100.0,11433.73,0.0,0.0,280.321435246,0.0,0.0,0,38.9035104029,-77.0692011807,1473240493.0,1.885 -4491,0.0,19.0,0.0,0.0,5414,99.0,11435.35,0.0,0.0,286.000108953,0.0,0.0,0,38.903516857,-77.0692179445,1473240494.0,1.474 -4492,0.0,26.0,0.0,0.0,5415,98.0,11436.88,0.0,0.0,282.111906832,0.0,0.0,0,38.9035227243,-77.069233954,1473240495.0,1.997 -4493,0.0,26.0,0.0,0.0,5416,98.0,11438.68,0.0,0.0,299.046933539,0.0,0.0,0,38.903529346,-77.0692528971,1473240496.0,1.791 -4494,0.0,26.0,0.0,0.0,5417,97.0,11440.28,0.0,0.0,307.160428163,0.0,0.0,0,38.903534878,-77.0692699123,1473240497.0,1.558 -4495,0.0,22.0,0.0,0.0,5418,96.0,11441.9,0.0,0.0,285.209832949,0.0,0.0,0,38.9035405777,-77.0692870952,1473240498.0,1.717 -4496,0.0,22.0,0.0,0.0,5419,96.0,11443.37,0.0,0.0,292.598400462,0.0,0.0,0,38.9035456907,-77.0693027694,1473240499.0,1.39 -4497,0.0,22.0,0.0,0.0,5420,96.0,11445.08,0.0,0.0,276.886785668,0.0,0.0,0,38.9035514742,-77.0693209581,1473240500.0,2.081 -4498,0.0,0.0,0.0,0.0,5421,97.0,11447.28,0.0,0.0,248.933680188,0.0,0.0,0,38.9035591017,-77.0693443436,1473240501.0,2.267 -4499,0.0,0.0,0.0,0.0,5422,98.0,11449.22,0.0,0.0,238.312376975,0.0,0.0,0,38.9035660587,-77.0693649631,1473240502.0,1.68 -4500,0.0,0.0,0.0,0.0,5423,99.0,11451.03,0.0,0.0,226.348093973,0.0,0.0,0,38.9035720937,-77.0693842415,1473240503.0,2.295 -4501,0.0,19.0,0.0,0.0,5424,100.0,11453.36,0.0,0.0,227.092197466,0.0,0.0,0,38.9035802241,-77.0694091357,1473240504.0,2.473 -4502,0.0,19.0,0.0,0.0,5425,100.0,11455.55,0.0,0.0,215.94234059,0.0,0.0,0,38.903586762,-77.0694329403,1473240505.0,2.025 -4503,0.0,19.0,0.0,0.0,5426,100.0,11457.66,0.0,0.0,213.440269064,0.0,0.0,0,38.9035932161,-77.0694558229,1473240506.0,2.389 -4504,0.0,0.0,0.0,0.0,5427,98.0,11460.18,0.0,0.0,222.843482841,0.0,0.0,0,38.9036011789,-77.0694829803,1473240507.0,2.389 -4505,0.0,0.0,0.0,0.0,5428,97.0,11462.83,0.0,0.0,217.204883443,0.0,0.0,0,38.9036109857,-77.069510892,1473240508.0,2.417 -4506,0.0,0.0,0.0,0.0,5429,96.0,11465.18,0.0,0.0,213.645570322,0.0,0.0,0,38.9036211278,-77.0695351157,1473240509.0,1.885 -4507,0.0,0.0,0.0,0.0,5430,96.0,11467.49,0.0,0.0,217.036725245,0.0,0.0,0,38.9036303479,-77.069559088,1473240510.0,2.482 -4508,0.0,0.0,0.0,0.0,5431,96.0,11470.22,0.0,0.0,208.768267223,0.0,0.0,0,38.9036402386,-77.0695880055,1473240511.0,2.659 -4509,0.0,0.0,0.0,0.0,5432,96.0,11472.8,0.0,0.0,204.383178645,0.0,0.0,0,38.9036496263,-77.0696153305,1473240512.0,2.155 -4510,0.0,0.0,0.0,0.0,5433,97.0,11475.28,0.0,0.0,199.356191693,0.0,0.0,0,38.9036585949,-77.0696415659,1473240513.0,2.52899999999 -4511,0.0,19.0,0.0,0.0,5434,98.0,11477.98,0.0,0.0,202.205174352,0.0,0.0,0,38.9036663063,-77.069671154,1473240514.0,2.697 -4512,0.0,19.0,0.0,0.0,5435,98.0,11480.56,0.0,0.0,201.535508637,0.0,0.0,0,38.9036730118,-77.0696996525,1473240515.0,2.267 -4513,0.0,30.0,0.0,0.0,5436,99.0,11483.01,0.0,0.0,200.163250027,0.0,0.0,0,38.9036794659,-77.0697266422,1473240516.0,2.454 -4514,0.0,30.0,0.0,0.0,5437,98.0,11485.53,0.0,0.0,211.135139285,0.0,0.0,0,38.9036862552,-77.0697543863,1473240517.0,2.54699999999 -4515,0.0,30.0,0.0,0.0,5438,98.0,11487.9,0.0,0.0,227.062285839,0.0,0.0,0,38.9036918711,-77.0697808731,1473240518.0,2.258 -4516,0.0,0.0,0.0,0.0,5439,98.0,11490.06,0.0,0.0,232.986912389,0.0,0.0,0,38.9036966488,-77.0698051807,1473240519.0,2.034 -4517,0.0,0.0,0.0,0.0,5440,98.0,11492.04,0.0,0.0,263.227464994,0.0,0.0,0,38.9037012588,-77.0698272251,1473240520.0,1.885 -4518,0.0,0.0,0.0,0.0,5441,98.0,11493.85,0.0,0.0,282.984890322,0.0,0.0,0,38.9037055336,-77.0698475093,1473240521.0,1.736 -4519,0.0,0.0,0.0,0.0,5442,99.0,11495.71,0.0,0.0,284.120260357,0.0,0.0,0,38.9037106466,-77.0698679611,1473240522.0,1.931 -4520,0.0,0.0,0.0,0.0,5443,99.0,11497.38,0.0,0.0,280.648382809,0.0,0.0,0,38.9037148375,-77.0698864013,1473240523.0,1.372 -4521,0.0,0.0,0.0,0.0,5444,101.0,11499.08,0.0,0.0,278.771378506,0.0,0.0,0,38.9037193637,-77.0699051768,1473240524.0,2.034 -4522,0.0,0.0,0.0,0.0,5445,101.0,11501.03,0.0,0.0,281.073188538,0.0,0.0,0,38.9037253987,-77.0699262992,1473240525.0,1.894 -4523,0.0,0.0,0.0,0.0,5446,100.0,11502.88,0.0,0.0,293.472709579,0.0,0.0,0,38.9037321042,-77.0699459128,1473240526.0,1.698 -4524,0.0,0.0,0.0,0.0,5447,99.0,11504.52,0.0,0.0,305.9562125,0.0,0.0,0,38.9037379716,-77.0699632633,1473240527.0,1.549 -4525,0.0,0.0,0.0,0.0,5448,97.0,11506.03,0.0,0.0,353.352566318,0.0,0.0,0,38.9037432522,-77.0699792728,1473240528.0,1.428 -4526,0.0,0.0,0.0,0.0,5449,96.0,11507.37,0.0,0.0,391.188603711,0.0,0.0,0,38.9037478622,-77.0699936058,1473240529.0,1.278 -4527,0.0,0.0,0.0,0.0,5450,95.0,11508.59,0.0,0.0,430.047472773,0.0,0.0,0,38.9037518017,-77.0700066816,1473240530.0,1.148 -4528,0.0,0.0,0.0,0.0,5451,94.0,11509.7,0.0,0.0,477.464107514,0.0,0.0,0,38.903755825,-77.0700184163,1473240531.0,1.054 -4529,0.0,0.0,0.0,0.0,5452,94.0,11510.73,0.0,0.0,539.437303841,0.0,0.0,0,38.9037595969,-77.0700293127,1473240532.0,0.933 -4530,0.0,0.0,0.0,0.0,5453,94.0,11511.63,0.0,0.0,626.077340879,0.0,0.0,0,38.903762782,-77.0700387843,1473240533.0,0.848999999999 -4531,0.0,0.0,0.0,0.0,5454,95.0,11512.42,0.0,0.0,687.991422445,0.0,0.0,0,38.9037657157,-77.0700470824,1473240534.0,0.718 -4532,0.0,0.0,0.0,0.0,5455,95.0,11513.09,0.0,0.0,727.889184386,0.0,0.0,0,38.9037682302,-77.0700541232,1473240535.0,0.625 -4533,0.0,0.0,0.0,0.0,5456,95.0,11513.7,0.0,0.0,695.305633481,0.0,0.0,0,38.9037705772,-77.0700604934,1473240536.0,0.625 -4534,0.0,0.0,0.0,0.0,5457,96.0,11514.49,0.0,0.0,640.606107666,0.0,0.0,0,38.9037741814,-77.0700683724,1473240537.0,0.868000000001 -4535,0.0,0.0,0.0,0.0,5458,96.0,11515.38,0.0,0.0,588.061586086,0.0,0.0,0,38.9037780371,-77.070077341,1473240538.0,0.84 -4536,0.0,0.0,0.0,0.0,5459,96.0,11516.31,0.0,0.0,563.417382524,0.0,0.0,0,38.9037828986,-77.070086142,1473240539.0,0.97 -4537,0.0,0.0,0.0,0.0,5460,95.0,11517.25,0.0,0.0,572.107883201,0.0,0.0,0,38.9037885144,-77.0700942725,1473240540.0,0.857999999999 -4538,0.0,0.0,0.0,0.0,5461,94.0,11518.08,0.0,0.0,631.026852788,0.0,0.0,0,38.9037939627,-77.0701008104,1473240541.0,0.784 -4539,0.0,0.0,0.0,0.0,5462,93.0,11518.81,0.0,0.0,699.275296511,0.0,0.0,0,38.903798908,-77.0701064263,1473240542.0,0.709 -4540,0.0,0.0,0.0,0.0,5463,92.0,11519.47,0.0,0.0,814.458578964,0.0,0.0,0,38.9038036857,-77.0701109525,1473240543.0,0.662 -4541,0.0,0.0,0.0,0.0,5464,92.0,11520.1,0.0,0.0,786.399041342,0.0,0.0,0,38.9038083795,-77.0701150596,1473240544.0,0.579 -4542,0.0,0.0,0.0,0.0,5465,92.0,11520.69,0.0,0.0,697.047055203,0.0,0.0,0,38.903812822,-77.0701187477,1473240545.0,0.625 -4543,0.0,0.0,0.0,0.0,5466,93.0,11521.37,0.0,0.0,606.133758764,0.0,0.0,0,38.9038180187,-77.0701228548,1473240546.0,0.737 -4544,0.0,0.0,0.0,0.0,5467,93.0,11522.28,0.0,0.0,541.178785792,0.0,0.0,0,38.9038248919,-77.0701286383,1473240547.0,1.129 -4545,0.0,0.0,0.0,0.0,5468,94.0,11523.32,0.0,0.0,505.300183308,0.0,0.0,0,38.9038326871,-77.0701353438,1473240548.0,1.045 -4546,0.0,0.0,0.0,0.0,5469,93.0,11524.28,0.0,0.0,510.145490844,0.0,0.0,0,38.9038398955,-77.0701415464,1473240549.0,0.961000000001 -4547,0.0,0.0,0.0,0.0,5470,91.0,11525.22,0.0,0.0,525.269797669,0.0,0.0,0,38.9038468525,-77.0701475814,1473240550.0,0.896 -4548,0.0,0.0,0.0,0.0,5471,89.0,11526.09,0.0,0.0,555.499444501,0.0,0.0,0,38.9038530551,-77.070153784,1473240551.0,0.857999999999 -4549,0.0,0.0,0.0,0.0,5472,89.0,11526.94,0.0,0.0,541.775334447,0.0,0.0,0,38.9038589224,-77.0701600704,1473240552.0,0.868000000001 -4550,0.0,0.0,0.0,0.0,5473,89.0,11527.91,0.0,0.0,524.344569289,0.0,0.0,0,38.9038657118,-77.0701671951,1473240553.0,1.045 -4551,0.0,0.0,0.0,0.0,5474,89.0,11528.94,0.0,0.0,506.843484099,0.0,0.0,0,38.9038727526,-77.0701748226,1473240554.0,0.989 -4552,0.0,0.0,0.0,0.0,5475,89.0,11529.93,0.0,0.0,502.309318164,0.0,0.0,0,38.9038796257,-77.0701821987,1473240555.0,0.998 -4553,0.0,0.0,0.0,0.0,5476,89.0,11530.88,0.0,0.0,514.91469357,0.0,0.0,0,38.9038859122,-77.0701896586,1473240556.0,0.941999999999 -4554,0.0,0.0,0.0,0.0,5477,89.0,11531.87,0.0,0.0,553.277510586,0.0,0.0,0,38.9038923662,-77.0701974537,1473240557.0,0.933 -4555,0.0,0.0,0.0,0.0,5478,90.0,11532.78,0.0,0.0,588.307203325,0.0,0.0,0,38.9038981497,-77.0702048298,1473240558.0,0.84 -4556,0.0,0.0,0.0,0.0,5479,90.0,11533.61,0.0,0.0,641.353116254,0.0,0.0,0,38.9039033465,-77.070211703,1473240559.0,0.774 -4557,0.0,0.0,0.0,0.0,5480,89.0,11534.36,0.0,0.0,721.09081374,0.0,0.0,0,38.9039077889,-77.0702182408,1473240560.0,0.672 -4558,0.0,0.0,0.0,0.0,5481,89.0,11535.03,0.0,0.0,848.291665442,0.0,0.0,0,38.9039111417,-77.0702246949,1473240561.0,0.616 -4559,0.0,0.0,0.0,0.0,5482,89.0,11535.56,0.0,0.0,1134.94551279,0.0,0.0,0,38.9039137401,-77.0702298917,1473240562.0,0.485000000001 -4560,0.0,0.0,0.0,0.0,5483,89.0,11535.92,0.0,0.0,1544.3860564,0.0,0.0,0,38.9039154164,-77.0702334121,1473240563.0,0.316999999999 -4561,0.0,0.0,0.0,0.0,5484,90.0,11536.17,0.0,0.0,2521.8065305,0.0,0.0,0,38.9039168414,-77.070235759,1473240564.0,0.187 -4562,0.0,0.0,0.0,0.0,5485,90.0,11536.3,0.0,0.0,4999.78355915,0.0,0.0,0,38.9039181825,-77.0702360105,1473240565.0,0.0 -4563,0.0,0.0,0.0,0.0,5486,90.0,11536.44,0.0,0.0,11022.0440882,0.0,0.0,0,38.9039192721,-77.0702350046,1473240566.0,0.187 -4564,0.0,0.0,0.0,0.0,5487,89.0,11536.57,0.0,0.0,9850.74626864,0.0,0.0,0,38.903920278,-77.0702343341,1473240567.0,0.0 diff --git a/rowers/permissions.py b/rowers/permissions.py new file mode 100644 index 00000000..03c1652b --- /dev/null +++ b/rowers/permissions.py @@ -0,0 +1,21 @@ +from rest_framework import permissions +from rowers.models import Rower + +class IsOwnerOrReadOnly(permissions.BasePermission): + """ + Custom permission to only allow owners of an object to edit it. + """ + + def has_object_permission(self, request, view, obj): + # Read permissions are allowed to any request, + # so we'll always allow GET, HEAD or OPTIONS requests. + if request.method in permissions.SAFE_METHODS: + return True + + # Write permissions are only allowed to the owner of the snippet. + return obj.owner == request.user + +class IsOwnerOrNot(permissions.BasePermission): + def has_object_permission(self, request, view, obj): + r = Rower.objects.get(user=request.user) + return (obj.user == r) diff --git a/rowers/serializers.py b/rowers/serializers.py new file mode 100644 index 00000000..c58706ef --- /dev/null +++ b/rowers/serializers.py @@ -0,0 +1,36 @@ +from rest_framework import serializers +from rowers.models import Workout,Rower + +# Serializers define the API representation. +class RowerSerializer(serializers.HyperlinkedModelSerializer): + class Meta: + model = Rower + fields = ( + 'weightcategory', + ) + + +class WorkoutSerializer(serializers.HyperlinkedModelSerializer): + class Meta: + model = Workout + fields = ( + 'id', + 'name', + 'date', + 'workouttype', + 'boattype', + 'starttime', + 'startdatetime', + 'distance', + 'duration', + 'weightcategory', + 'weightvalue', + 'averagehr', + 'maxhr', + 'notes', + 'summary', + 'csvfilename', + ) + + + diff --git a/rowers/urls.py b/rowers/urls.py index 1f21578f..70903a56 100644 --- a/rowers/urls.py +++ b/rowers/urls.py @@ -2,9 +2,10 @@ from django.conf import settings from django.conf.urls import url, include from django.contrib.auth.models import User -from models import Workout +from models import Workout,Rower -from rest_framework import routers, serializers, viewsets +from rest_framework import routers, serializers, viewsets,permissions +from rest_framework.urlpatterns import format_suffix_patterns from . import views from django.contrib.auth import views as auth_views @@ -13,45 +14,18 @@ from django.conf.urls import ( handler400, handler403, handler404, handler500, ) -# Serializers define the API representation. -class UserSerializer(serializers.HyperlinkedModelSerializer): - class Meta: - model = User - fields = ('url', 'username', 'email', 'is_staff') - -class WorkoutSerializer(serializers.HyperlinkedModelSerializer): - class Meta: - model = Workout - fields = ( - 'name', - 'date', - 'workouttype', - 'boattype', - 'starttime', - 'startdatetime', - 'distance', - 'duration', - 'weightcategory', - 'weightvalue', - 'averagehr', - 'maxhr', - 'notes', - 'summary', - ) +from rowers.permissions import IsOwnerOrNot +from rowers.serializers import WorkoutSerializer -# ViewSets define the view behavior. -class UserViewSet(viewsets.ModelViewSet): - queryset = User.objects.all() - serializer_class = UserSerializer - class WorkoutViewSet(viewsets.ModelViewSet): - queryset = Workout.objects.all() + queryset = Workout.objects.all().order_by("-date", "-starttime") serializer_class = WorkoutSerializer + permission_classes = (IsOwnerOrNot,) + # Routers provide an easy way of automatically determining the URL conf. router = routers.DefaultRouter() -router.register(r'users', UserViewSet) -router.register(r'workouts',WorkoutViewSet) +router.register(r'api/workouts',WorkoutViewSet) handler500 = 'views.error500_view' handler404 = 'views.error404_view' @@ -61,7 +35,7 @@ handler403 = 'views.error403_view' urlpatterns = [ # url(r'^password_change/$',auth_views.password_change), # url(r'^password_change_done/$',auth_views.password_change_done), - url(r'^oauth2/', include('provider.oauth2.urls', namespace = 'oauth2')), + url(r'^o/', include('oauth2_provider.urls', namespace='oauth2_provider')), url(r'^', include(router.urls)), url(r'^api-docs$', views.schema_view), url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework')), @@ -190,3 +164,5 @@ if settings.DEBUG: url(r'^testreverse/$',views.test_reverse_view), url(r'^c2listug/$',views.c2listdebug_view), ] + +#urlpatterns = format_suffix_patterns(urlpatterns) diff --git a/rowers/views.py b/rowers/views.py index 9f2623e5..dddb33b4 100644 --- a/rowers/views.py +++ b/rowers/views.py @@ -62,6 +62,14 @@ queuelow = django_rq.get_queue('low') queuehigh = django_rq.get_queue('low') from rest_framework_swagger.views import get_swagger_view +from rest_framework.renderers import JSONRenderer +from rest_framework.parsers import JSONParser +from rest_framework.response import Response +from rowers.serializers import RowerSerializer,WorkoutSerializer +from rest_framework import status,permissions,generics +from rest_framework.decorators import api_view + +from permissions import IsOwnerOrNot import plots import mailprocessing @@ -76,8 +84,10 @@ USER_LANGUAGE = 'en-US' from interactiveplots import * -schema_view = get_swagger_view(title='Rowsandall API') +schema_view = get_swagger_view(title='Rowsandall API (Unstable)') + + def error500_view(request): response = render_to_response('500.html', {}, context_instance = RequestContext(request)) @@ -1759,7 +1769,7 @@ def workouts_view(request,message='',successmessage=''): 'successmessage':successmessage, }) except Rower.DoesNotExist: - return HttpResponse("Admin has no rower instance") + return HttpResponse("User has no rower instance") @user_passes_test(promember,login_url="/login") def workout_comparison_list(request,id=0,message='',successmessage=''): @@ -1779,7 +1789,7 @@ def workout_comparison_list(request,id=0,message='',successmessage=''): 'successmessage':successmessage, }) except Rower.DoesNotExist: - return HttpResponse("Admin has no rower instance") + return HttpResponse("User has no rower instance") def workout_view(request,id=0): try: @@ -3914,7 +3924,7 @@ def dashboard_view(request,message="",successmessage=""): 'successmessage':successmessage}) except Rower.DoesNotExist: - return HttpResponse("Admin has no rower instance") + return HttpResponse("User has no rower instance") @login_required() @@ -3931,7 +3941,7 @@ def graphs_view(request): {'graphs1': g[0:5], 'graphs2': g[5:10]}) except Rower.DoesNotExist: - return HttpResponse("Admin has no rower instance") + return HttpResponse("User has no rower instance") def graph_show_view(request,id): diff --git a/rowsandall_app/settings.py b/rowsandall_app/settings.py index 6b79a370..6fb6d4b7 100644 --- a/rowsandall_app/settings.py +++ b/rowsandall_app/settings.py @@ -49,8 +49,7 @@ INSTALLED_APPS = [ 'django_mailbox', 'rest_framework', 'rest_framework_swagger', - 'provider', -# 'provider.oauth2', + 'oauth2_provider', ] MIDDLEWARE_CLASSES = [ @@ -61,6 +60,7 @@ MIDDLEWARE_CLASSES = [ 'django.middleware.common.CommonMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.auth.middleware.SessionAuthenticationMiddleware', + 'oauth2_provider.middleware.OAuth2TokenMiddleware', 'django.contrib.messages.middleware.MessageMiddleware', 'django.middleware.clickjacking.XFrameOptionsMiddleware', 'debug_toolbar.middleware.DebugToolbarMiddleware', @@ -240,11 +240,12 @@ REST_FRAMEWORK = { # Use Django's standard `django.contrib.auth` permissions, # or allow read-only access for unauthenticated users. 'DEFAULT_PERMISSION_CLASSES': [ - 'rest_framework.permissions.DjangoModelPermissionsOrAnonReadOnly' + 'rest_framework.permissions.IsAuthenticated' ], 'DEFAULT_AUTHENTICATION_CLASSES': ( 'rest_framework.authentication.BasicAuthentication', 'rest_framework.authentication.SessionAuthentication', -# 'rest_framework.authentication.OAuth2Authentication', + 'oauth2_provider.ext.rest_framework.OAuth2Authentication', ), + 'PAGE_SIZE': 20, } From 73f4c713a06931f99d407f3824a85b33eda42773 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Tue, 22 Nov 2016 23:17:46 +0100 Subject: [PATCH 05/17] Added StrokeData model --- rowers/dataprep.py | 49 ++++++++++++++++++++++++++++++++++++++++++++-- rowers/models.py | 35 +++++++++++++++++++++++++++++++++ 2 files changed, 82 insertions(+), 2 deletions(-) diff --git a/rowers/dataprep.py b/rowers/dataprep.py index 01749000..b6ace874 100644 --- a/rowers/dataprep.py +++ b/rowers/dataprep.py @@ -9,6 +9,29 @@ from pandas import DataFrame,Series import pandas as pd import numpy as np +from django.conf import settings +from sqlalchemy import create_engine +import sqlalchemy as sa + +user = settings.DATABASES['default']['USER'] +password = settings.DATABASES['default']['PASSWORD'] +database_name = settings.DATABASES['default']['NAME'] +host = settings.DATABASES['default']['HOST'] +port = settings.DATABASES['default']['PORT'] + +database_url = 'mysql://{user}:{password}@{host}:{port}/{database_name}'.format( + user=user, + password=password, + database_name=database_name, + host=host, + port=port, + ) + +if settings.DEBUG: + database_url = 'sqlite:///db.sqlite3' + +engine = create_engine(database_url, echo=False) + from scipy.signal import savgol_filter import datetime @@ -59,6 +82,14 @@ def rdata(file,rower=rrower()): return res +def getrowdata_db(id=0): + data = read_df_sql(id) + if data.empty: + rowdata,row = getrowdata(id=id) + data = dataprep(rowdata.df,id=id,bands=True,barchart=True,otwpower=True) + + return data + def getrowdata(id=0): # check if valid ID exists (workout exists) @@ -79,7 +110,15 @@ def getrowdata(id=0): return rowdata,row -def dataprep(rowdatadf,bands=False,barchart=False,otwpower=False): +# temporary +def read_df_sql(id): + df = pd.read_sql_query(sa.text('SELECT * FROM strokedata WHERE workoutid={id}'.format( + id=id)), engine) + return df + + + +def dataprep(rowdatadf,id=0,bands=False,barchart=False,otwpower=False): rowdatadf.set_index([range(len(rowdatadf))],inplace=True) t = rowdatadf.ix[:,'TimeStamp (sec)'] t = pd.Series(t-rowdatadf.ix[0,'TimeStamp (sec)']) @@ -193,5 +232,11 @@ def dataprep(rowdatadf,bands=False,barchart=False,otwpower=False): data = data.replace([-np.inf,np.inf],np.nan) data = data.fillna(method='ffill') - + + # write data if id given + if id != 0: + data['workoutid'] = id + with engine.connect() as conn, conn.begin(): + data.to_sql('strokedata',engine,if_exists='append',index=False) + return data diff --git a/rowers/models.py b/rowers/models.py index 186cc531..7c025310 100644 --- a/rowers/models.py +++ b/rowers/models.py @@ -121,6 +121,41 @@ def auto_delete_file_on_delete(sender, instance, **kwargs): os.remove(instance.csvfilename) +class StrokeData(models.Model): + class Meta: + db_table = 'strokedata' + + workoutid = models.IntegerField(null=True) + time = models.TimeField(null=True) + timesecs = models.FloatField(null=True) + hr = models.IntegerField(null=True) + pace = models.TimeField(null=True) + pseconds = models.FloatField(null=True) + spm = models.FloatField(null=True) + cumdist = models.FloatField(null=True) + ftime = models.CharField(max_length=30) + fpace = models.CharField(max_length=30) + driveenergy = models.FloatField(null=True) + power = models.FloatField(null=True) + averageforce = models.FloatField(null=True) + drivelength = models.FloatField(null=True) + peakforce = models.FloatField(null=True) + forceratio = models.FloatField(null=True) + distance = models.FloatField(null=True) + drivespeed = models.FloatField(null=True) + hr_ut2 = models.IntegerField(null=True) + hr_ut1 = models.IntegerField(null=True) + hr_at = models.IntegerField(null=True) + hr_tr = models.IntegerField(null=True) + hr_an = models.IntegerField(null=True) + hr_max = models.IntegerField(null=True) + hr_bottom = models.IntegerField(null=True) + x_right = models.FloatField(null=True) + ergpace = models.TimeField(null=True) + nowindpace = models.TimeField(null=True) + equivergpower = models.FloatField(null=True) + fergpace = models.CharField(max_length=30) + fnowindpace = models.CharField(max_length=30) class GraphImage(models.Model): filename = models.CharField(default='',max_length=150,blank=True,null=True) From 402c7c1390cc4b64c98e6178998b480730be6e2f Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Wed, 23 Nov 2016 15:38:02 +0100 Subject: [PATCH 06/17] Preparations for strokedata API --- rowers/dataprep.py | 5 +++-- rowers/models.py | 2 +- rowers/tests.py | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/rowers/dataprep.py b/rowers/dataprep.py index dbc7ff7b..e5d88391 100644 --- a/rowers/dataprep.py +++ b/rowers/dataprep.py @@ -28,8 +28,9 @@ database_url = 'mysql://{user}:{password}@{host}:{port}/{database_name}'.format( port=port, ) -if settings.DEBUG: - database_url = 'sqlite:///db.sqlite3' +if settings.DEBUG or user=='': + # database_url = 'sqlite:///db.sqlite3' + database_url = 'sqlite:///'+database_name engine = create_engine(database_url, echo=False) diff --git a/rowers/models.py b/rowers/models.py index 4abb804d..552d6440 100644 --- a/rowers/models.py +++ b/rowers/models.py @@ -28,7 +28,7 @@ database_url = 'mysql://{user}:{password}@{host}:{port}/{database_name}'.format( port=port, ) -if settings.DEBUG: +if settings.DEBUG or user=='': database_url = 'sqlite:///db.sqlite3' engine = create_engine(database_url, echo=False) diff --git a/rowers/tests.py b/rowers/tests.py index 8f075065..66f309b8 100644 --- a/rowers/tests.py +++ b/rowers/tests.py @@ -1,4 +1,4 @@ -from django.test import TestCase, Client +from django.test import TestCase, Client,override_settings from django.test.client import RequestFactory from .views import checkworkoutuser,c2_open from rowers.models import Workout, User, Rower, WorkoutForm,RowerForm,GraphImage From 69f9aca132db75f1e21e64d71dedf021bdb7c478 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Wed, 23 Nov 2016 16:16:08 +0100 Subject: [PATCH 07/17] Dataprep upon upload --- rowers/dataprep.py | 17 ++++++++++++++--- rowers/interactiveplots.py | 1 + rowers/views.py | 12 ++++-------- 3 files changed, 19 insertions(+), 11 deletions(-) diff --git a/rowers/dataprep.py b/rowers/dataprep.py index e5d88391..85ccad98 100644 --- a/rowers/dataprep.py +++ b/rowers/dataprep.py @@ -156,10 +156,21 @@ def read_cols_df_sql(ids,col1,col2,col3): for column in columns: cls += column+', ' cls = cls[:-2] - query = sa.text('SELECT {columns} FROM strokedata WHERE workoutid IN {ids}'.format( - columns = cls, - ids = tuple(ids), + if len(ids) == 0: + query = sa.text('SELECT {columns} FROM strokedata WHERE workoutid=0'.format( + columns = cls, + )) + elif len(ids) == 1: + query = sa.text('SELECT {columns} FROM strokedata WHERE workoutid={id}'.format( + id = ids[0], + columns = cls, + )) + else: + query = sa.text('SELECT {columns} FROM strokedata WHERE workoutid IN {ids}'.format( + columns = cls, + ids = tuple(ids), )) + df = pd.read_sql_query(query,engine) return df diff --git a/rowers/interactiveplots.py b/rowers/interactiveplots.py index d8a80dab..48f49cae 100644 --- a/rowers/interactiveplots.py +++ b/rowers/interactiveplots.py @@ -71,6 +71,7 @@ def interactive_histoall(theworkouts): TOOLS = 'save,pan,box_zoom,wheel_zoom,reset,tap,hover,resize,crosshair' ids = [w.id for w in theworkouts] + rowdata = dataprep.getsmallrowdata_db('power','power','power',ids=ids) histopwr = rowdata['power'].values diff --git a/rowers/views.py b/rowers/views.py index c4bcf899..bfcb0115 100644 --- a/rowers/views.py +++ b/rowers/views.py @@ -2870,10 +2870,6 @@ def workout_edit_view(request,id=0,message="",successmessage=""): u = request.user r = Rower.objects.get(user=u) - res = interactive_chart(id) - script = res[0] - div = res[1] - rowdata = rdata(f1) hascoordinates = 1 if rowdata != 0: @@ -2906,8 +2902,7 @@ def workout_edit_view(request,id=0,message="",successmessage=""): 'gmscript': gmscript, 'gmdiv': gmdiv, }) -# 'interactiveplot':script, -# 'the_div':div}) + else: return render(request, 'workout_form.html', {'form':form, @@ -2919,8 +2914,7 @@ def workout_edit_view(request,id=0,message="",successmessage=""): 'gmscript': gmscript, 'gmdiv': gmdiv, }) -# 'interactiveplot':script, -# 'the_div':div}) + except Workout.DoesNotExist: form = WorkoutForm( @@ -3658,6 +3652,8 @@ def workout_upload_view(request,message=""): startdatetime=workoutstartdatetime) w.save() + # put stroke data in database + res = dataprep.dataprep(row.df,id=w.id,bands=True,barchart=True,otwpower=True) # Make Plot if (make_plot): From c667f3acd4be8bc9a758668b33778d272398ecfc Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Wed, 23 Nov 2016 18:23:10 +0100 Subject: [PATCH 08/17] first crude strokedata get method --- rowers/serializers.py | 12 ++++++++++-- rowers/urls.py | 6 ++++-- rowers/views.py | 13 ++++++++++++- 3 files changed, 26 insertions(+), 5 deletions(-) diff --git a/rowers/serializers.py b/rowers/serializers.py index c58706ef..362c7c01 100644 --- a/rowers/serializers.py +++ b/rowers/serializers.py @@ -7,6 +7,14 @@ class RowerSerializer(serializers.HyperlinkedModelSerializer): model = Rower fields = ( 'weightcategory', + 'max', + 'rest', + 'ut2', + 'ut1', + 'at', + 'tr', + 'an', + 'ftp', ) @@ -32,5 +40,5 @@ class WorkoutSerializer(serializers.HyperlinkedModelSerializer): 'csvfilename', ) - - + + diff --git a/rowers/urls.py b/rowers/urls.py index 9e3a9526..8ba2a5c0 100644 --- a/rowers/urls.py +++ b/rowers/urls.py @@ -14,8 +14,8 @@ from django.conf.urls import ( handler400, handler403, handler404, handler500, ) -from rowers.permissions import IsOwnerOrNot -from rowers.serializers import WorkoutSerializer +from rowers.permissions import IsOwnerOrNot,IsOwnerOrReadOnly +from rowers.serializers import WorkoutSerializer,RowerSerializer class WorkoutViewSet(viewsets.ModelViewSet): queryset = Workout.objects.all().order_by("-date", "-starttime") @@ -26,6 +26,7 @@ class WorkoutViewSet(viewsets.ModelViewSet): # Routers provide an easy way of automatically determining the URL conf. router = routers.DefaultRouter() router.register(r'api/workouts',WorkoutViewSet) +#router.register(r'api/rower',RowerViewSet) handler500 = 'views.error500_view' handler404 = 'views.error404_view' @@ -39,6 +40,7 @@ urlpatterns = [ url(r'^', include(router.urls)), url(r'^api-docs$', views.schema_view), url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework')), + url(r'^api/(\d+)/strokedata$',views.strokedatajson), url(r'^testbokeh$',views.testbokeh), url(r'^500/$', TemplateView.as_view(template_name='500.html'),name='500'), url(r'^404/$', TemplateView.as_view(template_name='404.html'),name='404'), diff --git a/rowers/views.py b/rowers/views.py index bfcb0115..8d46f9d5 100644 --- a/rowers/views.py +++ b/rowers/views.py @@ -33,6 +33,8 @@ from rowsandall_app.settings import C2_CLIENT_ID, C2_REDIRECT_URI, C2_CLIENT_SEC from rowsandall_app.settings import SPORTTRACKS_CLIENT_ID, SPORTTRACKS_REDIRECT_URI, SPORTTRACKS_CLIENT_SECRET import requests import json +from rest_framework.renderers import JSONRenderer +from rest_framework.parsers import JSONParser from rowsandall_app.rows import handle_uploaded_file from rowers.tasks import handle_makeplot,handle_otwsetpower,handle_sendemailtcx,handle_sendemailcsv from rowers.tasks import handle_sendemail_unrecognized @@ -4445,4 +4447,13 @@ def rower_edit_view(request,message=""): except Rower.DoesNotExist: return HttpResponse("This user doesn't exist") - +class JSONResponse(HttpResponse): + def __init__(self, data, **kwargs): + content = JSONRenderer().render(data) + kwargs['content_type'] = 'application/json' + super(JSONResponse, self).__init__(content, **kwargs) + +def strokedatajson(request,id): + if request.method == 'GET': + datadf,row = dataprep.getrowdata_db(id=id) + return JSONResponse(datadf) From b8643ca89707f63cba0258409c565d57c6848311 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Thu, 24 Nov 2016 00:03:33 +0100 Subject: [PATCH 09/17] some more improvements --- rowers/dataprep.py | 27 ++++++++++++++------------- rowers/interactiveplots.py | 4 ++-- rowers/views.py | 15 ++++++++++++++- 3 files changed, 30 insertions(+), 16 deletions(-) diff --git a/rowers/dataprep.py b/rowers/dataprep.py index 85ccad98..abab09d8 100644 --- a/rowers/dataprep.py +++ b/rowers/dataprep.py @@ -102,17 +102,16 @@ def getrowdata_db(id=0): return data,row -def getsmallrowdata_db(xparam,yparam1,yparam2,ids=[]): - if yparam2 == 'None': - yparam2 = yparam1 +def getsmallrowdata_db(columns,ids=[]): prepmultipledata(ids) - data = read_cols_df_sql(ids,xparam,yparam1,yparam2) - if xparam == 'time': - data['time'] = data['time']/1.0e6 - if yparam1 == 'pace': - data['pace'] = data['pace']/1.0e6 - if yparam2 == 'pace': - data['pace'] = data['pace']/1.0e6 + data = read_cols_df_sql(ids,columns) + for column in columns: + if column == 'time': + data['time'] = data['time']/1.0e6 + if column == 'pace': + data['pace'] = data['pace']/1.0e6 + if column == 'pace': + data['pace'] = data['pace']/1.0e6 return data @@ -143,15 +142,17 @@ def prepmultipledata(ids): res = list(itertools.chain.from_iterable(res.fetchall())) res = list(set(ids)-set(res)) - + print "aap", res for id in res: rowdata,row = getrowdata(id=id) if rowdata: data = dataprep(rowdata.df,id=id,bands=True,barchart=True,otwpower=True) return res -def read_cols_df_sql(ids,col1,col2,col3): - columns = list(set((col1,col2,col3,'distance','spm'))) +def read_cols_df_sql(ids,columns): + columns = list(columns)+['distance','spm'] + columns = [x for x in columns if x != 'None'] + columns = list(set(columns)) cls = '' for column in columns: cls += column+', ' diff --git a/rowers/interactiveplots.py b/rowers/interactiveplots.py index 48f49cae..eeccf2e0 100644 --- a/rowers/interactiveplots.py +++ b/rowers/interactiveplots.py @@ -72,7 +72,7 @@ def interactive_histoall(theworkouts): ids = [w.id for w in theworkouts] - rowdata = dataprep.getsmallrowdata_db('power','power','power',ids=ids) + rowdata = dataprep.getsmallrowdata_db(['power'],ids=ids) histopwr = rowdata['power'].values if len(histopwr) == 0: @@ -569,7 +569,7 @@ def interactive_cum_flex_chart2(theworkouts,promember=0, # datadf = dataprep.smalldataprep(theworkouts,xparam,yparam1,yparam2) ids = [w.id for w in theworkouts] - datadf = dataprep.getsmallrowdata_db(xparam,yparam1,yparam2,ids=ids) + datadf = dataprep.getsmallrowdata_db([xparam,yparam1,yparam2],ids=ids) axlabels = { 'time': 'Time', diff --git a/rowers/views.py b/rowers/views.py index 2e04c363..901f156d 100644 --- a/rowers/views.py +++ b/rowers/views.py @@ -4457,6 +4457,19 @@ class JSONResponse(HttpResponse): super(JSONResponse, self).__init__(content, **kwargs) def strokedatajson(request,id): + try: + row = Workout.objects.get(id=id) + if (checkworkoutuser(request.user,row)==False): + return HttpResponse("Permission error") + except Workout.DoesNotExist: + return HttpResponse("Workout doesn't exist") + try: + id = int(id) + except ValueError: + return HttpRespone("Not a valid workout number") + + if request.method == 'GET': - datadf,row = dataprep.getrowdata_db(id=id) + columns = ['spm','timesecs','hr','pseconds','power','distance'] + datadf = dataprep.getsmallrowdata_db(columns,ids=[id]) return JSONResponse(datadf) From 44b2145f2fb91d15b6588e08ef3dfb8f54641a1a Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Thu, 24 Nov 2016 13:40:29 +0100 Subject: [PATCH 10/17] Oauth2 checks --- rowers/views.py | 3 ++- rowsandall_app/settings.py | 18 ++++++++++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/rowers/views.py b/rowers/views.py index 901f156d..d61d7eba 100644 --- a/rowers/views.py +++ b/rowers/views.py @@ -4455,7 +4455,8 @@ class JSONResponse(HttpResponse): content = JSONRenderer().render(data) kwargs['content_type'] = 'application/json' super(JSONResponse, self).__init__(content, **kwargs) - + +@login_required() def strokedatajson(request,id): try: row = Workout.objects.get(id=id) diff --git a/rowsandall_app/settings.py b/rowsandall_app/settings.py index 6fb6d4b7..d608b6af 100644 --- a/rowsandall_app/settings.py +++ b/rowsandall_app/settings.py @@ -50,13 +50,21 @@ INSTALLED_APPS = [ 'rest_framework', 'rest_framework_swagger', 'oauth2_provider', + 'corsheaders', ] +AUTHENTICATION_BACKENDS = ( + 'oauth2_provider.backends.OAuth2Backend', + # Uncomment following if you want to access the admin + 'django.contrib.auth.backends.ModelBackend', +) + MIDDLEWARE_CLASSES = [ 'django.middleware.csrf.CsrfViewMiddleware', 'django.middleware.security.SecurityMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.locale.LocaleMiddleware', + 'corsheaders.middleware.CorsMiddleware', 'django.middleware.common.CommonMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.auth.middleware.SessionAuthenticationMiddleware', @@ -90,6 +98,8 @@ TEMPLATES = [ ] +#CORS_ORIGIN_ALLOW_ALL = True + WSGI_APPLICATION = 'rowsandall_app.wsgi.application' @@ -234,6 +244,14 @@ EMAIL_USE_TLS = True FORECAST_IO_KEY = "bc8196fbd89f11375c7dfc8aa6323c72" GMAPIKEY = "AIzaSyAgu1w9QSthaGPMLp8y9JedPoMc9sfEgJ8" +# OAUTH2 + +OAUTH2_PROVIDER = { + # this is the list of available scopes + 'SCOPES': {'read': 'Read scope', 'write': 'Write scope', 'groups': 'Access to your groups'} +} + + # REST Framework REST_FRAMEWORK = { From af3396cfee558326492ef5600b7ea04d90c74be6 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Fri, 25 Nov 2016 15:27:46 +0100 Subject: [PATCH 11/17] started with StrokeData POST --- rowers/dataprep.py | 6 ++++-- rowers/serializers.py | 13 ++++++++++++- rowers/urls.py | 2 +- rowers/views.py | 11 ++++++++++- 4 files changed, 27 insertions(+), 5 deletions(-) diff --git a/rowers/dataprep.py b/rowers/dataprep.py index abab09d8..176d62ef 100644 --- a/rowers/dataprep.py +++ b/rowers/dataprep.py @@ -135,16 +135,18 @@ def getrowdata(id=0): return rowdata,row -def prepmultipledata(ids): + +def prepmultipledata(ids,verbose=False): query = sa.text('SELECT DISTINCT workoutid FROM strokedata') with engine.connect() as conn, conn.begin(): res = conn.execute(query) res = list(itertools.chain.from_iterable(res.fetchall())) res = list(set(ids)-set(res)) - print "aap", res for id in res: rowdata,row = getrowdata(id=id) + if verbose: + print id if rowdata: data = dataprep(rowdata.df,id=id,bands=True,barchart=True,otwpower=True) return res diff --git a/rowers/serializers.py b/rowers/serializers.py index 362c7c01..9f7f4620 100644 --- a/rowers/serializers.py +++ b/rowers/serializers.py @@ -40,5 +40,16 @@ class WorkoutSerializer(serializers.HyperlinkedModelSerializer): 'csvfilename', ) +class StrokeDataSerielizer(serializers.Serializer): + workoutid = serializers.IntegerField + strokedata = serializers.JSONField + + def create(self, validated_data): + """ + Create and enter a new set of stroke data into the DB + """ + + # do something + print "fake serializer" + return 1 - diff --git a/rowers/urls.py b/rowers/urls.py index 8ba2a5c0..203b238b 100644 --- a/rowers/urls.py +++ b/rowers/urls.py @@ -40,7 +40,7 @@ urlpatterns = [ url(r'^', include(router.urls)), url(r'^api-docs$', views.schema_view), url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework')), - url(r'^api/(\d+)/strokedata$',views.strokedatajson), + url(r'^api/workouts/(\d+)/strokedata$',views.strokedatajson), url(r'^testbokeh$',views.testbokeh), url(r'^500/$', TemplateView.as_view(template_name='500.html'),name='500'), url(r'^404/$', TemplateView.as_view(template_name='404.html'),name='404'), diff --git a/rowers/views.py b/rowers/views.py index d61d7eba..193f2398 100644 --- a/rowers/views.py +++ b/rowers/views.py @@ -4467,10 +4467,19 @@ def strokedatajson(request,id): try: id = int(id) except ValueError: - return HttpRespone("Not a valid workout number") + return HttpResponse("Not a valid workout number") if request.method == 'GET': columns = ['spm','timesecs','hr','pseconds','power','distance'] datadf = dataprep.getsmallrowdata_db(columns,ids=[id]) return JSONResponse(datadf) + + if request.method == 'POST': + strokedata = request.POST['strokedata'] + # checking/validating and cleaning + + # mangling + + # + return HttpResponse("OK") From 88da49a00eb33e191800363aa9bcf9beaba535ee Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Fri, 25 Nov 2016 16:22:39 +0100 Subject: [PATCH 12/17] Testing seems to hang --- rowers/tests.py | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/rowers/tests.py b/rowers/tests.py index 66f309b8..ffa9b54e 100644 --- a/rowers/tests.py +++ b/rowers/tests.py @@ -38,6 +38,7 @@ class DjangoTestCase(TestCase, MockTestCase): class C2Objects(DjangoTestCase): def test_strokedata(self): + print "C2 strokedata" with open('rowers/testdata/c2stroketestdata.txt','r') as infile: res = json.load(infile) @@ -59,6 +60,7 @@ class C2Objects(DjangoTestCase): class StravaObjects(DjangoTestCase): def test_strokedata(self): + print "STRAVA strokedata" timejson = json.load(open('rowers/testdata/stravatimetestdata.txt','r')) velojson = json.load(open('rowers/testdata/stravavelotestdata.txt','r')) distancejson = json.load(open('rowers/testdata/stravadistancetestdata.txt','r')) @@ -134,6 +136,7 @@ class StravaObjects(DjangoTestCase): class STObjects(DjangoTestCase): def test_strokedata(self): + print "SportTracks strokedata" with open('rowers/testdata/sporttrackstestdata.txt','r') as infile: data = json.load(infile) @@ -149,6 +152,8 @@ class STObjects(DjangoTestCase): class TestErrorPages(TestCase): def test_error_handlers(self): + print "Error Handlers" + self.assertTrue(urls.handler404.endswith('.error404_view')) self.assertTrue(urls.handler500.endswith('.error500_view')) factory = RequestFactory() @@ -173,6 +178,7 @@ class WorkoutTests(TestCase): duration="0:55:00",distance=8000) def test_checkworkoutuser(self): + print "Check Workout User" u = User.objects.get(username='john') r = Rower.objects.get(user=u) w = Workout.objects.get(user=r) @@ -192,6 +198,7 @@ class C2Tests(TestCase): duration="0:55:00",distance=8000) def c2_notokentest(self): + print "C2 No token" thetoken = c2_open(self.u) # should raise C2NoTokenError self.assertRaises(C2NoTokenError) @@ -206,6 +213,7 @@ class DataTest(TestCase): def test_workoutform(self): + print "Workout Form" form_data = { 'name':'test', 'date':'2016-05-01', @@ -219,6 +227,7 @@ class DataTest(TestCase): self.assertTrue(form.is_valid()) def test_rower_form_withvalidnumbers(self): + print "Workout Form with Valid Numbers" form_data = { 'max':192, 'rest':48, @@ -234,6 +243,7 @@ class DataTest(TestCase): def test_rower_form_twoequalvalues(self): + print "Workout Form Error" form_data = { 'max':192, 'rest':48, @@ -248,6 +258,7 @@ class DataTest(TestCase): self.assertFalse(form.is_valid()) def test_rower_form_abovemaxallowed(self): + print "Workout Form Error 2" form_data = { 'max':300, 'rest':48, @@ -262,6 +273,7 @@ class DataTest(TestCase): self.assertFalse(form.is_valid()) def test_rower_form_wrongorder(self): + print "Workout form error 3" form_data = { 'max':192, 'rest':48, @@ -276,6 +288,7 @@ class DataTest(TestCase): self.assertFalse(form.is_valid()) def test_rower_form_belowminalloed(self): + print "Workout form error 4" form_data = { 'max':192, 'rest':2, @@ -290,6 +303,7 @@ class DataTest(TestCase): self.assertFalse(form.is_valid()) def test_rower_form_wrongorder2(self): + print "Workout form error 5" form_data = { 'max':192, 'rest':48, @@ -304,6 +318,7 @@ class DataTest(TestCase): self.assertFalse(form.is_valid()) def test_painsled(self): + print "Test Painsled" filename = 'C:\\python\\rowingdata\\testdata\\testdata.csv' f = open(filename,'rb') file_data = {'file': SimpleUploadedFile(f.name, f.read())} @@ -385,6 +400,7 @@ class ViewTest(TestCase): self.nu = datetime.datetime.now() def test_upload_view_notloggedin(self): + print "Upload not logged in" response = self.c.post('/rowers/workout/upload/',follow=True) @@ -394,6 +410,7 @@ class ViewTest(TestCase): self.assertEqual(response.status_code, 200) def test_upload_view_sled(self): + print "Upload painsled" self.c.login(username='john',password='koeinsloot') filename = 'C:\\python\\rowingdata\\testdata\\testdata.csv' @@ -436,6 +453,7 @@ class ViewTest(TestCase): def test_upload_view_notloggedin(self): + print "Upload not logged in" response = self.c.post('/rowers/workout/upload/',follow=True) @@ -445,6 +463,7 @@ class ViewTest(TestCase): self.assertEqual(response.status_code, 200) def test_upload_view_sled_negativetime(self): + print "Painsled error" self.c.login(username='john',password='koeinsloot') filename = 'C:\\python\\rowingdata\\testdata\\tim.csv' @@ -486,6 +505,7 @@ class ViewTest(TestCase): def test_upload_view_sled_noname(self): + print "Upload no name" self.c.login(username='john',password='koeinsloot') filename = 'C:\\python\\rowingdata\\testdata\\testdata.csv' @@ -519,6 +539,7 @@ class ViewTest(TestCase): def test_upload_view_TCX_CN(self): + print "Upload TCX" self.c.login(username='john',password='koeinsloot') filename = 'C:\\python\\rowingdata\\testdata\\crewnerddata.tcx' @@ -562,6 +583,7 @@ class ViewTest(TestCase): os.remove(f_to_be_deleted) def test_upload_view_TCX_SpeedCoach2(self): + print "Upload TCX 2" self.c.login(username='john',password='koeinsloot') filename = 'C:\\python\\rowingdata\\testdata\\Speedcoach2example.csv' @@ -592,6 +614,7 @@ class ViewTest(TestCase): os.remove(f_to_be_deleted) def test_upload_view_TCX_SpeedCoach2(self): + print "Upload TCX 3" self.c.login(username='john',password='koeinsloot') filename = 'C:\\python\\rowingdata\\testdata\\Speedcoach2example.csv' @@ -624,6 +647,7 @@ class ViewTest(TestCase): def test_upload_view_TCX_SpeedCoach2(self): + print "Upload TCX 3" self.c.login(username='john',password='koeinsloot') filename = 'C:\\python\\rowingdata\\testdata\\speedcoach3test3.csv' @@ -654,6 +678,7 @@ class ViewTest(TestCase): os.remove(f_to_be_deleted) def test_upload_view_TCX_NoHR(self): + print "Upload TCX no HR" self.c.login(username='john',password='koeinsloot') filename = 'C:\\python\\rowingdata\\testdata\\NoHR.tcx' @@ -684,6 +709,7 @@ class ViewTest(TestCase): os.remove(f_to_be_deleted) def test_upload_view_TCX_CN(self): + print "Upload TCX 10" self.c.login(username='john',password='koeinsloot') filename = 'C:\\python\\rowingdata\\testdata\\rowinginmotionexample.tcx' @@ -711,6 +737,7 @@ class ViewTest(TestCase): os.remove(f_to_be_deleted) def test_upload_view_RP(self): + print "Upload RowPro" self.c.login(username='john',password='koeinsloot') filename = 'C:\\python\\rowingdata\\testdata\\RP_testdata.csv' @@ -738,6 +765,7 @@ class ViewTest(TestCase): os.remove(f_to_be_deleted) def test_upload_view_Mystery(self): + print "Upload Mystery" self.c.login(username='john',password='koeinsloot') filename = 'C:\\python\\rowingdata\\testdata\\mystery.csv' @@ -765,6 +793,7 @@ class ViewTest(TestCase): os.remove(f_to_be_deleted) def test_upload_view_RP_interval(self): + print "Upload RowPro Interval" self.c.login(username='john',password='koeinsloot') filename = 'C:\\python\\rowingdata\\testdata\\RP_interval.csv' @@ -792,6 +821,7 @@ class ViewTest(TestCase): os.remove(f_to_be_deleted) def test_upload_view_sled_desktop(self): + print "Upload Painsled Desktop" self.c.login(username='john',password='koeinsloot') filename = 'C:\\python\\rowingdata\\testdata\\painsled_desktop_example.csv' @@ -819,6 +849,7 @@ class ViewTest(TestCase): os.remove(f_to_be_deleted) def test_upload_view_sled_ergdata(self): + print "Upload Ergdata" self.c.login(username='john',password='koeinsloot') filename = 'C:\\python\\rowingdata\\testdata\\ergdata_example.csv' @@ -846,6 +877,7 @@ class ViewTest(TestCase): os.remove(f_to_be_deleted) def test_upload_view_sled_ergstick(self): + print "Upload Ergstick" self.c.login(username='john',password='koeinsloot') filename = 'C:\\python\\rowingdata\\testdata\\ergstick.csv' @@ -922,6 +954,7 @@ class subroutinetests(TestCase): def c2stuff(self): + print "Test C2 Stuff" data = c2stuff.createc2workoutdata(self.w) jsond = json.dumps(data) data = c2stuff.createc2workoutdata_as_splits(w) @@ -967,6 +1000,7 @@ class PlotTests(TestCase): def test_ote_plots(self): + print "Plots" w = self.wote f1 = 'testdata.csv'[:-4] timestr = strftime("%Y%m%d-%H%M%S") @@ -1074,6 +1108,7 @@ class PlotTests(TestCase): os.remove(fullpathimagename) def test_otw_plots(self): + print "Plots 2" w = self.wotw f1 = 'testdata.csv'[:-4] timestr = strftime("%Y%m%d-%H%M%S") From 3ef5c40be4e03bf9b8f6c3229c25aa1379dd31c2 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Fri, 25 Nov 2016 20:31:44 +0100 Subject: [PATCH 13/17] untested POST version of stroke_data API --- rowers/dataprep.py | 8 ++++ rowers/testdata/strokedata.txt | 1 + rowers/tests.py | 3 +- rowers/views.py | 82 +++++++++++++++++++++++++++++++++- 4 files changed, 91 insertions(+), 3 deletions(-) create mode 100644 rowers/testdata/strokedata.txt diff --git a/rowers/dataprep.py b/rowers/dataprep.py index 176d62ef..e5796b76 100644 --- a/rowers/dataprep.py +++ b/rowers/dataprep.py @@ -84,6 +84,14 @@ def rdata(file,rower=rrower()): return res +def testdata(time,distance,pace,spm): + t1 = np.issubdtype(time,np.number) + t2 = np.issubdtype(distance,np.number) + t3 = np.issubdtype(pace,np.number) + t4 = np.issubdtype(spm,np.number) + + return t1 and t2 and t3 and t4 + def getrowdata_db(id=0): data = read_df_sql(id) data['pace'] = data['pace']/1.0e6 diff --git a/rowers/testdata/strokedata.txt b/rowers/testdata/strokedata.txt new file mode 100644 index 00000000..b1f183dc --- /dev/null +++ b/rowers/testdata/strokedata.txt @@ -0,0 +1 @@ +"{\"ergpace\":[191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000,191293118000],\"peakforce\":[0.0,150.1,150.2,154.5,159.2,160.4,157.3,156.5,153.3,170.3,166.3,156.2,156.1,161.2,161.4,158.1,165.8,164.6,161.8,162.4,171.4,170.3,162.1,165.0,168.4,161.4,156.9,171.1,170.4,171.8,169.7,169.1,168.1,159.8,175.7,165.3,163.3,175.9,166.9,165.9,160.8,169.8,169.7,169.7,160.0,174.2,168.3,173.2,171.9,173.2,171.4,176.3,162.4,169.4,173.8,169.0,172.2,174.5,184.3,167.6,166.8,178.1,166.5,175.1,174.4,171.7,177.0,174.5,173.9,175.7,176.5,177.2,179.1,169.0,175.8,181.0,176.5,173.6,177.7,172.4,157.0,172.3,179.7,177.6,176.0,179.9,176.8,175.2,173.9,171.3,172.2,169.0,169.0,163.6,173.3,161.8,175.9,175.5,172.8,173.5,182.5,169.1,175.8,184.7,174.9,164.5,171.3,166.9,170.1,183.1,167.7,167.5,170.7,191.4,184.7,182.7,178.7,181.8,186.6,189.8,182.2,182.2,179.6,177.4,172.9,170.0,171.6,179.1,185.3,176.5,179.9,170.6,169.7,175.3,180.0,181.8,177.4,173.6,188.2,171.6,175.3,182.9,184.1,188.3,177.3,177.6,173.9,176.8,170.7,183.2,172.3,172.7,171.0,176.4,180.1,177.5,169.7,178.0,174.9,182.8,176.2,180.9,175.7,167.7,185.3,174.4,183.3,175.8,182.2,186.3,180.8,174.2,183.5,177.4,173.7,183.2,174.0,170.1,183.9,173.2,170.6,168.3,188.1,163.7,166.8,175.2,180.9,168.0,171.3,176.6,170.3,172.1,176.2,167.9,172.9,174.2,168.6,176.4,174.1,170.3,165.8,185.8,171.0,172.7,179.6,173.4,173.4,175.3,181.0,174.1,184.1,175.9,178.0,185.0,175.4,165.2,189.8,171.0,187.0,174.5,182.9,176.4,179.6,190.6,174.9,178.1,170.6,172.1,175.8,171.2,177.0,173.8,189.4,180.5,166.4,173.5,180.9,186.1,169.1,169.4,179.0,185.1,178.1,178.6,179.8,178.3,186.4,182.1,177.7,176.5,179.6,175.0,179.1,182.8,186.0,175.1,189.4,181.3,183.5,174.4,181.1,185.0,180.1,174.8,175.9,173.8,175.9,178.1,183.5,186.4,192.7,174.9,179.5,184.6,178.0,180.5,180.5,175.6,183.3,178.5,179.6,183.2,182.5,176.0,182.0,169.9,167.1,182.4,178.1,183.0,192.9,194.3,166.1,179.8,169.0,176.3,170.0,171.5,179.3,181.3,181.5,176.7,173.6,179.3,181.7,171.9,172.0,172.8,164.8,176.0,177.4,183.6,166.7,177.3,174.2,171.3,173.5,169.8,174.0,175.4,175.4,181.6,182.2,174.3,170.7,176.8,183.1,176.4,165.7,172.4,169.0,174.7,175.1,174.0,174.1,178.9,164.0,175.1,176.1,176.5,172.8,173.1,169.1,182.0,166.5,175.8,180.7,176.5,177.1,168.5,169.9,168.3,173.8,178.7,178.0,173.3,176.9,168.4,171.7,181.0,172.5,174.2,167.4,160.5,173.1,177.8,173.7,203.5,176.5,161.8,181.3,166.2,170.7,169.9,174.2,188.3,178.7,175.3,171.5,181.6,170.1,174.9,180.3,182.4,166.1,168.1,167.6,181.3,166.2,171.3,173.6,179.3,169.2,185.7,177.9,167.9,165.9,183.9,168.7,168.7,172.9,173.2,176.0,191.5,174.7,175.8,180.9,180.9,174.1,174.1,171.2,171.6,155.6,151.3,161.9,170.7,172.7,168.5,169.3,166.7,167.1,159.3,178.3,169.3,169.8,161.8,175.8,166.2,179.7,164.0,161.4,177.3,172.7,159.3,162.9,171.7,188.4,182.0,174.7,167.9,179.5,170.3,171.4,190.2,169.0,184.1,166.3,168.7,173.6,167.2,161.3,170.1,162.9,164.0,168.7,162.2,173.5,166.8,181.7,166.0,165.3,182.6,172.6,168.9,174.1,169.2,177.9,182.6,176.5,174.9,174.9,177.7,181.3,168.7,178.0,173.2,170.6,177.1,177.8,173.7,177.4,182.0,172.0,186.6,174.4,175.1,171.5,183.0,177.4,168.3,173.6,181.3,177.5,172.6,172.5,167.5,170.1,185.2,175.9,173.6,175.7,172.7,171.7,176.6,168.0,172.5,183.7,185.1,172.2,169.8,182.9,172.4,184.3,166.7,183.1,164.7,179.1,167.1,179.0,184.0,180.7,173.0,175.4,174.3,173.2,178.5,176.4,172.2,178.7,166.2,166.2,173.6,172.1,179.8,194.3,167.0,173.4,194.2,179.4,171.7,187.2,173.4,170.9,165.2,169.7,169.4,171.5,166.4,164.9,164.9,172.4,169.0,170.7,170.7,173.6,171.1,173.0,173.0,180.1,175.7,166.8,168.9,173.5,172.0,169.8,171.6,168.4,169.1,174.2,172.3,175.2,173.1,173.3,168.9,181.7,171.3,180.2,176.8,176.7,166.0,176.8,188.3,175.5,169.8,177.7,185.5,165.7,175.2,180.2,177.5,174.5,180.7,176.8,166.4,168.3,167.5,172.2,174.1,162.3,176.0,170.9,166.6,174.5,173.3,173.1,172.4,169.2,174.6,184.3,184.3,181.3,185.2,179.2,180.1,193.1,177.3,181.2,173.0,183.9,181.1,178.4,181.2,177.5,185.1,177.9,177.9,178.5,184.3,180.5,177.6,182.4,170.9,184.5,177.4,181.7,182.7,178.0,172.9,184.3,176.5,172.0,181.7,175.6,179.5,183.7,179.7,172.6,188.7,169.0,183.8,182.2,172.9,173.7,157.4,174.6,165.8,158.8,172.8,168.8,176.4,187.3,177.6,177.3,170.6,181.7,180.0,177.2,166.9,170.5,170.3,174.8,166.8,177.2,185.7,178.3,180.8,183.4,175.1,173.0,169.4,172.7,176.4,170.5,168.5,175.1,163.6,170.4,170.5,180.0,173.6,173.6,185.0,170.5,178.7,179.7,175.6,176.0,170.7,173.7,176.2,176.9,173.5,173.3,169.9,180.4,182.5,169.4,188.1,179.5,180.6,178.7,174.8,176.1,174.0,176.1,180.0,176.6,182.1,181.6,156.8,167.6,160.7,171.2,163.5,165.4,162.7,165.6,163.0,160.3,165.0,169.0,166.3,175.1,167.4,164.8,167.4,162.4,163.9,162.1,163.9,172.9,172.9,169.9,167.4,167.3,172.8,174.0,171.9,172.7,176.9,183.6,176.3,168.8,174.1,179.7,179.7,177.4,177.4,177.7,184.6,166.3,170.2,177.0,170.3,175.7,174.1,169.2,170.8,160.4,186.9,172.4,171.2,160.7,176.8,178.2,173.2,167.9,174.4,176.2,176.2,177.6,174.4,168.7,174.4,168.6,173.0,180.9,173.9,168.9,172.2,172.6,175.8,175.3,165.1,168.5,171.9,161.8,172.2,178.3,172.8,178.7,170.2,174.4,172.7,167.7,168.1,183.6,172.3,172.4,171.4,182.0,176.3,175.3,176.8,174.4,185.6,186.2,172.7,175.8,193.7,173.3,173.0,175.3,168.6,181.2,171.5,175.0,175.0,175.1,180.6,177.8,170.4,173.3,175.3,179.9,172.4,190.1,184.6,177.7,174.3,181.5,182.6,182.0,167.6,163.3,163.5,188.2,64.1,42.6,24.7,45.2,80.2,183.2,187.5,161.6,172.2,174.4,160.7,156.3,173.9,169.2,182.1,173.2,171.1,168.3,172.7,182.1,181.7,174.2,169.7,173.2,169.1,182.5,178.6,170.5,174.0,171.8,178.9,170.0,172.8,175.6,170.5,181.6,179.1,170.4,182.3,169.6,178.1,169.7,170.0,170.0,168.3,181.5,179.7,187.0,181.2,182.3,178.5,169.9,182.2,181.4,182.5,174.0,185.1,181.9,187.5,174.0,180.1,178.2,177.8,181.7,175.5,175.4,176.3,174.8,176.7,180.7,184.7,179.6,181.8,175.8,177.4,180.6,177.2,175.6,174.8,176.0,182.5,171.0,178.4,170.9,174.7,174.3,166.9,173.5,179.5,180.0,181.1,178.8,183.8,176.0,174.1,174.4,184.9,178.2,173.8,169.9,178.7,170.0,169.1,171.9,174.0,175.6,162.1,185.9,182.6,165.6,172.8,164.5,180.4,171.9,182.2,175.7,186.1,173.9,180.5,190.0,173.8,181.1,187.5,184.9,182.1,188.4,178.4,174.8,175.2,182.6,187.5,169.3,176.2,180.3,181.4,182.5,184.7,184.7,186.1,183.7,183.5,175.9,190.8,175.4,174.7,179.1,180.0,172.4,183.5,185.7,172.3,182.6,182.7,180.8,178.7,178.7,173.8,178.7,186.5,181.0,174.2,172.8,165.6,183.7,165.8,171.4,169.8,169.8,177.3,167.3,178.5,172.2,176.9,180.5,179.2,179.2,174.8,183.5,171.6,182.4,183.8,177.3,177.5,175.9,177.6,172.4,172.1,182.2,175.5,180.9,185.9,176.8,181.1,178.6,177.2,179.6,187.7,179.3,188.8,178.0,177.3,184.3,186.2,186.5,172.4,190.1,180.8,183.7,177.8,178.4,164.1,117.3,29.3],\"workoutid\":[523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523],\"averageforce\":[0.0,90.5,93.2,97.1,96.1,100.4,99.6,95.2,94.2,99.6,96.9,95.5,94.9,91.8,95.1,97.2,98.7,97.3,92.0,96.5,99.2,99.9,92.7,99.2,91.9,93.0,95.4,96.2,97.8,97.9,99.1,98.2,99.4,91.0,99.0,96.4,94.4,96.8,93.3,98.0,94.3,100.0,95.0,95.0,94.4,97.4,94.8,101.0,100.3,101.6,97.6,100.2,98.3,96.2,97.0,101.2,97.8,99.1,98.9,98.8,96.8,100.4,96.3,106.8,97.7,95.6,96.5,99.2,97.9,101.7,96.1,98.5,97.4,96.8,97.7,101.1,96.0,102.7,96.9,101.9,90.7,95.5,97.1,94.2,98.1,94.7,97.8,104.7,95.4,99.1,103.2,96.7,96.7,103.3,102.7,94.4,96.3,97.6,103.2,95.1,104.8,95.6,98.4,101.7,100.4,91.7,102.6,92.2,97.2,99.2,95.5,96.8,98.0,105.6,103.6,101.4,103.9,102.6,106.7,111.0,103.5,103.5,101.9,97.5,101.4,97.6,100.3,101.5,101.4,99.8,99.6,96.8,97.0,97.4,96.5,101.0,96.4,100.0,103.8,97.7,98.3,102.4,101.3,101.6,101.6,103.1,98.2,100.0,99.4,103.0,95.2,98.0,99.4,99.9,99.5,102.7,97.7,102.7,98.2,103.7,100.0,104.2,100.7,94.9,101.1,96.0,106.4,96.9,101.4,102.8,97.0,97.5,102.2,97.6,103.5,102.8,100.1,95.9,101.5,97.1,97.6,100.8,107.9,98.1,96.0,97.8,96.7,94.1,96.6,98.8,95.4,97.5,97.6,97.1,97.6,96.7,94.0,100.7,97.4,96.8,96.9,99.8,96.9,100.0,98.5,96.7,101.7,92.5,100.8,101.4,99.8,100.1,99.2,101.8,98.9,98.2,103.5,96.4,98.7,97.8,107.4,95.3,96.7,99.6,98.5,98.2,95.8,99.0,98.7,94.2,95.9,98.5,103.9,98.9,94.9,95.6,98.6,101.8,97.5,99.6,97.9,100.7,95.1,99.3,100.9,98.6,100.0,101.3,98.0,100.7,99.4,100.6,97.4,102.6,100.8,97.0,102.9,100.0,103.5,100.9,100.4,99.0,96.7,97.0,97.9,98.8,97.5,98.5,99.7,99.7,97.7,95.7,100.8,99.0,99.5,103.6,102.6,97.9,101.0,100.3,97.4,99.9,94.9,101.0,99.7,93.8,96.6,98.8,100.2,102.6,107.8,105.0,99.1,98.7,93.5,97.1,97.2,97.1,98.9,102.9,99.2,99.9,96.2,97.1,96.4,98.7,95.6,93.3,90.8,96.7,94.8,96.8,93.0,96.4,98.5,98.1,98.9,94.5,94.7,97.5,97.5,101.0,99.1,98.4,91.1,96.1,100.0,94.5,95.3,94.9,97.2,96.4,96.3,97.0,92.2,98.7,92.1,93.0,95.5,97.9,96.2,97.0,94.8,96.2,94.0,97.9,97.5,96.2,93.1,91.2,97.2,95.3,98.9,96.4,97.2,99.3,97.8,95.7,96.0,101.8,95.6,94.9,95.5,92.9,94.9,97.1,94.4,106.3,98.0,91.6,93.6,93.4,94.0,94.5,93.2,98.7,94.7,101.3,93.8,98.3,93.9,97.6,95.3,96.2,96.2,95.4,93.4,97.6,92.1,93.1,96.0,98.5,91.5,97.2,96.7,96.5,95.9,102.9,97.6,97.6,94.4,95.7,97.4,99.4,98.3,101.2,99.2,99.2,100.4,100.4,97.1,98.6,83.3,88.5,91.6,97.2,92.6,93.6,91.7,95.1,91.6,90.6,98.3,90.5,93.4,91.2,94.5,92.3,100.4,90.2,88.8,97.2,92.0,90.0,89.7,93.9,96.5,94.5,95.8,95.8,98.9,92.5,95.1,95.5,91.2,95.3,89.5,92.4,95.0,91.6,90.2,89.5,88.9,90.8,95.1,91.8,93.2,90.1,93.2,90.9,90.7,97.0,92.7,92.9,95.1,92.1,94.3,96.6,97.6,94.8,94.8,97.1,97.3,93.4,98.7,95.6,91.2,94.9,94.4,95.5,94.5,97.6,94.2,99.3,93.4,94.8,95.1,96.0,97.4,90.9,93.1,96.5,97.7,91.3,96.8,96.6,96.9,97.9,95.3,94.4,95.5,95.1,94.7,96.1,92.1,97.2,99.3,98.9,95.2,96.6,99.1,96.6,96.0,96.8,96.1,94.2,98.6,96.4,96.5,97.4,97.5,98.0,94.3,94.0,97.4,95.3,97.5,95.1,98.1,97.3,97.3,96.7,92.9,93.7,101.8,93.1,95.7,101.1,97.4,98.7,101.8,94.0,95.5,92.0,93.2,92.1,94.9,95.7,93.4,93.4,97.3,94.7,94.8,94.8,93.8,94.7,92.5,92.5,96.8,99.8,95.4,93.6,92.1,96.3,95.1,97.6,95.6,92.6,93.7,98.8,98.4,99.6,93.9,97.9,99.1,99.1,98.8,96.3,95.7,92.4,100.7,100.6,96.2,99.1,97.1,104.1,95.5,99.1,100.7,96.6,100.7,99.6,102.0,95.1,97.7,94.1,92.9,95.2,90.6,93.0,96.0,91.1,94.5,97.8,97.0,98.3,93.8,99.5,101.3,101.3,97.2,102.6,95.6,100.9,106.1,98.2,101.3,101.4,106.4,98.6,101.2,102.2,101.6,102.1,94.8,94.8,100.0,99.2,100.6,99.1,101.1,94.0,99.5,97.5,98.9,97.5,99.5,99.0,100.7,97.3,96.8,99.7,97.2,98.5,99.6,100.5,95.4,100.6,96.5,100.2,100.3,95.1,96.3,87.0,95.7,88.0,88.1,93.9,95.0,97.7,98.2,97.5,97.4,94.2,96.7,98.6,98.2,93.1,92.0,98.4,97.5,92.0,98.7,100.5,98.4,98.9,96.7,95.9,97.4,91.6,96.3,95.4,93.8,94.3,96.0,92.6,96.6,95.8,98.6,94.7,94.7,102.1,97.4,98.9,102.4,96.0,97.4,94.2,97.5,96.6,96.1,97.0,96.7,94.7,101.6,100.3,96.3,103.8,100.2,101.8,100.2,99.1,97.8,98.0,99.0,98.5,100.3,100.7,104.1,87.3,92.6,87.8,92.9,91.1,90.0,87.8,89.1,88.4,89.9,91.1,93.9,88.1,94.5,92.2,90.0,90.6,90.9,90.6,88.8,92.0,96.0,96.0,93.2,96.9,91.7,93.0,93.0,96.8,89.6,98.2,96.1,100.1,96.9,96.5,97.2,97.2,99.1,99.1,99.8,99.5,96.8,96.0,96.5,94.1,98.6,96.2,91.8,91.0,90.2,97.6,92.8,93.8,90.9,100.2,99.4,95.9,92.6,95.2,92.6,92.6,92.7,95.3,90.2,98.0,90.7,90.5,95.8,92.0,92.9,95.2,96.8,95.0,95.4,94.5,95.3,92.8,92.9,96.6,97.3,94.2,97.5,98.9,96.9,93.8,93.2,94.2,98.4,94.7,98.4,95.3,98.1,97.0,94.5,94.2,97.6,98.3,94.4,96.6,93.8,101.9,98.5,90.5,97.9,93.2,99.8,93.4,101.3,101.3,96.1,103.2,98.1,94.6,97.2,97.2,99.7,92.6,100.1,98.2,99.0,93.8,96.3,99.6,98.8,92.0,90.1,89.7,104.5,42.4,28.1,15.8,28.0,53.0,110.0,104.3,90.9,96.6,98.3,94.1,91.4,96.8,97.9,104.0,99.0,94.2,92.6,97.2,100.4,96.2,98.6,95.9,94.8,93.2,101.9,97.6,93.2,95.3,93.3,94.5,90.6,94.2,95.7,93.5,99.6,97.0,97.2,100.0,93.6,102.6,93.4,94.5,97.4,93.5,97.2,98.3,102.0,96.8,96.2,97.1,98.2,99.7,99.5,99.6,94.8,101.7,99.1,95.1,96.5,99.6,98.6,99.0,100.9,95.5,97.4,95.8,97.2,98.0,98.5,97.9,99.9,98.8,98.3,95.0,97.4,97.0,97.9,99.0,98.6,100.0,95.8,96.4,95.6,96.1,96.7,94.2,95.5,95.6,102.0,99.2,101.2,98.3,99.8,95.5,94.4,100.6,94.9,101.2,96.1,98.8,97.1,93.2,95.0,92.8,95.5,88.9,105.0,104.5,91.1,98.0,95.0,96.0,95.8,99.7,97.3,101.1,96.1,97.5,102.5,98.7,100.2,99.2,101.0,98.1,102.1,101.1,97.8,100.6,98.3,106.8,97.9,99.5,99.3,101.0,101.9,102.8,102.8,99.7,102.8,102.3,101.3,108.0,102.2,101.5,101.1,96.5,95.3,103.2,105.7,99.7,103.6,99.0,101.8,101.8,101.8,99.7,101.7,104.4,101.5,96.6,98.1,95.4,104.1,93.1,97.6,97.5,97.5,97.1,88.9,95.2,95.4,99.3,97.6,99.8,99.8,96.7,98.8,97.7,100.4,99.4,101.4,100.9,99.3,101.0,98.5,94.2,98.9,98.5,98.7,100.5,97.8,100.2,102.0,99.8,100.4,103.7,98.9,102.9,100.8,99.1,102.4,105.5,96.7,96.8,106.5,104.0,110.1,102.2,101.4,90.8,71.1,18.8],\"hr_at\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149,150,150,150,149,149,149,149,149,0,0,0,0,0,149,149,150,150,150,151,151,151,151,152,152,152,152,151,152,151,150,150,149,149,149,149,149,0,0,149,149,150,150,151,151,150,150,150,151,151,151,151,152,152,153,153,153,153,153,153,153,153,154,153,153,153,152,152,152,153,153,154,154,154,154,154,154,154,153,153,153,152,151,150,150,150,151,151,150,151,150,150,150,150,150,150,151,151,151,151,151,151,150,150,150,150,151,152,152,152,152,152,151,152,151,151,151,150,150,150,151,152,152,153,153,153,154,154,154,155,155,155,155,155,156,155,155,155,155,155,155,154,153,154,154,155,156,157,157,158,158,159,158,158,157,157,157,157,157,157,157,157,156,155,154,153,153,152,152,152,152,152,152,152,153,154,156,156,156,156,156,157,157,157,157,156,156,155,154,154,154,153,153,153,152,153,153,153,153,154,154,154,153,153,153,153,152,153,153,154,154,156,156,157,158,158,158,157,157,156,157,157,157,157,157,157,157,157,157,158,158,159,159,158,158,158,157,157,157,157,157,158,158,157,157,156,156,156,156,155,155,156,156,156,157,158,159,159,159,159,159,159,159,159,159,160,159,160,160,159,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149,149,149,149,149,149,149,149,150,150,151,152,152,152,152,153,153,154,154,154,153,153,152,153,153,153,152,153,153,153,153,153,152,153,154,154,155,155,155,155,155,156,156,156,157,157,157,158,158,158,158,157,158,157,157,157,157,157,157,157,157,158,158,159,159,159,159,159,158,158,158,158,158,158,158,158,158,158,159,159,160,160,160,160,159,159,160,160,160,160,0,0,0,0,0,0,0,0,0,160,160,160,160,0,160,160,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149,150,152,154,155,157,158,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"hr_an\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,168,168,169,168,168,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,168,168,169,169,169,169,169,169,169,169,169,169,170,169,170,170,170,170,170,170,170,169,169,169,169,169,169,169,169,168,169,168,169,169,169,169,169,169,169,169,169,169,169,169,169,169,168,168,168,168,168,169,169,169,169,169,168,168,168,168,168,168,169,168,169,169,168,168,169,169,169,169,169,169,170,169,169,169,170,169,169,170,170,169,170,170,170,170,170,169,169,169,169,169,169,169,170,170,170,170,171,170,171,171,170,170,170,170,169,169,169,168,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,168,0,168,168,0,0,0,0,0,0,0,0,0,168,168,169,169,169,169,169,168,168,168,168,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,0,168,168,168,168,168,168,168,168,168,168,168,168,168,0,0,0,0,0,0,0,0,0,0,0,0,0,168,168,168,168,168,168,168,168,168,168,168,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,168,169,169,169,168,168,169,168,168,168,0,0,168,168,169,169,169,170,169,169,169,169,169,169,169,169,170,170,170,170,170,170,170,170,169,169,170,171,171,172,172,171,171,172,172,172,172,172,172,172,172,171,171,171,171,171,171,171,170,170,170,170,170,170,170,171,171,170,170,171,171,171,171,170,171,171,171,171,170,170,169],\"hr_tr\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,161,161,161,161,161,162,161,161,161,0,0,0,0,161,0,0,0,161,161,162,163,163,163,163,163,163,163,163,163,163,162,162,162,162,163,163,163,164,164,164,165,165,165,165,165,164,164,164,164,164,165,165,164,165,165,165,165,165,165,165,165,165,165,166,166,166,166,166,167,166,167,167,0,0,0,0,0,0,167,0,167,167,166,166,165,165,165,165,165,166,166,166,166,167,167,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,167,167,167,167,167,167,167,167,167,166,166,166,166,166,166,166,166,167,167,167,167,0,0,167,0,0,167,167,167,166,166,166,167,167,167,0,0,0,0,0,0,0,0,0,0,0,0,167,167,166,166,166,166,167,167,167,167,167,167,167,167,0,167,167,167,167,167,167,167,167,167,167,167,167,166,167,167,167,0,167,0,0,0,0,0,0,0,0,0,0,0,0,0,167,166,165,165,166,166,166,166,166,166,166,167,167,0,0,0,0,0,0,0,0,0,0,0,0,167,167,166,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,161,161,161,162,162,162,162,161,161,161,161,161,161,161,161,162,161,161,161,0,0,161,161,161,162,162,162,163,163,163,163,164,164,165,165,165,165,165,164,164,165,165,165,165,165,165,165,165,165,165,165,165,166,165,165,166,165,165,166,165,165,166,166,166,166,166,167,167,167,0,0,167,167,167,167,167,166,166,166,167,167,167,166,167,166,167,166,166,166,166,166,166,166,166,166,166,166,166,165,166,166,166,166,167,167,167,0,0,0,0,0,0,0,0,0,0,0,167,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"fergpace\":[\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\",\"03:11.2\"],\"spm\":[1.357142857142814,17.33333333333335,23.047619047619087,22.33333333333335,19.666666666666686,19.190476190476208,18.666666666666686,18.809523809523824,18.52380952380954,18.428571428571445,18.52380952380954,18.809523809523824,18.857142857142875,19.095238095238113,19.095238095238113,18.95238095238097,18.666666666666686,18.33333333333335,18.14285714285716,17.76190476190478,17.71428571428573,17.666666666666686,17.71428571428573,17.857142857142875,18.095238095238113,18.000000000000018,17.904761904761923,18.14285714285716,18.285714285714302,18.33333333333335,18.285714285714302,18.047619047619065,18.047619047619065,18.285714285714302,18.33333333333335,18.285714285714302,18.14285714285716,17.904761904761923,18.000000000000018,18.000000000000018,18.000000000000018,18.000000000000018,18.000000000000018,17.904761904761923,18.047619047619065,18.33333333333335,18.76190476190478,18.809523809523828,18.809523809523824,18.666666666666686,18.71428571428573,18.857142857142875,19.095238095238113,19.000000000000018,19.000000000000018,19.000000000000018,19.000000000000018,19.000000000000018,19.095238095238113,18.857142857142875,18.71428571428573,18.666666666666686,18.71428571428573,18.95238095238097,18.95238095238097,18.809523809523824,18.52380952380954,18.52380952380954,18.380952380952397,18.52380952380954,18.52380952380954,18.809523809523824,18.95238095238097,19.047619047619065,18.57142857142859,18.380952380952397,18.380952380952397,18.57142857142859,18.95238095238097,19.000000000000018,19.14285714285716,19.19047619047621,19.476190476190496,19.57142857142859,19.476190476190496,19.19047619047621,19.14285714285716,18.904761904761923,19.000000000000018,19.000000000000018,20.904761904761923,15.761904761904779,13.761904761904777,13.619047619047633,14.809523809523824,17.76190476190478,21.95238095238097,19.14285714285716,19.619047619047638,19.666666666666686,19.666666666666686,19.714285714285733,19.3809523809524,19.095238095238116,19.285714285714302,19.095238095238116,19.476190476190496,19.57142857142859,19.476190476190496,19.095238095238116,19.285714285714302,19.19047619047621,19.33333333333335,19.19047619047621,19.285714285714302,19.19047619047621,19.33333333333335,19.285714285714306,19.14285714285716,18.809523809523828,19.14285714285716,19.19047619047621,19.476190476190496,19.476190476190496,19.619047619047635,19.3809523809524,19.52380952380954,19.619047619047638,19.666666666666686,19.57142857142859,19.76190476190478,19.714285714285733,19.95238095238097,20.047619047619065,19.57142857142859,19.3809523809524,19.476190476190496,19.52380952380954,19.52380952380954,19.476190476190496,19.3809523809524,19.57142857142859,19.95238095238097,20.095238095238116,19.904761904761923,20.14285714285716,20.285714285714306,20.333333333333353,20.285714285714306,20.14285714285716,19.904761904761923,20.00000000000002,19.904761904761923,20.14285714285716,20.285714285714306,20.333333333333353,20.285714285714306,20.14285714285716,19.904761904761923,20.00000000000002,20.00000000000002,20.00000000000002,20.00000000000002,20.00000000000002,20.00000000000002,20.095238095238116,19.95238095238097,19.57142857142859,19.3809523809524,19.3809523809524,19.476190476190496,20.095238095238116,20.3809523809524,20.333333333333353,20.285714285714306,20.047619047619065,19.95238095238097,20.428571428571445,20.619047619047638,20.523809523809543,20.476190476190496,20.3809523809524,20.666666666666686,20.80952380952383,20.809523809523828,20.666666666666686,20.714285714285733,20.857142857142875,21.095238095238116,21.00000000000002,21.00000000000002,21.00000000000002,21.00000000000002,21.00000000000002,21.00000000000002,21.00000000000002,21.00000000000002,21.00000000000002,21.00000000000002,21.00000000000002,21.00000000000002,21.00000000000002,21.00000000000002,21.00000000000002,21.095238095238116,21.047619047619065,20.42857142857145,20.19047619047621,20.000000000000018,20.047619047619065,20.095238095238113,19.904761904761923,19.14285714285716,19.190476190476208,19.095238095238116,19.3809523809524,19.619047619047638,19.904761904761923,19.809523809523828,19.666666666666686,19.3809523809524,19.476190476190496,19.52380952380954,19.52380952380954,19.476190476190496,19.476190476190496,19.52380952380954,19.52380952380954,19.476190476190496,19.476190476190496,19.428571428571445,19.76190476190478,19.714285714285733,19.285714285714306,19.33333333333335,19.428571428571445,19.14285714285716,19.33333333333335,19.476190476190496,19.57142857142859,19.95238095238097,20.19047619047621,19.857142857142875,19.714285714285733,19.666666666666686,19.714285714285733,19.857142857142875,20.095238095238116,20.00000000000002,20.00000000000002,20.00000000000002,20.095238095238116,19.857142857142875,19.809523809523828,19.523809523809543,19.52380952380954,19.3809523809524,19.619047619047635,19.476190476190496,19.3809523809524,19.238095238095255,19.476190476190496,19.666666666666686,19.904761904761923,19.666666666666686,19.476190476190496,19.33333333333335,19.14285714285716,19.428571428571445,19.33333333333335,19.3809523809524,19.476190476190496,19.52380952380954,19.619047619047638,19.666666666666686,19.57142857142859,19.857142857142875,19.57142857142859,19.57142857142859,19.76190476190478,19.714285714285733,20.047619047619065,19.809523809523828,19.33333333333335,19.476190476190496,19.714285714285733,20.047619047619065,20.476190476190496,20.047619047619065,20.047619047619065,20.285714285714306,20.333333333333353,20.285714285714306,20.14285714285716,19.904761904761923,20.00000000000002,20.00000000000002,20.00000000000002,20.00000000000002,20.00000000000002,20.00000000000002,20.00000000000002,20.00000000000002,20.00000000000002,20.00000000000002,20.00000000000002,20.00000000000002,20.00000000000002,20.00000000000002,20.00000000000002,20.00000000000002,20.00000000000002,20.00000000000002,20.00000000000002,19.904761904761923,20.047619047619065,20.33333333333335,20.76190476190478,20.904761904761926,20.76190476190478,20.238095238095255,20.095238095238116,20.238095238095255,20.76190476190478,20.904761904761926,20.76190476190478,20.238095238095255,20.095238095238116,20.33333333333335,20.619047619047638,20.619047619047638,20.33333333333335,20.19047619047621,20.190476190476208,20.333333333333353,20.190476190476208,20.19047619047621,20.238095238095255,20.666666666666686,20.95238095238097,21.095238095238116,21.00000000000002,21.00000000000002,21.00000000000002,21.095238095238116,20.95238095238097,20.57142857142859,20.285714285714306,20.523809523809543,20.857142857142875,21.285714285714306,21.3809523809524,21.14285714285716,20.904761904761926,21.00000000000002,21.00000000000002,21.00000000000002,21.00000000000002,21.00000000000002,21.00000000000002,21.00000000000002,21.00000000000002,21.00000000000002,21.00000000000002,20.904761904761926,21.14285714285716,21.285714285714306,21.333333333333357,21.285714285714306,21.14285714285716,20.904761904761926,21.00000000000002,21.00000000000002,21.00000000000002,21.00000000000002,21.00000000000002,21.095238095238116,20.857142857142875,20.714285714285733,20.666666666666686,20.714285714285733,20.76190476190478,21.238095238095255,21.285714285714306,21.333333333333357,21.285714285714306,21.14285714285716,20.904761904761926,20.904761904761926,20.95238095238097,21.57142857142859,21.80952380952383,22.00000000000002,22.142857142857164,21.714285714285737,21.476190476190496,21.76190476190478,21.714285714285737,21.857142857142875,22.19047619047621,21.857142857142875,21.714285714285737,21.666666666666686,21.80952380952383,21.714285714285737,21.80952380952383,21.666666666666686,21.714285714285737,21.857142857142875,22.19047619047621,24.047619047619065,18.23809523809526,15.476190476190492,14.666666666666682,15.571428571428589,18.3809523809524,22.857142857142875,19.666666666666686,20.047619047619065,20.190476190476208,20.476190476190496,20.57142857142859,20.476190476190496,20.190476190476208,20.14285714285716,19.904761904761923,20.00000000000002,19.904761904761923,20.047619047619065,20.428571428571445,20.619047619047638,20.523809523809543,20.57142857142859,20.238095238095255,20.3809523809524,20.57142857142859,20.476190476190496,20.190476190476208,20.14285714285716,19.904761904761923,20.00000000000002,20.00000000000002,20.00000000000002,20.00000000000002,19.904761904761923,20.14285714285716,20.190476190476208,20.476190476190496,20.57142857142859,20.476190476190496,20.190476190476208,20.14285714285716,19.904761904761923,20.00000000000002,20.00000000000002,20.00000000000002,20.00000000000002,20.00000000000002,20.00000000000002,20.00000000000002,20.00000000000002,20.00000000000002,20.00000000000002,20.00000000000002,19.904761904761923,20.14285714285716,20.285714285714306,20.23809523809526,20.428571428571445,20.428571428571445,20.23809523809526,20.285714285714306,20.14285714285716,19.904761904761923,20.00000000000002,20.00000000000002,20.00000000000002,20.00000000000002,20.00000000000002,19.904761904761923,20.14285714285716,20.285714285714306,20.333333333333353,20.190476190476208,20.285714285714306,20.190476190476208,20.23809523809526,20.428571428571445,20.33333333333335,20.3809523809524,20.57142857142859,20.3809523809524,20.33333333333335,20.33333333333335,20.285714285714306,20.714285714285733,20.76190476190478,20.523809523809543,20.428571428571445,19.95238095238097,20.047619047619065,20.285714285714306,20.23809523809526,20.33333333333335,20.57142857142859,20.42857142857145,20.666666666666686,20.76190476190478,20.714285714285733,20.857142857142875,21.00000000000002,21.14285714285716,21.285714285714306,21.333333333333357,21.19047619047621,21.285714285714306,21.19047619047621,21.238095238095262,21.42857142857145,21.42857142857145,21.238095238095262,21.285714285714306,21.14285714285716,20.904761904761926,21.00000000000002,20.904761904761926,21.047619047619065,21.42857142857145,21.61904761904764,21.523809523809547,21.57142857142859,21.333333333333353,21.238095238095262,21.285714285714306,21.14285714285716,20.904761904761926,20.904761904761926,21.047619047619065,21.333333333333353,21.66666666666669,21.857142857142875,22.23809523809526,22.285714285714306,22.333333333333353,22.285714285714306,22.142857142857164,21.904761904761926,22.00000000000002,22.00000000000002,22.00000000000002,22.00000000000002,21.904761904761926,22.04761904761907,22.428571428571452,22.61904761904764,22.61904761904764,22.428571428571452,22.04761904761907,21.80952380952383,22.142857142857164,22.285714285714306,22.333333333333353,22.285714285714306,22.142857142857164,21.904761904761926,22.00000000000002,22.00000000000002,22.00000000000002,22.00000000000002,22.00000000000002,22.00000000000002,22.00000000000002,22.00000000000002,22.00000000000002,22.00000000000002,22.00000000000002,22.00000000000002,21.904761904761926,22.142857142857164,22.19047619047621,22.3809523809524,22.61904761904764,22.80952380952383,22.952380952380974,23.04761904761907,22.57142857142859,22.476190476190496,22.333333333333357,22.23809523809526,22.285714285714306,22.142857142857164,21.904761904761926,21.904761904761926,22.04761904761907,22.333333333333357,22.76190476190478,22.904761904761926,22.76190476190478,22.333333333333357,22.04761904761907,21.80952380952383,22.04761904761907,22.428571428571452,22.61904761904764,22.61904761904764,22.333333333333357,22.095238095238116,22.333333333333357,22.523809523809547,22.76190476190478,22.61904761904764,22.42857142857145,22.523809523809547,22.80952380952383,22.85714285714288,23.095238095238116,23.00000000000002,23.00000000000002,22.904761904761926,23.238095238095262,23.142857142857164,22.952380952380977,23.00000000000002,23.28571428571431,23.380952380952404,23.714285714285737,23.428571428571452,23.04761904761907,22.904761904761926,23.00000000000002,23.095238095238116,22.85714285714288,22.714285714285737,22.66666666666669,22.80952380952383,22.714285714285737,22.80952380952383,22.66666666666669,22.714285714285737,22.85714285714288,23.095238095238116,23.00000000000002,23.00000000000002,23.095238095238116,22.85714285714288,22.714285714285737,22.66666666666669,22.714285714285737,22.85714285714288,23.095238095238116,23.095238095238116,23.04761904761907,22.61904761904764,22.00000000000002,21.19047619047621,21.23809523809526,21.476190476190496,21.57142857142859,21.714285714285733,21.57142857142859,21.142857142857164,21.285714285714306,21.047619047619065,21.047619047619065,21.19047619047621,21.3809523809524,21.619047619047638,21.80952380952383,21.857142857142875,22.095238095238116,22.00000000000002,22.00000000000002,22.00000000000002,22.00000000000002,22.00000000000002,22.00000000000002,22.00000000000002,22.00000000000002,22.00000000000002,22.00000000000002,21.904761904761926,22.04761904761907,22.428571428571452,22.523809523809547,22.666666666666686,22.85714285714288,22.57142857142859,22.57142857142859,22.85714285714288,22.666666666666686,22.523809523809547,22.428571428571452,22.04761904761907,21.904761904761926,22.00000000000002,22.00000000000002,22.095238095238116,21.857142857142875,21.714285714285737,21.666666666666686,21.714285714285737,21.857142857142875,22.095238095238116,21.904761904761926,22.142857142857164,22.285714285714306,22.333333333333353,22.285714285714306,22.142857142857164,21.904761904761926,22.00000000000002,22.00000000000002,22.00000000000002,22.00000000000002,22.00000000000002,22.00000000000002,22.095238095238116,22.04761904761907,21.523809523809547,21.047619047619065,20.714285714285737,20.619047619047638,20.857142857142875,21.095238095238116,21.00000000000002,21.00000000000002,21.095238095238116,20.857142857142875,20.714285714285733,20.666666666666686,20.714285714285733,20.857142857142875,21.095238095238116,21.00000000000002,21.00000000000002,21.00000000000002,21.00000000000002,21.00000000000002,21.00000000000002,21.00000000000002,21.00000000000002,20.904761904761926,21.14285714285716,21.285714285714306,21.333333333333357,21.285714285714306,21.14285714285716,20.904761904761926,20.904761904761926,21.14285714285716,21.285714285714306,21.238095238095262,21.42857142857145,21.42857142857145,21.238095238095262,21.285714285714306,21.14285714285716,20.80952380952383,21.047619047619065,21.42857142857145,21.61904761904764,21.61904761904764,21.42857142857145,21.047619047619065,20.904761904761926,21.00000000000002,20.904761904761926,21.047619047619065,21.42857142857145,21.61904761904764,21.61904761904764,21.333333333333353,21.19047619047621,21.285714285714306,21.19047619047621,20.904761904761926,20.95238095238097,20.80952380952383,21.238095238095262,21.809523809523828,21.761904761904784,21.523809523809547,21.61904761904764,20.95238095238097,20.142857142857164,19.714285714285733,19.428571428571445,19.476190476190496,19.95238095238097,20.095238095238116,19.904761904761923,20.14285714285716,20.285714285714306,20.23809523809526,20.33333333333335,20.57142857142859,20.523809523809543,20.619047619047638,20.428571428571445,20.047619047619065,19.904761904761923,20.00000000000002,20.00000000000002,19.904761904761923,20.14285714285716,20.285714285714306,20.333333333333353,20.190476190476208,20.285714285714306,20.190476190476208,20.333333333333353,20.285714285714306,20.047619047619065,20.047619047619065,20.190476190476208,20.476190476190496,20.57142857142859,20.476190476190496,20.095238095238113,20.285714285714306,20.095238095238113,20.3809523809524,20.619047619047638,20.714285714285733,21.00000000000002,21.3809523809524,21.428571428571452,21.142857142857164,20.857142857142875,20.666666666666686,20.57142857142859,20.666666666666686,20.619047619047638,20.42857142857145,20.619047619047638,20.76190476190478,20.523809523809543,20.428571428571445,20.047619047619065,19.904761904761923,20.00000000000002,19.904761904761923,20.14285714285716,20.3809523809524,20.19047619047621,20.19047619047621,19.523809523809543,21.047619047619065,16.380952380952397,13.047619047619062,12.428571428571441,14.095238095238109,17.285714285714302,22.095238095238113,19.76190476190478,18.857142857142875,19.095238095238113,19.52380952380954,20.00000000000002,19.76190476190478,19.33333333333335,19.047619047619065,18.904761904761923,19.000000000000018,19.000000000000018,19.000000000000018,19.000000000000018,19.000000000000018,18.904761904761923,19.14285714285716,19.285714285714306,19.33333333333335,19.19047619047621,19.190476190476208,19.238095238095255,19.76190476190478,19.904761904761923,19.666666666666686,19.476190476190496,19.33333333333335,19.14285714285716,19.33333333333335,19.476190476190496,19.666666666666686,19.904761904761923,19.76190476190478,19.33333333333335,19.047619047619065,18.904761904761923,19.000000000000018,18.904761904761923,19.14285714285716,19.285714285714306,19.238095238095255,19.428571428571445,19.33333333333335,19.285714285714306,19.714285714285733,19.76190476190478,19.428571428571445,19.476190476190496,19.476190476190496,19.52380952380954,19.52380952380954,19.476190476190496,19.476190476190496,19.52380952380954,19.428571428571445,19.619047619047638,19.57142857142859,19.95238095238097,20.57142857142859,21.00000000000002,20.80952380952383,20.76190476190478,20.33333333333335,20.047619047619065,19.809523809523828,20.14285714285716,20.285714285714306,20.23809523809526,20.428571428571445,20.33333333333335,20.3809523809524,20.57142857142859,20.476190476190496,20.190476190476208,20.14285714285716,19.904761904761923,20.00000000000002,19.904761904761923,20.14285714285716,20.285714285714306,20.333333333333353,20.285714285714306,20.14285714285716,19.904761904761923,20.00000000000002,20.00000000000002,20.00000000000002,20.00000000000002,19.904761904761923,20.14285714285716,20.285714285714306,20.333333333333353,20.285714285714306,20.14285714285716,19.904761904761923,19.904761904761923,20.047619047619065,20.428571428571445,20.619047619047638,20.619047619047638,20.428571428571445,20.047619047619065,19.809523809523828,20.14285714285716,20.285714285714306,20.23809523809526,20.428571428571445,20.428571428571445,20.23809523809526,20.285714285714306,20.047619047619065,20.047619047619065,20.190476190476208,20.476190476190496,20.476190476190496,20.523809523809543,20.619047619047638,20.666666666666686,20.57142857142859,20.76190476190478,20.714285714285733,20.76190476190478,21.238095238095255,21.285714285714306,21.333333333333357,21.285714285714306,21.14285714285716,20.904761904761926,21.00000000000002,21.00000000000002,21.00000000000002,21.00000000000002,21.00000000000002,21.00000000000002,21.00000000000002,21.00000000000002,21.00000000000002,21.00000000000002,21.00000000000002,21.00000000000002,21.00000000000002,21.00000000000002,20.904761904761926,21.14285714285716,21.285714285714306,21.238095238095262,21.333333333333353,21.476190476190496,21.66666666666669,21.904761904761926,21.761904761904784,21.333333333333353,20.95238095238097,20.95238095238097,21.42857142857145,21.61904761904764,21.61904761904764,21.42857142857145,21.047619047619065,20.80952380952383,21.14285714285716,21.3809523809524,21.19047619047621,20.904761904761926,20.95238095238097,20.80952380952383,21.238095238095262,21.809523809523828,21.761904761904784,21.428571428571452,21.57142857142859,21.23809523809526,21.3809523809524,21.57142857142859,21.476190476190496,21.095238095238116,21.19047619047621,21.333333333333353,21.61904761904764,21.61904761904764,21.42857142857145,21.047619047619065,20.80952380952383,21.14285714285716,21.19047619047621,21.3809523809524,21.619047619047638,21.80952380952383,21.857142857142875,22.095238095238116,22.00000000000002,22.00000000000002,22.00000000000002,22.00000000000002,22.00000000000002,21.904761904761926,22.04761904761907,22.428571428571452,22.523809523809547,22.666666666666686,22.85714285714288,22.57142857142859,22.666666666666686,22.714285714285737,22.404761904761934,22.11904761904765,22.023809523809557],\"pseconds\":[155.60066379880837,140.7916428167706,133.11443960327006,129.46367959262636,127.88528075684064,127.20066436411439,127.65680881734117,128.07256114610075,128.6297668712024,129.34835820711552,129.19266178053786,128.96118032232155,129.06521390708417,129.29937356387865,129.41347813937887,129.47044181023887,128.8410232601876,128.88733029198332,129.41872272256293,129.94133070720886,129.74905556410494,129.81331649731726,129.39247197218336,129.84853370493235,130.30963891255854,130.64934470092365,130.38007097977567,130.11581604517053,129.6682671026691,129.50764208689915,129.1464027829139,128.86664566351376,129.04465283460797,129.1811447803087,129.50511571269706,129.7925598790895,130.10919647929794,130.32308573305548,130.17206246011995,129.7562460480814,129.09658296257047,128.51095236432488,128.18913389844974,128.22735403471304,127.96319596513881,128.33350417318871,128.11811147804258,127.88073320839412,127.15197793123644,126.55374283446866,126.06046459478716,126.2889760703188,126.53778152300117,127.16959774597392,127.59052844336243,127.90030887572865,127.86773531842573,127.77699686388596,127.57499488886616,127.53168263220017,127.56857355636276,127.76588027785812,127.48486858535934,127.14776679392877,127.19779337870274,127.63145050860403,128.00772869386432,128.4868909241591,128.01206149596985,127.53950536876555,127.45333367288997,127.5182370106067,127.60912182789806,127.94203416162313,128.10255931637334,128.524874848251,128.19361188073896,127.80622002113587,127.08330280596809,127.0187596748835,127.21715495005336,127.32794757395567,127.10344747268844,126.80269085579131,126.40910519210031,126.37356530080885,125.85891465198902,125.45008373871083,125.64861626063133,125.66542754699763,121.91894835902376,130.18657803579615,141.6924532894861,148.62724132400987,148.69885946467897,140.54979293077764,126.54454133454374,125.49429323663428,126.19915401624314,125.65672030596049,125.66645008951139,125.8968960600812,126.08250847862317,125.91476749195385,125.95375678582316,125.57782702200714,125.91163666526238,126.36648352987957,126.59864777074058,127.07629009987414,127.35434491075043,127.18820180613442,126.82827956268035,126.01238068230118,124.87971125402507,124.30281466401232,124.16138747592596,124.45486638877597,124.4511013483462,124.49438224815194,123.98292322256569,123.68619379674747,123.86837638595378,124.02085764481716,124.14121174528333,124.66714391072539,124.72145860247268,124.72229136410876,124.79413701785623,124.49203716935074,124.42571072043144,124.8537148600732,125.16428250566999,125.44524043219775,125.62153002455865,125.45626959162605,125.25259519857993,124.95370530621977,124.896149842788,125.26274695288733,125.27651806003274,125.13506118237089,124.7163114516484,124.23493098594231,124.04791195306085,124.20128816682296,124.184563830875,124.19078897163638,124.06189927446796,124.25652463831383,124.4218813537441,124.49700486011389,124.41410770050656,124.06720748591427,123.57468387485446,123.45211748243865,123.21330511075675,123.28897376964836,123.49073449051824,123.75957542452703,123.49104642014638,123.01314322223965,122.93284534280852,123.15830007348863,123.66126620587077,123.69737301370823,123.55565496945881,123.366166293235,123.42035921274407,123.46299172144418,123.7707992111134,123.19506659892954,123.08247108029383,122.88253558923009,122.3789140794104,122.2767946759356,122.56060461886132,122.33296931143279,122.40292290798565,122.76147480398339,123.04406309044123,122.59449739320908,122.09156606433989,121.78432015336959,121.85947247328157,122.28176044834422,122.94147765526616,123.00828413823473,122.94850589444403,123.1724853266546,123.09641815189568,122.83135708078201,122.89410413890963,123.03086082109988,122.91826505184181,123.18672457243875,123.07443150394445,122.82982555653199,122.47127874029599,122.17678926798966,121.63761376642984,121.75542072859844,121.82907387608789,122.01163855486602,122.34280329078545,122.4517941824259,123.15403209565699,123.99334561149344,124.252926032558,124.01795425538981,123.74798944447387,123.3912720961407,124.00605740528805,124.37694397841729,124.67453040242275,124.50352937047062,124.60526504703944,124.90915835385351,125.17183390083603,124.7968703495053,124.83081787194506,124.88360162749666,125.14679915503767,125.56398379922156,125.94079245316642,125.92844860751828,126.01421203422554,126.08450985558565,125.97908503332862,125.84102810697169,125.67379520593862,125.34699136625153,125.2170769321127,125.34232870242501,125.66841672514066,126.11220628223155,126.33839795019233,126.12527472134805,125.72587619166613,125.36586082760806,124.76848989058054,124.46573899772072,124.40623710744384,124.55616231668282,124.62743753312199,124.6233218409898,124.15382881352278,123.82849205225553,123.65557323121678,123.51032213919004,123.25381374099493,123.07164651030236,122.89386398171251,122.95442715643684,123.59319206322678,124.01093337700124,124.30091482570984,124.21957844374488,124.0463550642091,123.82462113032861,123.94692084934111,123.99726685835596,124.3088384162908,124.34119429576546,124.5307929524652,124.60019050138578,124.58515298646144,124.75523685205552,124.6441894548995,124.43222924508224,124.34133511350923,124.34373404603417,124.36737953609396,124.32201613302574,124.13188723830405,123.9226467907259,123.85531487832097,123.92900295794414,124.08413799172732,124.07037148495971,124.22317966110558,124.28478150675055,124.55931038598708,124.80238207261695,124.93239906192727,125.01478772347917,124.99279065260257,124.66043592738731,124.43021287834853,123.65171149719787,122.68507495215937,122.39254900557282,122.55707354360943,123.21488473328505,124.24658470584353,124.8336926303894,125.06557716291968,125.12346193688465,124.56632458662888,123.84109229364891,123.45661231217886,123.48707363508676,123.83504384837528,124.37536125103105,124.40588504149532,124.29351948836799,124.49877460630555,125.16982322419935,125.75196579337323,126.07235957598587,125.73701741590483,125.22781982317011,124.65834847943559,124.41870746279496,124.25142476409188,123.98759677385067,123.82530142362059,123.7709765361014,123.85592496514117,124.47087301562827,124.92699782975865,124.63805592799841,124.10571487552419,123.59581962750373,123.44791981876155,123.71167544101169,124.08698480114458,124.19872928129482,124.32691267393908,124.59008988632453,124.75649652571815,124.66570400944711,124.5339849691252,124.62297146840038,124.54399144145462,124.81126309692442,125.05279915549927,125.0520248981787,124.78357754025033,124.3722874110224,123.5401133918543,123.28177239620808,123.1640550985398,123.25959344508348,123.40458927719519,123.54602869507941,123.53449013839202,123.87967648485305,124.13792634974602,124.17114628216711,123.82296070565214,123.22411628301151,122.74593328237434,122.70005108263001,122.73297105831236,122.70470240953625,122.86885384101734,123.1128148649349,123.2602819685744,123.37710686115341,123.32836780821475,123.281489957614,123.72624176719076,124.30898111800607,124.2998712619133,124.06273334317919,123.06917421017502,122.27765922226617,122.34516036289872,122.72759689853176,123.47484677458169,124.1412929320646,124.16108283336234,124.18442188743698,123.99498831175968,123.63489360288759,123.22077331429784,123.13856986031959,123.2686429103346,123.84914089972962,124.15725963794613,124.26295373117263,123.76087140985406,123.46175989588087,123.3135873787174,123.69543235431475,124.01923030519693,124.30489067871008,124.3463860326226,124.21172191438383,123.44014983179463,122.96684034501016,122.42094258384479,122.05686069000616,122.26311820347888,122.85880899197404,122.3172653174645,122.06910177953758,121.8491493726528,121.73791576503825,122.00526561118164,122.49143501610432,122.09493777263323,121.66524953960918,121.35349926653689,121.25816871858707,121.07891210802418,120.93806902032175,120.9702981950729,121.0967786532136,116.90322292317484,127.33543452499565,143.9925413022939,156.79269439335417,158.12938573478112,146.72157221197594,127.03083707664595,124.74691593559785,125.0553934356729,125.26312826744588,125.32639322335125,125.35955041223716,125.5167623394135,125.77842891405854,125.84310764005497,125.91531640050995,126.20712899957635,125.72406696291831,125.57172674232395,125.49546717105572,125.58164483137979,125.46580461360998,125.70315256609284,126.0072710266668,126.3060958716367,126.25934463529295,126.11797396485488,125.96845009461855,126.09387778080396,126.30901526801755,126.27942908802768,125.79990574216599,125.47137895375002,125.71979844084517,126.28964012686677,126.68295208630369,127.09427043290076,126.72769728039574,126.25800788662018,126.14421099486772,126.15068347710523,126.48785586559033,127.05287259374657,127.07125156306103,127.10463416595422,127.08338715016025,127.20961611106715,127.36924506724915,127.58731479066235,127.54663147751153,127.1764865499141,126.70971694913972,126.48792352564274,126.1967473624602,126.17478882521267,126.13241827999434,125.77003943387272,125.22787072203835,124.83767231780736,124.74534379323556,125.01512156884691,125.13967140987705,125.39939143433726,125.31089703470361,125.2967580300001,125.64614650634536,125.94275230671506,126.0754006214358,126.10647933953418,125.84908138245873,125.34423627836445,125.32015292778964,125.14776560671814,125.27168184206322,125.32300534778062,125.43791973412836,125.2086879113886,124.89979095420031,124.58703297053194,124.62058371679126,124.72061658728069,124.84525339293594,125.18897545786484,125.23467469938963,125.30874010776748,125.16084871504928,124.65482190183795,124.2079337498902,124.47879897716497,124.98038048320706,125.44155620384059,125.45577478610352,125.11989884987891,124.86056824340709,124.6265610102707,124.41971441646653,124.12467014059816,123.94432426663519,124.02368384004431,124.00648955263203,123.69924599037437,123.11763968459363,122.55972478668676,122.37122056402892,122.6017734368328,122.63747043942656,122.71072549642348,122.77175164255166,122.68330053885512,122.61560793201238,122.91266088195036,123.16407332935162,123.46449091446115,123.80267767125366,123.87604259409237,123.78798358969529,123.76550847272016,123.44476351735565,123.16648994637782,123.05557599350578,123.08670169039375,123.28865692511783,123.56235009092514,123.10481988603539,122.8411760898611,122.72884314119383,122.43499368925721,122.33461815900763,122.28176558400116,121.41053742029108,120.94248022076118,120.71384799013613,120.92691365102458,121.60133605511827,122.46338223235547,122.74404079860193,122.88007976568778,122.64825386887269,122.34287499412642,122.05335031972199,121.80857470401573,121.7633062172746,121.73119921084756,121.72986911823385,121.68224135452166,121.6443713786785,121.68413735415467,121.73331150313624,121.49338017413949,121.17162740450416,121.04902784922898,121.40041864587434,121.97878879782445,122.30926312494437,122.29421396685589,121.9549416666329,121.88301644993975,122.31596949251067,122.41647333750338,122.17097832394343,121.64588357783886,121.11521356527994,120.92102149268345,120.9063049962833,120.57277245621871,120.19503633933495,120.07322927720419,120.46033019095627,121.08764280321387,121.36751593076023,121.00845805973631,120.46743619308234,120.00404576295722,119.85797036253791,119.77921647156387,120.02408798352234,120.07998721207196,120.0640588467529,120.29508902500304,120.50803653164769,120.63917834443902,120.74813949059795,120.82614003881842,120.64117740168155,120.86113517708648,121.03633004921296,121.42283195297821,121.76853568576954,122.29287379461341,122.53258949405483,122.83488531796307,122.71160694287131,122.28734132791843,122.06301261451368,121.88900056414964,122.23567450114628,122.33300952360105,121.57914536733259,120.82644837743848,120.12208913222825,119.3891029201752,119.60954956295947,119.51247683010668,118.7131457344959,118.55228628125617,118.36785291219705,118.23069242271306,118.10607691315985,118.02122005189158,117.58633819883978,117.69457436419053,118.00672274779278,118.29961466712312,118.28409133644337,118.18054665092852,118.12284430665878,118.41102482989969,118.88110763207315,119.2325083249769,119.25634784936881,119.10121873903817,119.28238524959225,119.68383249689218,119.90563641105244,120.10558346950342,119.94861645172695,119.85200240325307,119.7007315681637,119.70419957734958,119.50503131146125,119.3353492905057,119.28991120749326,119.16353249457067,119.02028495209076,119.09579228115503,119.61136201501765,119.8651003231066,120.14239126026226,120.06172764405487,119.63738716744894,119.26468486180485,119.35362116820949,120.27002436503052,121.76163936344423,123.73353597215971,125.03106612358427,125.40752326147556,124.96685989353381,124.23590510434833,123.04293067445187,122.72215567781245,122.54814575508928,122.56240148364779,122.62093822631479,122.34310375401009,121.94165596433027,121.97364974082656,122.11589336532013,122.19677911262849,122.06098754902757,122.20141471654797,122.04427659794179,121.76700781150679,121.5764966627361,121.23496787509818,120.957998193143,121.15674483000932,121.29348187932901,121.70333706686745,121.98915874219946,121.94294349337981,121.6248002738191,121.17363388848729,120.88550802619221,121.1855499121134,121.26989850229594,121.51089313462593,121.4731343734301,121.16198631226843,121.0660688342497,120.89840063004863,120.74095785907359,120.93265873216352,120.72361487596555,120.62753517099264,120.69426150962924,120.8855569800562,121.36577810600473,121.84907331193816,121.91037222891879,121.85228095143009,121.5202851750576,121.47773941028417,121.26477987932839,120.88618710210461,120.83994040690489,120.68115577695852,120.58649862687263,120.44454619166542,119.87998168145681,119.27482958071622,119.32479181623984,119.5125597485449,119.75194271288278,120.04023453597388,120.00334529344751,119.74323442556903,119.43625583004149,120.27194135997605,121.62877015887808,123.64063381259704,125.27126948835914,126.22328563721501,126.18546847079814,126.55040860596962,126.53900462258729,126.52093134779737,126.49816600904288,126.58484541749493,126.32998391898364,126.39704772349867,126.15114477410172,125.75087783392938,125.75521434381551,125.67848933523949,125.4172729686414,125.53211518441216,125.52534339793824,125.48444279151688,125.48237789280333,125.19043255569423,125.01632456451487,124.49347110965465,124.19113185128661,124.06524765695505,124.05993360710609,123.88361253455373,124.2380559942464,124.09647082007774,123.87017554465572,123.53485790442357,123.16407322966202,122.42832287686898,122.2681833389155,122.20179202969206,122.05771517327705,122.12878572930242,122.2696602128561,121.99394404775784,121.86462705431428,121.93610982364676,122.09971038983412,122.73254699003388,123.24854869798426,123.18957991607326,123.06147355646556,123.16102487013616,123.61064115825201,123.6312566074141,123.46760196304879,123.2866123455541,123.62466168597298,123.88576303826451,124.07671355503507,123.9321914799356,124.29076382091738,124.52022406346713,124.85173629147721,124.42000112665549,123.77427430101537,123.33490873709607,123.41611555898243,123.03530538098846,123.544344324159,125.07979882234915,126.50259692101851,127.21291374286845,127.30484509205606,126.3215182023506,125.7765680681442,125.9817221646467,125.82677208205212,125.71208818292278,125.57902907072786,125.4411229667376,125.42135034292727,125.5039449430353,125.30443855992041,125.331575477203,125.13824806436322,124.98467917705526,124.92422594875546,124.95059314368144,124.96319331297764,125.25106073720167,125.12923820085032,125.02457634274442,124.75917794950766,124.55637860930706,124.37677783714544,124.3537197865812,124.35965125297005,124.62115476443071,124.59652262318318,124.47864115664231,124.23879743944642,123.98831953100273,124.21679158078352,124.3426124755957,123.97780462345156,124.0196177145136,124.00163384767852,123.97511445115774,123.67225139045821,123.16695750892231,122.42622621806143,122.62371622933671,123.37290559309072,123.95354589517365,123.89340941173715,124.06525170601924,123.89247900008502,124.03731222351563,124.31476052224482,124.35574117527726,124.12868734579345,123.98853632189785,123.63038866367427,123.61945262427012,123.65206573752529,123.98468834151365,124.12887791979483,124.3702657015511,124.8161764358834,125.79394490229555,124.96925378251994,127.47902027498074,132.66881479946525,155.65111597939628,201.12218393248557,248.1420152142295,229.25742769939836,180.5194709514777,140.94863976237383,126.66603353826098,124.29027642016742,126.2660792199166,126.50373758671155,125.81597292297381,125.88322761504891,125.7353643673706,125.29433258176805,125.2515074019962,125.74343436181037,126.26143466070074,126.59698261067655,126.33023298345236,125.82321470419505,125.48368696496694,125.60910231842047,126.20774319407724,126.14979906709574,125.91970336122014,125.73655681092762,125.43059712415557,125.56540693131888,126.06752953188213,126.47655095740197,126.82417282468288,127.16910279482215,127.49348301330413,127.40281704610159,126.7285577211028,126.19335255308619,125.43754257255,125.34054444669827,125.74205129372159,126.26897145112967,126.79855770868002,127.09598345347156,127.15710727975231,127.14214924441053,126.69318587153508,126.1412006287967,125.76285725690596,125.53142860814013,125.57500023876362,125.57785322890072,125.6855317036155,125.54841492340434,125.18170859523762,125.01310338736928,124.92951447868866,124.98485886391941,125.04005243016972,125.19747005716563,124.9674643827454,125.07829072084402,124.98140346539931,124.5893227398553,124.18011485219051,123.85442982597806,123.52414248054363,123.6978509259846,123.98363901319341,124.1522130706316,124.28984951190864,124.11716254685477,123.68934662765338,123.36248939632408,123.51152140066434,123.7459510048168,123.97663380898072,124.01057544064024,123.92483323787955,123.79491706675242,123.78096092923312,123.81144076740418,123.9701466855121,124.18076873497618,124.4232241521058,124.43906781399261,124.54392323753719,124.911598908596,125.40302845203608,125.37607841521341,125.0261291177947,124.3363463266821,123.94393872910986,123.66564274189724,123.89166144322668,124.16715255214406,124.19222111066945,124.28895743599408,124.11132393502625,123.91005076218134,124.1975129258083,124.7561494596605,125.11166921854777,125.37560205629842,124.99780700166338,124.72313557394178,125.3066834856362,125.3593075455631,124.89308086089513,124.68426708386103,124.25731445513699,124.43962068720823,125.62192720958949,125.9696621493554,125.40096815257817,125.04293864092229,124.27373495648997,124.07277043875685,124.0626912136769,123.81103452531345,123.3930002427646,123.28274257691868,123.05024064696829,122.87947305173165,123.07334030350087,122.97431526080963,122.68229618704918,122.70624341260245,122.61912415225478,122.23083829791375,121.92392137827068,121.55193105719259,121.21034477330277,121.11018309871655,121.18060913849203,121.26288382706963,121.1728461977913,121.07794280755404,121.37761177693808,121.55904253661052,121.71392030652554,121.91990987549931,121.63615378668129,121.30267007754188,121.2817140044722,121.11368461034438,121.3206495220395,122.1884896246595,122.54309138367438,122.328094905441,121.70605320860948,120.84220679213439,120.41748067498617,120.72239205563491,120.7657748198952,120.56045588190717,120.60958572889508,120.84461621398397,120.95119953747727,120.90303367402568,120.63598411461145,120.36529961062838,120.8162863903851,121.32778989731209,121.80237001331021,122.12129269433139,122.32979338181345,122.1542607412211,122.16506789503171,122.55796843389084,123.40770380035678,123.94497637955187,124.0034877658351,123.33823194156636,122.3095233147969,121.72796341983307,121.59125813421308,121.60172557668373,121.9013406630829,121.81456412514774,121.76405801721504,121.58459665417762,121.48530461639157,121.49347321566059,121.57218514147249,121.39332406945597,121.61491964051963,122.01397804834775,122.34788812579974,122.6857185815449,122.21729144516816,121.69839833502218,121.45925463746131,120.97512782445037,120.40358066187815,120.00472835279962,119.32736490278812,119.23655239739516,119.25544969156643,119.12289620144423,119.05946581114483,118.83425694609795,118.39655619932452,118.4390928085164,118.73411160508066,118.93066574747449,118.87885277520323,118.17949553952788,117.39399170171045,117.00705598212029,117.3477777534284,119.25719528494312,124.49758515210421,135.5880411949704],\"drivespeed\":[NaN,1.575487012987013,1.8489010989010997,1.9420849420849438,1.8477443609022572,1.876190476190478,1.9393346379647765,1.8552631578947385,1.8458646616541368,1.9015444015444032,1.8666666666666685,1.8345864661654152,1.8918918918918937,1.876190476190478,1.8421052631578965,1.8609022556390993,1.9247104247104265,1.8168498168498184,1.8311688311688326,1.8971428571428586,1.857142857142859,1.8053571428571447,1.8516483516483535,1.8775510204081651,1.864564007421152,1.7777777777777795,1.889097744360904,1.8423005565862727,1.855238095238097,1.882239382239384,1.8880308880308896,1.8552631578947385,1.8665413533834605,1.847866419294992,1.872180451127821,1.8590225563909792,1.8311688311688328,1.8952380952380967,1.8318264014466563,1.846292947558772,1.8553345388788445,1.9116541353383476,1.849816849816852,1.8534798534798553,1.8812615955473118,1.875695732838592,1.9104761904761922,1.8664192949907252,1.9555984555984571,1.9154135338345883,1.8947368421052648,1.9266409266409283,1.94324853228963,1.8780952380952396,1.8293135435992598,1.9642857142857162,1.8704761904761922,1.8628571428571448,1.9189189189189206,1.8933333333333349,1.875939849624062,1.912380952380954,1.8933333333333349,1.952380952380954,1.933463796477497,1.8990476190476209,1.835164835164837,1.8738404452690185,1.9276190476190493,1.8909774436090245,1.8701298701298716,1.9219047619047638,1.8627087198515786,1.8952380952380967,1.8800000000000017,1.9131274131274145,1.8834586466165433,1.8834586466165433,1.9085714285714306,1.9393346379647765,1.8800000000000017,1.8990476190476209,1.8571428571428583,1.9066666666666687,1.912380952380954,1.8947368421052648,1.9078947368421069,1.9706457925636025,1.9169884169884188,1.9354207436399236,2.1250000000000013,1.665413533834588,1.479323308270678,1.0000000000000009,1.309243697478993,1.6785714285714302,2.0375939849624074,1.8684210526315805,1.9761904761904778,1.9315068493150698,1.9404761904761925,1.927592954990217,1.9247104247104265,1.940154440154442,1.9652509652509673,1.8886827458256048,1.9667318982387492,1.8990476190476209,1.8976833976833996,1.9015444015444032,1.9054054054054073,1.8385899814471256,1.9295499021526434,1.978174603174605,1.9920634920634939,1.9314285714285733,1.9921722113502958,2.001984126984129,1.9452054794520566,2.0224489795918386,1.962301587301589,1.9603174603174622,2.028169014084509,1.9517374517374537,1.940952380952383,1.9498069498069512,1.9569471624266161,1.972222222222224,1.9765166340508824,1.957528957528959,1.9371428571428588,1.9459459459459476,1.940154440154442,1.8909774436090245,1.900375939849626,1.9517374517374537,1.9536679536679555,1.9667318982387492,1.9510763209393367,1.9510763209393367,1.930501930501932,1.9285714285714304,1.962818003913896,2.032653061224492,1.9899396378269636,1.9543650793650809,1.9880952380952401,1.9960317460317478,1.912380952380954,2.0039682539682557,1.9517374517374537,1.9314285714285735,2.0117416829745616,1.9729729729729746,1.9843444227005889,2.0523138832998007,1.9466666666666683,1.9729729729729746,1.9960861056751484,2.026156941649901,1.9765166340508828,2.0158730158730176,2.0019569471624283,2.021526418786695,1.9790476190476212,1.9285714285714304,2.0396825396825413,2.062374245472839,1.932330827067671,2.0019305019305045,1.996138996138998,2.0019569471624283,2.0000000000000018,1.9652509652509673,2.0277777777777795,2.033730158730161,1.9864864864864882,1.9657142857142877,2.0000000000000018,2.033730158730161,1.971042471042473,2.028169014084509,2.002012072434609,2.051759834368532,2.026156941649901,1.9575289575289594,1.9922779922779938,2.0156555772994147,1.9542857142857162,2.0058708414872815,1.9826254826254843,1.988258317025442,1.9804305283757355,2.0241448692152937,1.9745596868884556,1.9765166340508828,1.9921722113502953,2.0317460317460334,2.0117416829745616,1.9806949806949825,2.0416666666666687,2.0218253968253985,1.9843444227005893,2.0442655935613696,2.005952380952383,1.9589041095890432,2.020120724346078,1.9569471624266166,1.9219047619047636,1.9921722113502953,1.9826254826254843,2.0058708414872815,1.9542857142857162,1.9884169884169904,1.9619047619047636,1.940952380952383,1.9960317460317483,1.9266409266409283,1.942084942084944,1.9561904761904776,1.9652509652509669,1.9238095238095254,2.0000000000000018,1.907335907335909,1.915057915057917,1.9324324324324338,1.911196911196913,1.9208494208494225,1.9285714285714304,1.900375939849626,1.9248120300751896,1.913533834586468,1.9745596868884556,2.0000000000000018,1.8703007518797008,1.8815789473684226,1.9510763209393367,1.915057915057917,1.9608610567514697,1.9485714285714302,1.95809523809524,1.971428571428573,1.9466666666666683,1.9843444227005889,1.988258317025442,1.9941291585127219,1.9787644787644807,2.0058708414872815,1.9806949806949825,2.0078277886497085,1.9922779922779938,1.994208494208496,2.0115830115830136,1.9884169884169904,1.9806949806949825,1.9941291585127219,1.9428571428571448,1.9921722113502953,1.9600000000000022,2.025440313111548,1.9387755102040833,1.9369202226345101,2.000000000000002,1.9828571428571446,1.9369202226345101,1.9961904761904783,1.9406307977736568,1.977142857142859,1.9809523809523828,1.9904761904761927,1.9624060150375962,1.9406307977736568,2.0430528375733874,1.9332096474953637,1.9638095238095261,1.9864864864864886,2.056338028169016,1.9447619047619067,1.9806949806949825,2.019569471624268,1.9485714285714304,1.986301369863015,1.9504761904761923,2.0058708414872815,1.9090909090909112,1.9304511278195506,1.9749034749034768,1.949806949806952,1.9765166340508828,2.0080482897384324,1.9859154929577485,2.045548654244308,2.0000000000000018,1.953033268101763,1.9343629343629363,1.9208494208494225,1.9169884169884188,1.9285714285714304,1.982387475538162,1.9863013698630154,1.9671814671814694,2.0543259557344085,1.95809523809524,1.9600000000000022,1.971428571428573,1.9941291585127219,1.9276190476190493,1.9362934362934379,1.8853383458646633,1.940154440154442,1.8966165413533849,1.9333333333333351,1.9485714285714302,1.9466666666666683,2.0019569471624283,1.982387475538162,1.9765166340508828,1.9843444227005889,1.935238095238097,1.9921722113502953,2.0000000000000018,1.9804305283757355,1.964774951076323,2.0510204081632675,1.9765166340508824,1.9276190476190493,1.982387475538162,1.9459459459459476,1.93737769080235,1.9256360078277903,1.9642857142857162,1.9189189189189206,1.9227799227799243,1.9667318982387496,1.9324324324324345,1.9569471624266161,1.9478764478764499,1.8947368421052648,1.9123809523809543,2.038229376257547,1.982387475538162,1.9691119691119712,2.019569471624268,1.9942084942084957,1.9447619047619067,1.9980430528375752,2.0422535211267623,1.9314285714285735,1.9390476190476207,1.9428571428571446,1.982387475538162,1.9902152641878688,2.0119047619047636,1.9960317460317483,2.016096579476863,2.0241448692152937,1.9880952380952401,1.9589041095890427,2.0000000000000018,1.991951710261571,2.0080482897384324,1.9706457925636025,1.9686888454011762,1.9517374517374537,1.9428571428571446,1.9768339768339787,1.9749034749034768,2.0489795918367366,2.0221327967806855,1.968688845401176,1.9135338345864676,1.988258317025442,1.9257142857142875,1.9549902152641896,1.935238095238097,1.9902152641878688,1.9594594594594616,2.0362173038229394,1.9549902152641896,1.9412915851272037,1.9841269841269862,1.9706457925636025,1.9765166340508824,1.9745596868884556,2.01006036217304,1.9758551307847099,1.8803088803088823,1.9938775510204096,1.9217221135029372,1.9354207436399236,1.9667318982387492,2.0000000000000018,2.019841269841272,1.9902152641878688,1.972222222222224,2.043478260869567,2.0000000000000018,1.9384920634920648,2.0546218487394974,2.0651260504201696,2.035196687370602,1.990079365079367,2.0079365079365097,2.0079365079365097,2.042857142857145,2.0346938775510224,2.022448979591838,2.0061224489795935,2.0672268907563045,2.0777310924369767,2.1210317460317474,1.7693877551020427,1.5019841269841285,0.832000000000001,1.2158385093167714,1.639285714285716,2.0921052631578965,1.8754578754578775,1.9304511278195506,1.8998144712430445,1.9276190476190493,1.9085714285714306,1.9227799227799243,1.8971428571428592,1.8872180451127836,1.9459459459459476,1.8815789473684226,1.907335907335909,1.9841269841269857,1.9111969111969132,1.8205128205128225,2.018108651911471,1.877819548872182,1.8796992481203025,1.9295238095238112,1.8834586466165433,1.930501930501932,1.9227799227799243,1.8938223938223953,1.9256360078277903,1.927592954990217,1.8703007518797008,1.940154440154442,1.912380952380954,1.9066666666666687,1.9104761904761922,1.8534322820037121,1.9009523809523827,1.9227799227799243,1.9343629343629363,1.8849721706864582,1.8681318681318702,1.8849721706864582,1.9161904761904782,1.8857142857142872,1.8780952380952396,1.9315068493150698,1.8819047619047635,1.8914285714285732,1.8914285714285732,1.8819047619047635,1.9354207436399236,1.9015444015444032,1.872380952380954,1.9412915851272037,1.911196911196913,1.8872180451127836,1.957528957528959,1.9257142857142875,1.93822393822394,1.9343629343629363,1.9054054054054068,1.911196911196913,1.952380952380954,1.9178082191780839,1.958333333333335,1.8933333333333349,1.8815789473684226,1.9459459459459476,1.8909774436090245,1.9208494208494225,1.913127413127415,1.9543650793650809,1.9073359073359089,1.9092664092664111,1.9208494208494225,1.93822393822394,1.9314285714285733,1.9485714285714304,1.9466666666666683,1.9257142857142875,1.9324324324324345,1.9412915851272035,1.903474903474905,1.9543650793650809,1.913127413127415,1.9549902152641896,1.953033268101763,1.9510763209393367,1.972222222222224,1.8721804511278213,1.9324324324324342,1.8890977443609038,1.972602739726029,1.9116541353383476,1.9447619047619067,2.003913894324855,1.9686888454011762,1.9452054794520566,1.970238095238097,1.9667318982387492,1.988258317025442,1.963320463320465,2.028169014084509,2.026156941649901,1.9589041095890432,2.0000000000000018,2.0321931589537243,1.9902152641878688,1.9880952380952401,1.9642857142857162,2.06512605042017,1.9275929549902173,1.8800000000000014,2.0120724346076475,1.991951710261571,1.9879275653923558,1.93737769080235,1.9859154929577485,2.0310559006211197,2.022774327122155,1.9899396378269636,1.968688845401176,1.9333333333333353,2.0297619047619064,2.007827788649708,1.9691119691119712,2.0257936507936525,2.0198412698412715,2.0138888888888906,2.0362173038229394,2.0301810865191166,2.0612244897959204,1.9960317460317483,1.9686888454011762,1.9765166340508824,2.0019841269841288,2.0119047619047636,1.988258317025442,1.9686888454011762,2.044897959183676,2.016096579476863,2.0000000000000018,2.001984126984129,2.0079365079365097,2.0755102040816342,1.9768339768339787,1.9768339768339787,2.0218253968253985,2.0703933747412027,2.0326530612244915,2.032653061224492,1.9920634920634939,2.0241448692152932,1.9920634920634939,2.032653061224492,2.036734693877553,2.01006036217304,1.9765166340508828,2.001984126984129,2.0402414486921545,2.0653061224489813,1.9671814671814694,2.0357142857142874,2.003913894324855,2.0422535211267623,2.0869565217391326,2.0140845070422553,2.0551020408163287,2.003968253968256,2.026156941649901,2.06625258799172,2.053830227743273,2.0819327731092456,1.9979879275653945,2.070393374741202,2.051020408163268,1.982142857142859,2.078674948240167,2.0476190476190492,2.010204081632655,2.095948827292113,1.9778672032193176,2.069327731092439,2.036734693877553,2.0346938775510224,1.9801587301587322,2.0387755102040837,2.002012072434609,1.921722113502937,2.0476190476190492,1.9939637826961787,1.9503968253968271,2.0434782608695667,2.0420168067226907,1.9979296066252608,2.0289855072463787,1.9742063492063509,2.0321931589537243,2.0543259557344085,2.0422535211267623,2.0714285714285734,2.0462776659959774,2.0362173038229394,2.063265306122451,2.1155462184873968,2.0408163265306136,2.1029411764705905,2.1113445378151283,2.0621118012422377,2.088235294117649,2.1066098081023474,2.0434782608695667,2.105042016806725,2.053061224489798,2.0469387755102058,2.117270788912582,2.0310559006211197,2.095948827292113,2.0724637681159437,2.042857142857145,2.0140845070422553,2.0945378151260527,2.0408163265306136,2.01006036217304,2.0140845070422553,2.098739495798321,2.0559006211180146,2.0387755102040837,2.0828157349896497,2.0221327967806855,2.0890269151138736,2.0301810865191166,2.0326530612244915,2.110874200426441,2.093816631130066,2.0061224489795935,2.0265306122449003,2.0579710144927557,2.064182194616979,2.070393374741202,2.0428571428571445,2.070393374741202,1.947162426614483,1.9208494208494225,1.930501930501932,1.877819548872182,1.9589041095890432,1.9686888454011762,1.9667318982387492,1.986111111111113,2.028169014084509,2.050301810865193,1.9523809523809543,1.9768339768339787,2.0734693877551043,2.0469387755102058,1.994047619047621,1.9686888454011762,2.024489795918369,2.0393374741200847,1.9818913480885327,1.9682539682539701,2.0346938775510224,2.0408163265306136,2.042857142857145,2.022132796780686,1.9960317460317483,2.067346938775512,2.0138888888888906,1.9671814671814694,2.033730158730161,2.0138888888888906,2.0301810865191166,2.0551020408163287,1.9841269841269857,2.0387755102040837,2.0489795918367366,2.0000000000000018,2.038229376257547,2.0321931589537248,2.042857142857145,2.0265306122449003,2.0265306122449003,2.072463768115944,2.028169014084509,2.040241448692155,2.0138888888888906,2.0198412698412715,2.0257936507936525,2.0000000000000018,2.0297619047619064,2.0178571428571446,2.0000000000000018,2.036734693877553,2.0434782608695667,2.071428571428573,2.030612244897961,2.018108651911471,2.0503018108651934,2.0583501006036236,2.023809523809526,2.064386317907446,2.054325955734408,2.0158730158730176,2.097308488612838,2.0221327967806855,2.0579710144927557,2.070393374741202,1.953033268101763,1.8890977443609038,1.9189189189189206,1.8976833976833996,1.9698189134808872,1.8876190476190498,1.857142857142859,1.875695732838592,1.9066666666666687,1.9047619047619062,1.8990476190476209,1.86466165413534,1.9315068493150698,1.9217221135029372,1.903474903474905,1.9285714285714304,1.8815789473684226,1.9362934362934379,1.9401544401544424,1.875939849624062,1.9131274131274145,1.952380952380954,1.9424603174603194,1.927592954990217,1.970238095238097,1.9452054794520566,1.947162426614483,1.9589041095890432,1.972602739726029,1.9390476190476211,1.974559686888456,1.9647749510763226,2.095238095238097,1.9594594594594616,1.9555984555984571,2.0714285714285734,2.0510204081632675,1.986111111111113,2.003968253968256,2.0591836734693896,1.9880952380952401,2.036734693877553,2.002012072434609,1.9979879275653945,1.962818003913896,1.9667318982387492,1.9765166340508828,1.962818003913896,1.9219047619047636,1.967181467181469,1.92481203007519,2.0178571428571446,1.9784735812133094,1.9189189189189206,1.965794768611672,2.0062111801242253,2.0315126050420185,1.87837837837838,1.9054054054054073,1.953033268101763,1.947162426614483,1.9589041095890432,1.9804305283757355,1.9200000000000017,1.9706457925636025,1.9801587301587322,1.8534322820037121,1.9066666666666683,1.8947368421052648,1.9208494208494225,1.913127413127415,1.958333333333335,1.9015444015444032,1.9015444015444032,1.962301587301589,1.911196911196913,1.911196911196913,1.9054054054054073,1.9464285714285732,1.9503968253968271,1.8996138996139014,1.895752895752897,1.9798792756539254,1.9642857142857162,1.8971428571428586,1.8966165413533849,1.9478764478764499,1.9706457925636025,1.9549902152641896,1.9549902152641896,1.9841269841269862,1.9608610567514697,1.9589041095890432,1.9594594594594612,1.9371428571428588,1.935238095238097,1.9941291585127219,1.942084942084944,1.9647749510763226,1.9517374517374535,1.9613899613899632,1.9980430528375752,1.950476190476192,1.9485714285714304,1.9638095238095257,1.9749034749034768,1.994047619047621,2.045548654244308,2.012422360248449,1.9464285714285732,1.991951710261571,1.9412915851272035,1.9801587301587322,1.947162426614483,1.9510763209393367,2.026156941649901,1.9314285714285728,1.9921722113502953,1.9768339768339787,1.9980430528375752,1.9390476190476207,1.9333333333333351,1.9843444227005889,1.972602739726029,1.9247104247104265,1.9371428571428588,1.9009523809523827,1.8577694235588988,1.659183673469389,1.2363945578231303,2.0592808551992245,1.076719576719578,0.9925373134328367,1.6241679467485932,1.935238095238097,1.909090909090911,1.8264014466546128,1.9135338345864676,1.9729729729729746,1.8626373626373647,1.8699633699633718,1.957528957528959,1.9706457925636025,1.9440154440154458,1.8736263736263752,1.890538033395178,1.8754578754578775,1.9652509652509669,1.8942486085343246,1.9295238095238112,1.8984962406015058,1.9498069498069515,1.9248120300751894,1.9146567717996306,1.9771428571428586,1.9248120300751894,1.8947368421052648,1.942084942084944,1.900375939849626,1.875695732838592,1.8701298701298716,1.9085714285714306,1.912380952380954,1.8853383458646633,1.8984962406015058,1.9517374517374537,1.9285714285714304,1.8857142857142872,1.9742063492063509,1.8800000000000014,1.838589981447126,1.9745596868884556,1.8853383458646633,1.8479853479853494,2.0119047619047636,1.91809523809524,1.9498069498069512,1.8947368421052648,1.8853383458646633,1.9880952380952401,1.9238095238095256,1.9652509652509673,1.9202226345083506,1.9409523809523828,1.9676190476190496,1.9845559845559861,1.8643761301989168,1.9600000000000022,1.9980694980694995,1.9504761904761923,1.9523809523809543,1.988258317025442,1.9804305283757355,1.9863013698630154,1.935238095238097,1.9863013698630154,1.9843444227005889,1.982387475538162,1.940952380952383,2.033730158730161,1.982387475538162,1.9765166340508828,1.9804305283757355,1.9447619047619067,1.9980430528375752,1.971042471042473,2.032193158953724,1.9902152641878688,1.9863013698630154,1.963320463320465,1.9706457925636025,1.9266409266409283,1.911196911196913,1.9412915851272035,1.947162426614483,1.9324324324324345,1.8947368421052648,1.9843444227005889,1.9863013698630154,1.9960861056751484,1.9960861056751484,1.9295238095238116,1.972602739726029,1.940154440154442,1.972602739726029,1.9843444227005889,1.9569471624266161,1.9698189134808872,1.973469387755104,1.9265873015873036,1.9169884169884188,1.9238095238095254,1.912380952380954,1.9569471624266161,1.9452054794520566,1.9208494208494225,2.0080482897384324,1.9054054054054073,1.9305555555555576,1.9557344064386337,1.8628571428571448,1.930501930501932,1.9960861056751484,1.935238095238097,1.9960861056751484,1.9902152641878688,1.935238095238097,2.0059523809523827,1.9960861056751489,2.048289738430585,1.9229323308270696,2.0357142857142874,1.9960861056751484,1.9706457925636025,2.0510204081632675,1.9940476190476206,2.016096579476863,1.9940476190476206,2.076604554865426,2.011904761904763,2.0198412698412715,2.0078277886497085,2.0523138832998007,2.038229376257547,2.0285714285714302,2.024489795918369,2.0476190476190492,1.9801587301587322,2.0510204081632675,2.018108651911471,2.020408163265308,2.081932773109245,2.030612244897961,1.9841269841269857,2.0099206349206367,2.0442655935613696,1.9652509652509669,2.038229376257547,2.0503018108651934,2.0591836734693896,1.9765166340508824,2.067346938775512,2.034205231388332,2.0201207243460786,2.057142857142859,2.0321931589537248,2.050301810865193,2.049603174603176,2.0273972602739745,2.0078277886497085,2.0218253968253985,2.0462776659959774,1.9555984555984576,2.001984126984129,2.026156941649901,2.012072434607648,1.992063492063494,1.9409523809523828,1.9390476190476207,1.940952380952383,2.0523138832998007,1.9671814671814694,2.0158730158730176,2.0277777777777795,2.003968253968256,2.0019841269841288,2.0321931589537243,1.9960317460317483,2.028169014084509,2.0591836734693896,1.9880952380952401,2.0285714285714302,2.0428571428571445,2.0510204081632675,1.9555984555984576,2.0257936507936525,2.0416666666666687,1.9845559845559861,1.9749034749034768,2.0543259557344085,2.067346938775512,1.9941291585127223,2.0543259557344085,2.0257936507936525,2.095238095238097,2.0321931589537248,2.063265306122451,2.0938775510204097,2.0396825396825413,2.0436507936507953,2.0836734693877568,2.0612244897959204,2.0612244897959204,2.0510204081632675,2.0387755102040837,2.160173160173162,2.088235294117649,2.095928226363011,2.0628019323671483,1.8029675638371272,1.607843137254899],\"id\":[478882,478883,478884,478885,478886,478887,478888,478889,478890,478891,478892,478893,478894,478895,478896,478897,478898,478899,478900,478901,478902,478903,478904,478905,478906,478907,478908,478909,478910,478911,478912,478913,478914,478915,478916,478917,478918,478919,478920,478921,478922,478923,478924,478925,478926,478927,478928,478929,478930,478931,478932,478933,478934,478935,478936,478937,478938,478939,478940,478941,478942,478943,478944,478945,478946,478947,478948,478949,478950,478951,478952,478953,478954,478955,478956,478957,478958,478959,478960,478961,478962,478963,478964,478965,478966,478967,478968,478969,478970,478971,478972,478973,478974,478975,478976,478977,478978,478979,478980,478981,478982,478983,478984,478985,478986,478987,478988,478989,478990,478991,478992,478993,478994,478995,478996,478997,478998,478999,479000,479001,479002,479003,479004,479005,479006,479007,479008,479009,479010,479011,479012,479013,479014,479015,479016,479017,479018,479019,479020,479021,479022,479023,479024,479025,479026,479027,479028,479029,479030,479031,479032,479033,479034,479035,479036,479037,479038,479039,479040,479041,479042,479043,479044,479045,479046,479047,479048,479049,479050,479051,479052,479053,479054,479055,479056,479057,479058,479059,479060,479061,479062,479063,479064,479065,479066,479067,479068,479069,479070,479071,479072,479073,479074,479075,479076,479077,479078,479079,479080,479081,479082,479083,479084,479085,479086,479087,479088,479089,479090,479091,479092,479093,479094,479095,479096,479097,479098,479099,479100,479101,479102,479103,479104,479105,479106,479107,479108,479109,479110,479111,479112,479113,479114,479115,479116,479117,479118,479119,479120,479121,479122,479123,479124,479125,479126,479127,479128,479129,479130,479131,479132,479133,479134,479135,479136,479137,479138,479139,479140,479141,479142,479143,479144,479145,479146,479147,479148,479149,479150,479151,479152,479153,479154,479155,479156,479157,479158,479159,479160,479161,479162,479163,479164,479165,479166,479167,479168,479169,479170,479171,479172,479173,479174,479175,479176,479177,479178,479179,479180,479181,479182,479183,479184,479185,479186,479187,479188,479189,479190,479191,479192,479193,479194,479195,479196,479197,479198,479199,479200,479201,479202,479203,479204,479205,479206,479207,479208,479209,479210,479211,479212,479213,479214,479215,479216,479217,479218,479219,479220,479221,479222,479223,479224,479225,479226,479227,479228,479229,479230,479231,479232,479233,479234,479235,479236,479237,479238,479239,479240,479241,479242,479243,479244,479245,479246,479247,479248,479249,479250,479251,479252,479253,479254,479255,479256,479257,479258,479259,479260,479261,479262,479263,479264,479265,479266,479267,479268,479269,479270,479271,479272,479273,479274,479275,479276,479277,479278,479279,479280,479281,479282,479283,479284,479285,479286,479287,479288,479289,479290,479291,479292,479293,479294,479295,479296,479297,479298,479299,479300,479301,479302,479303,479304,479305,479306,479307,479308,479309,479310,479311,479312,479313,479314,479315,479316,479317,479318,479319,479320,479321,479322,479323,479324,479325,479326,479327,479328,479329,479330,479331,479332,479333,479334,479335,479336,479337,479338,479339,479340,479341,479342,479343,479344,479345,479346,479347,479348,479349,479350,479351,479352,479353,479354,479355,479356,479357,479358,479359,479360,479361,479362,479363,479364,479365,479366,479367,479368,479369,479370,479371,479372,479373,479374,479375,479376,479377,479378,479379,479380,479381,479382,479383,479384,479385,479386,479387,479388,479389,479390,479391,479392,479393,479394,479395,479396,479397,479398,479399,479400,479401,479402,479403,479404,479405,479406,479407,479408,479409,479410,479411,479412,479413,479414,479415,479416,479417,479418,479419,479420,479421,479422,479423,479424,479425,479426,479427,479428,479429,479430,479431,479432,479433,479434,479435,479436,479437,479438,479439,479440,479441,479442,479443,479444,479445,479446,479447,479448,479449,479450,479451,479452,479453,479454,479455,479456,479457,479458,479459,479460,479461,479462,479463,479464,479465,479466,479467,479468,479469,479470,479471,479472,479473,479474,479475,479476,479477,479478,479479,479480,479481,479482,479483,479484,479485,479486,479487,479488,479489,479490,479491,479492,479493,479494,479495,479496,479497,479498,479499,479500,479501,479502,479503,479504,479505,479506,479507,479508,479509,479510,479511,479512,479513,479514,479515,479516,479517,479518,479519,479520,479521,479522,479523,479524,479525,479526,479527,479528,479529,479530,479531,479532,479533,479534,479535,479536,479537,479538,479539,479540,479541,479542,479543,479544,479545,479546,479547,479548,479549,479550,479551,479552,479553,479554,479555,479556,479557,479558,479559,479560,479561,479562,479563,479564,479565,479566,479567,479568,479569,479570,479571,479572,479573,479574,479575,479576,479577,479578,479579,479580,479581,479582,479583,479584,479585,479586,479587,479588,479589,479590,479591,479592,479593,479594,479595,479596,479597,479598,479599,479600,479601,479602,479603,479604,479605,479606,479607,479608,479609,479610,479611,479612,479613,479614,479615,479616,479617,479618,479619,479620,479621,479622,479623,479624,479625,479626,479627,479628,479629,479630,479631,479632,479633,479634,479635,479636,479637,479638,479639,479640,479641,479642,479643,479644,479645,479646,479647,479648,479649,479650,479651,479652,479653,479654,479655,479656,479657,479658,479659,479660,479661,479662,479663,479664,479665,479666,479667,479668,479669,479670,479671,479672,479673,479674,479675,479676,479677,479678,479679,479680,479681,479682,479683,479684,479685,479686,479687,479688,479689,479690,479691,479692,479693,479694,479695,479696,479697,479698,479699,479700,479701,479702,479703,479704,479705,479706,479707,479708,479709,479710,479711,479712,479713,479714,479715,479716,479717,479718,479719,479720,479721,479722,479723,479724,479725,479726,479727,479728,479729,479730,479731,479732,479733,479734,479735,479736,479737,479738,479739,479740,479741,479742,479743,479744,479745,479746,479747,479748,479749,479750,479751,479752,479753,479754,479755,479756,479757,479758,479759,479760,479761,479762,479763,479764,479765,479766,479767,479768,479769,479770,479771,479772,479773,479774,479775,479776,479777,479778,479779,479780,479781,479782,479783,479784,479785,479786,479787,479788,479789,479790,479791,479792,479793,479794,479795,479796,479797,479798,479799,479800,479801,479802,479803,479804,479805,479806,479807,479808,479809,479810,479811,479812,479813,479814,479815,479816,479817,479818,479819,479820,479821,479822,479823,479824,479825,479826,479827,479828,479829,479830,479831,479832,479833,479834,479835,479836,479837,479838,479839,479840,479841,479842,479843,479844,479845,479846,479847,479848,479849,479850,479851,479852,479853,479854,479855,479856,479857,479858,479859,479860,479861,479862,479863,479864,479865,479866,479867,479868,479869,479870,479871,479872,479873,479874,479875,479876,479877,479878,479879,479880,479881,479882,479883,479884,479885,479886,479887,479888,479889,479890,479891,479892,479893,479894,479895,479896,479897,479898,479899,479900,479901,479902,479903,479904,479905,479906,479907,479908,479909,479910,479911,479912,479913,479914,479915,479916,479917,479918,479919,479920,479921,479922,479923,479924,479925,479926,479927,479928,479929,479930,479931,479932,479933,479934,479935,479936,479937,479938,479939,479940,479941],\"equivergpower\":[50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0,50.0],\"drivelength\":[1.2349999999999992,1.3864285714285716,1.4421428571428576,1.4371428571428584,1.4042857142857155,1.4071428571428584,1.4157142857142868,1.4100000000000013,1.402857142857144,1.4071428571428584,1.4000000000000012,1.3942857142857155,1.4000000000000012,1.4071428571428584,1.4000000000000012,1.4142857142857155,1.4242857142857157,1.4171428571428584,1.410000000000001,1.422857142857144,1.4300000000000015,1.4442857142857157,1.4442857142857157,1.445714285714287,1.435714285714287,1.4400000000000013,1.435714285714287,1.41857142857143,1.3914285714285726,1.3928571428571441,1.3971428571428584,1.4100000000000013,1.41857142857143,1.422857142857144,1.422857142857144,1.4128571428571441,1.4100000000000013,1.4214285714285726,1.4471428571428584,1.4585714285714297,1.465714285714287,1.4528571428571442,1.4428571428571444,1.445714285714287,1.44857142857143,1.4442857142857157,1.4328571428571442,1.4371428571428584,1.4471428571428584,1.4557142857142873,1.4400000000000013,1.425714285714287,1.41857142857143,1.4085714285714297,1.40857142857143,1.4142857142857155,1.4028571428571441,1.3971428571428586,1.4200000000000013,1.4200000000000013,1.425714285714287,1.4342857142857155,1.4200000000000013,1.405714285714287,1.4114285714285728,1.4242857142857157,1.4314285714285728,1.4428571428571444,1.445714285714287,1.4371428571428586,1.4400000000000013,1.4414285714285728,1.4342857142857155,1.4214285714285726,1.4100000000000013,1.4157142857142868,1.4314285714285728,1.4314285714285728,1.4314285714285728,1.4157142857142868,1.4100000000000013,1.4242857142857157,1.430000000000001,1.4300000000000015,1.4342857142857155,1.4400000000000013,1.4500000000000013,1.43857142857143,1.41857142857143,1.4128571428571441,1.5300000000000011,1.265714285714287,1.1242857142857154,1.070000000000001,1.112857142857144,1.275714285714287,1.5485714285714298,1.4200000000000013,1.422857142857144,1.410000000000001,1.3971428571428586,1.4071428571428584,1.4242857142857157,1.435714285714287,1.4542857142857157,1.4542857142857157,1.435714285714287,1.4242857142857157,1.4042857142857157,1.4071428571428584,1.4100000000000013,1.4157142857142868,1.4085714285714297,1.4242857142857155,1.4342857142857155,1.44857142857143,1.4542857142857157,1.4414285714285728,1.4200000000000013,1.415714285714287,1.4128571428571441,1.4114285714285728,1.4400000000000013,1.4442857142857157,1.4557142857142873,1.442857142857144,1.4285714285714297,1.4200000000000013,1.442857142857144,1.4485714285714297,1.4528571428571442,1.4400000000000013,1.435714285714287,1.4371428571428586,1.4442857142857157,1.4442857142857157,1.445714285714287,1.435714285714287,1.4242857142857157,1.4242857142857157,1.4285714285714297,1.4271428571428584,1.4328571428571442,1.4228571428571444,1.4128571428571441,1.4071428571428584,1.4314285714285728,1.4371428571428584,1.4342857142857155,1.4428571428571442,1.4442857142857157,1.4485714285714302,1.46857142857143,1.4600000000000013,1.44857142857143,1.4571428571428584,1.4600000000000013,1.4600000000000013,1.4571428571428584,1.43857142857143,1.4428571428571444,1.4514285714285728,1.4614285714285729,1.475714285714287,1.4842857142857158,1.465714285714287,1.4685714285714297,1.4642857142857157,1.46857142857143,1.481428571428573,1.4771428571428584,1.4614285714285726,1.4600000000000013,1.4542857142857157,1.4600000000000013,1.4642857142857155,1.4700000000000013,1.4742857142857158,1.4800000000000013,1.4642857142857157,1.45857142857143,1.4400000000000013,1.4214285714285726,1.415714285714287,1.43857142857143,1.44857142857143,1.4742857142857155,1.4714285714285729,1.465714285714287,1.4642857142857157,1.4671428571428584,1.4514285714285728,1.445714285714287,1.4371428571428586,1.4414285714285726,1.4428571428571444,1.4542857142857155,1.462857142857144,1.4685714285714297,1.465714285714287,1.4700000000000013,1.4557142857142868,1.4485714285714302,1.4514285714285726,1.4442857142857157,1.4300000000000015,1.4342857142857155,1.42857142857143,1.4414285714285726,1.4542857142857155,1.4671428571428584,1.4642857142857157,1.465714285714287,1.4714285714285729,1.4714285714285726,1.4557142857142873,1.4371428571428586,1.425714285714287,1.4371428571428586,1.4671428571428584,1.4542857142857155,1.442857142857144,1.4200000000000013,1.4114285714285728,1.4171428571428586,1.430000000000001,1.4142857142857155,1.4214285714285726,1.4271428571428584,1.4442857142857157,1.4628571428571442,1.4542857142857157,1.4414285714285726,1.4400000000000013,1.4214285714285726,1.430000000000001,1.4242857142857157,1.4171428571428586,1.4314285714285728,1.4614285714285726,1.46857142857143,1.4785714285714298,1.4600000000000013,1.44857142857143,1.4514285714285728,1.4557142857142868,1.4642857142857157,1.4642857142857157,1.465714285714287,1.465714285714287,1.4742857142857155,1.475714285714287,1.48857142857143,1.4714285714285729,1.465714285714287,1.455714285714287,1.4571428571428586,1.4542857142857155,1.4700000000000015,1.47857142857143,1.4928571428571442,1.4914285714285729,1.5000000000000016,1.4871428571428587,1.4914285714285729,1.4971428571428587,1.4942857142857158,1.4828571428571444,1.485714285714287,1.4928571428571444,1.4914285714285729,1.4942857142857158,1.4914285714285729,1.48857142857143,1.4728571428571444,1.4700000000000015,1.4600000000000013,1.45857142857143,1.465714285714287,1.4742857142857155,1.4614285714285729,1.450000000000001,1.4628571428571442,1.4642857142857157,1.4700000000000015,1.4671428571428584,1.4614285714285729,1.4428571428571444,1.4428571428571444,1.425714285714287,1.4100000000000013,1.4114285714285728,1.4200000000000013,1.425714285714287,1.4314285714285728,1.4214285714285726,1.41857142857143,1.4271428571428584,1.4471428571428584,1.4500000000000013,1.4557142857142873,1.45857142857143,1.46857142857143,1.4700000000000015,1.4785714285714298,1.4557142857142868,1.445714285714287,1.4328571428571442,1.4328571428571442,1.435714285714287,1.4414285714285726,1.4500000000000013,1.4614285714285726,1.4600000000000013,1.4614285714285726,1.4471428571428584,1.4428571428571444,1.4485714285714297,1.4514285714285728,1.4542857142857155,1.4600000000000013,1.445714285714287,1.4342857142857157,1.435714285714287,1.4428571428571442,1.445714285714287,1.4471428571428584,1.4400000000000013,1.4142857142857155,1.405714285714287,1.4142857142857155,1.4200000000000013,1.422857142857144,1.4357142857142873,1.4300000000000015,1.4285714285714297,1.4414285714285728,1.4400000000000013,1.4342857142857157,1.4471428571428584,1.4471428571428584,1.4571428571428586,1.4742857142857155,1.4757142857142869,1.45857142857143,1.45857142857143,1.4500000000000013,1.4485714285714302,1.4542857142857155,1.4571428571428584,1.4471428571428584,1.4528571428571442,1.44857142857143,1.4371428571428586,1.4314285714285728,1.4371428571428586,1.4314285714285728,1.430000000000001,1.4200000000000013,1.4142857142857155,1.425714285714287,1.43857142857143,1.4371428571428586,1.4442857142857157,1.4571428571428584,1.4628571428571442,1.4614285714285729,1.4342857142857155,1.4357142857142868,1.4371428571428584,1.4542857142857155,1.4514285714285728,1.4442857142857157,1.4271428571428584,1.4514285714285728,1.4528571428571442,1.4500000000000015,1.445714285714287,1.4271428571428584,1.4171428571428586,1.42857142857143,1.43857142857143,1.4428571428571442,1.4414285714285726,1.4271428571428584,1.402857142857144,1.3914285714285728,1.3957142857142868,1.4028571428571441,1.4128571428571441,1.435714285714287,1.4400000000000013,1.4542857142857157,1.4528571428571442,1.4200000000000013,1.4100000000000015,1.4000000000000012,1.3957142857142868,1.3971428571428584,1.4042857142857155,1.4042857142857157,1.4328571428571442,1.445714285714287,1.445714285714287,1.4300000000000015,1.4242857142857157,1.4157142857142868,1.4042857142857155,1.405714285714287,1.4128571428571441,1.5271428571428582,1.2385714285714298,1.0814285714285725,1.0400000000000011,1.1185714285714297,1.3114285714285727,1.5900000000000012,1.4628571428571444,1.4671428571428584,1.4628571428571442,1.445714285714287,1.4314285714285728,1.422857142857144,1.4228571428571444,1.4342857142857155,1.4400000000000013,1.430000000000001,1.4114285714285728,1.4285714285714297,1.4142857142857157,1.4200000000000015,1.4328571428571442,1.4271428571428584,1.42857142857143,1.4471428571428584,1.4314285714285728,1.4285714285714297,1.422857142857144,1.4014285714285726,1.405714285714287,1.4071428571428584,1.4214285714285726,1.435714285714287,1.4342857142857155,1.4300000000000015,1.4328571428571442,1.4271428571428584,1.425714285714287,1.422857142857144,1.4314285714285728,1.4514285714285728,1.4571428571428586,1.4514285714285728,1.4371428571428586,1.4142857142857155,1.4085714285714297,1.410000000000001,1.4114285714285726,1.41857142857143,1.41857142857143,1.4114285714285726,1.4128571428571441,1.4071428571428584,1.4042857142857155,1.4171428571428586,1.4142857142857155,1.4342857142857155,1.4485714285714297,1.4442857142857157,1.4342857142857155,1.4314285714285728,1.410000000000001,1.4142857142857155,1.405714285714287,1.4000000000000012,1.410000000000001,1.4200000000000013,1.430000000000001,1.4400000000000013,1.4371428571428586,1.4214285714285726,1.415714285714287,1.4071428571428584,1.4114285714285726,1.4128571428571441,1.4214285714285726,1.4342857142857155,1.44857142857143,1.4614285714285729,1.4600000000000013,1.4442857142857157,1.4300000000000015,1.4171428571428584,1.4085714285714297,1.4071428571428584,1.415714285714287,1.4271428571428584,1.425714285714287,1.4242857142857157,1.4200000000000013,1.4228571428571442,1.4300000000000013,1.4357142857142868,1.4400000000000013,1.4528571428571442,1.45857142857143,1.4628571428571442,1.4371428571428586,1.4200000000000013,1.41857142857143,1.4357142857142868,1.4514285714285726,1.4528571428571442,1.4400000000000013,1.43857142857143,1.4300000000000015,1.4400000000000013,1.4428571428571442,1.4528571428571442,1.4314285714285728,1.4142857142857157,1.4042857142857157,1.4071428571428586,1.410000000000001,1.4285714285714297,1.4142857142857155,1.4114285714285726,1.4142857142857155,1.4100000000000013,1.4014285714285726,1.395714285714287,1.4128571428571441,1.4371428571428584,1.4500000000000015,1.4614285714285726,1.4657142857142869,1.4571428571428586,1.4585714285714297,1.4542857142857155,1.4500000000000013,1.445714285714287,1.4414285714285726,1.4428571428571442,1.4371428571428586,1.4371428571428586,1.4428571428571442,1.4414285714285726,1.44857142857143,1.4514285714285728,1.4371428571428586,1.4314285714285728,1.4314285714285728,1.4400000000000013,1.4414285714285728,1.445714285714287,1.4528571428571442,1.4628571428571442,1.4628571428571442,1.455714285714287,1.42857142857143,1.422857142857144,1.4228571428571444,1.4342857142857155,1.4371428571428584,1.4342857142857155,1.4228571428571444,1.425714285714287,1.4271428571428584,1.4428571428571444,1.4414285714285728,1.4485714285714297,1.445714285714287,1.4557142857142873,1.465714285714287,1.4628571428571442,1.4500000000000013,1.4400000000000013,1.4300000000000013,1.43857142857143,1.4428571428571444,1.43857142857143,1.425714285714287,1.4171428571428584,1.415714285714287,1.41857142857143,1.4285714285714297,1.4357142857142873,1.4271428571428584,1.4342857142857155,1.4128571428571441,1.4071428571428586,1.4042857142857157,1.4042857142857155,1.4071428571428584,1.4257142857142868,1.4242857142857157,1.425714285714287,1.4271428571428584,1.4214285714285726,1.402857142857144,1.4128571428571441,1.4157142857142868,1.4042857142857155,1.410000000000001,1.3885714285714297,1.37857142857143,1.4000000000000012,1.4214285714285726,1.4428571428571442,1.45857142857143,1.4500000000000013,1.4500000000000013,1.4528571428571442,1.445714285714287,1.4442857142857157,1.43857142857143,1.4285714285714297,1.4300000000000015,1.4357142857142873,1.422857142857144,1.4200000000000013,1.4114285714285728,1.4100000000000013,1.4314285714285728,1.4371428571428586,1.4328571428571442,1.41857142857143,1.4014285714285726,1.4042857142857157,1.4300000000000013,1.4300000000000013,1.430000000000001,1.4242857142857157,1.4285714285714297,1.4271428571428584,1.430000000000001,1.4271428571428584,1.41857142857143,1.4271428571428584,1.4371428571428584,1.4357142857142868,1.4414285714285728,1.4414285714285726,1.422857142857144,1.4142857142857155,1.4028571428571441,1.4042857142857155,1.41857142857143,1.4200000000000013,1.4242857142857157,1.4285714285714297,1.430000000000001,1.4285714285714297,1.4214285714285726,1.4214285714285726,1.4285714285714297,1.4271428571428584,1.4300000000000015,1.4371428571428586,1.435714285714287,1.4300000000000015,1.4400000000000013,1.4557142857142868,1.4642857142857157,1.4628571428571442,1.4514285714285728,1.4328571428571442,1.435714285714287,1.4371428571428586,1.4171428571428584,1.4071428571428584,1.4071428571428584,1.4171428571428584,1.4242857142857157,1.4285714285714297,1.4300000000000015,1.435714285714287,1.4371428571428586,1.4471428571428584,1.4500000000000013,1.4557142857142873,1.4642857142857155,1.4500000000000013,1.4414285714285726,1.43857142857143,1.4285714285714297,1.4271428571428584,1.4342857142857155,1.4400000000000013,1.4471428571428584,1.4428571428571444,1.4300000000000015,1.41857142857143,1.41857142857143,1.4300000000000015,1.4400000000000013,1.44857142857143,1.4500000000000013,1.4542857142857155,1.4585714285714297,1.4600000000000013,1.4614285714285726,1.4528571428571442,1.4400000000000013,1.425714285714287,1.4100000000000013,1.4085714285714297,1.4214285714285726,1.4328571428571442,1.455714285714287,1.4614285714285726,1.4571428571428586,1.4657142857142869,1.4585714285714297,1.4514285714285728,1.4471428571428584,1.4357142857142868,1.4200000000000013,1.4285714285714297,1.425714285714287,1.4357142857142868,1.4200000000000013,1.4042857142857157,1.39857142857143,1.4157142857142873,1.4300000000000015,1.4442857142857157,1.4300000000000015,1.4285714285714297,1.4242857142857157,1.4171428571428584,1.410000000000001,1.4028571428571441,1.4085714285714297,1.4271428571428584,1.430000000000001,1.4328571428571442,1.4357142857142873,1.425714285714287,1.4157142857142868,1.405714285714287,1.39857142857143,1.4071428571428584,1.41857142857143,1.4200000000000013,1.4214285714285726,1.4300000000000015,1.4400000000000013,1.4542857142857157,1.4414285714285728,1.4342857142857155,1.4457142857142868,1.4500000000000015,1.4471428571428584,1.4500000000000013,1.435714285714287,1.4300000000000015,1.4428571428571444,1.4414285714285728,1.4314285714285728,1.425714285714287,1.4214285714285726,1.41857142857143,1.4328571428571442,1.435714285714287,1.4428571428571444,1.4328571428571442,1.4414285714285726,1.455714285714287,1.4628571428571444,1.4528571428571442,1.4442857142857157,1.4200000000000013,1.395714285714287,1.3842857142857155,1.3814285714285726,1.3900000000000012,1.4100000000000013,1.425714285714287,1.4214285714285726,1.4300000000000015,1.445714285714287,1.4400000000000013,1.43857142857143,1.425714285714287,1.4271428571428584,1.4300000000000013,1.4400000000000013,1.4214285714285726,1.415714285714287,1.410000000000001,1.4071428571428584,1.4071428571428584,1.4128571428571441,1.4142857142857155,1.4142857142857155,1.4100000000000013,1.4014285714285726,1.4042857142857155,1.405714285714287,1.402857142857144,1.405714285714287,1.4142857142857155,1.422857142857144,1.4414285714285726,1.4414285714285728,1.43857142857143,1.4271428571428584,1.4271428571428584,1.42857142857143,1.4314285714285728,1.4300000000000015,1.4500000000000013,1.4528571428571442,1.4514285714285728,1.455714285714287,1.4371428571428586,1.4342857142857155,1.4442857142857155,1.4514285714285728,1.4585714285714297,1.462857142857144,1.4614285714285729,1.4728571428571442,1.4614285714285729,1.435714285714287,1.4114285714285728,1.38857142857143,1.4014285714285726,1.4142857142857155,1.4171428571428584,1.425714285714287,1.4214285714285726,1.4242857142857157,1.43857142857143,1.4485714285714297,1.4542857142857155,1.4628571428571442,1.4585714285714297,1.4542857142857155,1.4500000000000013,1.44857142857143,1.4400000000000013,1.4242857142857157,1.4528571428571442,1.425714285714287,1.411904761904763,1.1614285714285724,1.0385714285714296,1.00904761904762,1.1628571428571441,1.3300000000000012,1.5104761904761919,1.4514285714285728,1.4700000000000013,1.4428571428571442,1.4542857142857155,1.4600000000000013,1.4528571428571444,1.45857142857143,1.4485714285714297,1.43857142857143,1.43857142857143,1.4614285714285726,1.455714285714287,1.4628571428571444,1.4542857142857155,1.45857142857143,1.4471428571428584,1.4428571428571444,1.4428571428571442,1.462857142857144,1.4742857142857155,1.4828571428571442,1.462857142857144,1.4400000000000013,1.4371428571428586,1.4442857142857157,1.4442857142857157,1.4400000000000013,1.4314285714285728,1.4342857142857155,1.4328571428571442,1.4428571428571444,1.4442857142857157,1.4271428571428584,1.4142857142857155,1.4214285714285726,1.410000000000001,1.415714285714287,1.4414285714285726,1.4328571428571442,1.4414285714285726,1.44857142857143,1.43857142857143,1.442857142857144,1.4400000000000013,1.4328571428571442,1.4314285714285728,1.4428571428571442,1.4542857142857157,1.47857142857143,1.455714285714287,1.4757142857142873,1.4685714285714297,1.4728571428571442,1.4700000000000015,1.4785714285714298,1.4628571428571442,1.4642857142857157,1.4514285714285728,1.445714285714287,1.4500000000000013,1.4514285714285728,1.4500000000000013,1.44857142857143,1.4471428571428584,1.4557142857142873,1.4642857142857155,1.4471428571428584,1.4428571428571444,1.445714285714287,1.45857142857143,1.45857142857143,1.45857142857143,1.442857142857144,1.4528571428571442,1.4500000000000013,1.4528571428571442,1.43857142857143,1.425714285714287,1.4142857142857155,1.4171428571428584,1.4214285714285726,1.4300000000000015,1.4400000000000013,1.44857142857143,1.4500000000000013,1.4571428571428584,1.4571428571428584,1.4471428571428586,1.4400000000000013,1.435714285714287,1.4400000000000013,1.4485714285714297,1.4285714285714297,1.39857142857143,1.3814285714285728,1.3871428571428586,1.41857142857143,1.442857142857144,1.4342857142857155,1.4285714285714297,1.4200000000000013,1.4214285714285726,1.425714285714287,1.4100000000000013,1.3900000000000015,1.38857142857143,1.3971428571428586,1.4285714285714297,1.4571428571428584,1.4514285714285728,1.4571428571428584,1.4528571428571442,1.4514285714285728,1.4442857142857155,1.4571428571428586,1.4542857142857155,1.4614285714285729,1.465714285714287,1.4571428571428584,1.43857142857143,1.435714285714287,1.4357142857142868,1.4314285714285728,1.4357142857142868,1.4328571428571442,1.4485714285714297,1.4542857142857155,1.465714285714287,1.4571428571428584,1.4471428571428584,1.4200000000000013,1.4171428571428584,1.4128571428571441,1.425714285714287,1.435714285714287,1.4328571428571442,1.4142857142857155,1.4157142857142868,1.4214285714285726,1.4285714285714297,1.4471428571428584,1.4514285714285726,1.4542857142857155,1.4471428571428584,1.455714285714287,1.4414285714285726,1.4428571428571442,1.4471428571428584,1.4442857142857157,1.4342857142857157,1.4400000000000013,1.4428571428571444,1.4557142857142868,1.4757142857142869,1.4800000000000013,1.465714285714287,1.455714285714287,1.4528571428571442,1.4471428571428586,1.4414285714285728,1.43857142857143,1.42857142857143,1.4342857142857157,1.455714285714287,1.4542857142857155,1.4557142857142873,1.4571428571428584,1.4557142857142873,1.4514285714285728,1.4600000000000013,1.4428571428571444,1.4414285714285726,1.4428571428571442,1.4371428571428586,1.4400000000000013,1.4414285714285728,1.4314285714285728,1.4200000000000013,1.430000000000001,1.435714285714287,1.4471428571428586,1.4585714285714297,1.4700000000000013,1.4685714285714297,1.4614285714285729,1.45857142857143,1.4471428571428584,1.4557142857142873,1.45857142857143,1.45857142857143,1.445714285714287,1.4428571428571444,1.4442857142857157,1.4657142857142869,1.4685714285714297,1.4714285714285726,1.4585714285714297,1.4428571428571444,1.4428571428571442,1.435714285714287,1.4271428571428584,1.425714285714287,1.4200000000000013,1.4461904761904774,1.4233333333333325,1.2440476190476177,0.8199999999999985],\"forceratio\":[0.03972678756699584,0.4974115916526282,0.6741665301645458,0.6744989347256576,0.6233611457782683,0.6210903633832439,0.6221648392321192,0.6192310212513128,0.601583370364007,0.5930372155706205,0.5984739350515536,0.5942432723898288,0.5932025884066408,0.5948554495548792,0.5921371185570319,0.5971156000256457,0.5975590265201602,0.5910654960858319,0.5815059169925385,0.5829798532799921,0.5796674771051418,0.5889377888135305,0.5791738660747885,0.5728056962269965,0.5774561980293176,0.5787967195326634,0.5763719927113122,0.5812539903620231,0.5748719544379559,0.5698399819511137,0.582075503788666,0.5838043795429333,0.5798351231460419,0.575356978518784,0.5764854237372613,0.5709599830290283,0.566408759060488,0.5665070317848139,0.567078135204503,0.5785584462711308,0.5866290670569015,0.5787416098386511,0.5733693523524228,0.5696319095113898,0.5651794781552464,0.5702784644637959,0.5725796276358313,0.5752799511194947,0.5831427483650157,0.5781427425083003,0.5799996430812353,0.5812895617642508,0.5745840514812799,0.5801147423806787,0.5787720380256172,0.5748381789273533,0.5688286482637621,0.5662296758626436,0.5628842141543262,0.5681200399886374,0.5700491322642036,0.5858584444433159,0.5818904687108489,0.5815020051958051,0.5727660803779953,0.5610707173906455,0.5504749741353532,0.5631348871297679,0.5651588925960973,0.5662593824996708,0.5551132736877591,0.5542057943424299,0.5525997031254604,0.5606403482328213,0.5545992724205905,0.5629867594776945,0.5563679917457496,0.5646847456876387,0.5739162251934697,0.5783132260444497,0.5680426372039558,0.5593912414191308,0.5457514707422717,0.5371183524314338,0.5342551682678327,0.550204748437983,0.5579189047550724,0.5616739955370476,0.5789087444296543,0.5807451884167816,0.571602913736349,0.5896036228166451,0.5942292510206446,0.5991465248780048,0.5971320691117451,0.5784936332804786,0.5657180966386495,0.5629523854761883,0.5654121002443593,0.5721771465406498,0.5694244813508953,0.5578562906623559,0.5641723645807228,0.5561409881717547,0.5670093441604207,0.5708054011788022,0.5763567350785537,0.5666624517998229,0.5618944427607053,0.5563214187619069,0.5682254523206625,0.5677460020847158,0.5711482455825835,0.560435277275112,0.55946720918303,0.5616880470611991,0.5671999906060381,0.5729267227970258,0.5761942727852107,0.5729832141058131,0.5753964305034915,0.5655101546253335,0.5630124138208003,0.5662704214820469,0.5730311744096772,0.5792577117138196,0.5765478279975158,0.5664681392019764,0.5597562041514716,0.5549260409166188,0.561159328736088,0.567609596310056,0.5603149437829291,0.5576373171386447,0.5465684636315256,0.54831788964336,0.5526862493049185,0.5610910652938503,0.5626055251835167,0.5656958711726434,0.560700991497602,0.5553637925123871,0.5499980621210384,0.5565203924078672,0.5631250782885265,0.5685924529072586,0.5758133855375867,0.5723040400601133,0.5666135039799746,0.5643731052358862,0.5653663107028946,0.5662464887305592,0.566907735719562,0.5689755123747696,0.567570525616749,0.5696988141259047,0.5732370165319267,0.5742617382908731,0.5674447137216896,0.5669628427008031,0.5690768972533433,0.574357283326943,0.5698704386461415,0.5598598754348283,0.5582724791458316,0.5572171352924221,0.5592487381217657,0.5629963288655985,0.5544893172497947,0.5466026078363059,0.5505828676637635,0.5466550385522455,0.5585272458282122,0.5669966524488247,0.5708830044407422,0.5751861605214851,0.5713481141207178,0.559008503050598,0.5586664742619443,0.5647071807082664,0.5720281891347703,0.5853153382403387,0.5909443139505919,0.5880021634579504,0.5704826793352927,0.5605294535605465,0.5501341194778708,0.5520590296067323,0.5571249942537784,0.5649466337969689,0.559708482121728,0.562230922219029,0.5662580156314913,0.5661022528047543,0.5624549688781288,0.5637478669656693,0.5589002290100062,0.5605056124071797,0.5711040915604868,0.5675134983668695,0.562042418752414,0.5663407026355243,0.5623905824666828,0.5564975905175787,0.5709166114075686,0.5612542561400153,0.5528892393529362,0.5615877301981488,0.5567240833765985,0.5558851096861358,0.5662102040445224,0.5588798070170184,0.5514917937709432,0.5664063958717014,0.5646379300884669,0.570848739229864,0.562845010907503,0.5498788983256869,0.5508594925095017,0.5598956226753962,0.5590839387075991,0.5525037379055533,0.5415846024354677,0.5354703021224889,0.5454654437427943,0.5572240761914622,0.5675627191101311,0.5647365855808255,0.5598450396701148,0.5560386096179559,0.5513429733091859,0.5495463889108574,0.5553282234564334,0.5584911416191642,0.5542444119282924,0.5516075438349965,0.5510690103417082,0.5591118724932214,0.5681803131287331,0.5700884628087434,0.5593359681282725,0.5452341778216794,0.5419199429769567,0.5517669628252657,0.5520437291903786,0.5534703354694209,0.5474308200799489,0.550628574700155,0.5540703775136577,0.5645828979591248,0.5617803784753186,0.5626791865481107,0.5552722649807347,0.5541173311077853,0.54730926736241,0.5481886749681548,0.5464078716686362,0.5576137954905211,0.5639921814768246,0.5647668952373397,0.5548931463801522,0.5453835989686109,0.5398865185523206,0.5494681023466497,0.5587408618083818,0.5622800375043351,0.5585386724466852,0.554285604492738,0.5373082295591773,0.5292887588724647,0.5322490082065982,0.535735906617974,0.5434297488372404,0.5566616344197508,0.5597631352907662,0.5637373539261645,0.5667339236310749,0.5630566404608663,0.5555844828373118,0.5535672718132281,0.5423687058559811,0.5428914065941132,0.5427325140565864,0.546438935834489,0.5576514355191954,0.561971498970693,0.555780909569677,0.5600396990203729,0.560856987350176,0.5500003735349974,0.5626045752178412,0.5625091219745975,0.5631383197561592,0.5597235866873199,0.5601452599396542,0.5549719535887696,0.5612162910851166,0.5647032728593357,0.5612532649875265,0.5573648529732981,0.5583447310236683,0.5583268667095493,0.5461120021305716,0.5482321212756853,0.548925528391683,0.551026498283621,0.5541852278615231,0.5552938356718187,0.5457505065297661,0.539630840355442,0.5409515674576866,0.5376609093126078,0.5421973860418559,0.5541366821444356,0.5653642777302139,0.5675259042614098,0.5664485263233979,0.5583084118488439,0.5525826662488738,0.5524808248592137,0.5516982960473229,0.5570107363404794,0.5524497619449102,0.5482132091064569,0.5462275375837191,0.5403123071799438,0.5426234017530256,0.549623585858924,0.5579144246459391,0.563107643315823,0.5632661366181326,0.5584624194396024,0.553109254065656,0.5436509046136516,0.5490921798652708,0.5471507400946491,0.5437830868521041,0.5470366985174433,0.5448419102441917,0.5479482857345753,0.560791572584789,0.5553596573493309,0.5523176469084525,0.5528701211717441,0.5502096717607549,0.5510097872813404,0.5485554122316009,0.5346625454948439,0.5374436293030315,0.5472445193948114,0.5602339244796641,0.5671051103092262,0.5592167590430229,0.5540314128196839,0.5520841933120012,0.5557810179618459,0.5633081896576568,0.5645515163744765,0.5611313572248035,0.5575919506217943,0.5532030671185988,0.5605059626481597,0.5631050100285483,0.5638775864434892,0.5616607515687098,0.544053365933022,0.5350319014550393,0.5455467761838588,0.5419357084395022,0.5455575258060781,0.5496730418741811,0.5486662263913826,0.5493852779379624,0.5511239953514658,0.5328340721717644,0.5364705800682421,0.5415523529742301,0.5489822583324986,0.553574971455407,0.5558854291148405,0.5464830052559043,0.5401762902637213,0.5423129327239554,0.5474440297317522,0.5565984432735163,0.5630064354892506,0.5616301003225241,0.5478869835867893,0.546051456173442,0.548298981452376,0.5518734375496026,0.543499055308384,0.5369220901140428,0.5371545402534877,0.5491757646699664,0.5601536097251445,0.5721208358661594,0.5779612143175001,0.5712307760021009,0.5652495188899407,0.5641429362905194,0.5464039837511426,0.5390977237755263,0.5488491754008895,0.5528834800302047,0.5541894074121194,0.5623486645536393,0.5612466652075422,0.5634852626968602,0.5762537943035306,0.5689202260420168,0.5636749213238389,0.5624394231027725,0.5679331065158263,0.5638581320381677,0.5650023962904609,0.5482964079515597,0.5498678481310941,0.5487678558278732,0.5585699906026454,0.5605409938623553,0.5576115263068331,0.5478757672460033,0.5512331470243601,0.5456231001683276,0.5486140186081193,0.5540036710272713,0.5526419842005615,0.5515482814310032,0.5558851105939149,0.5463934133313155,0.5457705260079055,0.5484239797991814,0.5531189658620329,0.5488338152744563,0.5378925441108209,0.524194587476115,0.5308200982748472,0.5422330438406172,0.5544368602297687,0.5622005393798982,0.5466206409204033,0.535755607269212,0.5278936133827865,0.5234942511349635,0.5255169370236739,0.5390598040242718,0.5402541545150877,0.552789326207538,0.5489227932536662,0.544506952917114,0.5426366093134523,0.5447719141289143,0.553141396360074,0.5609470083334807,0.5586338611067102,0.5440245506746247,0.5332219678111804,0.5323971983373508,0.5365984951910889,0.5373036803144056,0.5432239822157388,0.5403814338144504,0.5437711872700043,0.5462274659439021,0.5392954462815042,0.53638808485603,0.5373328078179624,0.5396144010510163,0.5455718686138877,0.5442139161117643,0.5413941941036883,0.5456557303272459,0.5506912068435645,0.5506827698650091,0.5491184353811805,0.5389711298784192,0.53690475296803,0.5359924032684145,0.5372475833892165,0.5402399687209158,0.5404261841916348,0.5365027317604648,0.5372861305050305,0.5416705253157035,0.5384310516709818,0.5422312874856492,0.5425880552130374,0.5407885126069396,0.5358775849264614,0.5418833678779051,0.5349033619876107,0.5370987753948171,0.547014876886631,0.5619390335243694,0.5623954694023408,0.5610951255749603,0.5486243138745995,0.538653584302706,0.538754153597897,0.5478982808408879,0.5480477526854922,0.5471692316663217,0.5515219540373255,0.5518918002606203,0.547790828390998,0.5451250502606787,0.5484577560583552,0.5470818540074895,0.5576839876134758,0.5504469674925785,0.5519973526616319,0.5433619883897428,0.5500634933483373,0.5490265194756672,0.5623182948387055,0.5580291352998963,0.5595797159255891,0.543080032612657,0.5443469740292104,0.5404624924003851,0.544357985896321,0.5513014983793145,0.5472156090568557,0.5432962763108858,0.5490106634171338,0.5462133547654123,0.5494465355792393,0.5667436184462175,0.5736823227099128,0.5748751733022487,0.5630748296764021,0.537612186051835,0.5285334540278201,0.5361480433325022,0.5389121643437469,0.5400202754506379,0.5464108885962037,0.5457628590653634,0.5481378634505591,0.5551639767458602,0.5533963722137938,0.5498866947722396,0.552828849567077,0.5499988447744677,0.5507986175162378,0.5565003781076201,0.5641649715856089,0.5694813396520713,0.5685029011250105,0.5626467171447485,0.5615617791704033,0.5550559175268861,0.5526182028717695,0.5483494099170622,0.5432770774615805,0.5361137827719211,0.5388421686957304,0.5468142447574909,0.5603884846126509,0.5596446009886666,0.5564038095455754,0.5486990366708269,0.5501982655574118,0.5611629265938718,0.568236733608064,0.5571123365838601,0.554755024715978,0.551955395274691,0.5600495241327106,0.5623356601645242,0.5686272660650356,0.5590597938092299,0.5629877036883326,0.5617585710472351,0.5627529764307795,0.5507449125959891,0.5489294465275113,0.5489065425095985,0.5527303599113781,0.5497563427374269,0.5567049805478186,0.5550805731105711,0.5546350711827421,0.5651216756395291,0.5666083728985992,0.5645426195551297,0.5637951880061479,0.5622124423234658,0.5556637311810124,0.5592840475358621,0.5643276975595956,0.5731152026630639,0.573857871559996,0.5722210425808909,0.5589152235464127,0.5544954556262932,0.5428612616498422,0.545016644791639,0.5494013787187231,0.5457383986885804,0.5470695947321037,0.5536616610288501,0.5562228132711866,0.561148310255102,0.5666671193602482,0.563002392386978,0.5609403049694213,0.5518000448305171,0.5503847893252714,0.5411383561020479,0.5441475317853359,0.5461688526031463,0.5501219309915861,0.5489616016145076,0.559194578701781,0.5680002069096646,0.5709593962159385,0.570317970315239,0.5654160754224461,0.5618632710499959,0.5643472518966256,0.5641050060589112,0.5489786078259278,0.5443030524441261,0.5380429267916005,0.5428515335738442,0.5510226808029907,0.5550738344645825,0.5543560969443166,0.5543940259069742,0.5491023207710888,0.546919125171059,0.5415893264600908,0.5409215634769488,0.5500278773669477,0.5533680904902947,0.5562381361771932,0.5604049731048846,0.5548978613818812,0.5522155915569287,0.5553228105820482,0.5501567148297458,0.5480204300989311,0.5523093151197804,0.5467074686365758,0.5511979245044052,0.5524823045424153,0.5503704088006598,0.5514428646359202,0.5537667436906399,0.5492870633561746,0.5543509622328425,0.5483816578079559,0.5465917883302598,0.5422237203433515,0.5451439343813668,0.5532548311044475,0.5524219962134993,0.546114766255966,0.5443998002637982,0.5434693319455202,0.5437424618876204,0.5470390979798505,0.5439058255426287,0.5478456381175736,0.5461059152310055,0.5554342346673524,0.5584790375711212,0.5587919760408045,0.5605890719174825,0.5582686241941146,0.5492787050029956,0.5508217972094254,0.54508069462375,0.5395515918236337,0.5447543105461374,0.5437938186602986,0.5500250937756554,0.5533112388261596,0.5484469414254731,0.5481371481690498,0.5503767627775071,0.5513998792942898,0.5589293465614501,0.5629415908580603,0.5625459507153883,0.5603927425281807,0.5514361312004048,0.5449160900757584,0.5490200394162321,0.553593486121049,0.5615455313432353,0.5627915781815083,0.5598208332932495,0.5531942343078632,0.5550098710980274,0.5528520872955793,0.5527674292644438,0.5511902931499804,0.5517177893768161,0.5518493238078849,0.5584944843554828,0.5586368047102112,0.5591327420776144,0.5586850801951099,0.55761817789476,0.5578563356097312,0.5597676144365873,0.5603787892924011,0.5628248188649445,0.5621390554130625,0.5626366161328751,0.5587116428389898,0.5584763833704218,0.557274547450499,0.5592018996722704,0.5619358355614268,0.5640661048205518,0.5585076876061861,0.5530255454958712,0.5477375367500145,0.5484226371904561,0.5475176282874947,0.5454570205210341,0.5410573460493913,0.5406863959450088,0.545966730733215,0.5540312159790715,0.5535398658442099,0.5474285109161061,0.5416690138860938,0.5418870169447061,0.5405969701760247,0.5479983682176541,0.5504408895282029,0.5495077309798044,0.5533130944622301,0.5557722795611133,0.554997496455326,0.5529427629282617,0.558954830343874,0.5597837658841833,0.5587082934404455,0.5500725032810494,0.5501962159504333,0.537244019664277,0.542785308543305,0.5382329348356195,0.5388036997700016,0.545007142710572,0.5603835988207239,0.5596030541020609,0.5586493725444539,0.5477433823080283,0.5452777378005706,0.5537395406330812,0.5535997074801873,0.5585399895496315,0.561694594114099,0.5614730915615121,0.5590966492747648,0.5601256490586608,0.5526998594031971,0.5537401514201519,0.5491073345463597,0.5490950564914007,0.5421066454816956,0.5384742370739897,0.5373732965180975,0.5415960126648717,0.5469252908608737,0.5611351625138588,0.5634795708853892,0.5614854558302957,0.5565353337007727,0.5487374884386998,0.5410300955875103,0.5298758519895737,0.5270630463649902,0.5262225178603859,0.5381110821145179,0.5464478206804577,0.5464255856153142,0.5389423925164847,0.5319304562903627,0.5264004947823486,0.5338673467685291,0.5469394299590217,0.5521815716040225,0.5507196458573109,0.5503540098278241,0.5561867999829566,0.5541000371491044,0.5611822407298607,0.5636969534233428,0.5582348296057412,0.5561272036683828,0.551148194205036,0.5490701112831671,0.555825152049966,0.558896684534798,0.5584617580631803,0.5586421874956664,0.5487946776087422,0.5475424220592295,0.5520437785998886,0.5546323360316876,0.5539461784041908,0.5571496147555473,0.5511901102699441,0.5393122736707355,0.5426762361255644,0.5461620177834379,0.5338637296385292,0.5351581524037698,0.5354576710569285,0.5271336873749854,0.5413349135250576,0.543364182378223,0.539315400974044,0.5471837052016256,0.5514690864506218,0.5444613622022456,0.554657180769046,0.5604931937730909,0.5639597368634124,0.5695805208588189,0.5683704536673084,0.5583825024791423,0.5563909859051155,0.5587400843798467,0.5564148392968313,0.5567635400707602,0.5484313817857688,0.5365598419253557,0.5356735147761276,0.5372431129931114,0.5393708677769894,0.5422216282593902,0.540659340330125,0.5382049350869318,0.5447477014729123,0.5486025681309663,0.539429832781823,0.5575530939101733,0.5906794831865342,0.6258116759875152,0.6442605247956927,0.6575163030228305,0.6421021038215662,0.6232832820244261,0.6023975087508404,0.579558361575713,0.5543039041066157,0.5589895418066854,0.5733696160446828,0.5742905604756647,0.5766292747934207,0.5750625635018624,0.5720779982129314,0.5690773847135326,0.5656513964777634,0.5584102762831026,0.5571162094093289,0.5482799580692196,0.5490651817923267,0.5523331241737157,0.5522656013614304,0.5551597245785622,0.5595381199158698,0.5524642351581421,0.5500252587718557,0.5509970651774833,0.549379110135509,0.5435057467145133,0.5386939032012923,0.5356652995234648,0.5353713949123806,0.5395396873141525,0.5466963951823726,0.5453747667636375,0.5494273249329475,0.5524529411282217,0.5517102869168333,0.5585252978080146,0.5608775724168401,0.5558449330521811,0.5624162158006089,0.5643420459339881,0.5567032859348305,0.5550856878945771,0.5494866832165684,0.5420542982205305,0.5379174655080394,0.5344954240077527,0.54023581414371,0.5475378279109313,0.5553181026397674,0.5577872670089202,0.5513776240624684,0.5440298106280927,0.5502884558471053,0.5398316874295386,0.5359117675546945,0.5360911807214804,0.5393053040169257,0.5481151819592558,0.5599605739820873,0.5533869530914142,0.5536175905134166,0.5502208397888402,0.5487482717321058,0.5508300018050707,0.5539653002057701,0.5469776478363667,0.5469948059743642,0.5420060707519596,0.5460572350855655,0.5487809154236536,0.5485549362258161,0.542118516975505,0.5430042771698594,0.5466506712479404,0.5579485229548178,0.559902390702247,0.5611980414469211,0.5545108286818148,0.5513058323915351,0.5506819492872645,0.5513700618057824,0.553746030487872,0.5597181388823789,0.5513389959101082,0.5525571803063388,0.5488416956919462,0.5523626038894598,0.5522664912445175,0.5569694322468761,0.553094472053242,0.5527433126876646,0.5490159515215215,0.5432976970320305,0.541839743130535,0.5525652995270374,0.558616869743316,0.566240987300068,0.567661861672115,0.5593353990232381,0.5543192893485482,0.5484718066501799,0.5399552504559131,0.5430011618636692,0.5524922452759737,0.5599533456477612,0.561886789201152,0.5691992840582727,0.5621312539117898,0.5581676258868176,0.5556707532831784,0.5500152719131933,0.5458520489292004,0.5525883248133757,0.5480835431387443,0.5437350405729742,0.5453816607696811,0.5522732198647486,0.5496093899495357,0.5501974011475717,0.5456020325146527,0.5355635575224162,0.5410377421504654,0.5493674647169484,0.5592902374901025,0.5612417780242105,0.5607103744756716,0.5610297678141427,0.5658572045671403,0.5647108577119222,0.5672727007824736,0.559124876462784,0.5545829829675029,0.5576077014177961,0.5544039352181567,0.5512030005080202,0.5486172969470073,0.5537526348917448,0.5591568485664644,0.5698011000127716,0.5752818499694115,0.580705933650514,0.5713810977368766,0.5620739299161713,0.5515651234418586,0.5496346467467461,0.5594874276168738,0.5730994958158829,0.5690940855212073,0.563201060500852,0.5591802106102904,0.5579587261854522,0.5646497461450474,0.5733700115710019,0.570901356827336,0.5679662996703073,0.5622663481032812,0.5582058891097115,0.561364920800845,0.5665454381805156,0.5679394711223316,0.5688745062456699,0.5673507988468175,0.5702630221357257,0.5720304915431924,0.5649209913139268,0.5496606652221256,0.5390085217878511,0.5401328376833738,0.5453903939244747,0.5519933279738769,0.5549652274234309,0.5544303217899762,0.5492968587003679,0.5543306880010849,0.5538508666638717,0.5496639936166945,0.5524605521439829,0.5584402123036306,0.558463300824041,0.5658431877893824,0.5727616103660066,0.5673361116853288,0.5599198526737705,0.5564766052783992,0.551598494227789,0.5463880651873657,0.5484327209364155,0.5472718414273443,0.5493708590278329,0.5581361834745113,0.5641469973841517,0.5633802171624345,0.5608913355430956,0.5514703407417261,0.5513221080620891,0.5536865452183543,0.5557752955590743,0.563747514834051,0.5563752064299258,0.5485275693537727,0.5465328860917467,0.5484904198074333,0.5625046185972153,0.5818625508185676,0.5834196596006334,0.5753764066372995,0.5681038571427395,0.566495878133546,0.5885577882086522,0.6478075280160327],\"ftime\":[\"00:00.0\",\"00:03.0\",\"00:05.9\",\"00:07.9\",\"00:11.9\",\"00:14.0\",\"00:18.9\",\"00:21.9\",\"00:25.1\",\"00:26.9\",\"00:31.1\",\"00:34.1\",\"00:36.0\",\"00:39.9\",\"00:44.0\",\"00:47.9\",\"00:51.1\",\"00:52.2\",\"00:56.9\",\"01:01.0\",\"01:02.1\",\"01:05.9\",\"01:08.9\",\"01:12.3\",\"01:17.1\",\"01:21.0\",\"01:23.0\",\"01:25.5\",\"01:28.8\",\"01:32.0\",\"01:35.3\",\"01:38.6\",\"01:41.9\",\"01:46.1\",\"01:48.9\",\"01:52.9\",\"01:55.0\",\"01:59.9\",\"02:04.1\",\"02:05.0\",\"02:10.0\",\"02:11.6\",\"02:17.0\",\"02:18.2\",\"02:21.4\",\"02:25.0\",\"02:28.0\",\"02:32.1\",\"02:35.0\",\"02:37.6\",\"02:42.0\",\"02:43.8\",\"02:48.9\",\"02:50.1\",\"02:55.0\",\"02:56.6\",\"03:01.0\",\"03:03.9\",\"03:06.2\",\"03:09.5\",\"03:13.0\",\"03:15.8\",\"03:19.1\",\"03:22.2\",\"03:26.9\",\"03:29.9\",\"03:32.9\",\"03:35.1\",\"03:38.5\",\"03:43.0\",\"03:44.9\",\"03:48.2\",\"03:52.9\",\"03:55.0\",\"04:00.0\",\"04:01.1\",\"04:06.1\",\"04:07.9\",\"04:10.9\",\"04:14.0\",\"04:17.1\",\"04:20.9\",\"04:25.0\",\"04:28.0\",\"04:30.9\",\"04:32.5\",\"04:36.1\",\"04:38.7\",\"04:41.8\",\"04:45.0\",\"04:48.9\",\"04:57.0\",\"05:08.2\",\"05:09.5\",\"05:12.2\",\"05:16.9\",\"05:18.8\",\"05:22.0\",\"05:24.2\",\"05:27.3\",\"05:30.3\",\"05:33.9\",\"05:38.1\",\"05:39.6\",\"05:42.7\",\"05:45.8\",\"05:48.9\",\"05:51.9\",\"05:55.0\",\"05:58.1\",\"06:03.0\",\"06:06.1\",\"06:07.4\",\"06:11.0\",\"06:13.6\",\"06:16.7\",\"06:20.1\",\"06:25.1\",\"06:26.2\",\"06:29.3\",\"06:32.4\",\"06:36.2\",\"06:39.0\",\"06:41.6\",\"06:44.6\",\"06:48.9\",\"06:50.9\",\"06:53.8\",\"06:58.9\",\"07:01.0\",\"07:03.9\",\"07:06.0\",\"07:09.0\",\"07:12.1\",\"07:15.1\",\"07:18.2\",\"07:21.3\",\"07:24.3\",\"07:28.9\",\"07:30.9\",\"07:33.6\",\"07:37.0\",\"07:39.9\",\"07:43.1\",\"07:46.0\",\"07:48.9\",\"07:53.0\",\"07:54.6\",\"07:57.6\",\"08:01.0\",\"08:03.6\",\"08:08.1\",\"08:09.7\",\"08:12.8\",\"08:15.6\",\"08:18.6\",\"08:22.0\",\"08:24.6\",\"08:29.0\",\"08:30.9\",\"08:33.9\",\"08:38.1\",\"08:39.9\",\"08:42.5\",\"08:45.6\",\"08:49.9\",\"08:51.5\",\"08:55.1\",\"08:57.9\",\"09:02.1\",\"09:04.0\",\"09:06.6\",\"09:10.8\",\"09:12.5\",\"09:15.5\",\"09:18.4\",\"09:21.4\",\"09:24.3\",\"09:28.9\",\"09:30.2\",\"09:33.9\",\"09:36.9\",\"09:38.9\",\"09:42.9\",\"09:44.5\",\"09:49.0\",\"09:51.0\",\"09:54.0\",\"09:56.9\",\"10:00.1\",\"10:02.0\",\"10:04.9\",\"10:08.8\",\"10:10.4\",\"10:13.9\",\"10:16.0\",\"10:19.0\",\"10:21.8\",\"10:24.6\",\"10:28.1\",\"10:30.2\",\"10:33.0\",\"10:37.1\",\"10:38.7\",\"10:42.9\",\"10:44.4\",\"10:47.3\",\"10:50.2\",\"10:53.4\",\"10:56.3\",\"10:59.2\",\"11:03.9\",\"11:05.4\",\"11:09.9\",\"11:11.9\",\"11:14.8\",\"11:18.9\",\"11:23.0\",\"11:23.9\",\"11:26.9\",\"11:31.1\",\"11:33.2\",\"11:36.2\",\"11:39.2\",\"11:43.9\",\"11:47.1\",\"11:50.0\",\"11:51.5\",\"11:56.1\",\"11:59.0\",\"12:02.9\",\"12:06.1\",\"12:08.0\",\"12:10.0\",\"12:13.2\",\"12:16.2\",\"12:19.9\",\"12:22.5\",\"12:26.0\",\"12:28.6\",\"12:31.7\",\"12:35.0\",\"12:37.7\",\"12:40.7\",\"12:45.9\",\"12:47.9\",\"12:49.8\",\"12:52.8\",\"12:56.0\",\"12:58.9\",\"13:01.8\",\"13:04.7\",\"13:07.7\",\"13:11.0\",\"13:14.9\",\"13:17.0\",\"13:19.9\",\"13:24.9\",\"13:26.1\",\"13:29.9\",\"13:32.3\",\"13:35.4\",\"13:38.5\",\"13:43.0\",\"13:44.5\",\"13:48.0\",\"13:50.9\",\"13:53.8\",\"13:57.0\",\"14:00.0\",\"14:03.0\",\"14:06.2\",\"14:10.8\",\"14:14.0\",\"14:15.3\",\"14:18.3\",\"14:23.0\",\"14:24.4\",\"14:27.5\",\"14:30.6\",\"14:34.9\",\"14:37.0\",\"14:39.7\",\"14:42.7\",\"14:47.8\",\"14:48.9\",\"14:52.0\",\"14:54.9\",\"15:00.0\",\"15:02.8\",\"15:03.8\",\"15:08.8\",\"15:09.7\",\"15:12.9\",\"15:17.1\",\"15:18.5\",\"15:22.9\",\"15:24.5\",\"15:27.6\",\"15:30.9\",\"15:33.9\",\"15:36.5\",\"15:40.0\",\"15:42.9\",\"15:45.5\",\"15:49.9\",\"15:52.9\",\"15:55.9\",\"15:57.6\",\"16:00.5\",\"16:03.5\",\"16:06.9\",\"16:10.0\",\"16:14.0\",\"16:15.9\",\"16:19.0\",\"16:21.3\",\"16:24.9\",\"16:29.0\",\"16:30.0\",\"16:33.1\",\"16:36.1\",\"16:39.1\",\"16:41.9\",\"16:44.7\",\"16:47.6\",\"16:50.5\",\"16:53.5\",\"16:57.9\",\"16:59.3\",\"17:02.8\",\"17:05.2\",\"17:08.2\",\"17:13.1\",\"17:15.0\",\"17:16.9\",\"17:21.8\",\"17:22.8\",\"17:26.0\",\"17:28.7\",\"17:31.5\",\"17:35.9\",\"17:37.4\",\"17:40.3\",\"17:44.0\",\"17:47.9\",\"17:49.9\",\"17:51.6\",\"17:55.8\",\"17:58.0\",\"18:00.3\",\"18:04.8\",\"18:05.9\",\"18:10.0\",\"18:11.5\",\"18:14.8\",\"18:17.3\",\"18:20.1\",\"18:22.9\",\"18:27.0\",\"18:28.7\",\"18:32.9\",\"18:36.0\",\"18:38.9\",\"18:40.2\",\"18:43.1\",\"18:46.0\",\"18:48.7\",\"18:51.6\",\"18:54.5\",\"18:57.3\",\"19:02.0\",\"19:03.1\",\"19:07.9\",\"19:08.8\",\"19:11.7\",\"19:14.6\",\"19:17.4\",\"19:20.3\",\"19:23.3\",\"19:26.2\",\"19:29.1\",\"19:31.9\",\"19:34.9\",\"19:37.8\",\"19:40.4\",\"19:43.3\",\"19:46.1\",\"19:48.9\",\"19:51.7\",\"19:54.5\",\"19:59.0\",\"20:01.0\",\"20:02.8\",\"20:05.5\",\"20:08.8\",\"20:11.0\",\"20:13.8\",\"20:17.0\",\"20:20.9\",\"20:23.9\",\"20:24.8\",\"20:27.5\",\"20:30.3\",\"20:33.1\",\"20:35.9\",\"20:38.6\",\"20:41.9\",\"20:44.8\",\"20:47.0\",\"20:50.9\",\"20:52.3\",\"21:01.0\",\"21:22.9\",\"21:25.9\",\"21:28.9\",\"21:31.0\",\"21:33.2\",\"21:36.0\",\"21:39.0\",\"21:42.0\",\"21:46.9\",\"21:49.9\",\"21:50.9\",\"21:53.9\",\"21:56.7\",\"21:59.7\",\"22:02.6\",\"22:06.8\",\"22:08.8\",\"22:12.0\",\"22:14.3\",\"22:17.3\",\"22:20.2\",\"22:23.1\",\"22:27.8\",\"22:29.1\",\"22:32.1\",\"22:35.9\",\"22:38.1\",\"22:41.2\",\"22:44.2\",\"22:49.0\",\"22:50.1\",\"22:53.3\",\"22:56.2\",\"22:59.2\",\"23:02.9\",\"23:05.1\",\"23:10.0\",\"23:12.9\",\"23:14.0\",\"23:16.9\",\"23:22.0\",\"23:22.9\",\"23:25.8\",\"23:28.9\",\"23:31.9\",\"23:34.8\",\"23:39.9\",\"23:41.0\",\"23:44.8\",\"23:46.7\",\"23:49.9\",\"23:52.9\",\"23:55.6\",\"23:59.9\",\"24:01.9\",\"24:06.0\",\"24:07.4\",\"24:10.2\",\"24:14.0\",\"24:16.2\",\"24:19.2\",\"24:23.9\",\"24:25.1\",\"24:28.1\",\"24:31.0\",\"24:35.9\",\"24:38.8\",\"24:41.0\",\"24:42.9\",\"24:45.9\",\"24:48.9\",\"24:51.9\",\"24:54.8\",\"24:57.7\",\"25:02.0\",\"25:03.9\",\"25:06.6\",\"25:11.0\",\"25:12.4\",\"25:15.4\",\"25:18.4\",\"25:21.2\",\"25:25.8\",\"25:27.2\",\"25:30.0\",\"25:33.1\",\"25:36.8\",\"25:38.9\",\"25:42.0\",\"25:44.9\",\"25:47.8\",\"25:50.8\",\"25:53.8\",\"25:56.6\",\"25:59.9\",\"26:02.5\",\"26:05.4\",\"26:08.2\",\"26:11.0\",\"26:15.0\",\"26:16.9\",\"26:19.5\",\"26:22.3\",\"26:25.1\",\"26:27.9\",\"26:30.7\",\"26:33.5\",\"26:36.3\",\"26:39.1\",\"26:43.9\",\"26:45.9\",\"26:47.7\",\"26:50.6\",\"26:54.9\",\"26:56.2\",\"26:59.0\",\"27:01.8\",\"27:05.9\",\"27:09.0\",\"27:10.9\",\"27:13.8\",\"27:15.9\",\"27:18.6\",\"27:21.9\",\"27:24.9\",\"27:27.1\",\"27:29.9\",\"27:32.7\",\"27:35.3\",\"27:38.0\",\"27:40.7\",\"27:43.5\",\"27:46.2\",\"27:48.9\",\"27:52.9\",\"27:54.4\",\"27:57.1\",\"27:59.8\",\"28:02.9\",\"28:05.2\",\"28:08.0\",\"28:10.8\",\"28:13.2\",\"28:15.9\",\"28:18.9\",\"28:21.3\",\"28:24.0\",\"28:26.7\",\"28:29.3\",\"28:32.9\",\"28:35.9\",\"28:37.5\",\"28:40.2\",\"28:42.9\",\"28:46.9\",\"28:48.9\",\"28:51.9\",\"28:54.0\",\"28:57.8\",\"28:59.3\",\"29:02.0\",\"29:04.8\",\"29:07.5\",\"29:10.2\",\"29:13.9\",\"29:16.8\",\"29:18.3\",\"29:21.0\",\"29:23.9\",\"29:27.0\",\"29:29.0\",\"29:31.6\",\"29:35.8\",\"29:37.1\",\"29:39.7\",\"29:42.5\",\"29:45.8\",\"29:47.9\",\"29:50.5\",\"29:53.8\",\"29:57.0\",\"29:58.6\",\"30:01.9\",\"30:03.9\",\"30:06.6\",\"30:09.3\",\"30:12.8\",\"30:14.7\",\"30:18.9\",\"30:20.9\",\"30:22.7\",\"30:25.3\",\"30:28.1\",\"30:31.9\",\"30:33.6\",\"30:36.1\",\"30:38.8\",\"30:42.8\",\"30:44.1\",\"30:46.8\",\"30:49.8\",\"30:52.0\",\"30:54.7\",\"30:58.8\",\"31:00.0\",\"31:02.6\",\"31:05.2\",\"31:07.8\",\"31:10.3\",\"31:13.0\",\"31:15.6\",\"31:18.2\",\"31:20.6\",\"31:24.9\",\"31:26.9\",\"31:30.0\",\"31:31.1\",\"31:33.8\",\"31:36.3\",\"31:39.0\",\"31:41.7\",\"31:45.8\",\"31:47.9\",\"31:49.6\",\"31:52.3\",\"31:54.9\",\"31:57.5\",\"32:00.2\",\"32:02.8\",\"32:05.8\",\"32:08.9\",\"32:10.5\",\"32:14.8\",\"32:15.8\",\"32:19.9\",\"32:22.8\",\"32:23.8\",\"32:26.9\",\"32:29.0\",\"32:31.7\",\"32:34.4\",\"32:37.3\",\"32:40.9\",\"32:43.1\",\"32:47.0\",\"32:48.6\",\"32:51.5\",\"32:55.0\",\"32:57.9\",\"33:00.8\",\"33:02.7\",\"33:05.5\",\"33:09.8\",\"33:11.8\",\"33:13.8\",\"33:16.9\",\"33:20.9\",\"33:21.9\",\"33:25.1\",\"33:27.4\",\"33:30.1\",\"33:34.0\",\"33:35.7\",\"33:39.9\",\"33:42.0\",\"33:43.9\",\"33:47.8\",\"33:49.2\",\"33:53.0\",\"33:54.9\",\"33:57.8\",\"33:59.9\",\"34:02.6\",\"34:05.2\",\"34:08.9\",\"34:11.9\",\"34:13.2\",\"34:15.8\",\"34:18.8\",\"34:23.0\",\"34:24.8\",\"34:27.8\",\"34:30.9\",\"34:33.8\",\"34:35.7\",\"34:38.0\",\"34:40.9\",\"34:43.8\",\"34:46.2\",\"34:48.8\",\"34:52.9\",\"34:54.2\",\"34:57.9\",\"35:00.8\",\"35:02.3\",\"35:05.2\",\"35:07.9\",\"35:10.9\",\"35:13.5\",\"35:16.0\",\"35:18.8\",\"35:22.9\",\"35:24.3\",\"35:28.2\",\"35:29.9\",\"35:32.3\",\"35:36.0\",\"35:38.2\",\"35:41.0\",\"35:43.9\",\"35:46.7\",\"35:49.9\",\"35:52.6\",\"35:55.4\",\"35:58.8\",\"36:01.2\",\"36:04.1\",\"36:07.0\",\"36:09.9\",\"36:12.9\",\"36:15.6\",\"36:18.5\",\"36:21.4\",\"36:24.3\",\"36:27.7\",\"36:31.9\",\"36:33.8\",\"36:35.6\",\"36:38.4\",\"36:41.8\",\"36:44.2\",\"36:48.8\",\"36:49.9\",\"36:52.9\",\"36:55.8\",\"36:58.3\",\"37:01.9\",\"37:06.0\",\"37:07.8\",\"37:09.7\",\"37:12.6\",\"37:16.0\",\"37:18.0\",\"37:21.0\",\"37:25.1\",\"37:26.6\",\"37:29.4\",\"37:34.0\",\"37:35.0\",\"37:37.7\",\"37:41.9\",\"37:43.5\",\"37:47.8\",\"37:49.1\",\"37:51.9\",\"37:54.7\",\"37:58.8\",\"38:00.4\",\"38:03.2\",\"38:06.1\",\"38:08.9\",\"38:11.7\",\"38:14.5\",\"38:17.5\",\"38:21.0\",\"38:23.1\",\"38:25.9\",\"38:28.6\",\"38:33.0\",\"38:35.9\",\"38:37.0\",\"38:39.9\",\"38:43.0\",\"38:46.1\",\"38:49.1\",\"38:52.0\",\"38:56.8\",\"38:58.9\",\"39:00.9\",\"39:04.8\",\"39:07.9\",\"39:09.7\",\"39:12.7\",\"39:15.6\",\"39:18.8\",\"39:21.4\",\"39:24.4\",\"39:27.5\",\"39:30.3\",\"39:34.9\",\"39:37.8\",\"39:39.2\",\"39:42.2\",\"39:46.9\",\"39:49.8\",\"39:52.9\",\"39:53.9\",\"39:56.8\",\"39:59.7\",\"40:02.7\",\"40:05.6\",\"40:08.5\",\"40:11.5\",\"40:14.4\",\"40:17.4\",\"40:20.3\",\"40:23.3\",\"40:28.2\",\"40:29.1\",\"40:32.1\",\"40:35.8\",\"40:37.8\",\"40:41.9\",\"40:43.3\",\"40:46.2\",\"40:49.1\",\"40:52.8\",\"40:55.9\",\"40:58.9\",\"41:00.9\",\"41:03.7\",\"41:06.8\",\"41:09.6\",\"41:12.5\",\"41:16.7\",\"41:19.9\",\"41:21.9\",\"41:24.5\",\"41:27.3\",\"41:30.2\",\"41:33.3\",\"41:36.2\",\"41:39.1\",\"41:43.8\",\"41:45.3\",\"41:49.8\",\"41:57.5\",\"42:33.8\",\"42:37.0\",\"42:39.8\",\"42:43.8\",\"42:46.8\",\"42:50.9\",\"42:53.9\",\"42:56.9\",\"42:58.8\",\"43:02.9\",\"43:04.3\",\"43:07.5\",\"43:10.5\",\"43:13.9\",\"43:18.7\",\"43:20.9\",\"43:24.8\",\"43:27.7\",\"43:29.9\",\"43:33.8\",\"43:35.7\",\"43:38.5\",\"43:43.8\",\"43:44.9\",\"43:47.9\",\"43:51.0\",\"43:54.0\",\"43:58.8\",\"44:01.8\",\"44:03.1\",\"44:06.2\",\"44:09.3\",\"44:12.5\",\"44:15.6\",\"44:19.0\",\"44:21.7\",\"44:24.8\",\"44:27.8\",\"44:31.8\",\"44:34.1\",\"44:37.1\",\"44:40.3\",\"44:43.4\",\"44:47.9\",\"44:49.8\",\"44:52.7\",\"44:55.7\",\"44:58.8\",\"45:04.0\",\"45:04.9\",\"45:08.0\",\"45:11.8\",\"45:14.2\",\"45:17.9\",\"45:20.5\",\"45:24.9\",\"45:26.6\",\"45:29.6\",\"45:32.8\",\"45:35.8\",\"45:40.7\",\"45:42.9\",\"45:44.6\",\"45:47.8\",\"45:51.0\",\"45:54.8\",\"45:57.7\",\"46:00.9\",\"46:03.2\",\"46:05.3\",\"46:08.2\",\"46:11.9\",\"46:14.9\",\"46:17.8\",\"46:19.9\",\"46:24.8\",\"46:26.8\",\"46:29.8\",\"46:32.9\",\"46:35.8\",\"46:37.9\",\"46:40.5\",\"46:43.5\",\"46:47.0\",\"46:49.9\",\"46:53.8\",\"46:55.9\",\"46:58.5\",\"47:02.8\",\"47:04.5\",\"47:07.4\",\"47:11.8\",\"47:14.8\",\"47:16.3\",\"47:19.2\",\"47:22.9\",\"47:25.9\",\"47:28.1\",\"47:32.9\",\"47:34.9\",\"47:37.8\",\"47:39.8\",\"47:42.7\",\"47:45.9\",\"47:49.8\",\"47:52.9\",\"47:54.6\",\"47:57.7\",\"48:00.4\",\"48:03.5\",\"48:06.5\",\"48:10.9\",\"48:12.8\",\"48:16.7\",\"48:18.3\",\"48:21.3\",\"48:24.4\",\"48:27.1\",\"48:30.1\",\"48:33.1\",\"48:37.9\",\"48:38.9\",\"48:41.9\",\"48:44.7\",\"48:48.9\",\"48:50.8\",\"48:53.8\",\"48:56.1\",\"48:59.9\",\"49:01.8\",\"49:05.8\",\"49:07.8\",\"49:11.9\",\"49:13.1\",\"49:15.9\",\"49:18.7\",\"49:21.6\",\"49:24.4\",\"49:27.7\",\"49:30.3\",\"49:33.8\",\"49:35.9\",\"49:38.8\",\"49:42.8\",\"49:44.9\",\"49:47.3\",\"49:51.9\",\"49:53.1\",\"49:56.8\",\"49:58.7\",\"50:01.5\",\"50:04.3\",\"50:07.0\",\"50:11.8\",\"50:13.8\",\"50:15.5\",\"50:18.4\",\"50:21.2\",\"50:25.8\",\"50:27.8\",\"50:29.6\",\"50:32.9\",\"50:36.9\",\"50:38.9\",\"50:40.8\",\"50:43.8\",\"50:47.9\",\"50:49.5\",\"50:54.0\",\"50:56.9\",\"50:58.8\",\"51:01.8\",\"51:02.8\",\"51:03.6\",\"51:07.8\",\"51:10.7\",\"51:12.0\",\"51:14.9\",\"51:18.8\",\"51:20.8\",\"51:23.3\",\"51:26.9\",\"51:29.8\",\"51:32.7\",\"51:34.5\",\"51:37.4\",\"51:40.2\",\"51:43.2\",\"51:46.8\",\"51:49.7\",\"51:51.5\",\"51:54.2\",\"51:57.8\",\"52:00.9\",\"52:03.8\",\"52:06.7\",\"52:08.7\",\"52:10.5\",\"52:14.8\",\"52:15.9\",\"52:18.7\",\"52:22.9\",\"52:24.8\",\"52:26.5\",\"52:29.1\",\"52:31.8\",\"52:34.5\",\"52:38.8\",\"52:39.8\",\"52:46.7\"],\"hr_ut1\":[0,0,0,0,0,0,107,109,111,112,115,117,119,120,122,123,124,125,127,127,128,128,128,128,130,132,133,133,133,134,134,134,134,133,132,130,130,128,126,127,128,128,129,129,129,130,131,133,134,134,133,133,133,133,134,133,132,131,131,131,132,132,133,133,134,133,133,133,133,134,134,134,135,135,134,135,134,135,135,135,134,135,136,137,138,138,139,139,139,139,139,136,128,128,128,131,131,132,132,131,132,133,134,134,135,136,135,135,135,135,136,137,137,138,138,138,138,138,139,139,139,140,141,141,141,140,141,141,143,144,145,145,145,145,145,145,145,145,146,146,147,148,0,0,0,0,0,0,0,0,0,148,148,148,148,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,141,140,141,141,142,143,144,145,146,147,148,148,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,135,136,137,138,139,140,141,143,143,144,145,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"hr_ut2\":[83,88,93,95,101,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"workoutstate\":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],\"power\":[93.74302158760001,127.93405625000001,146.24328116159998,166.60478033919998,169.17844446719997,167.37411880000002,172.6947441828,169.5667651524,164.8188332,163.17192397239995,163.2982180256,165.20045627960002,167.63109027839997,162.16391494519996,161.41063861159998,164.0573510912,165.96546875719994,164.4377982884,166.4767869156,158.7925463264,160.1603681356,162.79343254719996,166.60478033919998,159.04065963519997,161.2853197984,156.4483277476,161.2853197984,160.40990384999998,161.7869845088,164.0573510912,163.17192397239995,165.45519865,165.58266798080004,164.94597551879997,160.53476884480003,162.91953124999998,161.41063861159998,160.03569738239997,158.7925463264,161.03487679999998,167.63109027839997,165.07318320639996,168.14582202880004,168.14582202880004,169.0491361076,167.75967459160003,168.79071709080003,165.96546875719994,175.33058931079998,172.95713169560003,178.26084543960002,175.06580618519996,175.06580618519996,172.30166069759997,169.82597544919997,169.30781874999997,168.79071709080003,170.2152859904,170.73529159680004,169.9556796,171.6478478596,169.30781874999997,170.47515661119996,169.6963373056,175.99371489280006,171.51728408639997,164.8188332,167.24573160119996,169.6963373056,169.82597544919997,173.08842505919995,168.79071709080003,170.47515661119996,169.6963373056,168.79071709080003,166.4767869156,166.86096396480002,168.40358256960002,175.72826438719994,171.25635519999997,174.2730565716,167.75967459160003,172.82590474239998,176.12654033239997,173.48270378039996,176.79167007039996,174.9335146496,179.60350247559998,183.12592588919998,175.59563928760002,174.9335146496,180.27735183359997,180.27735183359997,52.2841174156,108.89005980159997,165.20045627960002,168.53256156519996,173.48270378039996,175.33058931079998,180.14244736039996,177.32497791680004,178.79710232439996,175.06580618519996,176.39239166919995,179.33443360280003,178.1269489664,176.25943258560002,178.79710232439996,170.73529159680004,173.8775808,173.08842505919995,169.4372589728,174.6691315488,175.46308093439998,183.12592588919998,184.21894022839996,186.69410584999997,183.26231560000005,181.35901306879998,184.49287169319996,186.8322613248,185.17888811519992,189.33072822719996,184.3558720416,183.12592588919998,185.31629514999997,182.58104375000002,179.60350247559998,183.94528005,183.80855165119996,182.71716281279996,183.94528005,179.33443360280003,178.52883965,179.60350247559998,178.93133437760002,180.14244736039996,180.81764323839994,182.4449923072,182.4449923072,177.72566187319998,178.1269489664,186.00434999999996,184.49287169319996,185.17888811519992,183.94528005,185.72892405759998,185.04154901959998,184.21894022839996,185.31629514999997,185.31629514999997,181.4945241563999,183.67189102360004,185.72892405759998,187.93995960319998,188.9127797508001,188.35647253640002,188.07872895000003,191.14896220839995,185.45377014080003,186.28004810239992,188.21756658879997,195.95929797080004,191.00868655680003,181.4945241563999,188.07872895000003,188.07872895000003,193.5441672192,183.12592588919998,187.24713666120002,191.85137072639992,186.9704849403999,186.9704849403999,194.82027851160007,191.9920585996,193.68568135000007,193.40272203559996,191.71075159880004,192.69652973759995,195.24689210880007,189.19134364760004,187.52406114679997,194.39428680000003,203.4713120076,193.96891652040003,188.77360040000005,192.8376304372,193.12003844279997,187.52406114679997,188.77360040000005,191.9920585996,189.88895114560003,191.4297195131999,190.16847360000003,189.60970273280003,190.72834117119993,190.86847955,187.52406114679997,194.96241392319996,194.96241392319996,196.1019867744,194.96241392319996,198.82625061879997,192.8376304372,193.5441672192,192.4145348608,190.02867810919994,191.00868655680003,176.39239166919995,186.14216502280001,191.00868655680003,189.19134364760004,184.21894022839996,181.90146239999993,184.3558720416,184.90427784639994,180.14244736039996,184.49287169319996,179.60350247559998,180.81764323839994,181.35901306879998,186.14216502280001,178.52883965,176.9248966436,179.06563359719996,176.9248966436,177.4584722484,175.46308093439998,177.4584722484,178.39480899519995,177.8593572,179.2,179.60350247559998,182.98960386560006,176.9248966436,175.59563928760002,176.25943258560002,175.86095625,178.93133437760002,178.66293742080006,182.98960386560006,182.71716281279996,186.14216502280001,182.4449923072,181.4945241563999,184.08207623680005,184.3558720416,186.69410584999997,188.35647253640002,187.10877671359998,188.63448942519997,189.60970273280003,192.5554978843999,189.19134364760004,188.77360040000005,186.14216502280001,180.95288455159996,187.66262571840005,183.80855165119996,188.49544680960008,184.49287169319996,185.86660301719994,185.72892405759998,182.58104375000002,183.67189102360004,183.53529815039997,182.71716281279996,182.8533495124,182.30900846759994,182.58104375000002,186.14216502280001,184.3558720416,182.98960386560006,183.53529815039997,185.86660301719994,187.10877671359998,185.17888811519992,186.28004810239992,185.86660301719994,185.17888811519992,183.94528005,185.31629514999997,183.12592588919998,182.98960386560006,179.60350247559998,182.03724353079997,182.8533495124,180.68246932679997,184.21894022839996,187.52406114679997,189.60970273280003,196.38757214719993,193.40272203559996,186.9704849403999,185.31629514999997,181.76574880520002,180.54736279999995,181.35901306879998,182.17309221440001,185.31629514999997,190.72834117119993,189.19134364760004,184.62993920000002,183.53529815039997,184.3558720416,183.53529815039997,185.31629514999997,181.0881932831999,177.32497791680004,174.6691315488,178.79710232439996,181.22356944999993,182.98960386560006,182.71716281279996,185.45377014080003,185.31629514999997,186.14216502280001,187.80125853159996,185.45377014080003,185.72892405759998,181.63010272959997,178.52883965,186.14216502280001,191.2893065216,187.93995960319998,184.3558720416,185.31629514999997,187.24713666120002,182.98960386560006,182.8533495124,182.30900846759994,182.8533495124,183.26231560000005,182.98960386560006,183.80855165119996,180.68246932679997,184.08207623680005,178.1269489664,182.17309221440001,185.59131310439994,186.4179992556,190.02867810919994,190.44827023039997,187.80125853159996,188.77360040000005,187.10877671359998,188.9127797508001,186.00434999999996,186.28004810239992,182.71716281279996,186.4179992556,190.30833763480004,191.2893065216,193.40272203559996,189.47018125,191.14896220839995,192.27364064999995,190.86847955,187.3855647999999,186.69410584999997,191.85137072639992,188.07872895000003,187.3855647999999,185.04154901959998,182.03724353079997,186.14216502280001,189.88895114560003,192.27364064999995,198.39443700159998,189.88895114560003,185.59131310439994,186.9704849403999,183.80855165119996,186.00434999999996,185.17888811519992,186.14216502280001,190.72834117119993,189.19134364760004,191.00868655680003,184.3558720416,186.28004810239992,182.98960386560006,186.8322613248,188.63448942519997,190.30833763480004,187.24713666120002,184.21894022839996,183.80855165119996,185.86660301719994,184.62993920000002,185.86660301719994,190.30833763480004,198.39443700159998,190.16847360000003,194.39428680000003,194.39428680000003,190.02867810919994,191.4297195131999,202.59491129639994,195.24689210880007,192.8376304372,192.97879999999992,194.6782121984,196.1019867744,199.40297614999992,198.68224319999993,198.82625061879997,198.9703276063999,202.15765624319994,199.83625141759995,195.10461845000003,195.38923491639997,189.88895114560003,35.32701634560001,87.51644999999998,150.27027581439995,174.14116475839995,174.80128977639998,179.33443360280003,179.06563359719996,183.67189102360004,176.5254176,177.4584722484,181.76574880520002,176.25943258560002,176.9248966436,175.33058931079998,179.87284034999996,176.65851039480003,182.17309221440001,177.05819013119998,178.26084543960002,179.46893442239994,178.26084543960002,175.19816440000002,172.30166069759997,178.79710232439996,179.33443360280003,175.19816440000002,174.80128977639998,175.06580618519996,179.73813777919995,177.59203356159998,180.0076102048,176.65851039480003,171.38678653880004,173.48270378039996,173.74588862119995,174.80128977639998,179.06563359719996,175.33058931079998,174.53703994999998,173.61426295360002,171.38678653880004,171.51728408639997,174.4050149632,171.7784778752,171.12599005319996,169.30781874999997,172.0399367008,171.38678653880004,172.82590474239998,177.05819013119998,175.86095625,175.46308093439998,177.05819013119998,176.9248966436,180.54736279999995,182.03724353079997,183.80855165119996,181.22356944999993,178.93133437760002,179.87284034999996,181.4945241563999,177.9931195588,180.41232364119992,177.05819013119998,175.19816440000002,177.4584722484,177.05819013119998,180.0076102048,179.60350247559998,182.4449923072,177.4584722484,181.76574880520002,178.79710232439996,180.27735183359997,180.68246932679997,183.26231560000005,185.86660301719994,180.27735183359997,180.68246932679997,182.03724353079997,181.76574880520002,177.32497791680004,180.54736279999995,183.12592588919998,185.17888811519992,185.31629514999997,180.68246932679997,177.8593572,179.33443360280003,180.95288455159996,183.39877301480007,182.03724353079997,182.58104375000002,186.28004810239992,186.00434999999996,186.9704849403999,183.94528005,185.86660301719994,191.14896220839995,192.27364064999995,194.39428680000003,191.4297195131999,191.71075159880004,190.5882714036,193.68568135000007,190.86847955,189.88895114560003,193.82726444479997,189.7492926924,186.14216502280001,186.5560184991999,187.52406114679997,186.69410584999997,185.59131310439994,188.35647253640002,189.33072822719996,192.27364064999995,188.21756658879997,188.35647253640002,189.88895114560003,187.3855647999999,189.88895114560003,196.24474482760002,190.72834117119993,191.85137072639992,195.8166784,196.53046874999998,198.9703276063999,205.08460421120003,198.53830533319987,198.2506381883999,191.85137072639992,190.86847955,190.86847955,192.69652973759995,193.12003844279997,194.11063759360007,196.81646987239995,196.38757214719993,196.6734346528,194.5362149668001,197.67613778359998,197.38930425480004,196.24474482760002,196.38757214719993,196.1019867744,199.83625141759995,200.55977081560005,198.68224319999993,195.10461845000003,191.14896220839995,194.2524276812,195.67412804519995,195.95929797080004,195.5316468896,190.5882714036,191.9920585996,199.40297614999992,200.12545000000003,200.12545000000003,198.9703276063999,201.8665026784,204.49696959999994,205.52606816840003,203.32507005439993,199.11447417959997,196.9595744256,198.2506381883999,204.20357370559998,207.0021894444,204.05698105239995,205.23168854999992,205.3788431968,207.4464,199.9808158572,205.08460421120003,205.3788431968,199.11447417959997,201.1398421004,199.83625141759995,204.9375901636,198.53830533319987,200.12545000000003,197.10274832919993,197.8196586911999,193.96891652040003,190.02867810919994,192.27364064999995,192.8376304372,191.2893065216,195.24689210880007,197.10274832919993,194.6782121984,193.2613457824,190.86847955,204.9375901636,209.8262591488,201.72103078680004,207.4464,212.07384349479997,206.70640165,213.12818596160005,217.83943190520003,211.62304898559995,214.94375,213.7322333664,221.53415691959998,215.70326784999997,217.22766694999996,212.07384349479997,212.9773521484,217.22766694999996,213.43006720000005,215.3992463756,209.37865647159998,209.22959715839994,208.33672668480006,208.03966865919995,212.82658951680008,205.96816520000004,203.32507005439993,203.4713120076,208.33672668480006,205.67336348159995,204.49696959999994,206.70640165,209.52778656319992,207.4464,208.18816235000003,209.52778656319992,209.97560167639992,210.7233773343999,207.29825927719997,205.3788431968,201.72103078680004,208.18816235000003,204.20357370559998,208.33672668480006,210.42405439999996,204.6437728748,197.8196586911999,182.71716281279996,184.08207623680005,176.39239166919995,182.58104375000002,185.59131310439994,187.52406114679997,194.82027851160007,193.5441672192,189.19134364760004,192.69652973759995,193.5441672192,195.95929797080004,194.96241392319996,195.10461845000003,192.97879999999992,193.82726444479997,196.24474482760002,195.38923491639997,192.1328152351999,199.40297614999992,200.27015386279996,198.2506381883999,199.6917566644,198.82625061879997,197.10274832919993,195.38923491639997,192.1328152351999,198.82625061879997,199.54733158079998,200.27015386279996,199.83625141759995,197.8196586911999,196.6734346528,199.40297614999992,196.38757214719993,201.43029670119998,201.43029670119998,198.53830533319987,203.0327964,199.83625141759995,200.55977081560005,204.20357370559998,198.9703276063999,199.6917566644,194.2524276812,195.10461845000003,196.38757214719993,197.2459916,198.53830533319987,198.2506381883999,198.2506381883999,203.4713120076,203.0327964,198.2506381883999,204.20357370559998,205.08460421120003,208.93169079999998,210.2744992851999,207.4464,204.20357370559998,205.3788431968,206.70640165,203.4713120076,207.15018909760008,207.0021894444,201.28503447360004,180.68246932679997,180.68246932679997,176.5254176,177.19155054999996,173.8775808,174.80128977639998,174.14116475839995,176.25943258560002,174.9335146496,173.35121108480004,175.99371489280006,178.93133437760002,174.2730565716,179.60350247559998,180.0076102048,176.9248966436,180.0076102048,179.46893442239994,179.06563359719996,178.79710232439996,179.46893442239994,182.71716281279996,183.53529815039997,182.58104375000002,188.63448942519997,184.3558720416,185.45377014080003,184.76707457880002,187.66262571840005,182.71716281279996,189.0520274944,191.00868655680003,191.2893065216,193.82726444479997,196.24474482760002,192.97879999999992,193.68568135000007,196.1019867744,193.5441672192,194.11063759360007,197.96324904999994,194.39428680000003,191.4297195131999,188.9127797508001,186.8322613248,191.71075159880004,191.57020119999996,187.52406114679997,184.49287169319996,185.86660301719994,195.24689210880007,186.69410584999997,184.08207623680005,182.03724353079997,190.44827023039997,187.24713666120002,179.60350247559998,179.46893442239994,186.9704849403999,186.8322613248,188.35647253640002,187.66262571840005,190.16847360000003,186.9704849403999,187.93995960319998,170.86545826839998,166.09319999999997,176.12654033239997,176.9248966436,176.65851039480003,177.4584722484,177.59203356159998,177.59203356159998,180.0076102048,178.39480899519995,180.0076102048,179.46893442239994,178.79710232439996,180.0076102048,181.90146239999993,179.60350247559998,182.71716281279996,181.35901306879998,181.4945241563999,180.54736279999995,180.0076102048,180.27735183359997,184.21894022839996,182.30900846759994,184.08207623680005,183.67189102360004,185.04154901959998,183.53529815039997,181.4945241563999,182.58104375000002,186.69410584999997,185.59131310439994,184.62993920000002,184.76707457880002,182.4449923072,188.63448942519997,188.49544680960008,181.22356944999993,187.66262571840005,189.33072822719996,195.8166784,190.16847360000003,191.14896220839995,184.3558720416,182.30900846759994,189.88895114560003,187.24713666120002,182.58104375000002,185.17888811519992,184.08207623680005,186.4179992556,183.53529815039997,187.80125853159996,188.49544680960008,188.35647253640002,183.80855165119996,184.76707457880002,184.76707457880002,183.53529815039997,177.4584722484,172.4326221772,168.91989365439994,167.11741007359998,96.03005229719996,60.352831523599995,11.233878513199999,20.035637952399995,69.42575162880001,158.04975495680003,178.1269489664,168.27466939639996,172.6947441828,179.73813777919995,176.65851039480003,175.99371489280006,178.93133437760002,177.9931195588,183.26231560000005,178.39480899519995,174.6691315488,173.08842505919995,175.86095625,179.2,178.26084543960002,179.33443360280003,177.19155054999996,174.9335146496,173.8775808,183.12592588919998,179.2,175.99371489280006,178.93133437760002,174.53703994999998,174.53703994999998,169.5667651524,172.6947441828,172.30166069759997,169.5667651524,178.52883965,180.27735183359997,179.46893442239994,179.46893442239994,172.56365,176.65851039480003,171.12599005319996,171.51728408639997,173.35121108480004,172.6947441828,177.4584722484,177.05819013119998,180.68246932679997,177.9931195588,178.1269489664,179.06563359719996,178.79710232439996,179.60350247559998,180.95288455159996,184.21894022839996,179.60350247559998,180.54736279999995,181.0881932831999,182.03724353079997,180.27735183359997,182.30900846759994,180.54736279999995,186.14216502280001,187.93995960319998,185.72892405759998,187.80125853159996,187.10877671359998,184.21894022839996,183.39877301480007,185.59131310439994,187.3855647999999,188.49544680960008,188.9127797508001,187.24713666120002,183.80855165119996,186.28004810239992,186.28004810239992,187.24713666120002,185.86660301719994,186.4179992556,187.10877671359998,184.49287169319996,183.39877301480007,182.71716281279996,183.94528005,184.08207623680005,178.26084543960002,177.72566187319998,180.41232364119992,187.66262571840005,185.04154901959998,186.00434999999996,186.14216502280001,188.21756658879997,182.30900846759994,182.17309221440001,188.77360040000005,184.3558720416,186.8322613248,180.95288455159996,180.27735183359997,180.81764323839994,179.2,182.71716281279996,183.80855165119996,179.60350247559998,172.95713169560003,188.63448942519997,189.47018125,177.9931195588,180.95288455159996,175.72826438719994,178.26084543960002,182.58104375000002,185.04154901959998,184.76707457880002,186.9704849403999,184.3558720416,187.93995960319998,191.57020119999996,190.30833763480004,187.52406114679997,191.71075159880004,193.12003844279997,187.3855647999999,193.2613457824,194.2524276812,191.9920585996,194.2524276812,198.1069088768,200.99471956480008,197.8196586911999,198.39443700159998,199.54733158079998,199.11447417959997,198.53830533319987,198.9703276063999,198.9703276063999,192.97879999999992,197.53268631039992,196.53046874999998,196.53046874999998,202.0120444916,196.81646987239995,198.39443700159998,197.53268631039992,191.4297195131999,188.35647253640002,198.1069088768,204.9375901636,201.28503447360004,201.1398421004,199.9808158572,201.28503447360004,205.08460421120003,200.41492746240002,198.2506381883999,199.11447417959997,204.35023654919988,203.0327964,200.12545000000003,200.27015386279996,192.4145348608,197.38930425480004,192.4145348608,193.68568135000007,193.82726444479997,194.2524276812,191.4297195131999,181.0881932831999,184.90427784639994,191.00868655680003,193.5441672192,196.38757214719993,196.38757214719993,198.39443700159998,195.10461845000003,195.10461845000003,194.5362149668001,200.55977081560005,196.38757214719993,196.6734346528,197.67613778359998,197.2459916,198.39443700159998,195.38923491639997,191.57020119999996,192.4145348608,193.68568135000007,194.5362149668001,202.59491129639994,197.67613778359998,199.83625141759995,208.18816235000003,208.93169079999998,208.48536168039996,208.93169079999998,207.4464,212.82658951680008,210.42405439999996,210.57368041080002,215.3992463756,215.3992463756,207.7428931424,207.0021894444,216.6170484268,220.29797755,221.37938224639996,213.88342333960006,208.78284372119992,187.3855647999999,140.4529186816],\"hr\":[83.14285714285711,87.85714285714286,92.2857142857143,96.42857142857153,100.33333333333343,103.80952380952391,107.0952380952382,108.90476190476201,110.80952380952391,112.66666666666677,114.80952380952391,116.80952380952391,118.85714285714297,120.3809523809525,121.76190476190487,122.85714285714297,124.23809523809535,125.2857142857144,126.42857142857156,127.33333333333344,127.85714285714297,127.76190476190487,128.0000000000001,128.6666666666668,130.04761904761915,131.5714285714287,132.6666666666668,133.19047619047632,133.42857142857156,133.6666666666668,134.04761904761915,134.14285714285728,133.8095238095239,132.90476190476204,131.90476190476204,130.71428571428584,129.14285714285725,127.76190476190489,127.14285714285725,126.80952380952394,127.4761904761906,128.38095238095252,128.6666666666668,128.90476190476204,129.28571428571442,130.0000000000001,131.33333333333346,132.80952380952394,133.61904761904773,133.8095238095239,133.42857142857156,132.95238095238108,133.04761904761918,133.38095238095252,133.38095238095252,132.90476190476204,132.14285714285728,131.19047619047632,131.0000000000001,131.14285714285728,131.71428571428584,132.19047619047632,132.90476190476204,133.23809523809535,133.42857142857156,133.2857142857144,133.04761904761918,132.95238095238108,133.33333333333346,133.57142857142867,134.0000000000001,134.52380952380966,134.52380952380966,134.7619047619049,134.61904761904776,134.42857142857156,134.52380952380963,134.90476190476204,134.71428571428584,134.71428571428584,134.61904761904776,135.0000000000001,135.90476190476204,136.95238095238108,137.76190476190487,138.38095238095252,138.76190476190487,138.95238095238108,139.38095238095252,139.61904761904776,137.61904761904776,134.33333333333346,130.52380952380963,128.23809523809535,128.14285714285728,130.04761904761918,131.2857142857144,131.80952380952394,131.5714285714287,131.71428571428584,132.09523809523824,132.76190476190487,133.6666666666668,134.52380952380966,135.04761904761918,135.28571428571442,135.38095238095252,135.04761904761918,134.857142857143,135.38095238095252,135.90476190476204,136.6666666666668,137.38095238095252,137.76190476190487,137.95238095238108,138.00000000000014,138.04761904761918,138.33333333333346,138.5714285714287,138.90476190476204,139.4761904761906,140.0000000000001,140.71428571428584,140.90476190476204,140.80952380952394,140.4761904761906,140.71428571428584,141.4761904761906,142.80952380952394,143.90476190476204,144.80952380952394,145.04761904761918,145.09523809523824,145.00000000000014,145.00000000000014,144.90476190476204,145.04761904761918,145.23809523809538,145.61904761904776,146.23809523809538,147.04761904761918,148.0000000000001,149.0476190476192,149.80952380952394,150.00000000000014,149.7619047619049,149.33333333333348,149.0476190476192,149.00000000000014,148.9523809523811,148.6666666666668,148.33333333333348,148.04761904761918,147.80952380952394,148.04761904761918,148.23809523809538,148.71428571428584,149.28571428571442,149.6666666666668,150.00000000000014,150.42857142857156,150.6666666666668,150.857142857143,151.14285714285728,151.33333333333348,151.6666666666668,152.04761904761918,151.95238095238108,151.80952380952397,151.71428571428584,151.33333333333348,150.95238095238108,150.42857142857156,149.61904761904776,149.23809523809538,149.0476190476192,149.00000000000014,148.9523809523811,148.57142857142873,148.38095238095252,148.28571428571442,148.61904761904776,149.19047619047632,149.80952380952397,150.38095238095252,150.71428571428584,150.61904761904776,150.33333333333346,150.09523809523824,150.23809523809535,150.6666666666668,150.857142857143,151.14285714285728,151.23809523809538,151.71428571428586,152.28571428571445,152.76190476190493,152.95238095238108,153.09523809523824,153.00000000000014,153.00000000000014,152.90476190476204,153.14285714285728,153.28571428571445,153.33333333333348,153.38095238095252,153.09523809523824,152.57142857142873,152.2380952380954,152.09523809523824,152.14285714285728,152.71428571428586,153.28571428571445,153.7619047619049,153.95238095238108,154.09523809523824,154.00000000000014,154.09523809523824,153.95238095238108,153.6666666666668,153.4285714285716,153.09523809523824,152.61904761904776,151.95238095238108,151.0476190476192,150.19047619047632,150.00000000000014,150.33333333333346,150.52380952380966,150.7619047619049,150.71428571428584,150.38095238095252,150.19047619047632,150.14285714285728,149.90476190476204,149.90476190476204,150.04761904761918,150.33333333333346,150.6666666666668,150.95238095238108,151.09523809523824,151.09523809523824,150.95238095238108,150.6666666666668,150.33333333333346,149.95238095238108,149.857142857143,150.38095238095252,151.00000000000014,151.61904761904776,152.04761904761918,152.19047619047632,151.857142857143,151.80952380952397,151.61904761904776,151.38095238095252,151.28571428571445,151.09523809523824,150.5714285714287,150.23809523809535,150.00000000000014,150.28571428571442,150.90476190476204,151.6666666666668,152.38095238095252,152.6666666666668,153.00000000000014,153.4285714285716,153.57142857142873,154.00000000000014,154.42857142857156,154.6666666666668,154.9523809523811,155.00000000000014,155.14285714285728,155.28571428571442,155.33333333333348,155.28571428571442,155.14285714285728,154.90476190476204,155.09523809523824,155.0476190476192,154.5238095238097,154.04761904761918,153.61904761904776,153.57142857142873,154.14285714285728,155.14285714285728,155.857142857143,156.7619047619049,157.28571428571445,157.90476190476204,158.23809523809538,158.5238095238097,158.23809523809538,157.80952380952397,157.23809523809538,157.0476190476192,156.90476190476204,157.00000000000014,157.00000000000014,157.09523809523824,157.0476190476192,156.71428571428584,156.0476190476192,155.00000000000014,154.04761904761918,153.23809523809538,152.61904761904776,152.2380952380954,152.0476190476192,151.90476190476204,152.00000000000014,151.90476190476204,151.9523809523811,152.19047619047632,153.09523809523824,154.28571428571445,155.38095238095252,156.00000000000017,156.09523809523824,156.0476190476192,156.33333333333348,156.6666666666668,157.0476190476192,157.0476190476192,156.7619047619049,156.38095238095252,155.6666666666668,154.90476190476204,154.4761904761906,153.90476190476204,153.57142857142873,153.4285714285716,152.90476190476204,152.61904761904776,152.6666666666668,152.71428571428586,152.76190476190493,153.14285714285728,153.33333333333348,153.7619047619049,153.90476190476204,153.7619047619049,153.33333333333348,153.14285714285728,152.76190476190493,152.71428571428586,152.57142857142873,152.76190476190493,153.00000000000014,153.857142857143,154.5238095238097,155.38095238095252,156.28571428571445,157.19047619047635,157.7142857142859,158.00000000000017,157.857142857143,157.19047619047635,156.7619047619049,156.57142857142873,156.71428571428584,156.857142857143,157.09523809523824,157.00000000000014,157.00000000000014,157.00000000000014,156.90476190476204,157.0476190476192,157.23809523809538,157.71428571428586,158.38095238095252,158.71428571428586,158.61904761904776,158.5238095238097,158.00000000000014,157.57142857142873,157.33333333333348,157.0476190476192,156.80952380952397,157.0476190476192,157.42857142857156,157.61904761904776,157.7142857142859,157.38095238095252,156.71428571428584,156.23809523809538,156.14285714285728,155.857142857143,155.57142857142873,155.38095238095252,155.38095238095252,155.47619047619062,155.90476190476204,156.38095238095252,157.0476190476192,157.95238095238108,158.71428571428586,159.0476190476192,159.09523809523824,159.00000000000014,159.00000000000014,159.00000000000014,158.90476190476204,159.14285714285728,159.19047619047635,159.38095238095252,159.7142857142859,159.857142857143,160.90476190476204,158.57142857142873,153.38095238095252,147.14285714285728,142.00000000000014,139.23809523809535,140.47619047619062,141.14285714285728,142.04761904761918,142.90476190476204,144.00000000000014,145.00000000000014,146.09523809523824,147.04761904761918,147.61904761904776,148.09523809523824,148.42857142857156,148.6666666666668,148.9523809523811,149.09523809523824,149.00000000000014,149.00000000000014,148.90476190476204,149.0476190476192,149.23809523809538,149.61904761904776,150.33333333333346,151.09523809523824,151.61904761904776,151.95238095238108,152.14285714285728,152.2380952380954,152.71428571428586,153.28571428571445,153.857142857143,153.90476190476204,153.857142857143,153.19047619047635,152.76190476190493,152.57142857142873,152.80952380952397,152.71428571428584,152.80952380952397,152.6666666666668,152.71428571428586,152.857142857143,153.19047619047632,152.857142857143,152.61904761904776,152.71428571428584,152.95238095238108,153.57142857142873,154.38095238095252,154.76190476190493,154.9523809523811,155.00000000000014,155.0476190476192,155.33333333333348,155.57142857142873,156.00000000000017,156.42857142857156,156.57142857142873,157.00000000000014,157.42857142857156,157.6666666666668,158.0476190476192,157.95238095238108,157.80952380952397,157.61904761904776,157.38095238095252,157.19047619047635,157.14285714285728,156.90476190476204,157.00000000000014,157.00000000000014,156.90476190476204,157.0476190476192,157.23809523809538,157.71428571428586,158.28571428571445,158.76190476190493,158.9523809523811,159.19047619047632,158.9523809523811,158.66666666666683,158.33333333333348,158.0476190476192,157.90476190476204,158.00000000000014,158.00000000000014,158.00000000000014,158.00000000000014,157.90476190476204,158.0476190476192,158.2380952380954,158.71428571428586,159.28571428571445,159.76190476190493,160.0476190476192,160.0476190476192,159.57142857142873,159.38095238095252,159.38095238095252,159.57142857142873,159.857142857143,160.14285714285728,160.33333333333348,160.6666666666668,160.9523809523811,161.00000000000017,161.14285714285728,161.28571428571445,161.33333333333348,161.38095238095252,161.09523809523824,160.57142857142873,160.33333333333348,159.9523809523811,160.0476190476192,160.28571428571445,160.33333333333348,160.19047619047632,160.19047619047635,160.14285714285728,160.61904761904776,161.33333333333348,162.09523809523824,162.61904761904776,163.0476190476192,163.09523809523824,163.00000000000017,163.00000000000017,163.00000000000017,163.00000000000017,163.09523809523824,162.9523809523811,162.6666666666668,162.33333333333348,161.9523809523811,161.9523809523811,162.33333333333348,162.57142857142873,163.00000000000017,163.4285714285716,163.57142857142873,164.00000000000014,164.42857142857156,164.6666666666668,164.95238095238108,165.19047619047632,164.95238095238108,164.6666666666668,164.33333333333348,164.0476190476192,163.80952380952397,164.0476190476192,164.42857142857156,164.5238095238097,164.6666666666668,164.76190476190493,164.7142857142859,164.857142857143,165.09523809523824,165.00000000000017,165.00000000000017,165.00000000000017,165.00000000000017,164.90476190476204,165.0476190476192,165.33333333333348,165.66666666666683,165.95238095238113,166.00000000000017,166.1428571428573,166.19047619047635,166.38095238095252,166.5238095238097,166.857142857143,167.19047619047635,167.66666666666683,168.09523809523824,168.38095238095252,168.42857142857162,168.14285714285728,167.9523809523811,167.5238095238097,167.47619047619065,167.14285714285728,166.90476190476204,166.19047619047635,165.71428571428586,165.2380952380954,165.0476190476192,164.80952380952397,165.0476190476192,165.33333333333348,165.66666666666683,165.857142857143,166.1428571428573,166.33333333333348,166.57142857142873,167.00000000000017,167.4285714285716,167.57142857142873,168.00000000000017,168.42857142857156,168.6666666666668,168.9523809523811,169.09523809523824,169.00000000000017,169.00000000000017,169.00000000000017,169.00000000000017,168.90476190476207,169.1428571428573,169.19047619047637,169.38095238095255,169.61904761904776,169.80952380952397,169.857142857143,170.09523809523824,170.00000000000017,170.09523809523824,169.95238095238113,169.66666666666686,169.33333333333348,169.0476190476192,168.90476190476207,169.00000000000017,169.00000000000017,169.09523809523824,168.857142857143,168.80952380952397,168.5238095238097,168.42857142857162,168.5238095238097,168.80952380952397,168.857142857143,169.09523809523824,169.00000000000017,169.00000000000017,169.00000000000017,169.00000000000017,169.00000000000017,169.00000000000017,169.00000000000017,169.00000000000017,169.09523809523824,168.9523809523811,168.6666666666668,168.33333333333348,168.0476190476192,167.80952380952397,168.0476190476192,168.33333333333348,168.6666666666668,168.9523809523811,169.19047619047635,168.9523809523811,168.6666666666668,168.33333333333348,168.0476190476192,167.90476190476207,167.90476190476207,168.14285714285728,168.19047619047635,168.38095238095252,168.71428571428586,168.76190476190493,168.4285714285716,168.47619047619065,168.38095238095252,168.57142857142873,168.9523809523811,169.09523809523824,168.90476190476207,169.1428571428573,169.28571428571445,169.33333333333348,169.19047619047637,169.28571428571445,169.19047619047637,169.2380952380954,169.33333333333348,169.57142857142873,169.42857142857162,169.66666666666686,169.76190476190493,169.7142857142859,169.857142857143,170.19047619047637,169.95238095238113,169.66666666666686,169.33333333333348,169.0476190476192,168.90476190476207,169.00000000000017,168.90476190476207,169.0476190476192,169.33333333333348,169.66666666666686,169.857142857143,170.2380952380954,170.19047619047637,170.38095238095252,170.71428571428586,170.76190476190493,170.5238095238097,170.4285714285716,170.14285714285728,169.857142857143,169.66666666666686,169.42857142857162,169.00000000000017,168.6666666666668,168.28571428571445,167.71428571428586,167.23809523809538,167.0476190476192,166.90476190476207,167.00000000000017,167.00000000000017,167.00000000000017,167.00000000000017,167.09523809523824,166.9523809523811,166.6666666666668,166.33333333333348,166.0476190476192,165.90476190476207,166.00000000000017,166.00000000000017,165.90476190476207,166.0476190476192,166.33333333333348,166.6666666666668,166.857142857143,167.1428571428573,167.4285714285716,167.5238095238097,167.66666666666683,167.857142857143,167.66666666666683,167.5238095238097,167.5238095238097,167.00000000000017,166.57142857142873,166.2380952380954,166.09523809523824,166.2380952380954,166.57142857142873,167.00000000000017,167.33333333333348,167.71428571428586,168.28571428571445,168.76190476190493,168.9523809523811,169.19047619047635,168.9523809523811,168.6666666666668,168.33333333333348,168.0476190476192,168.00000000000017,167.95238095238113,167.76190476190493,167.28571428571445,166.71428571428586,166.2380952380954,165.95238095238113,165.95238095238113,166.33333333333348,166.6666666666668,166.9523809523811,167.09523809523824,167.00000000000017,167.00000000000017,166.90476190476207,167.1428571428573,167.28571428571445,167.33333333333348,167.28571428571445,167.1428571428573,166.90476190476207,167.00000000000017,167.00000000000017,167.00000000000017,167.00000000000017,167.00000000000017,167.00000000000017,167.09523809523824,166.857142857143,166.71428571428586,166.66666666666683,166.61904761904776,167.00000000000017,167.28571428571445,167.38095238095255,167.61904761904776,167.80952380952397,167.857142857143,168.09523809523824,168.00000000000017,168.00000000000017,168.00000000000017,168.00000000000017,168.00000000000017,168.00000000000017,168.00000000000017,168.09523809523824,168.0476190476192,167.71428571428586,166.9523809523811,165.95238095238113,165.33333333333348,165.28571428571445,165.57142857142873,165.95238095238113,166.09523809523824,166.00000000000017,165.90476190476207,166.0476190476192,166.2380952380954,166.71428571428586,167.28571428571445,167.76190476190493,167.95238095238113,168.09523809523824,168.00000000000017,168.00000000000017,168.00000000000017,168.00000000000017,168.00000000000017,168.00000000000017,168.09523809523824,167.95238095238113,167.76190476190493,167.57142857142873,168.9523809523811,164.2380952380954,155.71428571428586,145.5714285714287,137.19047619047632,133.33333333333346,135.80952380952394,136.80952380952394,138.00000000000014,138.90476190476204,140.14285714285728,141.28571428571442,142.33333333333346,143.19047619047632,144.09523809523824,145.28571428571445,146.90476190476204,148.57142857142873,150.42857142857156,152.00000000000014,153.6666666666668,155.38095238095252,156.6666666666668,158.09523809523824,159.47619047619062,160.28571428571445,161.0476190476192,161.5238095238097,161.6666666666668,162.0476190476192,162.0476190476192,161.6666666666668,161.33333333333348,161.0476190476192,160.90476190476204,161.00000000000017,161.00000000000017,160.90476190476204,161.14285714285728,161.28571428571445,161.33333333333348,161.38095238095252,161.09523809523824,160.47619047619062,160.38095238095252,160.38095238095252,160.47619047619062,161.00000000000017,161.42857142857156,161.57142857142873,162.00000000000017,162.42857142857156,162.6666666666668,162.857142857143,163.14285714285728,163.2380952380954,163.71428571428586,164.28571428571445,164.76190476190493,164.95238095238108,165.19047619047632,164.95238095238108,164.57142857142873,164.38095238095252,164.38095238095252,164.57142857142873,164.95238095238108,165.09523809523824,165.00000000000017,165.00000000000017,165.00000000000017,165.00000000000017,165.00000000000017,165.00000000000017,164.90476190476204,165.14285714285728,165.28571428571445,165.2380952380954,165.4285714285716,165.4285714285716,165.14285714285728,165.4285714285716,165.4285714285716,165.14285714285728,165.33333333333348,165.47619047619062,165.57142857142873,165.95238095238113,166.00000000000017,166.0476190476192,166.33333333333348,166.57142857142873,167.00000000000017,167.5238095238097,167.61904761904776,167.61904761904776,167.4285714285716,167.0476190476192,167.00000000000017,166.9523809523811,166.6666666666668,166.2380952380954,166.09523809523824,166.2380952380954,166.76190476190493,166.80952380952397,166.90476190476204,166.5238095238097,166.5238095238097,166.47619047619065,166.47619047619065,166.19047619047635,166.1428571428573,165.90476190476207,166.00000000000017,166.00000000000017,166.00000000000017,166.00000000000017,166.00000000000017,166.00000000000017,166.09523809523824,165.857142857143,165.71428571428586,165.66666666666683,165.71428571428586,165.76190476190493,166.1428571428573,166.33333333333348,166.57142857142873,167.00000000000017,167.33333333333348,167.71428571428586,168.28571428571445,168.857142857143,168.90476190476207,168.6666666666668,168.47619047619065,168.33333333333348,168.2380952380954,168.38095238095252,168.09523809523824,167.47619047619062,167.38095238095252,167.28571428571445,167.61904761904776,168.28571428571445,168.6666666666668,169.09523809523824,169.38095238095255,169.33333333333348,169.28571428571445,169.1428571428573,168.90476190476207,169.00000000000017,169.00000000000017,168.90476190476207,169.0476190476192,169.33333333333348,169.66666666666686,169.95238095238113,170.09523809523824,170.00000000000017,170.00000000000017,170.09523809523824,169.95238095238113,169.57142857142873,169.28571428571445,169.42857142857162,169.80952380952397,170.66666666666683,171.47619047619065,171.7142857142859,171.5238095238097,171.47619047619065,171.38095238095252,171.57142857142873,171.95238095238113,172.09523809523827,172.00000000000017,172.00000000000017,172.09523809523827,171.95238095238113,171.66666666666686,171.33333333333348,171.0476190476192,170.90476190476207,171.00000000000017,171.09523809523824,170.9523809523811,170.66666666666683,170.33333333333348,170.0476190476192,169.90476190476207,170.00000000000017,169.90476190476207,170.0476190476192,170.4285714285716,170.6190476190478,170.5238095238097,170.47619047619065,170.38095238095255,170.57142857142873,171.0476190476192,170.9523809523811,170.7142857142859,170.66666666666683,170.7142857142859,170.9523809523811,171.0476190476192,170.76190476190493,170.35714285714292,169.78571428571442,169.04761904761932],\"fnowindpace\":[\"02:35.6\",\"02:20.7\",\"02:13.1\",\"02:09.4\",\"02:07.8\",\"02:07.2\",\"02:07.6\",\"02:08.0\",\"02:08.6\",\"02:09.3\",\"02:09.1\",\"02:08.9\",\"02:09.0\",\"02:09.2\",\"02:09.4\",\"02:09.4\",\"02:08.8\",\"02:08.8\",\"02:09.4\",\"02:09.9\",\"02:09.7\",\"02:09.8\",\"02:09.3\",\"02:09.8\",\"02:10.3\",\"02:10.6\",\"02:10.3\",\"02:10.1\",\"02:09.6\",\"02:09.5\",\"02:09.1\",\"02:08.8\",\"02:09.0\",\"02:09.1\",\"02:09.5\",\"02:09.7\",\"02:10.1\",\"02:10.3\",\"02:10.1\",\"02:09.7\",\"02:09.0\",\"02:08.5\",\"02:08.1\",\"02:08.2\",\"02:07.9\",\"02:08.3\",\"02:08.1\",\"02:07.8\",\"02:07.1\",\"02:06.5\",\"02:06.0\",\"02:06.2\",\"02:06.5\",\"02:07.1\",\"02:07.5\",\"02:07.9\",\"02:07.8\",\"02:07.7\",\"02:07.5\",\"02:07.5\",\"02:07.5\",\"02:07.7\",\"02:07.4\",\"02:07.1\",\"02:07.1\",\"02:07.6\",\"02:08.0\",\"02:08.4\",\"02:08.0\",\"02:07.5\",\"02:07.4\",\"02:07.5\",\"02:07.6\",\"02:07.9\",\"02:08.1\",\"02:08.5\",\"02:08.1\",\"02:07.8\",\"02:07.0\",\"02:07.0\",\"02:07.2\",\"02:07.3\",\"02:07.1\",\"02:06.8\",\"02:06.4\",\"02:06.3\",\"02:05.8\",\"02:05.4\",\"02:05.6\",\"02:05.6\",\"02:01.9\",\"02:10.1\",\"02:21.6\",\"02:28.6\",\"02:28.6\",\"02:20.5\",\"02:06.5\",\"02:05.4\",\"02:06.1\",\"02:05.6\",\"02:05.6\",\"02:05.8\",\"02:06.0\",\"02:05.9\",\"02:05.9\",\"02:05.5\",\"02:05.9\",\"02:06.3\",\"02:06.5\",\"02:07.0\",\"02:07.3\",\"02:07.1\",\"02:06.8\",\"02:06.0\",\"02:04.8\",\"02:04.3\",\"02:04.1\",\"02:04.4\",\"02:04.4\",\"02:04.4\",\"02:03.9\",\"02:03.6\",\"02:03.8\",\"02:04.0\",\"02:04.1\",\"02:04.6\",\"02:04.7\",\"02:04.7\",\"02:04.7\",\"02:04.4\",\"02:04.4\",\"02:04.8\",\"02:05.1\",\"02:05.4\",\"02:05.6\",\"02:05.4\",\"02:05.2\",\"02:04.9\",\"02:04.8\",\"02:05.2\",\"02:05.2\",\"02:05.1\",\"02:04.7\",\"02:04.2\",\"02:04.0\",\"02:04.2\",\"02:04.1\",\"02:04.1\",\"02:04.0\",\"02:04.2\",\"02:04.4\",\"02:04.4\",\"02:04.4\",\"02:04.0\",\"02:03.5\",\"02:03.4\",\"02:03.2\",\"02:03.2\",\"02:03.4\",\"02:03.7\",\"02:03.4\",\"02:03.0\",\"02:02.9\",\"02:03.1\",\"02:03.6\",\"02:03.6\",\"02:03.5\",\"02:03.3\",\"02:03.4\",\"02:03.4\",\"02:03.7\",\"02:03.1\",\"02:03.0\",\"02:02.8\",\"02:02.3\",\"02:02.2\",\"02:02.5\",\"02:02.3\",\"02:02.4\",\"02:02.7\",\"02:03.0\",\"02:02.5\",\"02:02.0\",\"02:01.7\",\"02:01.8\",\"02:02.2\",\"02:02.9\",\"02:03.0\",\"02:02.9\",\"02:03.1\",\"02:03.0\",\"02:02.8\",\"02:02.8\",\"02:03.0\",\"02:02.9\",\"02:03.1\",\"02:03.0\",\"02:02.8\",\"02:02.4\",\"02:02.1\",\"02:01.6\",\"02:01.7\",\"02:01.8\",\"02:02.0\",\"02:02.3\",\"02:02.4\",\"02:03.1\",\"02:03.9\",\"02:04.2\",\"02:04.0\",\"02:03.7\",\"02:03.3\",\"02:04.0\",\"02:04.3\",\"02:04.6\",\"02:04.5\",\"02:04.6\",\"02:04.9\",\"02:05.1\",\"02:04.7\",\"02:04.8\",\"02:04.8\",\"02:05.1\",\"02:05.5\",\"02:05.9\",\"02:05.9\",\"02:06.0\",\"02:06.0\",\"02:05.9\",\"02:05.8\",\"02:05.6\",\"02:05.3\",\"02:05.2\",\"02:05.3\",\"02:05.6\",\"02:06.1\",\"02:06.3\",\"02:06.1\",\"02:05.7\",\"02:05.3\",\"02:04.7\",\"02:04.4\",\"02:04.4\",\"02:04.5\",\"02:04.6\",\"02:04.6\",\"02:04.1\",\"02:03.8\",\"02:03.6\",\"02:03.5\",\"02:03.2\",\"02:03.0\",\"02:02.8\",\"02:02.9\",\"02:03.5\",\"02:04.0\",\"02:04.3\",\"02:04.2\",\"02:04.0\",\"02:03.8\",\"02:03.9\",\"02:03.9\",\"02:04.3\",\"02:04.3\",\"02:04.5\",\"02:04.6\",\"02:04.5\",\"02:04.7\",\"02:04.6\",\"02:04.4\",\"02:04.3\",\"02:04.3\",\"02:04.3\",\"02:04.3\",\"02:04.1\",\"02:03.9\",\"02:03.8\",\"02:03.9\",\"02:04.0\",\"02:04.0\",\"02:04.2\",\"02:04.2\",\"02:04.5\",\"02:04.8\",\"02:04.9\",\"02:05.0\",\"02:04.9\",\"02:04.6\",\"02:04.4\",\"02:03.6\",\"02:02.6\",\"02:02.3\",\"02:02.5\",\"02:03.2\",\"02:04.2\",\"02:04.8\",\"02:05.0\",\"02:05.1\",\"02:04.5\",\"02:03.8\",\"02:03.4\",\"02:03.4\",\"02:03.8\",\"02:04.3\",\"02:04.4\",\"02:04.2\",\"02:04.4\",\"02:05.1\",\"02:05.7\",\"02:06.0\",\"02:05.7\",\"02:05.2\",\"02:04.6\",\"02:04.4\",\"02:04.2\",\"02:03.9\",\"02:03.8\",\"02:03.7\",\"02:03.8\",\"02:04.4\",\"02:04.9\",\"02:04.6\",\"02:04.1\",\"02:03.5\",\"02:03.4\",\"02:03.7\",\"02:04.0\",\"02:04.1\",\"02:04.3\",\"02:04.5\",\"02:04.7\",\"02:04.6\",\"02:04.5\",\"02:04.6\",\"02:04.5\",\"02:04.8\",\"02:05.0\",\"02:05.0\",\"02:04.7\",\"02:04.3\",\"02:03.5\",\"02:03.2\",\"02:03.1\",\"02:03.2\",\"02:03.4\",\"02:03.5\",\"02:03.5\",\"02:03.8\",\"02:04.1\",\"02:04.1\",\"02:03.8\",\"02:03.2\",\"02:02.7\",\"02:02.7\",\"02:02.7\",\"02:02.7\",\"02:02.8\",\"02:03.1\",\"02:03.2\",\"02:03.3\",\"02:03.3\",\"02:03.2\",\"02:03.7\",\"02:04.3\",\"02:04.2\",\"02:04.0\",\"02:03.0\",\"02:02.2\",\"02:02.3\",\"02:02.7\",\"02:03.4\",\"02:04.1\",\"02:04.1\",\"02:04.1\",\"02:03.9\",\"02:03.6\",\"02:03.2\",\"02:03.1\",\"02:03.2\",\"02:03.8\",\"02:04.1\",\"02:04.2\",\"02:03.7\",\"02:03.4\",\"02:03.3\",\"02:03.6\",\"02:04.0\",\"02:04.3\",\"02:04.3\",\"02:04.2\",\"02:03.4\",\"02:02.9\",\"02:02.4\",\"02:02.0\",\"02:02.2\",\"02:02.8\",\"02:02.3\",\"02:02.0\",\"02:01.8\",\"02:01.7\",\"02:02.0\",\"02:02.4\",\"02:02.0\",\"02:01.6\",\"02:01.3\",\"02:01.2\",\"02:01.0\",\"02:00.9\",\"02:00.9\",\"02:01.0\",\"01:56.9\",\"02:07.3\",\"02:23.9\",\"02:36.7\",\"02:38.1\",\"02:26.7\",\"02:07.0\",\"02:04.7\",\"02:05.0\",\"02:05.2\",\"02:05.3\",\"02:05.3\",\"02:05.5\",\"02:05.7\",\"02:05.8\",\"02:05.9\",\"02:06.2\",\"02:05.7\",\"02:05.5\",\"02:05.4\",\"02:05.5\",\"02:05.4\",\"02:05.7\",\"02:06.0\",\"02:06.3\",\"02:06.2\",\"02:06.1\",\"02:05.9\",\"02:06.0\",\"02:06.3\",\"02:06.2\",\"02:05.7\",\"02:05.4\",\"02:05.7\",\"02:06.2\",\"02:06.6\",\"02:07.0\",\"02:06.7\",\"02:06.2\",\"02:06.1\",\"02:06.1\",\"02:06.4\",\"02:07.0\",\"02:07.0\",\"02:07.1\",\"02:07.0\",\"02:07.2\",\"02:07.3\",\"02:07.5\",\"02:07.5\",\"02:07.1\",\"02:06.7\",\"02:06.4\",\"02:06.1\",\"02:06.1\",\"02:06.1\",\"02:05.7\",\"02:05.2\",\"02:04.8\",\"02:04.7\",\"02:05.0\",\"02:05.1\",\"02:05.3\",\"02:05.3\",\"02:05.2\",\"02:05.6\",\"02:05.9\",\"02:06.0\",\"02:06.1\",\"02:05.8\",\"02:05.3\",\"02:05.3\",\"02:05.1\",\"02:05.2\",\"02:05.3\",\"02:05.4\",\"02:05.2\",\"02:04.8\",\"02:04.5\",\"02:04.6\",\"02:04.7\",\"02:04.8\",\"02:05.1\",\"02:05.2\",\"02:05.3\",\"02:05.1\",\"02:04.6\",\"02:04.2\",\"02:04.4\",\"02:04.9\",\"02:05.4\",\"02:05.4\",\"02:05.1\",\"02:04.8\",\"02:04.6\",\"02:04.4\",\"02:04.1\",\"02:03.9\",\"02:04.0\",\"02:04.0\",\"02:03.6\",\"02:03.1\",\"02:02.5\",\"02:02.3\",\"02:02.6\",\"02:02.6\",\"02:02.7\",\"02:02.7\",\"02:02.6\",\"02:02.6\",\"02:02.9\",\"02:03.1\",\"02:03.4\",\"02:03.8\",\"02:03.8\",\"02:03.7\",\"02:03.7\",\"02:03.4\",\"02:03.1\",\"02:03.0\",\"02:03.0\",\"02:03.2\",\"02:03.5\",\"02:03.1\",\"02:02.8\",\"02:02.7\",\"02:02.4\",\"02:02.3\",\"02:02.2\",\"02:01.4\",\"02:00.9\",\"02:00.7\",\"02:00.9\",\"02:01.6\",\"02:02.4\",\"02:02.7\",\"02:02.8\",\"02:02.6\",\"02:02.3\",\"02:02.0\",\"02:01.8\",\"02:01.7\",\"02:01.7\",\"02:01.7\",\"02:01.6\",\"02:01.6\",\"02:01.6\",\"02:01.7\",\"02:01.4\",\"02:01.1\",\"02:01.0\",\"02:01.4\",\"02:01.9\",\"02:02.3\",\"02:02.2\",\"02:01.9\",\"02:01.8\",\"02:02.3\",\"02:02.4\",\"02:02.1\",\"02:01.6\",\"02:01.1\",\"02:00.9\",\"02:00.9\",\"02:00.5\",\"02:00.1\",\"02:00.0\",\"02:00.4\",\"02:01.0\",\"02:01.3\",\"02:01.0\",\"02:00.4\",\"02:00.0\",\"01:59.8\",\"01:59.7\",\"02:00.0\",\"02:00.0\",\"02:00.0\",\"02:00.2\",\"02:00.5\",\"02:00.6\",\"02:00.7\",\"02:00.8\",\"02:00.6\",\"02:00.8\",\"02:01.0\",\"02:01.4\",\"02:01.7\",\"02:02.2\",\"02:02.5\",\"02:02.8\",\"02:02.7\",\"02:02.2\",\"02:02.0\",\"02:01.8\",\"02:02.2\",\"02:02.3\",\"02:01.5\",\"02:00.8\",\"02:00.1\",\"01:59.3\",\"01:59.6\",\"01:59.5\",\"01:58.7\",\"01:58.5\",\"01:58.3\",\"01:58.2\",\"01:58.1\",\"01:58.0\",\"01:57.5\",\"01:57.6\",\"01:58.0\",\"01:58.2\",\"01:58.2\",\"01:58.1\",\"01:58.1\",\"01:58.4\",\"01:58.8\",\"01:59.2\",\"01:59.2\",\"01:59.1\",\"01:59.2\",\"01:59.6\",\"01:59.9\",\"02:00.1\",\"01:59.9\",\"01:59.8\",\"01:59.7\",\"01:59.7\",\"01:59.5\",\"01:59.3\",\"01:59.2\",\"01:59.1\",\"01:59.0\",\"01:59.0\",\"01:59.6\",\"01:59.8\",\"02:00.1\",\"02:00.0\",\"01:59.6\",\"01:59.2\",\"01:59.3\",\"02:00.2\",\"02:01.7\",\"02:03.7\",\"02:05.0\",\"02:05.4\",\"02:04.9\",\"02:04.2\",\"02:03.0\",\"02:02.7\",\"02:02.5\",\"02:02.5\",\"02:02.6\",\"02:02.3\",\"02:01.9\",\"02:01.9\",\"02:02.1\",\"02:02.1\",\"02:02.0\",\"02:02.2\",\"02:02.0\",\"02:01.7\",\"02:01.5\",\"02:01.2\",\"02:00.9\",\"02:01.1\",\"02:01.2\",\"02:01.7\",\"02:01.9\",\"02:01.9\",\"02:01.6\",\"02:01.1\",\"02:00.8\",\"02:01.1\",\"02:01.2\",\"02:01.5\",\"02:01.4\",\"02:01.1\",\"02:01.0\",\"02:00.8\",\"02:00.7\",\"02:00.9\",\"02:00.7\",\"02:00.6\",\"02:00.6\",\"02:00.8\",\"02:01.3\",\"02:01.8\",\"02:01.9\",\"02:01.8\",\"02:01.5\",\"02:01.4\",\"02:01.2\",\"02:00.8\",\"02:00.8\",\"02:00.6\",\"02:00.5\",\"02:00.4\",\"01:59.8\",\"01:59.2\",\"01:59.3\",\"01:59.5\",\"01:59.7\",\"02:00.0\",\"02:00.0\",\"01:59.7\",\"01:59.4\",\"02:00.2\",\"02:01.6\",\"02:03.6\",\"02:05.2\",\"02:06.2\",\"02:06.1\",\"02:06.5\",\"02:06.5\",\"02:06.5\",\"02:06.4\",\"02:06.5\",\"02:06.3\",\"02:06.3\",\"02:06.1\",\"02:05.7\",\"02:05.7\",\"02:05.6\",\"02:05.4\",\"02:05.5\",\"02:05.5\",\"02:05.4\",\"02:05.4\",\"02:05.1\",\"02:05.0\",\"02:04.4\",\"02:04.1\",\"02:04.0\",\"02:04.0\",\"02:03.8\",\"02:04.2\",\"02:04.0\",\"02:03.8\",\"02:03.5\",\"02:03.1\",\"02:02.4\",\"02:02.2\",\"02:02.2\",\"02:02.0\",\"02:02.1\",\"02:02.2\",\"02:01.9\",\"02:01.8\",\"02:01.9\",\"02:02.0\",\"02:02.7\",\"02:03.2\",\"02:03.1\",\"02:03.0\",\"02:03.1\",\"02:03.6\",\"02:03.6\",\"02:03.4\",\"02:03.2\",\"02:03.6\",\"02:03.8\",\"02:04.0\",\"02:03.9\",\"02:04.2\",\"02:04.5\",\"02:04.8\",\"02:04.4\",\"02:03.7\",\"02:03.3\",\"02:03.4\",\"02:03.0\",\"02:03.5\",\"02:05.0\",\"02:06.5\",\"02:07.2\",\"02:07.3\",\"02:06.3\",\"02:05.7\",\"02:05.9\",\"02:05.8\",\"02:05.7\",\"02:05.5\",\"02:05.4\",\"02:05.4\",\"02:05.5\",\"02:05.3\",\"02:05.3\",\"02:05.1\",\"02:04.9\",\"02:04.9\",\"02:04.9\",\"02:04.9\",\"02:05.2\",\"02:05.1\",\"02:05.0\",\"02:04.7\",\"02:04.5\",\"02:04.3\",\"02:04.3\",\"02:04.3\",\"02:04.6\",\"02:04.5\",\"02:04.4\",\"02:04.2\",\"02:03.9\",\"02:04.2\",\"02:04.3\",\"02:03.9\",\"02:04.0\",\"02:04.0\",\"02:03.9\",\"02:03.6\",\"02:03.1\",\"02:02.4\",\"02:02.6\",\"02:03.3\",\"02:03.9\",\"02:03.8\",\"02:04.0\",\"02:03.8\",\"02:04.0\",\"02:04.3\",\"02:04.3\",\"02:04.1\",\"02:03.9\",\"02:03.6\",\"02:03.6\",\"02:03.6\",\"02:03.9\",\"02:04.1\",\"02:04.3\",\"02:04.8\",\"02:05.7\",\"02:04.9\",\"02:07.4\",\"02:12.6\",\"02:35.6\",\"03:21.1\",\"04:08.1\",\"03:49.2\",\"03:00.5\",\"02:20.9\",\"02:06.6\",\"02:04.2\",\"02:06.2\",\"02:06.5\",\"02:05.8\",\"02:05.8\",\"02:05.7\",\"02:05.2\",\"02:05.2\",\"02:05.7\",\"02:06.2\",\"02:06.5\",\"02:06.3\",\"02:05.8\",\"02:05.4\",\"02:05.6\",\"02:06.2\",\"02:06.1\",\"02:05.9\",\"02:05.7\",\"02:05.4\",\"02:05.5\",\"02:06.0\",\"02:06.4\",\"02:06.8\",\"02:07.1\",\"02:07.4\",\"02:07.4\",\"02:06.7\",\"02:06.1\",\"02:05.4\",\"02:05.3\",\"02:05.7\",\"02:06.2\",\"02:06.7\",\"02:07.0\",\"02:07.1\",\"02:07.1\",\"02:06.6\",\"02:06.1\",\"02:05.7\",\"02:05.5\",\"02:05.5\",\"02:05.5\",\"02:05.6\",\"02:05.5\",\"02:05.1\",\"02:05.0\",\"02:04.9\",\"02:04.9\",\"02:05.0\",\"02:05.1\",\"02:04.9\",\"02:05.0\",\"02:04.9\",\"02:04.5\",\"02:04.1\",\"02:03.8\",\"02:03.5\",\"02:03.6\",\"02:03.9\",\"02:04.1\",\"02:04.2\",\"02:04.1\",\"02:03.6\",\"02:03.3\",\"02:03.5\",\"02:03.7\",\"02:03.9\",\"02:04.0\",\"02:03.9\",\"02:03.7\",\"02:03.7\",\"02:03.8\",\"02:03.9\",\"02:04.1\",\"02:04.4\",\"02:04.4\",\"02:04.5\",\"02:04.9\",\"02:05.4\",\"02:05.3\",\"02:05.0\",\"02:04.3\",\"02:03.9\",\"02:03.6\",\"02:03.8\",\"02:04.1\",\"02:04.1\",\"02:04.2\",\"02:04.1\",\"02:03.9\",\"02:04.1\",\"02:04.7\",\"02:05.1\",\"02:05.3\",\"02:04.9\",\"02:04.7\",\"02:05.3\",\"02:05.3\",\"02:04.8\",\"02:04.6\",\"02:04.2\",\"02:04.4\",\"02:05.6\",\"02:05.9\",\"02:05.4\",\"02:05.0\",\"02:04.2\",\"02:04.0\",\"02:04.0\",\"02:03.8\",\"02:03.3\",\"02:03.2\",\"02:03.0\",\"02:02.8\",\"02:03.0\",\"02:02.9\",\"02:02.6\",\"02:02.7\",\"02:02.6\",\"02:02.2\",\"02:01.9\",\"02:01.5\",\"02:01.2\",\"02:01.1\",\"02:01.1\",\"02:01.2\",\"02:01.1\",\"02:01.0\",\"02:01.3\",\"02:01.5\",\"02:01.7\",\"02:01.9\",\"02:01.6\",\"02:01.3\",\"02:01.2\",\"02:01.1\",\"02:01.3\",\"02:02.1\",\"02:02.5\",\"02:02.3\",\"02:01.7\",\"02:00.8\",\"02:00.4\",\"02:00.7\",\"02:00.7\",\"02:00.5\",\"02:00.6\",\"02:00.8\",\"02:00.9\",\"02:00.9\",\"02:00.6\",\"02:00.3\",\"02:00.8\",\"02:01.3\",\"02:01.8\",\"02:02.1\",\"02:02.3\",\"02:02.1\",\"02:02.1\",\"02:02.5\",\"02:03.4\",\"02:03.9\",\"02:04.0\",\"02:03.3\",\"02:02.3\",\"02:01.7\",\"02:01.5\",\"02:01.6\",\"02:01.9\",\"02:01.8\",\"02:01.7\",\"02:01.5\",\"02:01.4\",\"02:01.4\",\"02:01.5\",\"02:01.3\",\"02:01.6\",\"02:02.0\",\"02:02.3\",\"02:02.6\",\"02:02.2\",\"02:01.6\",\"02:01.4\",\"02:00.9\",\"02:00.4\",\"02:00.0\",\"01:59.3\",\"01:59.2\",\"01:59.2\",\"01:59.1\",\"01:59.0\",\"01:58.8\",\"01:58.3\",\"01:58.4\",\"01:58.7\",\"01:58.9\",\"01:58.8\",\"01:58.1\",\"01:57.3\",\"01:57.0\",\"01:57.3\",\"01:59.2\",\"02:04.4\",\"02:15.5\"],\"hr_bottom\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"cumdist\":[8.2,19.4,30.7,38.7,54.2,62.6,81.7,93.2,105.5,113.0,128.9,140.8,148.4,163.5,179.3,194.1,206.5,211.2,229.5,244.9,249.2,264.4,275.7,288.8,307.4,322.0,330.0,339.7,352.4,364.6,377.4,390.2,403.4,419.5,430.9,446.2,454.3,473.3,488.6,492.6,511.9,518.2,539.2,543.9,556.8,571.1,582.5,598.8,610.4,620.3,638.3,645.1,665.4,670.1,689.5,695.4,712.6,724.6,733.2,745.6,760.1,770.9,783.9,796.3,815.0,827.0,838.5,846.9,859.8,878.0,885.7,898.6,917.2,925.4,944.5,949.1,968.4,975.9,987.4,999.9,1011.9,1027.3,1043.4,1055.0,1066.7,1073.1,1087.2,1097.9,1110.1,1122.8,1138.8,1166.5,1166.5,1170.2,1179.2,1198.3,1205.9,1218.5,1227.2,1239.4,1251.6,1266.2,1282.3,1288.4,1301.1,1313.2,1325.4,1337.5,1349.5,1362.1,1381.0,1393.5,1399.1,1413.3,1424.0,1436.2,1448.6,1469.6,1474.6,1486.9,1499.7,1515.0,1526.4,1536.7,1549.0,1566.6,1574.6,1585.7,1606.3,1615.2,1627.0,1634.9,1647.1,1659.2,1671.4,1684.1,1696.3,1708.6,1727.1,1735.1,1745.6,1759.4,1771.2,1784.1,1795.9,1807.7,1824.2,1830.4,1842.7,1856.6,1866.8,1884.8,1891.4,1903.7,1915.6,1927.5,1941.5,1951.8,1970.0,1977.7,1990.0,2006.7,2014.5,2024.9,2037.2,2054.9,2061.5,2076.0,2087.8,2104.5,2112.6,2122.9,2140.2,2146.9,2159.4,2170.9,2183.4,2195.4,2214.1,2219.5,2234.9,2246.8,2254.9,2272.0,2278.1,2296.7,2305.1,2317.0,2329.0,2341.8,2349.5,2361.4,2377.4,2383.8,2398.4,2406.8,2418.2,2430.2,2441.8,2456.4,2464.9,2476.5,2493.5,2500.2,2517.5,2523.3,2535.1,2547.1,2559.7,2571.6,2583.5,2602.6,2608.8,2626.8,2634.8,2646.6,2663.2,2678.8,2682.8,2695.0,2711.7,2720.2,2732.2,2744.4,2763.1,2775.7,2787.4,2793.4,2811.7,2823.5,2838.5,2851.3,2859.6,2867.5,2880.1,2892.1,2906.8,2916.9,2931.1,2941.2,2954.0,2967.4,2978.2,2990.4,3010.9,3019.3,3027.3,3039.1,3052.1,3063.9,3075.8,3087.7,3099.7,3113.2,3129.5,3137.4,3149.1,3169.4,3174.3,3190.2,3199.5,3211.8,3224.6,3242.6,3248.7,3263.0,3274.8,3286.0,3299.3,3311.0,3323.3,3336.1,3355.0,3367.7,3373.0,3385.3,3404.3,3410.0,3422.3,3435.1,3452.7,3460.8,3471.5,3483.8,3504.4,3508.8,3521.1,3532.8,3553.0,3564.9,3568.9,3589.3,3593.0,3606.4,3622.9,3629.0,3646.5,3653.0,3665.3,3678.6,3691.1,3701.5,3715.8,3727.6,3737.9,3755.9,3767.8,3779.5,3785.9,3798.0,3810.2,3823.5,3836.2,3852.2,3860.0,3872.8,3881.6,3896.5,3912.8,3917.2,3929.5,3941.1,3953.6,3965.1,3976.4,3988.3,4000.1,4012.0,4029.9,4035.6,4049.9,4059.2,4071.0,4090.6,4099.0,4106.3,4126.0,4129.9,4142.7,4153.5,4164.9,4183.1,4188.4,4200.3,4216.1,4231.5,4240.4,4246.9,4264.1,4273.1,4282.0,4300.5,4305.0,4321.8,4328.0,4341.5,4351.5,4362.9,4374.4,4391.2,4397.7,4415.0,4427.7,4439.5,4444.8,4456.1,4468.1,4479.1,4491.3,4503.2,4514.5,4533.4,4537.8,4557.0,4561.0,4572.4,4584.4,4595.9,4607.8,4619.6,4631.5,4642.8,4654.7,4666.7,4678.7,4689.0,4700.9,4712.2,4723.6,4735.0,4746.4,4764.5,4773.0,4780.5,4791.2,4805.2,4814.1,4825.6,4838.9,4854.5,4866.5,4870.5,4881.6,4893.2,4904.9,4916.0,4927.7,4941.4,4953.6,4962.8,4978.6,4984.4,5014.3,5021.4,5032.3,5043.9,5052.0,5060.7,5072.5,5084.6,5096.4,5115.8,5127.6,5132.1,5144.2,5155.4,5167.0,5178.7,5195.7,5203.7,5216.3,5225.5,5237.3,5249.0,5260.6,5279.2,5284.4,5296.5,5311.6,5320.3,5332.3,5344.5,5363.6,5367.9,5380.6,5392.1,5404.1,5419.2,5427.4,5446.8,5458.4,5462.8,5474.4,5494.0,5498.0,5509.5,5521.5,5533.6,5545.1,5564.7,5569.2,5584.6,5591.9,5605.0,5616.7,5627.3,5644.7,5652.8,5669.2,5674.9,5686.1,5701.3,5710.0,5721.7,5741.0,5745.7,5757.8,5769.5,5788.5,5800.3,5809.4,5816.7,5828.5,5840.7,5853.0,5864.6,5875.9,5893.4,5901.0,5911.8,5929.7,5935.3,5947.1,5959.3,5970.6,5988.9,5994.1,6005.9,6018.3,6033.4,6041.7,6053.9,6065.7,6077.5,6089.3,6101.6,6113.0,6126.3,6136.7,6148.5,6159.9,6171.4,6187.8,6195.5,6206.0,6217.5,6229.0,6240.5,6252.0,6263.5,6275.0,6286.5,6305.7,6313.6,6321.1,6332.6,6350.1,6355.4,6366.9,6378.4,6395.1,6407.9,6415.7,6427.6,6435.6,6446.7,6460.7,6472.7,6481.8,6493.4,6504.5,6515.8,6526.9,6538.1,6549.7,6560.6,6571.7,6588.1,6594.2,6605.3,6616.4,6629.1,6638.7,6650.3,6661.9,6672.1,6683.1,6695.3,6705.4,6716.6,6727.8,6738.4,6753.5,6765.4,6772.1,6783.2,6794.3,6810.7,6819.0,6831.5,6839.6,6855.7,6862.0,6873.1,6884.8,6896.1,6907.4,6922.7,6934.7,6940.9,6952.0,6964.4,6977.2,6985.4,6996.7,7013.9,7019.3,7030.5,7041.8,7056.1,7064.2,7075.4,7089.2,7102.3,7109.0,7122.8,7130.8,7142.0,7153.0,7167.5,7175.1,7192.3,7200.6,7207.8,7218.9,7230.3,7245.9,7252.6,7263.4,7274.7,7291.3,7296.7,7308.2,7321.0,7330.4,7341.9,7359.2,7364.2,7375.2,7386.2,7397.7,7408.2,7419.6,7430.5,7441.5,7451.9,7469.7,7478.3,7491.5,7496.5,7507.3,7518.2,7529.6,7540.8,7557.9,7566.9,7573.7,7584.9,7596.2,7607.1,7617.9,7629.3,7641.7,7655.1,7661.9,7679.5,7684.0,7701.1,7713.3,7717.3,7730.7,7739.5,7750.3,7761.9,7773.2,7788.0,7796.7,7812.4,7819.0,7830.4,7845.0,7857.0,7868.9,7876.5,7888.0,7905.8,7914.2,7922.3,7934.8,7951.1,7955.5,7968.1,7978.1,7989.3,8005.4,8012.1,8029.6,8038.4,8046.6,8062.4,8068.2,8083.8,8091.6,8103.7,8112.4,8123.6,8134.2,8149.8,8161.9,8167.6,8178.4,8190.0,8207.5,8216.0,8228.2,8241.2,8253.3,8261.3,8270.3,8282.4,8294.5,8303.6,8315.3,8331.7,8337.5,8352.8,8365.0,8371.2,8382.9,8394.2,8407.1,8417.4,8428.4,8440.0,8457.2,8463.1,8479.3,8486.7,8497.0,8512.1,8520.9,8532.1,8543.8,8555.0,8567.1,8578.3,8589.3,8603.0,8612.2,8623.8,8635.4,8646.6,8658.8,8669.5,8681.2,8693.0,8704.2,8718.4,8734.4,8742.7,8749.7,8761.0,8774.9,8784.1,8803.0,8807.5,8819.4,8831.2,8841.6,8855.9,8872.3,8880.3,8887.9,8899.4,8913.5,8922.0,8934.1,8950.6,8957.2,8968.8,8987.4,8992.0,9003.0,9019.7,9026.3,9044.0,9049.3,9060.7,9072.0,9088.8,9095.1,9106.4,9118.3,9129.6,9141.1,9152.4,9164.2,9178.4,9186.8,9198.3,9209.2,9226.8,9238.7,9243.6,9254.9,9267.4,9279.8,9291.4,9303.1,9322.1,9330.8,9338.6,9354.2,9366.8,9373.7,9385.9,9397.2,9410.4,9420.6,9432.4,9445.1,9456.1,9474.8,9486.5,9492.1,9503.9,9522.6,9534.4,9547.1,9551.1,9562.9,9574.8,9586.5,9598.3,9610.2,9622.0,9633.8,9645.7,9657.5,9669.8,9689.6,9693.7,9705.4,9720.8,9728.8,9745.6,9751.3,9762.8,9774.6,9790.0,9802.3,9814.6,9822.6,9833.9,9846.3,9857.6,9869.4,9886.7,9899.5,9907.7,9918.0,9929.3,9941.2,9953.5,9965.1,9976.7,9995.3,10000.8,10014.9,10032.0,10034.2,10040.5,10049.2,10064.8,10076.9,10092.3,10104.5,10116.6,10124.3,10140.5,10146.1,10158.7,10171.0,10184.7,10203.5,10212.6,10227.8,10239.6,10248.1,10264.0,10271.5,10282.5,10303.4,10307.9,10320.0,10332.1,10344.3,10363.3,10375.3,10380.4,10392.4,10404.9,10417.3,10429.5,10443.3,10453.9,10466.1,10478.6,10494.6,10503.2,10515.2,10527.8,10539.8,10558.1,10565.6,10577.3,10589.4,10601.6,10622.0,10626.0,10638.6,10653.8,10663.1,10678.3,10688.5,10706.5,10713.0,10725.2,10737.9,10750.1,10769.9,10778.8,10785.8,10798.7,10811.6,10827.1,10838.9,10851.7,10861.1,10869.4,10881.3,10896.6,10908.4,10920.3,10928.7,10948.5,10956.9,10969.2,10981.6,10993.4,11001.9,11012.1,11024.0,11038.3,11050.0,11065.4,11073.9,11084.3,11101.9,11108.9,11120.8,11138.4,11150.6,11156.8,11168.1,11183.5,11195.3,11204.1,11223.2,11231.5,11243.3,11251.1,11262.9,11275.6,11291.2,11304.0,11310.6,11323.3,11334.0,11346.1,11358.4,11375.9,11384.0,11399.6,11405.9,11418.0,11429.9,11441.9,11453.8,11466.3,11485.7,11489.7,11502.1,11513.7,11530.6,11538.7,11551.3,11560.4,11576.1,11584.2,11600.7,11609.1,11625.9,11630.8,11642.4,11654.1,11666.1,11677.7,11691.4,11701.9,11716.6,11725.2,11736.9,11753.9,11761.9,11772.1,11790.8,11795.7,11811.5,11819.1,11830.8,11842.6,11853.8,11873.4,11882.1,11889.2,11901.0,11912.7,11931.6,11940.5,11947.6,11960.8,11977.4,11985.8,11993.8,12005.9,12022.6,12029.1,12047.1,12059.0,12067.0,12079.6,12083.1,12086.8,12104.1,12116.1,12121.5,12133.2,12149.7,12157.9,12168.0,12183.1,12195.2,12207.2,12214.3,12226.3,12237.8,12249.9,12265.1,12277.3,12284.5,12295.8,12311.2,12324.0,12336.2,12348.4,12357.1,12364.4,12382.6,12387.3,12399.3,12416.7,12425.0,12432.4,12443.4,12455.0,12466.4,12484.3,12488.1,12509.4],\"nowindpace\":[155600664000,140791643000,133114440000,129463680000,127885281000,127200664000,127656809000,128072561000,128629767000,129348358000,129192662000,128961180000,129065214000,129299374000,129413478000,129470442000,128841023000,128887330000,129418723000,129941331000,129749056000,129813316000,129392472000,129848534000,130309639000,130649345000,130380071000,130115816000,129668267000,129507642000,129146403000,128866646000,129044653000,129181145000,129505116000,129792560000,130109196000,130323086000,130172062000,129756246000,129096583000,128510952000,128189134000,128227354000,127963196000,128333504000,128118111000,127880733000,127151978000,126553743000,126060465000,126288976000,126537782000,127169598000,127590528000,127900309000,127867735000,127776997000,127574995000,127531683000,127568574000,127765880000,127484869000,127147767000,127197793000,127631451000,128007729000,128486891000,128012061000,127539505000,127453334000,127518237000,127609122000,127942034000,128102559000,128524875000,128193612000,127806220000,127083303000,127018760000,127217155000,127327948000,127103447000,126802691000,126409105000,126373565000,125858915000,125450084000,125648616000,125665428000,121918948000,130186578000,141692453000,148627241000,148698859000,140549793000,126544541000,125494293000,126199154000,125656720000,125666450000,125896896000,126082508000,125914767000,125953757000,125577827000,125911637000,126366484000,126598648000,127076290000,127354345000,127188202000,126828280000,126012381000,124879711000,124302815000,124161387000,124454866000,124451101000,124494382000,123982923000,123686194000,123868376000,124020858000,124141212000,124667144000,124721459000,124722291000,124794137000,124492037000,124425711000,124853715000,125164283000,125445240000,125621530000,125456270000,125252595000,124953705000,124896150000,125262747000,125276518000,125135061000,124716311000,124234931000,124047912000,124201288000,124184564000,124190789000,124061899000,124256525000,124421881000,124497005000,124414108000,124067207000,123574684000,123452117000,123213305000,123288974000,123490734000,123759575000,123491046000,123013143000,122932845000,123158300000,123661266000,123697373000,123555655000,123366166000,123420359000,123462992000,123770799000,123195067000,123082471000,122882536000,122378914000,122276795000,122560605000,122332969000,122402923000,122761475000,123044063000,122594497000,122091566000,121784320000,121859472000,122281760000,122941478000,123008284000,122948506000,123172485000,123096418000,122831357000,122894104000,123030861000,122918265000,123186725000,123074432000,122829826000,122471279000,122176789000,121637614000,121755421000,121829074000,122011639000,122342803000,122451794000,123154032000,123993346000,124252926000,124017954000,123747989000,123391272000,124006057000,124376944000,124674530000,124503529000,124605265000,124909158000,125171834000,124796870000,124830818000,124883602000,125146799000,125563984000,125940792000,125928449000,126014212000,126084510000,125979085000,125841028000,125673795000,125346991000,125217077000,125342329000,125668417000,126112206000,126338398000,126125275000,125725876000,125365861000,124768490000,124465739000,124406237000,124556162000,124627438000,124623322000,124153829000,123828492000,123655573000,123510322000,123253814000,123071647000,122893864000,122954427000,123593192000,124010933000,124300915000,124219578000,124046355000,123824621000,123946921000,123997267000,124308838000,124341194000,124530793000,124600191000,124585153000,124755237000,124644189000,124432229000,124341335000,124343734000,124367380000,124322016000,124131887000,123922647000,123855315000,123929003000,124084138000,124070371000,124223180000,124284782000,124559310000,124802382000,124932399000,125014788000,124992791000,124660436000,124430213000,123651711000,122685075000,122392549000,122557074000,123214885000,124246585000,124833693000,125065577000,125123462000,124566325000,123841092000,123456612000,123487074000,123835044000,124375361000,124405885000,124293519000,124498775000,125169823000,125751966000,126072360000,125737017000,125227820000,124658348000,124418707000,124251425000,123987597000,123825301000,123770977000,123855925000,124470873000,124926998000,124638056000,124105715000,123595820000,123447920000,123711675000,124086985000,124198729000,124326913000,124590090000,124756497000,124665704000,124533985000,124622971000,124543991000,124811263000,125052799000,125052025000,124783578000,124372287000,123540113000,123281772000,123164055000,123259593000,123404589000,123546029000,123534490000,123879676000,124137926000,124171146000,123822961000,123224116000,122745933000,122700051000,122732971000,122704702000,122868854000,123112815000,123260282000,123377107000,123328368000,123281490000,123726242000,124308981000,124299871000,124062733000,123069174000,122277659000,122345160000,122727597000,123474847000,124141293000,124161083000,124184422000,123994988000,123634894000,123220773000,123138570000,123268643000,123849141000,124157260000,124262954000,123760871000,123461760000,123313587000,123695432000,124019230000,124304891000,124346386000,124211722000,123440150000,122966840000,122420943000,122056861000,122263118000,122858809000,122317265000,122069102000,121849149000,121737916000,122005266000,122491435000,122094938000,121665250000,121353499000,121258169000,121078912000,120938069000,120970298000,121096779000,116903223000,127335435000,143992541000,156792694000,158129386000,146721572000,127030837000,124746916000,125055393000,125263128000,125326393000,125359550000,125516762000,125778429000,125843108000,125915316000,126207129000,125724067000,125571727000,125495467000,125581645000,125465805000,125703153000,126007271000,126306096000,126259345000,126117974000,125968450000,126093878000,126309015000,126279429000,125799906000,125471379000,125719798000,126289640000,126682952000,127094270000,126727697000,126258008000,126144211000,126150683000,126487856000,127052873000,127071252000,127104634000,127083387000,127209616000,127369245000,127587315000,127546631000,127176487000,126709717000,126487924000,126196747000,126174789000,126132418000,125770039000,125227871000,124837672000,124745344000,125015122000,125139671000,125399391000,125310897000,125296758000,125646147000,125942752000,126075401000,126106479000,125849081000,125344236000,125320153000,125147766000,125271682000,125323005000,125437920000,125208688000,124899791000,124587033000,124620584000,124720617000,124845253000,125188975000,125234675000,125308740000,125160849000,124654822000,124207934000,124478799000,124980380000,125441556000,125455775000,125119899000,124860568000,124626561000,124419714000,124124670000,123944324000,124023684000,124006490000,123699246000,123117640000,122559725000,122371221000,122601773000,122637470000,122710725000,122771752000,122683301000,122615608000,122912661000,123164073000,123464491000,123802678000,123876043000,123787984000,123765508000,123444764000,123166490000,123055576000,123086702000,123288657000,123562350000,123104820000,122841176000,122728843000,122434994000,122334618000,122281766000,121410537000,120942480000,120713848000,120926914000,121601336000,122463382000,122744041000,122880080000,122648254000,122342875000,122053350000,121808575000,121763306000,121731199000,121729869000,121682241000,121644371000,121684137000,121733312000,121493380000,121171627000,121049028000,121400419000,121978789000,122309263000,122294214000,121954942000,121883016000,122315969000,122416473000,122170978000,121645884000,121115214000,120921021000,120906305000,120572772000,120195036000,120073229000,120460330000,121087643000,121367516000,121008458000,120467436000,120004046000,119857970000,119779216000,120024088000,120079987000,120064059000,120295089000,120508037000,120639178000,120748139000,120826140000,120641177000,120861135000,121036330000,121422832000,121768536000,122292874000,122532589000,122834885000,122711607000,122287341000,122063013000,121889001000,122235675000,122333010000,121579145000,120826448000,120122089000,119389103000,119609550000,119512477000,118713146000,118552286000,118367853000,118230692000,118106077000,118021220000,117586338000,117694574000,118006723000,118299615000,118284091000,118180547000,118122844000,118411025000,118881108000,119232508000,119256348000,119101219000,119282385000,119683832000,119905636000,120105583000,119948616000,119852002000,119700732000,119704200000,119505031000,119335349000,119289911000,119163532000,119020285000,119095792000,119611362000,119865100000,120142391000,120061728000,119637387000,119264685000,119353621000,120270024000,121761639000,123733536000,125031066000,125407523000,124966860000,124235905000,123042931000,122722156000,122548146000,122562401000,122620938000,122343104000,121941656000,121973650000,122115893000,122196779000,122060988000,122201415000,122044277000,121767008000,121576497000,121234968000,120957998000,121156745000,121293482000,121703337000,121989159000,121942943000,121624800000,121173634000,120885508000,121185550000,121269899000,121510893000,121473134000,121161986000,121066069000,120898401000,120740958000,120932659000,120723615000,120627535000,120694262000,120885557000,121365778000,121849073000,121910372000,121852281000,121520285000,121477739000,121264780000,120886187000,120839940000,120681156000,120586499000,120444546000,119879982000,119274830000,119324792000,119512560000,119751943000,120040235000,120003345000,119743234000,119436256000,120271941000,121628770000,123640634000,125271269000,126223286000,126185468000,126550409000,126539005000,126520931000,126498166000,126584845000,126329984000,126397048000,126151145000,125750878000,125755214000,125678489000,125417273000,125532115000,125525343000,125484443000,125482378000,125190433000,125016325000,124493471000,124191132000,124065248000,124059934000,123883613000,124238056000,124096471000,123870176000,123534858000,123164073000,122428323000,122268183000,122201792000,122057715000,122128786000,122269660000,121993944000,121864627000,121936110000,122099710000,122732547000,123248549000,123189580000,123061474000,123161025000,123610641000,123631257000,123467602000,123286612000,123624662000,123885763000,124076714000,123932191000,124290764000,124520224000,124851736000,124420001000,123774274000,123334909000,123416116000,123035305000,123544344000,125079799000,126502597000,127212914000,127304845000,126321518000,125776568000,125981722000,125826772000,125712088000,125579029000,125441123000,125421350000,125503945000,125304439000,125331575000,125138248000,124984679000,124924226000,124950593000,124963193000,125251061000,125129238000,125024576000,124759178000,124556379000,124376778000,124353720000,124359651000,124621155000,124596523000,124478641000,124238797000,123988320000,124216792000,124342612000,123977805000,124019618000,124001634000,123975114000,123672251000,123166958000,122426226000,122623716000,123372906000,123953546000,123893409000,124065252000,123892479000,124037312000,124314761000,124355741000,124128687000,123988536000,123630389000,123619453000,123652066000,123984688000,124128878000,124370266000,124816176000,125793945000,124969254000,127479020000,132668815000,155651116000,201122184000,248142015000,229257428000,180519471000,140948640000,126666034000,124290276000,126266079000,126503738000,125815973000,125883228000,125735364000,125294333000,125251507000,125743434000,126261435000,126596983000,126330233000,125823215000,125483687000,125609102000,126207743000,126149799000,125919703000,125736557000,125430597000,125565407000,126067530000,126476551000,126824173000,127169103000,127493483000,127402817000,126728558000,126193353000,125437543000,125340544000,125742051000,126268971000,126798558000,127095983000,127157107000,127142149000,126693186000,126141201000,125762857000,125531429000,125575000000,125577853000,125685532000,125548415000,125181709000,125013103000,124929514000,124984859000,125040052000,125197470000,124967464000,125078291000,124981403000,124589323000,124180115000,123854430000,123524142000,123697851000,123983639000,124152213000,124289850000,124117163000,123689347000,123362489000,123511521000,123745951000,123976634000,124010575000,123924833000,123794917000,123780961000,123811441000,123970147000,124180769000,124423224000,124439068000,124543923000,124911599000,125403028000,125376078000,125026129000,124336346000,123943939000,123665643000,123891661000,124167153000,124192221000,124288957000,124111324000,123910051000,124197513000,124756149000,125111669000,125375602000,124997807000,124723136000,125306683000,125359308000,124893081000,124684267000,124257314000,124439621000,125621927000,125969662000,125400968000,125042939000,124273735000,124072770000,124062691000,123811035000,123393000000,123282743000,123050241000,122879473000,123073340000,122974315000,122682296000,122706243000,122619124000,122230838000,121923921000,121551931000,121210345000,121110183000,121180609000,121262884000,121172846000,121077943000,121377612000,121559043000,121713920000,121919910000,121636154000,121302670000,121281714000,121113685000,121320650000,122188490000,122543091000,122328095000,121706053000,120842207000,120417481000,120722392000,120765775000,120560456000,120609586000,120844616000,120951200000,120903034000,120635984000,120365300000,120816286000,121327790000,121802370000,122121293000,122329793000,122154261000,122165068000,122557968000,123407704000,123944976000,124003488000,123338232000,122309523000,121727963000,121591258000,121601726000,121901341000,121814564000,121764058000,121584597000,121485305000,121493473000,121572185000,121393324000,121614920000,122013978000,122347888000,122685719000,122217291000,121698398000,121459255000,120975128000,120403581000,120004728000,119327365000,119236552000,119255450000,119122896000,119059466000,118834257000,118396556000,118439093000,118734112000,118930666000,118878853000,118179496000,117393992000,117007056000,117347778000,119257195000,124497585000,135588041000],\"distance\":[8.2,19.4,30.7,38.7,54.2,62.6,81.7,93.2,105.5,113.0,128.9,140.8,148.4,163.5,179.3,194.1,206.5,211.2,229.5,244.9,249.2,264.4,275.7,288.8,307.4,322.0,330.0,339.7,352.4,364.6,377.4,390.2,403.4,419.5,430.9,446.2,454.3,473.3,488.6,492.6,511.9,518.2,539.2,543.9,556.8,571.1,582.5,598.8,610.4,620.3,638.3,645.1,665.4,670.1,689.5,695.4,712.6,724.6,733.2,745.6,760.1,770.9,783.9,796.3,815.0,827.0,838.5,846.9,859.8,878.0,885.7,898.6,917.2,925.4,944.5,949.1,968.4,975.9,987.4,999.9,1011.9,1027.3,1043.4,1055.0,1066.7,1073.1,1087.2,1097.9,1110.1,1122.8,1138.8,1166.5,1166.5,1170.2,1179.2,1198.3,1205.9,1218.5,1227.2,1239.4,1251.6,1266.2,1282.3,1288.4,1301.1,1313.2,1325.4,1337.5,1349.5,1362.1,1381.0,1393.5,1399.1,1413.3,1424.0,1436.2,1448.6,1469.6,1474.6,1486.9,1499.7,1515.0,1526.4,1536.7,1549.0,1566.6,1574.6,1585.7,1606.3,1615.2,1627.0,1634.9,1647.1,1659.2,1671.4,1684.1,1696.3,1708.6,1727.1,1735.1,1745.6,1759.4,1771.2,1784.1,1795.9,1807.7,1824.2,1830.4,1842.7,1856.6,1866.8,1884.8,1891.4,1903.7,1915.6,1927.5,1941.5,1951.8,1970.0,1977.7,1990.0,2006.7,2014.5,2024.9,2037.2,2054.9,2061.5,2076.0,2087.8,2104.5,2112.6,2122.9,2140.2,2146.9,2159.4,2170.9,2183.4,2195.4,2214.1,2219.5,2234.9,2246.8,2254.9,2272.0,2278.1,2296.7,2305.1,2317.0,2329.0,2341.8,2349.5,2361.4,2377.4,2383.8,2398.4,2406.8,2418.2,2430.2,2441.8,2456.4,2464.9,2476.5,2493.5,2500.2,2517.5,2523.3,2535.1,2547.1,2559.7,2571.6,2583.5,2602.6,2608.8,2626.8,2634.8,2646.6,2663.2,2678.8,2682.8,2695.0,2711.7,2720.2,2732.2,2744.4,2763.1,2775.7,2787.4,2793.4,2811.7,2823.5,2838.5,2851.3,2859.6,2867.5,2880.1,2892.1,2906.8,2916.9,2931.1,2941.2,2954.0,2967.4,2978.2,2990.4,3010.9,3019.3,3027.3,3039.1,3052.1,3063.9,3075.8,3087.7,3099.7,3113.2,3129.5,3137.4,3149.1,3169.4,3174.3,3190.2,3199.5,3211.8,3224.6,3242.6,3248.7,3263.0,3274.8,3286.0,3299.3,3311.0,3323.3,3336.1,3355.0,3367.7,3373.0,3385.3,3404.3,3410.0,3422.3,3435.1,3452.7,3460.8,3471.5,3483.8,3504.4,3508.8,3521.1,3532.8,3553.0,3564.9,3568.9,3589.3,3593.0,3606.4,3622.9,3629.0,3646.5,3653.0,3665.3,3678.6,3691.1,3701.5,3715.8,3727.6,3737.9,3755.9,3767.8,3779.5,3785.9,3798.0,3810.2,3823.5,3836.2,3852.2,3860.0,3872.8,3881.6,3896.5,3912.8,3917.2,3929.5,3941.1,3953.6,3965.1,3976.4,3988.3,4000.1,4012.0,4029.9,4035.6,4049.9,4059.2,4071.0,4090.6,4099.0,4106.3,4126.0,4129.9,4142.7,4153.5,4164.9,4183.1,4188.4,4200.3,4216.1,4231.5,4240.4,4246.9,4264.1,4273.1,4282.0,4300.5,4305.0,4321.8,4328.0,4341.5,4351.5,4362.9,4374.4,4391.2,4397.7,4415.0,4427.7,4439.5,4444.8,4456.1,4468.1,4479.1,4491.3,4503.2,4514.5,4533.4,4537.8,4557.0,4561.0,4572.4,4584.4,4595.9,4607.8,4619.6,4631.5,4642.8,4654.7,4666.7,4678.7,4689.0,4700.9,4712.2,4723.6,4735.0,4746.4,4764.5,4773.0,4780.5,4791.2,4805.2,4814.1,4825.6,4838.9,4854.5,4866.5,4870.5,4881.6,4893.2,4904.9,4916.0,4927.7,4941.4,4953.6,4962.8,4978.6,4984.4,5014.3,5021.4,5032.3,5043.9,5052.0,5060.7,5072.5,5084.6,5096.4,5115.8,5127.6,5132.1,5144.2,5155.4,5167.0,5178.7,5195.7,5203.7,5216.3,5225.5,5237.3,5249.0,5260.6,5279.2,5284.4,5296.5,5311.6,5320.3,5332.3,5344.5,5363.6,5367.9,5380.6,5392.1,5404.1,5419.2,5427.4,5446.8,5458.4,5462.8,5474.4,5494.0,5498.0,5509.5,5521.5,5533.6,5545.1,5564.7,5569.2,5584.6,5591.9,5605.0,5616.7,5627.3,5644.7,5652.8,5669.2,5674.9,5686.1,5701.3,5710.0,5721.7,5741.0,5745.7,5757.8,5769.5,5788.5,5800.3,5809.4,5816.7,5828.5,5840.7,5853.0,5864.6,5875.9,5893.4,5901.0,5911.8,5929.7,5935.3,5947.1,5959.3,5970.6,5988.9,5994.1,6005.9,6018.3,6033.4,6041.7,6053.9,6065.7,6077.5,6089.3,6101.6,6113.0,6126.3,6136.7,6148.5,6159.9,6171.4,6187.8,6195.5,6206.0,6217.5,6229.0,6240.5,6252.0,6263.5,6275.0,6286.5,6305.7,6313.6,6321.1,6332.6,6350.1,6355.4,6366.9,6378.4,6395.1,6407.9,6415.7,6427.6,6435.6,6446.7,6460.7,6472.7,6481.8,6493.4,6504.5,6515.8,6526.9,6538.1,6549.7,6560.6,6571.7,6588.1,6594.2,6605.3,6616.4,6629.1,6638.7,6650.3,6661.9,6672.1,6683.1,6695.3,6705.4,6716.6,6727.8,6738.4,6753.5,6765.4,6772.1,6783.2,6794.3,6810.7,6819.0,6831.5,6839.6,6855.7,6862.0,6873.1,6884.8,6896.1,6907.4,6922.7,6934.7,6940.9,6952.0,6964.4,6977.2,6985.4,6996.7,7013.9,7019.3,7030.5,7041.8,7056.1,7064.2,7075.4,7089.2,7102.3,7109.0,7122.8,7130.8,7142.0,7153.0,7167.5,7175.1,7192.3,7200.6,7207.8,7218.9,7230.3,7245.9,7252.6,7263.4,7274.7,7291.3,7296.7,7308.2,7321.0,7330.4,7341.9,7359.2,7364.2,7375.2,7386.2,7397.7,7408.2,7419.6,7430.5,7441.5,7451.9,7469.7,7478.3,7491.5,7496.5,7507.3,7518.2,7529.6,7540.8,7557.9,7566.9,7573.7,7584.9,7596.2,7607.1,7617.9,7629.3,7641.7,7655.1,7661.9,7679.5,7684.0,7701.1,7713.3,7717.3,7730.7,7739.5,7750.3,7761.9,7773.2,7788.0,7796.7,7812.4,7819.0,7830.4,7845.0,7857.0,7868.9,7876.5,7888.0,7905.8,7914.2,7922.3,7934.8,7951.1,7955.5,7968.1,7978.1,7989.3,8005.4,8012.1,8029.6,8038.4,8046.6,8062.4,8068.2,8083.8,8091.6,8103.7,8112.4,8123.6,8134.2,8149.8,8161.9,8167.6,8178.4,8190.0,8207.5,8216.0,8228.2,8241.2,8253.3,8261.3,8270.3,8282.4,8294.5,8303.6,8315.3,8331.7,8337.5,8352.8,8365.0,8371.2,8382.9,8394.2,8407.1,8417.4,8428.4,8440.0,8457.2,8463.1,8479.3,8486.7,8497.0,8512.1,8520.9,8532.1,8543.8,8555.0,8567.1,8578.3,8589.3,8603.0,8612.2,8623.8,8635.4,8646.6,8658.8,8669.5,8681.2,8693.0,8704.2,8718.4,8734.4,8742.7,8749.7,8761.0,8774.9,8784.1,8803.0,8807.5,8819.4,8831.2,8841.6,8855.9,8872.3,8880.3,8887.9,8899.4,8913.5,8922.0,8934.1,8950.6,8957.2,8968.8,8987.4,8992.0,9003.0,9019.7,9026.3,9044.0,9049.3,9060.7,9072.0,9088.8,9095.1,9106.4,9118.3,9129.6,9141.1,9152.4,9164.2,9178.4,9186.8,9198.3,9209.2,9226.8,9238.7,9243.6,9254.9,9267.4,9279.8,9291.4,9303.1,9322.1,9330.8,9338.6,9354.2,9366.8,9373.7,9385.9,9397.2,9410.4,9420.6,9432.4,9445.1,9456.1,9474.8,9486.5,9492.1,9503.9,9522.6,9534.4,9547.1,9551.1,9562.9,9574.8,9586.5,9598.3,9610.2,9622.0,9633.8,9645.7,9657.5,9669.8,9689.6,9693.7,9705.4,9720.8,9728.8,9745.6,9751.3,9762.8,9774.6,9790.0,9802.3,9814.6,9822.6,9833.9,9846.3,9857.6,9869.4,9886.7,9899.5,9907.7,9918.0,9929.3,9941.2,9953.5,9965.1,9976.7,9995.3,10000.8,10014.9,10032.0,10034.2,10040.5,10049.2,10064.8,10076.9,10092.3,10104.5,10116.6,10124.3,10140.5,10146.1,10158.7,10171.0,10184.7,10203.5,10212.6,10227.8,10239.6,10248.1,10264.0,10271.5,10282.5,10303.4,10307.9,10320.0,10332.1,10344.3,10363.3,10375.3,10380.4,10392.4,10404.9,10417.3,10429.5,10443.3,10453.9,10466.1,10478.6,10494.6,10503.2,10515.2,10527.8,10539.8,10558.1,10565.6,10577.3,10589.4,10601.6,10622.0,10626.0,10638.6,10653.8,10663.1,10678.3,10688.5,10706.5,10713.0,10725.2,10737.9,10750.1,10769.9,10778.8,10785.8,10798.7,10811.6,10827.1,10838.9,10851.7,10861.1,10869.4,10881.3,10896.6,10908.4,10920.3,10928.7,10948.5,10956.9,10969.2,10981.6,10993.4,11001.9,11012.1,11024.0,11038.3,11050.0,11065.4,11073.9,11084.3,11101.9,11108.9,11120.8,11138.4,11150.6,11156.8,11168.1,11183.5,11195.3,11204.1,11223.2,11231.5,11243.3,11251.1,11262.9,11275.6,11291.2,11304.0,11310.6,11323.3,11334.0,11346.1,11358.4,11375.9,11384.0,11399.6,11405.9,11418.0,11429.9,11441.9,11453.8,11466.3,11485.7,11489.7,11502.1,11513.7,11530.6,11538.7,11551.3,11560.4,11576.1,11584.2,11600.7,11609.1,11625.9,11630.8,11642.4,11654.1,11666.1,11677.7,11691.4,11701.9,11716.6,11725.2,11736.9,11753.9,11761.9,11772.1,11790.8,11795.7,11811.5,11819.1,11830.8,11842.6,11853.8,11873.4,11882.1,11889.2,11901.0,11912.7,11931.6,11940.5,11947.6,11960.8,11977.4,11985.8,11993.8,12005.9,12022.6,12029.1,12047.1,12059.0,12067.0,12079.6,12083.1,12086.8,12104.1,12116.1,12121.5,12133.2,12149.7,12157.9,12168.0,12183.1,12195.2,12207.2,12214.3,12226.3,12237.8,12249.9,12265.1,12277.3,12284.5,12295.8,12311.2,12324.0,12336.2,12348.4,12357.1,12364.4,12382.6,12387.3,12399.3,12416.7,12425.0,12432.4,12443.4,12455.0,12466.4,12484.3,12488.1,12509.4],\"fpace\":[\"02:35.6\",\"02:20.7\",\"02:13.1\",\"02:09.4\",\"02:07.8\",\"02:07.2\",\"02:07.6\",\"02:08.0\",\"02:08.6\",\"02:09.3\",\"02:09.1\",\"02:08.9\",\"02:09.0\",\"02:09.2\",\"02:09.4\",\"02:09.4\",\"02:08.8\",\"02:08.8\",\"02:09.4\",\"02:09.9\",\"02:09.7\",\"02:09.8\",\"02:09.3\",\"02:09.8\",\"02:10.3\",\"02:10.6\",\"02:10.3\",\"02:10.1\",\"02:09.6\",\"02:09.5\",\"02:09.1\",\"02:08.8\",\"02:09.0\",\"02:09.1\",\"02:09.5\",\"02:09.7\",\"02:10.1\",\"02:10.3\",\"02:10.1\",\"02:09.7\",\"02:09.0\",\"02:08.5\",\"02:08.1\",\"02:08.2\",\"02:07.9\",\"02:08.3\",\"02:08.1\",\"02:07.8\",\"02:07.1\",\"02:06.5\",\"02:06.0\",\"02:06.2\",\"02:06.5\",\"02:07.1\",\"02:07.5\",\"02:07.9\",\"02:07.8\",\"02:07.7\",\"02:07.5\",\"02:07.5\",\"02:07.5\",\"02:07.7\",\"02:07.4\",\"02:07.1\",\"02:07.1\",\"02:07.6\",\"02:08.0\",\"02:08.4\",\"02:08.0\",\"02:07.5\",\"02:07.4\",\"02:07.5\",\"02:07.6\",\"02:07.9\",\"02:08.1\",\"02:08.5\",\"02:08.1\",\"02:07.8\",\"02:07.0\",\"02:07.0\",\"02:07.2\",\"02:07.3\",\"02:07.1\",\"02:06.8\",\"02:06.4\",\"02:06.3\",\"02:05.8\",\"02:05.4\",\"02:05.6\",\"02:05.6\",\"02:01.9\",\"02:10.1\",\"02:21.6\",\"02:28.6\",\"02:28.6\",\"02:20.5\",\"02:06.5\",\"02:05.4\",\"02:06.1\",\"02:05.6\",\"02:05.6\",\"02:05.8\",\"02:06.0\",\"02:05.9\",\"02:05.9\",\"02:05.5\",\"02:05.9\",\"02:06.3\",\"02:06.5\",\"02:07.0\",\"02:07.3\",\"02:07.1\",\"02:06.8\",\"02:06.0\",\"02:04.8\",\"02:04.3\",\"02:04.1\",\"02:04.4\",\"02:04.4\",\"02:04.4\",\"02:03.9\",\"02:03.6\",\"02:03.8\",\"02:04.0\",\"02:04.1\",\"02:04.6\",\"02:04.7\",\"02:04.7\",\"02:04.7\",\"02:04.4\",\"02:04.4\",\"02:04.8\",\"02:05.1\",\"02:05.4\",\"02:05.6\",\"02:05.4\",\"02:05.2\",\"02:04.9\",\"02:04.8\",\"02:05.2\",\"02:05.2\",\"02:05.1\",\"02:04.7\",\"02:04.2\",\"02:04.0\",\"02:04.2\",\"02:04.1\",\"02:04.1\",\"02:04.0\",\"02:04.2\",\"02:04.4\",\"02:04.4\",\"02:04.4\",\"02:04.0\",\"02:03.5\",\"02:03.4\",\"02:03.2\",\"02:03.2\",\"02:03.4\",\"02:03.7\",\"02:03.4\",\"02:03.0\",\"02:02.9\",\"02:03.1\",\"02:03.6\",\"02:03.6\",\"02:03.5\",\"02:03.3\",\"02:03.4\",\"02:03.4\",\"02:03.7\",\"02:03.1\",\"02:03.0\",\"02:02.8\",\"02:02.3\",\"02:02.2\",\"02:02.5\",\"02:02.3\",\"02:02.4\",\"02:02.7\",\"02:03.0\",\"02:02.5\",\"02:02.0\",\"02:01.7\",\"02:01.8\",\"02:02.2\",\"02:02.9\",\"02:03.0\",\"02:02.9\",\"02:03.1\",\"02:03.0\",\"02:02.8\",\"02:02.8\",\"02:03.0\",\"02:02.9\",\"02:03.1\",\"02:03.0\",\"02:02.8\",\"02:02.4\",\"02:02.1\",\"02:01.6\",\"02:01.7\",\"02:01.8\",\"02:02.0\",\"02:02.3\",\"02:02.4\",\"02:03.1\",\"02:03.9\",\"02:04.2\",\"02:04.0\",\"02:03.7\",\"02:03.3\",\"02:04.0\",\"02:04.3\",\"02:04.6\",\"02:04.5\",\"02:04.6\",\"02:04.9\",\"02:05.1\",\"02:04.7\",\"02:04.8\",\"02:04.8\",\"02:05.1\",\"02:05.5\",\"02:05.9\",\"02:05.9\",\"02:06.0\",\"02:06.0\",\"02:05.9\",\"02:05.8\",\"02:05.6\",\"02:05.3\",\"02:05.2\",\"02:05.3\",\"02:05.6\",\"02:06.1\",\"02:06.3\",\"02:06.1\",\"02:05.7\",\"02:05.3\",\"02:04.7\",\"02:04.4\",\"02:04.4\",\"02:04.5\",\"02:04.6\",\"02:04.6\",\"02:04.1\",\"02:03.8\",\"02:03.6\",\"02:03.5\",\"02:03.2\",\"02:03.0\",\"02:02.8\",\"02:02.9\",\"02:03.5\",\"02:04.0\",\"02:04.3\",\"02:04.2\",\"02:04.0\",\"02:03.8\",\"02:03.9\",\"02:03.9\",\"02:04.3\",\"02:04.3\",\"02:04.5\",\"02:04.6\",\"02:04.5\",\"02:04.7\",\"02:04.6\",\"02:04.4\",\"02:04.3\",\"02:04.3\",\"02:04.3\",\"02:04.3\",\"02:04.1\",\"02:03.9\",\"02:03.8\",\"02:03.9\",\"02:04.0\",\"02:04.0\",\"02:04.2\",\"02:04.2\",\"02:04.5\",\"02:04.8\",\"02:04.9\",\"02:05.0\",\"02:04.9\",\"02:04.6\",\"02:04.4\",\"02:03.6\",\"02:02.6\",\"02:02.3\",\"02:02.5\",\"02:03.2\",\"02:04.2\",\"02:04.8\",\"02:05.0\",\"02:05.1\",\"02:04.5\",\"02:03.8\",\"02:03.4\",\"02:03.4\",\"02:03.8\",\"02:04.3\",\"02:04.4\",\"02:04.2\",\"02:04.4\",\"02:05.1\",\"02:05.7\",\"02:06.0\",\"02:05.7\",\"02:05.2\",\"02:04.6\",\"02:04.4\",\"02:04.2\",\"02:03.9\",\"02:03.8\",\"02:03.7\",\"02:03.8\",\"02:04.4\",\"02:04.9\",\"02:04.6\",\"02:04.1\",\"02:03.5\",\"02:03.4\",\"02:03.7\",\"02:04.0\",\"02:04.1\",\"02:04.3\",\"02:04.5\",\"02:04.7\",\"02:04.6\",\"02:04.5\",\"02:04.6\",\"02:04.5\",\"02:04.8\",\"02:05.0\",\"02:05.0\",\"02:04.7\",\"02:04.3\",\"02:03.5\",\"02:03.2\",\"02:03.1\",\"02:03.2\",\"02:03.4\",\"02:03.5\",\"02:03.5\",\"02:03.8\",\"02:04.1\",\"02:04.1\",\"02:03.8\",\"02:03.2\",\"02:02.7\",\"02:02.7\",\"02:02.7\",\"02:02.7\",\"02:02.8\",\"02:03.1\",\"02:03.2\",\"02:03.3\",\"02:03.3\",\"02:03.2\",\"02:03.7\",\"02:04.3\",\"02:04.2\",\"02:04.0\",\"02:03.0\",\"02:02.2\",\"02:02.3\",\"02:02.7\",\"02:03.4\",\"02:04.1\",\"02:04.1\",\"02:04.1\",\"02:03.9\",\"02:03.6\",\"02:03.2\",\"02:03.1\",\"02:03.2\",\"02:03.8\",\"02:04.1\",\"02:04.2\",\"02:03.7\",\"02:03.4\",\"02:03.3\",\"02:03.6\",\"02:04.0\",\"02:04.3\",\"02:04.3\",\"02:04.2\",\"02:03.4\",\"02:02.9\",\"02:02.4\",\"02:02.0\",\"02:02.2\",\"02:02.8\",\"02:02.3\",\"02:02.0\",\"02:01.8\",\"02:01.7\",\"02:02.0\",\"02:02.4\",\"02:02.0\",\"02:01.6\",\"02:01.3\",\"02:01.2\",\"02:01.0\",\"02:00.9\",\"02:00.9\",\"02:01.0\",\"01:56.9\",\"02:07.3\",\"02:23.9\",\"02:36.7\",\"02:38.1\",\"02:26.7\",\"02:07.0\",\"02:04.7\",\"02:05.0\",\"02:05.2\",\"02:05.3\",\"02:05.3\",\"02:05.5\",\"02:05.7\",\"02:05.8\",\"02:05.9\",\"02:06.2\",\"02:05.7\",\"02:05.5\",\"02:05.4\",\"02:05.5\",\"02:05.4\",\"02:05.7\",\"02:06.0\",\"02:06.3\",\"02:06.2\",\"02:06.1\",\"02:05.9\",\"02:06.0\",\"02:06.3\",\"02:06.2\",\"02:05.7\",\"02:05.4\",\"02:05.7\",\"02:06.2\",\"02:06.6\",\"02:07.0\",\"02:06.7\",\"02:06.2\",\"02:06.1\",\"02:06.1\",\"02:06.4\",\"02:07.0\",\"02:07.0\",\"02:07.1\",\"02:07.0\",\"02:07.2\",\"02:07.3\",\"02:07.5\",\"02:07.5\",\"02:07.1\",\"02:06.7\",\"02:06.4\",\"02:06.1\",\"02:06.1\",\"02:06.1\",\"02:05.7\",\"02:05.2\",\"02:04.8\",\"02:04.7\",\"02:05.0\",\"02:05.1\",\"02:05.3\",\"02:05.3\",\"02:05.2\",\"02:05.6\",\"02:05.9\",\"02:06.0\",\"02:06.1\",\"02:05.8\",\"02:05.3\",\"02:05.3\",\"02:05.1\",\"02:05.2\",\"02:05.3\",\"02:05.4\",\"02:05.2\",\"02:04.8\",\"02:04.5\",\"02:04.6\",\"02:04.7\",\"02:04.8\",\"02:05.1\",\"02:05.2\",\"02:05.3\",\"02:05.1\",\"02:04.6\",\"02:04.2\",\"02:04.4\",\"02:04.9\",\"02:05.4\",\"02:05.4\",\"02:05.1\",\"02:04.8\",\"02:04.6\",\"02:04.4\",\"02:04.1\",\"02:03.9\",\"02:04.0\",\"02:04.0\",\"02:03.6\",\"02:03.1\",\"02:02.5\",\"02:02.3\",\"02:02.6\",\"02:02.6\",\"02:02.7\",\"02:02.7\",\"02:02.6\",\"02:02.6\",\"02:02.9\",\"02:03.1\",\"02:03.4\",\"02:03.8\",\"02:03.8\",\"02:03.7\",\"02:03.7\",\"02:03.4\",\"02:03.1\",\"02:03.0\",\"02:03.0\",\"02:03.2\",\"02:03.5\",\"02:03.1\",\"02:02.8\",\"02:02.7\",\"02:02.4\",\"02:02.3\",\"02:02.2\",\"02:01.4\",\"02:00.9\",\"02:00.7\",\"02:00.9\",\"02:01.6\",\"02:02.4\",\"02:02.7\",\"02:02.8\",\"02:02.6\",\"02:02.3\",\"02:02.0\",\"02:01.8\",\"02:01.7\",\"02:01.7\",\"02:01.7\",\"02:01.6\",\"02:01.6\",\"02:01.6\",\"02:01.7\",\"02:01.4\",\"02:01.1\",\"02:01.0\",\"02:01.4\",\"02:01.9\",\"02:02.3\",\"02:02.2\",\"02:01.9\",\"02:01.8\",\"02:02.3\",\"02:02.4\",\"02:02.1\",\"02:01.6\",\"02:01.1\",\"02:00.9\",\"02:00.9\",\"02:00.5\",\"02:00.1\",\"02:00.0\",\"02:00.4\",\"02:01.0\",\"02:01.3\",\"02:01.0\",\"02:00.4\",\"02:00.0\",\"01:59.8\",\"01:59.7\",\"02:00.0\",\"02:00.0\",\"02:00.0\",\"02:00.2\",\"02:00.5\",\"02:00.6\",\"02:00.7\",\"02:00.8\",\"02:00.6\",\"02:00.8\",\"02:01.0\",\"02:01.4\",\"02:01.7\",\"02:02.2\",\"02:02.5\",\"02:02.8\",\"02:02.7\",\"02:02.2\",\"02:02.0\",\"02:01.8\",\"02:02.2\",\"02:02.3\",\"02:01.5\",\"02:00.8\",\"02:00.1\",\"01:59.3\",\"01:59.6\",\"01:59.5\",\"01:58.7\",\"01:58.5\",\"01:58.3\",\"01:58.2\",\"01:58.1\",\"01:58.0\",\"01:57.5\",\"01:57.6\",\"01:58.0\",\"01:58.2\",\"01:58.2\",\"01:58.1\",\"01:58.1\",\"01:58.4\",\"01:58.8\",\"01:59.2\",\"01:59.2\",\"01:59.1\",\"01:59.2\",\"01:59.6\",\"01:59.9\",\"02:00.1\",\"01:59.9\",\"01:59.8\",\"01:59.7\",\"01:59.7\",\"01:59.5\",\"01:59.3\",\"01:59.2\",\"01:59.1\",\"01:59.0\",\"01:59.0\",\"01:59.6\",\"01:59.8\",\"02:00.1\",\"02:00.0\",\"01:59.6\",\"01:59.2\",\"01:59.3\",\"02:00.2\",\"02:01.7\",\"02:03.7\",\"02:05.0\",\"02:05.4\",\"02:04.9\",\"02:04.2\",\"02:03.0\",\"02:02.7\",\"02:02.5\",\"02:02.5\",\"02:02.6\",\"02:02.3\",\"02:01.9\",\"02:01.9\",\"02:02.1\",\"02:02.1\",\"02:02.0\",\"02:02.2\",\"02:02.0\",\"02:01.7\",\"02:01.5\",\"02:01.2\",\"02:00.9\",\"02:01.1\",\"02:01.2\",\"02:01.7\",\"02:01.9\",\"02:01.9\",\"02:01.6\",\"02:01.1\",\"02:00.8\",\"02:01.1\",\"02:01.2\",\"02:01.5\",\"02:01.4\",\"02:01.1\",\"02:01.0\",\"02:00.8\",\"02:00.7\",\"02:00.9\",\"02:00.7\",\"02:00.6\",\"02:00.6\",\"02:00.8\",\"02:01.3\",\"02:01.8\",\"02:01.9\",\"02:01.8\",\"02:01.5\",\"02:01.4\",\"02:01.2\",\"02:00.8\",\"02:00.8\",\"02:00.6\",\"02:00.5\",\"02:00.4\",\"01:59.8\",\"01:59.2\",\"01:59.3\",\"01:59.5\",\"01:59.7\",\"02:00.0\",\"02:00.0\",\"01:59.7\",\"01:59.4\",\"02:00.2\",\"02:01.6\",\"02:03.6\",\"02:05.2\",\"02:06.2\",\"02:06.1\",\"02:06.5\",\"02:06.5\",\"02:06.5\",\"02:06.4\",\"02:06.5\",\"02:06.3\",\"02:06.3\",\"02:06.1\",\"02:05.7\",\"02:05.7\",\"02:05.6\",\"02:05.4\",\"02:05.5\",\"02:05.5\",\"02:05.4\",\"02:05.4\",\"02:05.1\",\"02:05.0\",\"02:04.4\",\"02:04.1\",\"02:04.0\",\"02:04.0\",\"02:03.8\",\"02:04.2\",\"02:04.0\",\"02:03.8\",\"02:03.5\",\"02:03.1\",\"02:02.4\",\"02:02.2\",\"02:02.2\",\"02:02.0\",\"02:02.1\",\"02:02.2\",\"02:01.9\",\"02:01.8\",\"02:01.9\",\"02:02.0\",\"02:02.7\",\"02:03.2\",\"02:03.1\",\"02:03.0\",\"02:03.1\",\"02:03.6\",\"02:03.6\",\"02:03.4\",\"02:03.2\",\"02:03.6\",\"02:03.8\",\"02:04.0\",\"02:03.9\",\"02:04.2\",\"02:04.5\",\"02:04.8\",\"02:04.4\",\"02:03.7\",\"02:03.3\",\"02:03.4\",\"02:03.0\",\"02:03.5\",\"02:05.0\",\"02:06.5\",\"02:07.2\",\"02:07.3\",\"02:06.3\",\"02:05.7\",\"02:05.9\",\"02:05.8\",\"02:05.7\",\"02:05.5\",\"02:05.4\",\"02:05.4\",\"02:05.5\",\"02:05.3\",\"02:05.3\",\"02:05.1\",\"02:04.9\",\"02:04.9\",\"02:04.9\",\"02:04.9\",\"02:05.2\",\"02:05.1\",\"02:05.0\",\"02:04.7\",\"02:04.5\",\"02:04.3\",\"02:04.3\",\"02:04.3\",\"02:04.6\",\"02:04.5\",\"02:04.4\",\"02:04.2\",\"02:03.9\",\"02:04.2\",\"02:04.3\",\"02:03.9\",\"02:04.0\",\"02:04.0\",\"02:03.9\",\"02:03.6\",\"02:03.1\",\"02:02.4\",\"02:02.6\",\"02:03.3\",\"02:03.9\",\"02:03.8\",\"02:04.0\",\"02:03.8\",\"02:04.0\",\"02:04.3\",\"02:04.3\",\"02:04.1\",\"02:03.9\",\"02:03.6\",\"02:03.6\",\"02:03.6\",\"02:03.9\",\"02:04.1\",\"02:04.3\",\"02:04.8\",\"02:05.7\",\"02:04.9\",\"02:07.4\",\"02:12.6\",\"02:35.6\",\"03:21.1\",\"04:08.1\",\"03:49.2\",\"03:00.5\",\"02:20.9\",\"02:06.6\",\"02:04.2\",\"02:06.2\",\"02:06.5\",\"02:05.8\",\"02:05.8\",\"02:05.7\",\"02:05.2\",\"02:05.2\",\"02:05.7\",\"02:06.2\",\"02:06.5\",\"02:06.3\",\"02:05.8\",\"02:05.4\",\"02:05.6\",\"02:06.2\",\"02:06.1\",\"02:05.9\",\"02:05.7\",\"02:05.4\",\"02:05.5\",\"02:06.0\",\"02:06.4\",\"02:06.8\",\"02:07.1\",\"02:07.4\",\"02:07.4\",\"02:06.7\",\"02:06.1\",\"02:05.4\",\"02:05.3\",\"02:05.7\",\"02:06.2\",\"02:06.7\",\"02:07.0\",\"02:07.1\",\"02:07.1\",\"02:06.6\",\"02:06.1\",\"02:05.7\",\"02:05.5\",\"02:05.5\",\"02:05.5\",\"02:05.6\",\"02:05.5\",\"02:05.1\",\"02:05.0\",\"02:04.9\",\"02:04.9\",\"02:05.0\",\"02:05.1\",\"02:04.9\",\"02:05.0\",\"02:04.9\",\"02:04.5\",\"02:04.1\",\"02:03.8\",\"02:03.5\",\"02:03.6\",\"02:03.9\",\"02:04.1\",\"02:04.2\",\"02:04.1\",\"02:03.6\",\"02:03.3\",\"02:03.5\",\"02:03.7\",\"02:03.9\",\"02:04.0\",\"02:03.9\",\"02:03.7\",\"02:03.7\",\"02:03.8\",\"02:03.9\",\"02:04.1\",\"02:04.4\",\"02:04.4\",\"02:04.5\",\"02:04.9\",\"02:05.4\",\"02:05.3\",\"02:05.0\",\"02:04.3\",\"02:03.9\",\"02:03.6\",\"02:03.8\",\"02:04.1\",\"02:04.1\",\"02:04.2\",\"02:04.1\",\"02:03.9\",\"02:04.1\",\"02:04.7\",\"02:05.1\",\"02:05.3\",\"02:04.9\",\"02:04.7\",\"02:05.3\",\"02:05.3\",\"02:04.8\",\"02:04.6\",\"02:04.2\",\"02:04.4\",\"02:05.6\",\"02:05.9\",\"02:05.4\",\"02:05.0\",\"02:04.2\",\"02:04.0\",\"02:04.0\",\"02:03.8\",\"02:03.3\",\"02:03.2\",\"02:03.0\",\"02:02.8\",\"02:03.0\",\"02:02.9\",\"02:02.6\",\"02:02.7\",\"02:02.6\",\"02:02.2\",\"02:01.9\",\"02:01.5\",\"02:01.2\",\"02:01.1\",\"02:01.1\",\"02:01.2\",\"02:01.1\",\"02:01.0\",\"02:01.3\",\"02:01.5\",\"02:01.7\",\"02:01.9\",\"02:01.6\",\"02:01.3\",\"02:01.2\",\"02:01.1\",\"02:01.3\",\"02:02.1\",\"02:02.5\",\"02:02.3\",\"02:01.7\",\"02:00.8\",\"02:00.4\",\"02:00.7\",\"02:00.7\",\"02:00.5\",\"02:00.6\",\"02:00.8\",\"02:00.9\",\"02:00.9\",\"02:00.6\",\"02:00.3\",\"02:00.8\",\"02:01.3\",\"02:01.8\",\"02:02.1\",\"02:02.3\",\"02:02.1\",\"02:02.1\",\"02:02.5\",\"02:03.4\",\"02:03.9\",\"02:04.0\",\"02:03.3\",\"02:02.3\",\"02:01.7\",\"02:01.5\",\"02:01.6\",\"02:01.9\",\"02:01.8\",\"02:01.7\",\"02:01.5\",\"02:01.4\",\"02:01.4\",\"02:01.5\",\"02:01.3\",\"02:01.6\",\"02:02.0\",\"02:02.3\",\"02:02.6\",\"02:02.2\",\"02:01.6\",\"02:01.4\",\"02:00.9\",\"02:00.4\",\"02:00.0\",\"01:59.3\",\"01:59.2\",\"01:59.2\",\"01:59.1\",\"01:59.0\",\"01:58.8\",\"01:58.3\",\"01:58.4\",\"01:58.7\",\"01:58.9\",\"01:58.8\",\"01:58.1\",\"01:57.3\",\"01:57.0\",\"01:57.3\",\"01:59.2\",\"02:04.4\",\"02:15.5\"],\"timesecs\":[0.0,3.0927000045776367,5.998700857162476,7.979201555252075,11.96942138671875,14.072871685028076,18.989102363586426,21.95994257926941,25.167432069778442,26.971612215042114,31.1091628074646,34.108203172683716,36.09642267227173,39.98649287223816,44.07191348075867,47.93742346763611,51.14609241485596,52.28577208518982,56.99864220619202,61.0767617225647,62.125441789627075,65.99662208557129,68.90512204170227,72.32470226287842,77.18578243255615,81.02630138397217,83.07038164138794,85.59310173988342,88.86161136627197,92.01130175590515,95.30812191963196,98.6047523021698,101.99400234222412,106.19355320930481,108.99917364120483,112.97667360305786,115.08575320243835,119.99420309066772,124.10492300987244,125.04277300834656,130.01341342926025,131.61679363250732,137.00319361686707,138.26828384399414,141.47166419029236,145.0727038383484,148.0173535346985,152.15153336524963,155.03207302093506,157.67122316360474,162.0817437171936,163.85281372070312,168.98173356056213,170.1888735294342,175.0710940361023,176.60720419883728,181.01423358917236,183.98257398605347,186.23206400871277,189.5029535293579,193.01466488838196,195.86460518836975,199.10031485557556,202.27875590324402,206.9902958869934,209.98983573913574,212.93093538284302,215.17898607254028,218.59971642494202,223.01349592208862,224.99983501434326,228.28798508644104,232.96884441375732,235.0991542339325,240.0774540901184,241.16681385040283,246.11179447174072,247.9677541255951,250.93693447113037,254.0564739704132,257.15068459510803,260.9894645214081,265.0671343803406,268.03558373451233,270.9467730522156,272.596022605896,276.19563150405884,278.77521204948425,281.8990616798401,285.0182218551636,288.97696137428284,297.0746717453003,308.20481133461,309.5212013721466,312.22678112983704,316.9957904815674,318.85769057273865,322.0339415073395,324.2835211753845,327.350790977478,330.34317111968994,333.97365140914917,338.1140923500061,339.643271446228,342.79334139823914,345.85236144065857,348.9471423625946,351.9466714859009,355.007351398468,358.12422132492065,363.04195165634155,366.1319909095764,367.4865803718567,371.0223801136017,373.6908802986145,376.78113985061646,380.1507902145386,385.1632204055786,386.29020047187805,389.3234107494354,392.4405610561371,396.22028160095215,399.01280093193054,401.62357091903687,404.65227031707764,408.97212052345276,410.9809808731079,413.80928087234497,418.9307210445404,421.0590908527374,423.9691014289856,426.0090913772583,429.0383315086365,432.1075315475464,435.1363115310669,438.290461063385,441.34757137298584,444.368061542511,448.9330105781555,450.9379999637604,453.6158802509308,457.05962014198303,459.9408800601959,463.11688017845154,466.05967116355896,468.9681923389435,473.0817515850067,474.60638189315796,477.6658425331116,481.05558252334595,483.64162254333496,488.1665222644806,489.7260024547577,492.8149924278259,495.6968123912811,498.6119821071625,502.0248520374298,504.63482213020325,509.07453179359436,510.93593168258667,513.995842218399,518.1955924034119,519.9371025562286,522.5202329158783,525.6107425689697,529.9237325191498,531.5530819892883,535.1199915409088,537.9972815513611,542.1031014919281,544.0839104652405,546.6932904720306,550.8941814899445,552.5119915008545,555.5728311538696,558.4288601875305,561.423259973526,564.3702201843262,568.9516904354095,570.2412104606628,573.964150428772,576.9021105766296,578.910900592804,582.9909203052521,584.5576205253601,589.083021402359,591.090381860733,594.0612015724182,596.940851688385,600.1199221611023,602.0704023838043,604.949282169342,608.822331905365,610.4089317321777,613.9217710494995,616.0525012016296,619.0217914581299,621.8089513778687,624.6336517333984,628.1111714839935,630.240181684494,633.0400815010071,637.1683714389801,638.7579517364502,642.9892113208771,644.4314415454865,647.3736915588379,650.281290769577,653.4317605495453,656.3700604438782,659.2835710048676,663.9595210552216,665.4864308834076,669.9565603733063,671.9506702423096,674.8761301040649,678.988361120224,683.0713095664978,683.9054596424103,686.9354195594788,691.1052293777466,693.2108790874481,696.2468690872192,699.2654683589935,703.9204587936401,707.1247084140778,710.0061888694763,711.5692086219788,716.1235184669495,719.0348484516144,722.9039790630341,726.1198689937592,728.0662784576416,730.0795884132385,733.232988357544,736.2887089252472,739.9133987426758,742.5042681694031,746.0043878555298,748.6138775348663,751.7327780723572,755.003778219223,757.7346677780151,760.7919282913208,765.9225175380707,767.9024169445038,769.8818664550781,772.8869662284851,776.0321757793427,778.9164655208588,781.8550155162811,784.7911052703857,787.7345945835114,791.0651247501373,794.9637444019318,797.0017747879028,799.9993646144867,804.9491450786591,806.1119644641876,809.9641444683075,812.3287246227264,815.4189639091492,818.5388038158417,823.0136435031891,824.5771532058716,828.0186033248901,830.9589228630066,833.8138229846954,837.0482835769653,840.0223236083984,843.027713060379,846.2288625240326,850.8786330223083,854.0281729698181,855.353903055191,858.3820130825043,863.0881035327911,864.4721837043762,867.5284533500671,870.6765837669373,874.9989726543427,877.0099923610687,879.7124218940735,882.7355017662048,887.8980519771576,888.9765520095825,892.0093824863434,894.9446320533752,900.0150320529938,902.8962726593018,903.8607630729675,908.8675820827484,909.7352523803711,912.975622177124,917.11408162117,918.5941514968872,922.9350807666779,924.5875909328461,927.6215906143188,930.9144103527069,933.9452800750732,936.5311505794525,940.0355007648468,942.9856908321381,945.5576214790344,949.9945909976959,952.9330904483795,955.9921503067017,957.6732203960419,960.5818614959717,963.5819709300995,966.9123611450195,970.0322115421295,974.0211310386658,975.9704110622406,979.061761379242,981.3191919326782,984.9720621109009,989.0204420089722,990.0697917938232,993.1300015449524,996.1045019626617,999.1298818588257,1001.9229521751404,1004.7427515983582,1007.6493713855743,1010.5973916053772,1013.5293221473694,1017.9698622226715,1019.3818318843842,1022.8887116909027,1025.2279918193817,1028.2278425693512,1033.1182816028595,1035.0706315040588,1036.9905714988708,1041.8785908222198,1042.8176906108856,1046.0175499916077,1048.7176399230957,1051.5106601715088,1055.9513792991638,1057.4489595890045,1060.3023602962494,1064.016710281372,1067.9170002937317,1069.9890704154968,1071.6669414043427,1075.8664815425873,1078.0878415107727,1080.305911540985,1084.895851612091,1085.9454016685486,1090.0276718139648,1091.5856816768646,1094.8552014827728,1097.3147315979004,1100.1685316562653,1102.9553015232086,1107.03538107872,1108.7171211242676,1112.9166915416718,1116.0636615753174,1118.9751615524292,1120.2933418750763,1123.148741722107,1126.0236415863037,1128.7276303768158,1131.6368906497955,1134.573170185089,1137.3990700244904,1142.0726103782654,1143.1658298969269,1147.9224095344543,1148.8570494651794,1151.7075695991516,1154.6117804050446,1157.4330804347992,1160.3811309337616,1163.37913107872,1166.2218008041382,1169.10405087471,1171.9512708187103,1174.9211311340332,1177.831021308899,1180.4189016819,1183.3503217697144,1186.141802072525,1188.9898121356964,1191.750361919403,1194.5802218914032,1199.0109417438507,1201.0197215080261,1202.879521369934,1205.5497317314148,1208.8825423717499,1211.0993123054504,1213.893672466278,1217.0990824699402,1220.9776735305786,1223.912192583084,1224.8380727767944,1227.5115628242493,1230.3281228542328,1233.1175734996796,1235.9497730731964,1238.6378524303436,1241.9390425682068,1244.8771524429321,1247.0977725982666,1250.998381614685,1252.35689163208,1261.0481915473938,1282.9177114963531,1285.9780910015106,1288.9175610542297,1291.022201538086,1293.245521068573,1296.063651561737,1299.0992317199707,1302.0289812088013,1306.949100971222,1309.947340965271,1310.973461151123,1313.972751379013,1316.7899916172028,1319.7875015735626,1322.6977117061615,1326.8681616783142,1328.8799216747284,1332.0272917747498,1334.366351366043,1337.3059613704681,1340.2819211483002,1343.1559610366821,1347.8367810249329,1349.127970457077,1352.1946408748627,1355.9668793678284,1358.1925294399261,1361.2498292922974,1364.2749195098877,1369.0458495616913,1370.1291191577911,1373.3041784763336,1376.2776987552643,1379.2460284233093,1382.995008468628,1385.13791847229,1390.01597905159,1392.954379081726,1394.0124883651733,1396.9801683425903,1402.074066877365,1402.9185664653778,1405.885926246643,1408.945386171341,1411.9424262046814,1414.8897068500519,1419.9220764636993,1421.0019767284393,1424.8418765068054,1426.7377262115479,1429.9734463691711,1432.9128770828247,1435.6122159957886,1439.9905552864075,1441.942314863205,1446.051635980606,1447.4903259277344,1450.2872059345245,1454.0003855228424,1456.2532861232758,1459.2209959030151,1463.9899871349335,1465.1593770980835,1468.1895463466644,1471.0997762680054,1475.9296960830688,1478.8699758052826,1481.0890054702759,1482.979835510254,1485.9188451766968,1488.9858453273773,1491.980465888977,1494.8885054588318,1497.7682156562805,1502.0594844818115,1503.917874097824,1506.6228740215302,1511.0879940986633,1512.4760837554932,1515.4380130767822,1518.4968628883362,1521.288322687149,1525.8484225273132,1527.2564024925232,1530.0797023773193,1533.106692790985,1536.8871531486511,1538.9952235221863,1542.0462834835052,1544.9328424930573,1547.8971824645996,1550.8050525188446,1553.8676218986511,1556.6654515266418,1559.9861204624176,1562.5052802562714,1565.444420337677,1568.2943007946014,1571.087881565094,1575.0466918945312,1576.9364013671875,1579.5141816139221,1582.3636112213135,1585.1243615150452,1587.973680973053,1590.799411535263,1593.583340883255,1596.3735015392303,1599.1932015419006,1603.9928214550018,1605.944590806961,1607.7463715076447,1610.6222214698792,1614.9119613170624,1616.2139115333557,1619.0547714233398,1621.842411518097,1625.9217619895935,1629.0716416835785,1630.9624316692352,1633.872162103653,1635.910751581192,1638.6747314929962,1641.9709808826447,1644.9109103679657,1647.1330404281616,1649.9802515506744,1652.71151137352,1655.3501710891724,1658.0549008846283,1660.720070362091,1663.5396008491516,1666.240361213684,1668.9709815979004,1672.9024810791016,1674.4335408210754,1677.132131576538,1679.89018034935,1682.9221603870392,1685.2595508098602,1688.0188405513763,1690.842670917511,1693.2988908290863,1695.998830318451,1698.9103498458862,1701.3760199546814,1704.067979335785,1706.7975494861603,1709.378609418869,1712.9783384799957,1715.9180595874786,1717.5448396205902,1720.2688300609589,1722.9373099803925,1726.98637008667,1728.9071502685547,1731.9665303230286,1734.0065801143646,1737.8188009262085,1739.3463308811188,1742.077820777893,1744.848661184311,1747.5416605472565,1750.2356407642365,1753.9563505649567,1756.806399822235,1758.3667895793915,1761.0664701461792,1763.9460701942444,1767.0050601959229,1769.0453400611877,1771.6847701072693,1775.8252396583557,1777.1441996097565,1779.7839794158936,1782.5142288208008,1785.8746683597565,1787.917498588562,1790.5562982559204,1793.8258578777313,1797.003387928009,1798.6530678272247,1801.9239583015442,1803.9345977306366,1806.6025078296661,1809.3319773674011,1812.8469576835632,1814.7023975849152,1818.9338281154633,1820.9118883609772,1822.713588476181,1825.351838350296,1828.1758677959442,1831.9823279380798,1833.6023378372192,1836.1558380126953,1838.8811078071594,1842.8124475479126,1844.1088874340057,1846.8302381038666,1849.8608584403992,1852.079868555069,1854.7891290187836,1858.862808227539,1860.059957742691,1862.6411979198456,1865.2229475975037,1867.8890271186829,1870.3494069576263,1873.0558066368103,1875.659196138382,1878.2085356712341,1880.6747453212738,1884.9616758823395,1886.9093961715698,1890.03058552742,1891.1984951496124,1893.811145067215,1896.3913745880127,1899.0579838752747,1901.7574844360352,1905.867564201355,1907.9995338916779,1909.6339039802551,1912.3634436130524,1914.9872934818268,1917.5730035305023,1920.2088429927826,1922.8462433815002,1925.8181023597717,1928.9415423870087,1930.5978124141693,1934.8170924186707,1935.8716325759888,1939.9759316444397,1942.885701417923,1943.855661392212,1946.9955713748932,1949.0983312129974,1951.737331867218,1954.4946916103363,1957.346631526947,1960.9458208084106,1963.166561126709,1967.0344009399414,1968.6549015045166,1971.5149810314178,1975.043610572815,1977.923951625824,1980.8963105678558,1982.7543406486511,1985.578840970993,1989.8935015201569,1991.8732619285583,1993.8849020004272,1996.9452619552612,2000.9058225154877,2001.9587123394012,2005.193862438202,2007.445592880249,2010.172553062439,2014.0129027366638,2015.7232427597046,2019.921903371811,2022.0217638015747,2023.9753839969635,2027.8427646160126,2029.2590646743774,2033.0062844753265,2034.9209945201874,2037.8012156486511,2039.9035558700562,2042.6054060459137,2045.2124962806702,2048.9328162670135,2051.9001562595367,2053.2835862636566,2055.8929164409637,2058.8208169937134,2063.000946998596,2064.8889269828796,2067.8003363609314,2070.979835987091,2073.8902559280396,2075.783055782318,2078.0913364887238,2080.9395067691803,2083.853056907654,2086.280266046524,2088.8883860111237,2092.9080464839935,2094.292067527771,2097.9493873119354,2100.863028049469,2102.3920981884003,2105.2074484825134,2107.907508611679,2110.9380486011505,2113.517058610916,2116.014769077301,2118.8381094932556,2122.906630039215,2124.316479921341,2128.253570318222,2129.9267103672028,2132.362939596176,2136.04726934433,2138.2358095645905,2141.055009365082,2143.996438741684,2146.7936685085297,2149.9052889347076,2152.634598493576,2155.4625084400177,2158.846158504486,2161.244488477707,2164.1328389644623,2167.070248603821,2169.9169182777405,2172.9140491485596,2175.6179399490356,2178.5540199279785,2181.4646503925323,2184.3139204978943,2187.793320417404,2191.934201002121,2193.888111114502,2195.653051376343,2198.482451438904,2201.863831758499,2204.2103304862976,2208.8847105503082,2209.9925303459167,2212.903520345688,2215.8148210048676,2218.3912613391876,2221.9013504981995,2226.012099981308,2227.8725798130035,2229.765649795532,2232.6130499839783,2236.0062396526337,2238.07381939888,2241.0109584331512,2245.150237798691,2246.6255576610565,2249.440288066864,2254.0048174858093,2255.0499975681305,2257.7797775268555,2261.9799978733063,2263.539397954941,2267.830497741699,2269.1252777576447,2271.938547849655,2274.7584183216095,2278.8394684791565,2280.4280984401703,2283.20138835907,2286.157648563385,2288.952998638153,2291.7400884628296,2294.5877685546875,2297.5110280513763,2301.0078780651093,2303.110388278961,2305.9302384853363,2308.629328727722,2313.0373883247375,2315.9167182445526,2317.057438135147,2319.9360280036926,2323.069248199463,2326.176957845688,2329.11603808403,2332.056107521057,2336.8556480407715,2338.9560379981995,2340.9656879901886,2344.835277557373,2347.9860780239105,2349.7582683563232,2352.784388065338,2355.6088485717773,2358.8789682388306,2361.4904181957245,2364.4252877235413,2367.5445280075073,2370.3343575000763,2374.983927488327,2377.865117788315,2379.2736377716064,2382.2611377239227,2386.924788236618,2389.834678173065,2392.9828176498413,2393.912367582321,2396.862706899643,2399.7962675094604,2402.7075579166412,2405.650767803192,2408.587667942047,2411.553237915039,2414.435348033905,2417.4020488262177,2420.3436982631683,2423.3716077804565,2428.2653064727783,2429.191636323929,2432.131125688553,2435.8817155361176,2437.8612654209137,2441.9750351905823,2443.3860354423523,2446.208974838257,2449.1470851898193,2452.8609549999237,2455.9497950077057,2458.9805450439453,2460.960935354233,2463.7864861488342,2466.8399860858917,2469.6288363933563,2472.5440464019775,2476.7688658237457,2479.948115825653,2481.9584662914276,2484.508275985718,2487.3362860679626,2490.2722461223602,2493.3281757831573,2496.2120656967163,2499.150646209717,2503.828365802765,2505.3876054286957,2509.829955816269,2517.537116289139,2553.8697867393494,2557.046166419983,2559.8976769447327,2563.829047679901,2566.8911373615265,2570.9066479206085,2573.9070084095,2576.9986984729767,2578.827679157257,2582.965368747711,2584.354558944702,2587.5256485939026,2590.5632078647614,2593.946038007736,2598.7752783298492,2600.994608402252,2604.8652284145355,2607.77720785141,2609.9640078544617,2613.865208387375,2615.7566981315613,2618.58104801178,2623.8247480392456,2624.90313744545,2627.962637424469,2631.003197669983,2634.029307126999,2638.8239963054657,2641.8870565891266,2643.1756970882416,2646.233827114105,2649.3825175762177,2652.569487094879,2655.6030764579773,2659.0463469028473,2661.7416365146637,2664.8044562339783,2667.89217710495,2671.885596513748,2674.1088869571686,2677.164606809616,2680.310856819153,2683.403636455536,2687.93581700325,2689.8202970027924,2692.7300164699554,2695.7903559207916,2698.849476337433,2704.0107057094574,2704.9405856132507,2708.0887656211853,2711.839315891266,2714.2097856998444,2717.9337158203125,2720.508146047592,2724.979595899582,2726.698005437851,2729.6932961940765,2732.8099262714386,2735.873306274414,2740.7875459194183,2742.9176857471466,2744.666435956955,2747.8384754657745,2751.046585083008,2754.8587844371796,2757.7678649425507,2760.9474155902863,2763.2307748794556,2765.302395105362,2768.2066543102264,2771.9568150043488,2774.930664539337,2777.8070850372314,2779.945524454117,2784.8592941761017,2786.866094350815,2789.895043373108,2792.9557547569275,2795.8957047462463,2797.9975748062134,2800.5746054649353,2803.518454313278,2807.028424024582,2809.933524131775,2813.8339245319366,2815.9046845436096,2818.515874862671,2822.804215192795,2824.573554992676,2827.489396095276,2831.8333854675293,2834.892845392227,2836.3924763202667,2839.27498626709,2842.962826728821,2845.906667470932,2848.1577870845795,2852.955216407776,2854.962697505951,2857.844246864319,2859.888117790222,2862.7623970508575,2865.9434077739716,2869.8128175735474,2872.9608874320984,2874.6176176071167,2877.7606275081635,2880.463227033615,2883.557277202606,2886.550356864929,2890.9300174713135,2892.880756855011,2896.7797265052795,2898.39555644989,2901.3414463996887,2904.417656183243,2907.1928765773773,2910.1305060386658,2913.1617262363434,2917.989086151123,2918.91982626915,2921.984736442566,2924.7730860710144,2928.9082467556,2930.8612065315247,2933.88955616951,2936.1558163166046,2939.947546005249,2941.8671159744263,2945.8882665634155,2947.8393862247467,2951.9473564624786,2953.121746301651,2955.938606262207,2958.791375875473,2961.696705341339,2964.490525484085,2967.756395816803,2970.396275997162,2973.8513762950897,2975.983725786209,2978.8598256111145,2982.8754558563232,2984.915366411209,2987.3826360702515,2991.905135154724,2993.1101248264313,2996.824784755707,2998.748034477234,3001.536384344101,3004.3546833992004,3007.029993534088,3011.8258633613586,3013.86377286911,3015.573632955551,3018.484332561493,3021.2224621772766,3025.8043415546417,3027.8743014335632,3029.6596014499664,3032.9150714874268,3036.90376162529,3038.9129614830017,3040.896252155304,3043.832361936569,3047.9140713214874,3049.5628921985626,3054.0035824775696,3056.945042848587,3058.8625531196594,3061.897393465042,3062.8218030929565,3063.6438024044037,3067.8311433792114,3070.772833585739,3072.0608835220337,3074.911753177643,3078.870742559433,3080.851071357727,3083.3465321063995,3086.9718022346497,3089.8824722766876,3092.794923067093,3094.559452533722,3097.4698729515076,3100.2925124168396,3103.230213880539,3106.894633769989,3109.7990736961365,3111.5743935108185,3114.2686936855316,3117.8698427677155,3120.928253173828,3123.868492603302,3126.7792525291443,3128.787521839142,3130.5338826179504,3134.87762260437,3135.927862405777,3138.747931957245,3142.9485318660736,3144.841961145401,3146.584131002426,3149.188850402832,3151.8570504188538,3154.556540250778,3158.87749004364,3159.8418900966644,3166.7370302677155],\"x_right\":[3070000000.0,6162700000.0,8928701000.0,9959202000.0,15949421000.0,16202872000.0,23899102000.0,24879943000.0,28337432000.0,28851612000.0,35219163000.0,37148203000.0,38086423000.0,43856493000.0,48151913000.0,51817423000.0,54306092000.0,53465772000.0,61678642000.0,65176762000.0,63195442000.0,69856622000.0,71845122000.0,75724702000.0,81985782000.0,84886301000.0,85060382000.0,88173102000.0,92151611000.0,95161302000.0,98588122000.0,101884752000.0,105404002000.0,110293553000.0,111929174000.0,116946674000.0,117205753000.0,124914203000.0,128184923000.0,126002773000.0,134923413000.0,133266794000.0,142393194000.0,139448284000.0,144741664000.0,148702704000.0,150957354000.0,156251533000.0,157962073000.0,160241223000.0,166541744000.0,165612814000.0,174121734000.0,171378874000.0,179971094000.0,178137204000.0,185354234000.0,187022574000.0,188462064000.0,192672954000.0,196644665000.0,198674605000.0,202380315000.0,205448756000.0,211670296000.0,213039836000.0,215860935000.0,217408986000.0,221869716000.0,227583496000.0,227009835000.0,231557985000.0,237658844000.0,237209154000.0,244987454000.0,242336814000.0,251031794000.0,249857754000.0,253866934000.0,257226474000.0,260190685000.0,264859465000.0,269157134000.0,270975584000.0,273856773000.0,274246023000.0,279715632000.0,281465212000.0,284949062000.0,288188222000.0,292946961000.0,305134672000.0,308204811000.0,310851201000.0,314796781000.0,321925790000.0,320727691000.0,325193942000.0,326523521000.0,330390791000.0,333393171000.0,337603651000.0,342204092000.0,341183271000.0,345943341000.0,348912361000.0,351987142000.0,354996671000.0,358057351000.0,361284221000.0,367841952000.0,369291991000.0,368906580000.0,374542380000.0,376380880000.0,379821140000.0,383190790000.0,390443220000.0,387460200000.0,392373411000.0,395610561000.0,399950282000.0,401832801000.0,404213571000.0,407692270000.0,413312121000.0,412960981000.0,416629281000.0,424080721000.0,423169091000.0,426889101000.0,428009091000.0,432098332000.0,435147532000.0,438176312000.0,441460461000.0,444387571000.0,447418062000.0,453503011000.0,452928000000.0,456305880000.0,460459620000.0,462870880000.0,466286880000.0,468979671000.0,471918192000.0,477171752000.0,476136382000.0,480715843000.0,484445583000.0,486211623000.0,492616522000.0,491376002000.0,495864992000.0,498626812000.0,501531982000.0,505424852000.0,507224822000.0,513504532000.0,512815932000.0,517055842000.0,522285592000.0,521817103000.0,525100233000.0,528660743000.0,534253733000.0,533203082000.0,538619992000.0,540927282000.0,546213101000.0,546073910000.0,549263290000.0,555114181000.0,554151992000.0,558622831000.0,561248860000.0,564463260000.0,567310220000.0,573511690000.0,571531210000.0,577724150000.0,579822111000.0,580900901000.0,587090920000.0,586077621000.0,593643021000.0,593100382000.0,596981202000.0,599870852000.0,603289922000.0,603950402000.0,607869282000.0,612732332000.0,612008932000.0,617441771000.0,618162501000.0,621821791000.0,624738951000.0,627453652000.0,631631171000.0,632340182000.0,635850082000.0,641278371000.0,640397952000.0,647199211000.0,645861442000.0,650283692000.0,653211291000.0,656591761000.0,659300060000.0,662213571000.0,668639521000.0,667016431000.0,674406560000.0,673950670000.0,677806130000.0,683088361000.0,687041310000.0,684855460000.0,689975420000.0,695205229000.0,695360879000.0,699266869000.0,702305468000.0,708600459000.0,710284708000.0,712946189000.0,713099209000.0,720673518000.0,721974848000.0,726753979000.0,729299869000.0,730046278000.0,732089588000.0,736392988000.0,739328709000.0,743543399000.0,745104268000.0,749504388000.0,751193878000.0,754892778000.0,758293778000.0,760434668000.0,763821928000.0,771072518000.0,769902417000.0,771881866000.0,775816966000.0,779192176000.0,781846466000.0,784775016000.0,787721105000.0,790674595000.0,794345125000.0,798943744000.0,798991775000.0,802939365000.0,809979145000.0,807291964000.0,813824144000.0,814678725000.0,818458964000.0,821708804000.0,827463644000.0,826097153000.0,831528603000.0,833898923000.0,836623823000.0,840338284000.0,842942324000.0,846077713000.0,849388863000.0,855558633000.0,857188173000.0,856653903000.0,861432013000.0,867768104000.0,865882184000.0,870578453000.0,873836584000.0,879328973000.0,879009992000.0,882402422000.0,885785502000.0,893058052000.0,890036552000.0,895039382000.0,897874632000.0,905055032000.0,905826273000.0,904800763000.0,913867582000.0,910595252000.0,916245622000.0,921214082000.0,920124151000.0,927265081000.0,926247591000.0,930661591000.0,934194410000.0,936985280000.0,939121151000.0,943545501000.0,945915691000.0,948137621000.0,954434591000.0,955873090000.0,958912150000.0,959323220000.0,963631861000.0,966631971000.0,970192361000.0,973182212000.0,978001131000.0,977860411000.0,982221761000.0,983549192000.0,988592062000.0,993120442000.0,991129792000.0,996190002000.0,999024502000.0,1002179882000.0,1004742952000.0,1007542752000.0,1010579371000.0,1013527392000.0,1016459322000.0,1022409862000.0,1020801832000.0,1026398712000.0,1027577992000.0,1031147843000.0,1038028282000.0,1037080632000.0,1038860571000.0,1046808591000.0,1043757691000.0,1049167550000.0,1051417640000.0,1054320660000.0,1060411379000.0,1058738960000.0,1063222360000.0,1067886710000.0,1071777000000.0,1072109070000.0,1073296941000.0,1080096482000.0,1080317842000.0,1082525912000.0,1089445852000.0,1087015402000.0,1094127672000.0,1093125682000.0,1098115201000.0,1099794732000.0,1102968532000.0,1105775302000.0,1111115381000.0,1110367121000.0,1117136692000.0,1119223662000.0,1121905162000.0,1121593342000.0,1125958742000.0,1128963642000.0,1131417630000.0,1134566891000.0,1137503170000.0,1140199070000.0,1146762610000.0,1144215830000.0,1152732410000.0,1149797049000.0,1154527570000.0,1157531780000.0,1160253080000.0,1163311131000.0,1166299131000.0,1169151801000.0,1171914051000.0,1174891271000.0,1177841131000.0,1180761021000.0,1182998902000.0,1186280322000.0,1188941802000.0,1191809812000.0,1194560362000.0,1197400222000.0,1203450942000.0,1203029722000.0,1204749521000.0,1208159732000.0,1212252542000.0,1213329312000.0,1216693672000.0,1220259082000.0,1224847674000.0,1226842193000.0,1225778073000.0,1230211563000.0,1233128123000.0,1235947573000.0,1238639773000.0,1241447852000.0,1245219043000.0,1247797152000.0,1249337773000.0,1254848382000.0,1253766892000.0,1269678192000.0,1285577711000.0,1289028091000.0,1291837561000.0,1293012202000.0,1295495521000.0,1298993652000.0,1302129232000.0,1304958981000.0,1311869101000.0,1312877341000.0,1312033461000.0,1317022751000.0,1319599992000.0,1322717502000.0,1325627712000.0,1331078162000.0,1330879922000.0,1335187292000.0,1336706351000.0,1340245961000.0,1343211921000.0,1346085961000.0,1352516781000.0,1350417970000.0,1355234641000.0,1359716879000.0,1360452529000.0,1364269829000.0,1367324920000.0,1373835850000.0,1371199119000.0,1376474178000.0,1379207699000.0,1382276028000.0,1386755008000.0,1387247918000.0,1394935979000.0,1395864379000.0,1395082488000.0,1399910168000.0,1407104067000.0,1403868566000.0,1408815926000.0,1411985386000.0,1415002426000.0,1417809707000.0,1424942076000.0,1422071977000.0,1428711877000.0,1428607726000.0,1433253446000.0,1435852877000.0,1438302216000.0,1444320555000.0,1443932315000.0,1450161636000.0,1448900326000.0,1453087206000.0,1457760386000.0,1458473286000.0,1462140996000.0,1468799987000.0,1466329377000.0,1471239546000.0,1474039776000.0,1480709696000.0,1481819976000.0,1483299005000.0,1484869836000.0,1488838845000.0,1492045845000.0,1495030466000.0,1497798505000.0,1500598216000.0,1506379484000.0,1505797874000.0,1509322874000.0,1515537994000.0,1513886084000.0,1518358013000.0,1521546863000.0,1524108323000.0,1530408423000.0,1528546402000.0,1533009702000.0,1536156693000.0,1540627153000.0,1541125224000.0,1545076283000.0,1547872842000.0,1550827182000.0,1553735053000.0,1556907622000.0,1559475452000.0,1563266120000.0,1565085280000.0,1568374420000.0,1571104301000.0,1573907882000.0,1579016692000.0,1578826401000.0,1582084182000.0,1585183611000.0,1587924362000.0,1590793681000.0,1593599412000.0,1596413341000.0,1599183502000.0,1602003202000.0,1608782821000.0,1607814591000.0,1609626372000.0,1613442221000.0,1619251961000.0,1617503912000.0,1621874771000.0,1624652412000.0,1630001762000.0,1632251642000.0,1632832432000.0,1636792162000.0,1637910752000.0,1641374731000.0,1645360981000.0,1647840910000.0,1649373040000.0,1652780252000.0,1655401511000.0,1658050171000.0,1660744901000.0,1663420070000.0,1666359601000.0,1668920361000.0,1671680982000.0,1676882481000.0,1675963541000.0,1679822132000.0,1682580180000.0,1685982160000.0,1687599551000.0,1690828841000.0,1693642671000.0,1695768891000.0,1698688830000.0,1701840350000.0,1703836020000.0,1706767979000.0,1709497549000.0,1711948609000.0,1716608338000.0,1718838060000.0,1719204840000.0,1722958830000.0,1725637310000.0,1730956370000.0,1730917150000.0,1735006530000.0,1735996580000.0,1741678801000.0,1740876331000.0,1744777821000.0,1747648661000.0,1750241661000.0,1752925641000.0,1757596351000.0,1759726400000.0,1759896790000.0,1763756470000.0,1766886070000.0,1770055060000.0,1771025340000.0,1774394770000.0,1779915240000.0,1778424200000.0,1782493979000.0,1785204229000.0,1789274668000.0,1789907499000.0,1793256298000.0,1797105858000.0,1800153388000.0,1800313068000.0,1805203958000.0,1805924598000.0,1809292508000.0,1812031977000.0,1816356958000.0,1816582398000.0,1823143828000.0,1822901888000.0,1824473588000.0,1828051838000.0,1830935868000.0,1835792328000.0,1835232338000.0,1838745838000.0,1841571108000.0,1846792448000.0,1845398887000.0,1849530238000.0,1852890858000.0,1854309869000.0,1857489129000.0,1862952808000.0,1861239958000.0,1865221198000.0,1867792948000.0,1870589027000.0,1872809407000.0,1875765807000.0,1878229196000.0,1880778536000.0,1883134745000.0,1889181676000.0,1888899396000.0,1893190586000.0,1892378495000.0,1896401145000.0,1898961375000.0,1901757984000.0,1904447484000.0,1909967564000.0,1910099534000.0,1911283904000.0,1915063444000.0,1917677293000.0,1920153004000.0,1922778843000.0,1925536243000.0,1928758102000.0,1932101542000.0,1932237812000.0,1939037092000.0,1936921633000.0,1944075932000.0,1945825701000.0,1944785661000.0,1950155571000.0,1951208331000.0,1954327332000.0,1957304692000.0,1960156632000.0,1964565821000.0,1965396561000.0,1970904401000.0,1970304902000.0,1974324981000.0,1978553611000.0,1980853952000.0,1983826311000.0,1984634341000.0,1988388841000.0,1994213502000.0,1993873262000.0,1995884902000.0,1999985262000.0,2004885823000.0,2003028712000.0,2008223862000.0,2009915593000.0,2012862553000.0,2017882903000.0,2017363243000.0,2024141903000.0,2024121764000.0,2025975384000.0,2031702765000.0,2030679065000.0,2036746284000.0,2036800995000.0,2040721216000.0,2042013556000.0,2045315406000.0,2047792496000.0,2052662816000.0,2054830156000.0,2054693586000.0,2058482916000.0,2061620817000.0,2067220947000.0,2066878927000.0,2070730336000.0,2074139836000.0,2076820256000.0,2077673056000.0,2080311336000.0,2083869507000.0,2086773057000.0,2088520266000.0,2091698386000.0,2096878046000.0,2095702068000.0,2101579387000.0,2103803028000.0,2103922098000.0,2108007448000.0,2110607509000.0,2113978049000.0,2115977059000.0,2118644769000.0,2121598109000.0,2127006630000.0,2125736480000.0,2132113570000.0,2131676710000.0,2134832940000.0,2139677269000.0,2140465810000.0,2143875009000.0,2146916439000.0,2149593669000.0,2152965289000.0,2155454598000.0,2158262508000.0,2162246159000.0,2163594488000.0,2167062839000.0,2169990249000.0,2172726918000.0,2175974049000.0,2178307940000.0,2181474020000.0,2184404650000.0,2187123920000.0,2191293320000.0,2196044201000.0,2195878111000.0,2197423051000.0,2201292451000.0,2205263832000.0,2206550330000.0,2213564711000.0,2211062530000.0,2215823520000.0,2218734821000.0,2220981261000.0,2225401350000.0,2230122100000.0,2229742580000.0,2231655650000.0,2235413050000.0,2239406240000.0,2240193819000.0,2243940958000.0,2249130238000.0,2248255558000.0,2252260288000.0,2258564817000.0,2256109998000.0,2260479778000.0,2266079998000.0,2265179398000.0,2272160498000.0,2270425278000.0,2274748548000.0,2277558418000.0,2282939468000.0,2281968098000.0,2286011388000.0,2289087649000.0,2291752999000.0,2294560088000.0,2297387769000.0,2300451028000.0,2304507878000.0,2305230388000.0,2308750238000.0,2311319329000.0,2317367388000.0,2318856718000.0,2318227438000.0,2322746028000.0,2326229248000.0,2329346958000.0,2332046038000.0,2334976108000.0,2341665648000.0,2341056038000.0,2342955688000.0,2348705278000.0,2351166078000.0,2351518268000.0,2355824388000.0,2358418849000.0,2362168968000.0,2364050418000.0,2367365288000.0,2370704528000.0,2373084358000.0,2379623927000.0,2380775118000.0,2380693638000.0,2385191138000.0,2391594788000.0,2392764678000.0,2396162818000.0,2394852368000.0,2399792707000.0,2402726268000.0,2405627558000.0,2408590768000.0,2411537668000.0,2414463238000.0,2417355348000.0,2420332049000.0,2423263698000.0,2426421608000.0,2433175306000.0,2430151636000.0,2435061126000.0,2439631716000.0,2439841265000.0,2446085035000.0,2444786035000.0,2449028975000.0,2452067085000.0,2456620955000.0,2458989795000.0,2462020545000.0,2462960935000.0,2466606486000.0,2469879986000.0,2472448836000.0,2475464046000.0,2480978866000.0,2483108116000.0,2483958466000.0,2487088276000.0,2490156286000.0,2493192246000.0,2496378176000.0,2499142066000.0,2502080646000.0,2508518366000.0,2506897605000.0,2514289956000.0,2525237116000.0,2555199787000.0,2560246166000.0,2562717677000.0,2567799048000.0,2569941137000.0,2574886648000.0,2576957008000.0,2580058698000.0,2580687679000.0,2587065369000.0,2585764559000.0,2590685649000.0,2593623208000.0,2597346038000.0,2603565278000.0,2603214608000.0,2608735228000.0,2610717208000.0,2612064008000.0,2617845208000.0,2617656698000.0,2621381048000.0,2629084748000.0,2625973137000.0,2631012637000.0,2634043198000.0,2637079307000.0,2643623996000.0,2644927057000.0,2644475697000.0,2649283827000.0,2652542518000.0,2655729487000.0,2658653076000.0,2662436347000.0,2664431637000.0,2667864456000.0,2671052177000.0,2675865597000.0,2676338887000.0,2680214607000.0,2683480857000.0,2686443636000.0,2692495817000.0,2691710297000.0,2695660016000.0,2698830356000.0,2701899476000.0,2709160706000.0,2705880586000.0,2711248766000.0,2715589316000.0,2716559786000.0,2721673716000.0,2723088146000.0,2729439596000.0,2728338005000.0,2732743296000.0,2735959926000.0,2738933306000.0,2745687546000.0,2745047686000.0,2746426436000.0,2750998475000.0,2754206585000.0,2758718784000.0,2760687865000.0,2764117416000.0,2765500775000.0,2767382395000.0,2771136654000.0,2775696815000.0,2777860665000.0,2780727085000.0,2782075524000.0,2789759294000.0,2788866094000.0,2792945043000.0,2796005755000.0,2798815705000.0,2800117575000.0,2803144605000.0,2806458454000.0,2810548424000.0,2812853524000.0,2817703925000.0,2818004685000.0,2821105875000.0,2827134215000.0,2826333555000.0,2830419396000.0,2836163385000.0,2837942845000.0,2837922476000.0,2842074986000.0,2846712827000.0,2848836667000.0,2850377787000.0,2857755216000.0,2856972698000.0,2860774247000.0,2861878118000.0,2865682397000.0,2869113408000.0,2873672818000.0,2876120887000.0,2876277618000.0,2880910628000.0,2883173227000.0,2886597277000.0,2889600357000.0,2895250017000.0,2894890757000.0,2900629727000.0,2899995556000.0,2904321446000.0,2907337656000.0,2910132877000.0,2913050506000.0,2916221726000.0,2922769086000.0,2919869826000.0,2925034736000.0,2927593086000.0,2932998247000.0,2932851207000.0,2936949556000.0,2938375816000.0,2943687546000.0,2943877116000.0,2949848267000.0,2949849386000.0,2956047356000.0,2954291746000.0,2958748606000.0,2961611376000.0,2964616705000.0,2967310525000.0,2971026396000.0,2972976276000.0,2977361376000.0,2978103726000.0,2981679826000.0,2986975456000.0,2986895366000.0,2989902636000.0,2996415135000.0,2994280125000.0,3000584785000.0,3000618034000.0,3004356384000.0,3007164683000.0,3009719994000.0,3016615863000.0,3015873773000.0,3017323633000.0,3021294333000.0,3024042462000.0,3030374342000.0,3029984301000.0,3031419601000.0,3036075071000.0,3040993762000.0,3040912961000.0,3042886252000.0,3046772362000.0,3052004071000.0,3051202892000.0,3058453582000.0,3059865043000.0,3060752553000.0,3064947393000.0,3063751803000.0,3064473802000.0,3072041143000.0,3073692834000.0,3073360884000.0,3077731753000.0,3082850743000.0,3082841071000.0,3085816532000.0,3090591802000.0,3092812472000.0,3095724923000.0,3096319453000.0,3100399873000.0,3103102512000.0,3106160214000.0,3110514634000.0,3112749074000.0,3113334394000.0,3116958694000.0,3121489843000.0,3123978253000.0,3126798493000.0,3129699253000.0,3130797522000.0,3132283883000.0,3139207623000.0,3136997862000.0,3141557932000.0,3147158532000.0,3146721961000.0,3148344131000.0,3151758850000.0,3154557050000.0,3157246540000.0,3163217490000.0,3160781890000.0,3173627030000.0],\"pace\":[155600664000,140791643000,133114440000,129463680000,127885281000,127200664000,127656809000,128072561000,128629767000,129348358000,129192662000,128961180000,129065214000,129299374000,129413478000,129470442000,128841023000,128887330000,129418723000,129941331000,129749056000,129813316000,129392472000,129848534000,130309639000,130649345000,130380071000,130115816000,129668267000,129507642000,129146403000,128866646000,129044653000,129181145000,129505116000,129792560000,130109196000,130323086000,130172062000,129756246000,129096583000,128510952000,128189134000,128227354000,127963196000,128333504000,128118111000,127880733000,127151978000,126553743000,126060465000,126288976000,126537782000,127169598000,127590528000,127900309000,127867735000,127776997000,127574995000,127531683000,127568574000,127765880000,127484869000,127147767000,127197793000,127631451000,128007729000,128486891000,128012061000,127539505000,127453334000,127518237000,127609122000,127942034000,128102559000,128524875000,128193612000,127806220000,127083303000,127018760000,127217155000,127327948000,127103447000,126802691000,126409105000,126373565000,125858915000,125450084000,125648616000,125665428000,121918948000,130186578000,141692453000,148627241000,148698859000,140549793000,126544541000,125494293000,126199154000,125656720000,125666450000,125896896000,126082508000,125914767000,125953757000,125577827000,125911637000,126366484000,126598648000,127076290000,127354345000,127188202000,126828280000,126012381000,124879711000,124302815000,124161387000,124454866000,124451101000,124494382000,123982923000,123686194000,123868376000,124020858000,124141212000,124667144000,124721459000,124722291000,124794137000,124492037000,124425711000,124853715000,125164283000,125445240000,125621530000,125456270000,125252595000,124953705000,124896150000,125262747000,125276518000,125135061000,124716311000,124234931000,124047912000,124201288000,124184564000,124190789000,124061899000,124256525000,124421881000,124497005000,124414108000,124067207000,123574684000,123452117000,123213305000,123288974000,123490734000,123759575000,123491046000,123013143000,122932845000,123158300000,123661266000,123697373000,123555655000,123366166000,123420359000,123462992000,123770799000,123195067000,123082471000,122882536000,122378914000,122276795000,122560605000,122332969000,122402923000,122761475000,123044063000,122594497000,122091566000,121784320000,121859472000,122281760000,122941478000,123008284000,122948506000,123172485000,123096418000,122831357000,122894104000,123030861000,122918265000,123186725000,123074432000,122829826000,122471279000,122176789000,121637614000,121755421000,121829074000,122011639000,122342803000,122451794000,123154032000,123993346000,124252926000,124017954000,123747989000,123391272000,124006057000,124376944000,124674530000,124503529000,124605265000,124909158000,125171834000,124796870000,124830818000,124883602000,125146799000,125563984000,125940792000,125928449000,126014212000,126084510000,125979085000,125841028000,125673795000,125346991000,125217077000,125342329000,125668417000,126112206000,126338398000,126125275000,125725876000,125365861000,124768490000,124465739000,124406237000,124556162000,124627438000,124623322000,124153829000,123828492000,123655573000,123510322000,123253814000,123071647000,122893864000,122954427000,123593192000,124010933000,124300915000,124219578000,124046355000,123824621000,123946921000,123997267000,124308838000,124341194000,124530793000,124600191000,124585153000,124755237000,124644189000,124432229000,124341335000,124343734000,124367380000,124322016000,124131887000,123922647000,123855315000,123929003000,124084138000,124070371000,124223180000,124284782000,124559310000,124802382000,124932399000,125014788000,124992791000,124660436000,124430213000,123651711000,122685075000,122392549000,122557074000,123214885000,124246585000,124833693000,125065577000,125123462000,124566325000,123841092000,123456612000,123487074000,123835044000,124375361000,124405885000,124293519000,124498775000,125169823000,125751966000,126072360000,125737017000,125227820000,124658348000,124418707000,124251425000,123987597000,123825301000,123770977000,123855925000,124470873000,124926998000,124638056000,124105715000,123595820000,123447920000,123711675000,124086985000,124198729000,124326913000,124590090000,124756497000,124665704000,124533985000,124622971000,124543991000,124811263000,125052799000,125052025000,124783578000,124372287000,123540113000,123281772000,123164055000,123259593000,123404589000,123546029000,123534490000,123879676000,124137926000,124171146000,123822961000,123224116000,122745933000,122700051000,122732971000,122704702000,122868854000,123112815000,123260282000,123377107000,123328368000,123281490000,123726242000,124308981000,124299871000,124062733000,123069174000,122277659000,122345160000,122727597000,123474847000,124141293000,124161083000,124184422000,123994988000,123634894000,123220773000,123138570000,123268643000,123849141000,124157260000,124262954000,123760871000,123461760000,123313587000,123695432000,124019230000,124304891000,124346386000,124211722000,123440150000,122966840000,122420943000,122056861000,122263118000,122858809000,122317265000,122069102000,121849149000,121737916000,122005266000,122491435000,122094938000,121665250000,121353499000,121258169000,121078912000,120938069000,120970298000,121096779000,116903223000,127335435000,143992541000,156792694000,158129386000,146721572000,127030837000,124746916000,125055393000,125263128000,125326393000,125359550000,125516762000,125778429000,125843108000,125915316000,126207129000,125724067000,125571727000,125495467000,125581645000,125465805000,125703153000,126007271000,126306096000,126259345000,126117974000,125968450000,126093878000,126309015000,126279429000,125799906000,125471379000,125719798000,126289640000,126682952000,127094270000,126727697000,126258008000,126144211000,126150683000,126487856000,127052873000,127071252000,127104634000,127083387000,127209616000,127369245000,127587315000,127546631000,127176487000,126709717000,126487924000,126196747000,126174789000,126132418000,125770039000,125227871000,124837672000,124745344000,125015122000,125139671000,125399391000,125310897000,125296758000,125646147000,125942752000,126075401000,126106479000,125849081000,125344236000,125320153000,125147766000,125271682000,125323005000,125437920000,125208688000,124899791000,124587033000,124620584000,124720617000,124845253000,125188975000,125234675000,125308740000,125160849000,124654822000,124207934000,124478799000,124980380000,125441556000,125455775000,125119899000,124860568000,124626561000,124419714000,124124670000,123944324000,124023684000,124006490000,123699246000,123117640000,122559725000,122371221000,122601773000,122637470000,122710725000,122771752000,122683301000,122615608000,122912661000,123164073000,123464491000,123802678000,123876043000,123787984000,123765508000,123444764000,123166490000,123055576000,123086702000,123288657000,123562350000,123104820000,122841176000,122728843000,122434994000,122334618000,122281766000,121410537000,120942480000,120713848000,120926914000,121601336000,122463382000,122744041000,122880080000,122648254000,122342875000,122053350000,121808575000,121763306000,121731199000,121729869000,121682241000,121644371000,121684137000,121733312000,121493380000,121171627000,121049028000,121400419000,121978789000,122309263000,122294214000,121954942000,121883016000,122315969000,122416473000,122170978000,121645884000,121115214000,120921021000,120906305000,120572772000,120195036000,120073229000,120460330000,121087643000,121367516000,121008458000,120467436000,120004046000,119857970000,119779216000,120024088000,120079987000,120064059000,120295089000,120508037000,120639178000,120748139000,120826140000,120641177000,120861135000,121036330000,121422832000,121768536000,122292874000,122532589000,122834885000,122711607000,122287341000,122063013000,121889001000,122235675000,122333010000,121579145000,120826448000,120122089000,119389103000,119609550000,119512477000,118713146000,118552286000,118367853000,118230692000,118106077000,118021220000,117586338000,117694574000,118006723000,118299615000,118284091000,118180547000,118122844000,118411025000,118881108000,119232508000,119256348000,119101219000,119282385000,119683832000,119905636000,120105583000,119948616000,119852002000,119700732000,119704200000,119505031000,119335349000,119289911000,119163532000,119020285000,119095792000,119611362000,119865100000,120142391000,120061728000,119637387000,119264685000,119353621000,120270024000,121761639000,123733536000,125031066000,125407523000,124966860000,124235905000,123042931000,122722156000,122548146000,122562401000,122620938000,122343104000,121941656000,121973650000,122115893000,122196779000,122060988000,122201415000,122044277000,121767008000,121576497000,121234968000,120957998000,121156745000,121293482000,121703337000,121989159000,121942943000,121624800000,121173634000,120885508000,121185550000,121269899000,121510893000,121473134000,121161986000,121066069000,120898401000,120740958000,120932659000,120723615000,120627535000,120694262000,120885557000,121365778000,121849073000,121910372000,121852281000,121520285000,121477739000,121264780000,120886187000,120839940000,120681156000,120586499000,120444546000,119879982000,119274830000,119324792000,119512560000,119751943000,120040235000,120003345000,119743234000,119436256000,120271941000,121628770000,123640634000,125271269000,126223286000,126185468000,126550409000,126539005000,126520931000,126498166000,126584845000,126329984000,126397048000,126151145000,125750878000,125755214000,125678489000,125417273000,125532115000,125525343000,125484443000,125482378000,125190433000,125016325000,124493471000,124191132000,124065248000,124059934000,123883613000,124238056000,124096471000,123870176000,123534858000,123164073000,122428323000,122268183000,122201792000,122057715000,122128786000,122269660000,121993944000,121864627000,121936110000,122099710000,122732547000,123248549000,123189580000,123061474000,123161025000,123610641000,123631257000,123467602000,123286612000,123624662000,123885763000,124076714000,123932191000,124290764000,124520224000,124851736000,124420001000,123774274000,123334909000,123416116000,123035305000,123544344000,125079799000,126502597000,127212914000,127304845000,126321518000,125776568000,125981722000,125826772000,125712088000,125579029000,125441123000,125421350000,125503945000,125304439000,125331575000,125138248000,124984679000,124924226000,124950593000,124963193000,125251061000,125129238000,125024576000,124759178000,124556379000,124376778000,124353720000,124359651000,124621155000,124596523000,124478641000,124238797000,123988320000,124216792000,124342612000,123977805000,124019618000,124001634000,123975114000,123672251000,123166958000,122426226000,122623716000,123372906000,123953546000,123893409000,124065252000,123892479000,124037312000,124314761000,124355741000,124128687000,123988536000,123630389000,123619453000,123652066000,123984688000,124128878000,124370266000,124816176000,125793945000,124969254000,127479020000,132668815000,155651116000,201122184000,248142015000,229257428000,180519471000,140948640000,126666034000,124290276000,126266079000,126503738000,125815973000,125883228000,125735364000,125294333000,125251507000,125743434000,126261435000,126596983000,126330233000,125823215000,125483687000,125609102000,126207743000,126149799000,125919703000,125736557000,125430597000,125565407000,126067530000,126476551000,126824173000,127169103000,127493483000,127402817000,126728558000,126193353000,125437543000,125340544000,125742051000,126268971000,126798558000,127095983000,127157107000,127142149000,126693186000,126141201000,125762857000,125531429000,125575000000,125577853000,125685532000,125548415000,125181709000,125013103000,124929514000,124984859000,125040052000,125197470000,124967464000,125078291000,124981403000,124589323000,124180115000,123854430000,123524142000,123697851000,123983639000,124152213000,124289850000,124117163000,123689347000,123362489000,123511521000,123745951000,123976634000,124010575000,123924833000,123794917000,123780961000,123811441000,123970147000,124180769000,124423224000,124439068000,124543923000,124911599000,125403028000,125376078000,125026129000,124336346000,123943939000,123665643000,123891661000,124167153000,124192221000,124288957000,124111324000,123910051000,124197513000,124756149000,125111669000,125375602000,124997807000,124723136000,125306683000,125359308000,124893081000,124684267000,124257314000,124439621000,125621927000,125969662000,125400968000,125042939000,124273735000,124072770000,124062691000,123811035000,123393000000,123282743000,123050241000,122879473000,123073340000,122974315000,122682296000,122706243000,122619124000,122230838000,121923921000,121551931000,121210345000,121110183000,121180609000,121262884000,121172846000,121077943000,121377612000,121559043000,121713920000,121919910000,121636154000,121302670000,121281714000,121113685000,121320650000,122188490000,122543091000,122328095000,121706053000,120842207000,120417481000,120722392000,120765775000,120560456000,120609586000,120844616000,120951200000,120903034000,120635984000,120365300000,120816286000,121327790000,121802370000,122121293000,122329793000,122154261000,122165068000,122557968000,123407704000,123944976000,124003488000,123338232000,122309523000,121727963000,121591258000,121601726000,121901341000,121814564000,121764058000,121584597000,121485305000,121493473000,121572185000,121393324000,121614920000,122013978000,122347888000,122685719000,122217291000,121698398000,121459255000,120975128000,120403581000,120004728000,119327365000,119236552000,119255450000,119122896000,119059466000,118834257000,118396556000,118439093000,118734112000,118930666000,118878853000,118179496000,117393992000,117007056000,117347778000,119257195000,124497585000,135588041000],\"time\":[0,3092700000,5998701000,7979202000,11969421000,14072872000,18989102000,21959943000,25167432000,26971612000,31109163000,34108203000,36096423000,39986493000,44071913000,47937423000,51146092000,52285772000,56998642000,61076762000,62125442000,65996622000,68905122000,72324702000,77185782000,81026301000,83070382000,85593102000,88861611000,92011302000,95308122000,98604752000,101994002000,106193553000,108999174000,112976674000,115085753000,119994203000,124104923000,125042773000,130013413000,131616794000,137003194000,138268284000,141471664000,145072704000,148017354000,152151533000,155032073000,157671223000,162081744000,163852814000,168981734000,170188874000,175071094000,176607204000,181014234000,183982574000,186232064000,189502954000,193014665000,195864605000,199100315000,202278756000,206990296000,209989836000,212930935000,215178986000,218599716000,223013496000,224999835000,228287985000,232968844000,235099154000,240077454000,241166814000,246111794000,247967754000,250936934000,254056474000,257150685000,260989465000,265067134000,268035584000,270946773000,272596023000,276195632000,278775212000,281899062000,285018222000,288976961000,297074672000,308204811000,309521201000,312226781000,316995790000,318857691000,322033942000,324283521000,327350791000,330343171000,333973651000,338114092000,339643271000,342793341000,345852361000,348947142000,351946671000,355007351000,358124221000,363041952000,366131991000,367486580000,371022380000,373690880000,376781140000,380150790000,385163220000,386290200000,389323411000,392440561000,396220282000,399012801000,401623571000,404652270000,408972121000,410980981000,413809281000,418930721000,421059091000,423969101000,426009091000,429038332000,432107532000,435136312000,438290461000,441347571000,444368062000,448933011000,450938000000,453615880000,457059620000,459940880000,463116880000,466059671000,468968192000,473081752000,474606382000,477665843000,481055583000,483641623000,488166522000,489726002000,492814992000,495696812000,498611982000,502024852000,504634822000,509074532000,510935932000,513995842000,518195592000,519937103000,522520233000,525610743000,529923733000,531553082000,535119992000,537997282000,542103101000,544083910000,546693290000,550894181000,552511992000,555572831000,558428860000,561423260000,564370220000,568951690000,570241210000,573964150000,576902111000,578910901000,582990920000,584557621000,589083021000,591090382000,594061202000,596940852000,600119922000,602070402000,604949282000,608822332000,610408932000,613921771000,616052501000,619021791000,621808951000,624633652000,628111171000,630240182000,633040082000,637168371000,638757952000,642989211000,644431442000,647373692000,650281291000,653431761000,656370060000,659283571000,663959521000,665486431000,669956560000,671950670000,674876130000,678988361000,683071310000,683905460000,686935420000,691105229000,693210879000,696246869000,699265468000,703920459000,707124708000,710006189000,711569209000,716123518000,719034848000,722903979000,726119869000,728066278000,730079588000,733232988000,736288709000,739913399000,742504268000,746004388000,748613878000,751732778000,755003778000,757734668000,760791928000,765922518000,767902417000,769881866000,772886966000,776032176000,778916466000,781855016000,784791105000,787734595000,791065125000,794963744000,797001775000,799999365000,804949145000,806111964000,809964144000,812328725000,815418964000,818538804000,823013644000,824577153000,828018603000,830958923000,833813823000,837048284000,840022324000,843027713000,846228863000,850878633000,854028173000,855353903000,858382013000,863088104000,864472184000,867528453000,870676584000,874998973000,877009992000,879712422000,882735502000,887898052000,888976552000,892009382000,894944632000,900015032000,902896273000,903860763000,908867582000,909735252000,912975622000,917114082000,918594151000,922935081000,924587591000,927621591000,930914410000,933945280000,936531151000,940035501000,942985691000,945557621000,949994591000,952933090000,955992150000,957673220000,960581861000,963581971000,966912361000,970032212000,974021131000,975970411000,979061761000,981319192000,984972062000,989020442000,990069792000,993130002000,996104502000,999129882000,1001922952000,1004742752000,1007649371000,1010597392000,1013529322000,1017969862000,1019381832000,1022888712000,1025227992000,1028227843000,1033118282000,1035070632000,1036990571000,1041878591000,1042817691000,1046017550000,1048717640000,1051510660000,1055951379000,1057448960000,1060302360000,1064016710000,1067917000000,1069989070000,1071666941000,1075866482000,1078087842000,1080305912000,1084895852000,1085945402000,1090027672000,1091585682000,1094855201000,1097314732000,1100168532000,1102955302000,1107035381000,1108717121000,1112916692000,1116063662000,1118975162000,1120293342000,1123148742000,1126023642000,1128727630000,1131636891000,1134573170000,1137399070000,1142072610000,1143165830000,1147922410000,1148857049000,1151707570000,1154611780000,1157433080000,1160381131000,1163379131000,1166221801000,1169104051000,1171951271000,1174921131000,1177831021000,1180418902000,1183350322000,1186141802000,1188989812000,1191750362000,1194580222000,1199010942000,1201019722000,1202879521000,1205549732000,1208882542000,1211099312000,1213893672000,1217099082000,1220977674000,1223912193000,1224838073000,1227511563000,1230328123000,1233117573000,1235949773000,1238637852000,1241939043000,1244877152000,1247097773000,1250998382000,1252356892000,1261048192000,1282917711000,1285978091000,1288917561000,1291022202000,1293245521000,1296063652000,1299099232000,1302028981000,1306949101000,1309947341000,1310973461000,1313972751000,1316789992000,1319787502000,1322697712000,1326868162000,1328879922000,1332027292000,1334366351000,1337305961000,1340281921000,1343155961000,1347836781000,1349127970000,1352194641000,1355966879000,1358192529000,1361249829000,1364274920000,1369045850000,1370129119000,1373304178000,1376277699000,1379246028000,1382995008000,1385137918000,1390015979000,1392954379000,1394012488000,1396980168000,1402074067000,1402918566000,1405885926000,1408945386000,1411942426000,1414889707000,1419922076000,1421001977000,1424841877000,1426737726000,1429973446000,1432912877000,1435612216000,1439990555000,1441942315000,1446051636000,1447490326000,1450287206000,1454000386000,1456253286000,1459220996000,1463989987000,1465159377000,1468189546000,1471099776000,1475929696000,1478869976000,1481089005000,1482979836000,1485918845000,1488985845000,1491980466000,1494888505000,1497768216000,1502059484000,1503917874000,1506622874000,1511087994000,1512476084000,1515438013000,1518496863000,1521288323000,1525848423000,1527256402000,1530079702000,1533106693000,1536887153000,1538995224000,1542046283000,1544932842000,1547897182000,1550805053000,1553867622000,1556665452000,1559986120000,1562505280000,1565444420000,1568294301000,1571087882000,1575046692000,1576936401000,1579514182000,1582363611000,1585124362000,1587973681000,1590799412000,1593583341000,1596373502000,1599193202000,1603992821000,1605944591000,1607746372000,1610622221000,1614911961000,1616213912000,1619054771000,1621842412000,1625921762000,1629071642000,1630962432000,1633872162000,1635910752000,1638674731000,1641970981000,1644910910000,1647133040000,1649980252000,1652711511000,1655350171000,1658054901000,1660720070000,1663539601000,1666240361000,1668970982000,1672902481000,1674433541000,1677132132000,1679890180000,1682922160000,1685259551000,1688018841000,1690842671000,1693298891000,1695998830000,1698910350000,1701376020000,1704067979000,1706797549000,1709378609000,1712978338000,1715918060000,1717544840000,1720268830000,1722937310000,1726986370000,1728907150000,1731966530000,1734006580000,1737818801000,1739346331000,1742077821000,1744848661000,1747541661000,1750235641000,1753956351000,1756806400000,1758366790000,1761066470000,1763946070000,1767005060000,1769045340000,1771684770000,1775825240000,1777144200000,1779783979000,1782514229000,1785874668000,1787917499000,1790556298000,1793825858000,1797003388000,1798653068000,1801923958000,1803934598000,1806602508000,1809331977000,1812846958000,1814702398000,1818933828000,1820911888000,1822713588000,1825351838000,1828175868000,1831982328000,1833602338000,1836155838000,1838881108000,1842812448000,1844108887000,1846830238000,1849860858000,1852079869000,1854789129000,1858862808000,1860059958000,1862641198000,1865222948000,1867889027000,1870349407000,1873055807000,1875659196000,1878208536000,1880674745000,1884961676000,1886909396000,1890030586000,1891198495000,1893811145000,1896391375000,1899057984000,1901757484000,1905867564000,1907999534000,1909633904000,1912363444000,1914987293000,1917573004000,1920208843000,1922846243000,1925818102000,1928941542000,1930597812000,1934817092000,1935871633000,1939975932000,1942885701000,1943855661000,1946995571000,1949098331000,1951737332000,1954494692000,1957346632000,1960945821000,1963166561000,1967034401000,1968654902000,1971514981000,1975043611000,1977923952000,1980896311000,1982754341000,1985578841000,1989893502000,1991873262000,1993884902000,1996945262000,2000905823000,2001958712000,2005193862000,2007445593000,2010172553000,2014012903000,2015723243000,2019921903000,2022021764000,2023975384000,2027842765000,2029259065000,2033006284000,2034920995000,2037801216000,2039903556000,2042605406000,2045212496000,2048932816000,2051900156000,2053283586000,2055892916000,2058820817000,2063000947000,2064888927000,2067800336000,2070979836000,2073890256000,2075783056000,2078091336000,2080939507000,2083853057000,2086280266000,2088888386000,2092908046000,2094292068000,2097949387000,2100863028000,2102392098000,2105207448000,2107907509000,2110938049000,2113517059000,2116014769000,2118838109000,2122906630000,2124316480000,2128253570000,2129926710000,2132362940000,2136047269000,2138235810000,2141055009000,2143996439000,2146793669000,2149905289000,2152634598000,2155462508000,2158846159000,2161244488000,2164132839000,2167070249000,2169916918000,2172914049000,2175617940000,2178554020000,2181464650000,2184313920000,2187793320000,2191934201000,2193888111000,2195653051000,2198482451000,2201863832000,2204210330000,2208884711000,2209992530000,2212903520000,2215814821000,2218391261000,2221901350000,2226012100000,2227872580000,2229765650000,2232613050000,2236006240000,2238073819000,2241010958000,2245150238000,2246625558000,2249440288000,2254004817000,2255049998000,2257779778000,2261979998000,2263539398000,2267830498000,2269125278000,2271938548000,2274758418000,2278839468000,2280428098000,2283201388000,2286157649000,2288952999000,2291740088000,2294587769000,2297511028000,2301007878000,2303110388000,2305930238000,2308629329000,2313037388000,2315916718000,2317057438000,2319936028000,2323069248000,2326176958000,2329116038000,2332056108000,2336855648000,2338956038000,2340965688000,2344835278000,2347986078000,2349758268000,2352784388000,2355608849000,2358878968000,2361490418000,2364425288000,2367544528000,2370334358000,2374983927000,2377865118000,2379273638000,2382261138000,2386924788000,2389834678000,2392982818000,2393912368000,2396862707000,2399796268000,2402707558000,2405650768000,2408587668000,2411553238000,2414435348000,2417402049000,2420343698000,2423371608000,2428265306000,2429191636000,2432131126000,2435881716000,2437861265000,2441975035000,2443386035000,2446208975000,2449147085000,2452860955000,2455949795000,2458980545000,2460960935000,2463786486000,2466839986000,2469628836000,2472544046000,2476768866000,2479948116000,2481958466000,2484508276000,2487336286000,2490272246000,2493328176000,2496212066000,2499150646000,2503828366000,2505387605000,2509829956000,2517537116000,2553869787000,2557046166000,2559897677000,2563829048000,2566891137000,2570906648000,2573907008000,2576998698000,2578827679000,2582965369000,2584354559000,2587525649000,2590563208000,2593946038000,2598775278000,2600994608000,2604865228000,2607777208000,2609964008000,2613865208000,2615756698000,2618581048000,2623824748000,2624903137000,2627962637000,2631003198000,2634029307000,2638823996000,2641887057000,2643175697000,2646233827000,2649382518000,2652569487000,2655603076000,2659046347000,2661741637000,2664804456000,2667892177000,2671885597000,2674108887000,2677164607000,2680310857000,2683403636000,2687935817000,2689820297000,2692730016000,2695790356000,2698849476000,2704010706000,2704940586000,2708088766000,2711839316000,2714209786000,2717933716000,2720508146000,2724979596000,2726698005000,2729693296000,2732809926000,2735873306000,2740787546000,2742917686000,2744666436000,2747838475000,2751046585000,2754858784000,2757767865000,2760947416000,2763230775000,2765302395000,2768206654000,2771956815000,2774930665000,2777807085000,2779945524000,2784859294000,2786866094000,2789895043000,2792955755000,2795895705000,2797997575000,2800574605000,2803518454000,2807028424000,2809933524000,2813833925000,2815904685000,2818515875000,2822804215000,2824573555000,2827489396000,2831833385000,2834892845000,2836392476000,2839274986000,2842962827000,2845906667000,2848157787000,2852955216000,2854962698000,2857844247000,2859888118000,2862762397000,2865943408000,2869812818000,2872960887000,2874617618000,2877760628000,2880463227000,2883557277000,2886550357000,2890930017000,2892880757000,2896779727000,2898395556000,2901341446000,2904417656000,2907192877000,2910130506000,2913161726000,2917989086000,2918919826000,2921984736000,2924773086000,2928908247000,2930861207000,2933889556000,2936155816000,2939947546000,2941867116000,2945888267000,2947839386000,2951947356000,2953121746000,2955938606000,2958791376000,2961696705000,2964490525000,2967756396000,2970396276000,2973851376000,2975983726000,2978859826000,2982875456000,2984915366000,2987382636000,2991905135000,2993110125000,2996824785000,2998748034000,3001536384000,3004354683000,3007029994000,3011825863000,3013863773000,3015573633000,3018484333000,3021222462000,3025804342000,3027874301000,3029659601000,3032915071000,3036903762000,3038912961000,3040896252000,3043832362000,3047914071000,3049562892000,3054003582000,3056945043000,3058862553000,3061897393000,3062821803000,3063643802000,3067831143000,3070772834000,3072060884000,3074911753000,3078870743000,3080851071000,3083346532000,3086971802000,3089882472000,3092794923000,3094559453000,3097469873000,3100292512000,3103230214000,3106894634000,3109799074000,3111574394000,3114268694000,3117869843000,3120928253000,3123868493000,3126779253000,3128787522000,3130533883000,3134877623000,3135927862000,3138747932000,3142948532000,3144841961000,3146584131000,3149188850000,3151857050000,3154556540000,3158877490000,3159841890000,3166737030000],\"hr_max\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"driveenergy\":[0.0,558.1261066500001,597.8750828400001,620.7338499600006,600.2955499800005,628.4318124000006,627.2218965600005,597.0934670400005,587.8284602400004,623.4243876000005,603.4455252000006,592.2995568000006,590.9905092000006,574.6019958000005,592.2360108000005,611.4904488000005,625.3174229400006,613.3561593600006,577.0230984000004,610.7660244000006,631.0066963200007,641.8076099400006,595.5512056200006,637.9408358400005,586.9076787000006,595.7056224000006,609.2599842000006,607.0333323600006,605.3214031200005,606.5624565000005,615.8865610800004,615.9094376400006,627.2257093200006,575.9555256000004,626.5889784000005,605.8450221600007,592.0758748800006,612.0496536000005,600.5916743400005,635.8285668000005,614.8189882800006,646.2628200000006,609.7238700000007,610.9312440000006,608.2724793600007,625.7463584400007,604.2233282400006,645.6654876000006,645.6521429400005,657.8942798400006,625.1706316800006,635.4574581600006,620.2845797400006,602.7541447200006,607.7666532000006,636.6546648000007,610.2932421600005,615.8865610800005,624.6991203600006,624.0674731200006,613.8950294400006,640.5538473600006,608.2762921200006,667.8125395200007,613.3942869600006,605.6772607200006,614.4453378000006,636.6800832000007,629.5807240800007,650.1403969200007,615.5624764800006,631.5614529000006,621.4137921600006,612.0496536000005,612.7734425400006,636.6680094600005,611.2616832000007,653.9226548400006,616.9922614800006,641.7059363400006,568.8695111400006,605.0437071000006,617.6486916600004,599.2019233200006,625.8798050400005,606.5948649600006,630.8020782000006,669.9839063400007,601.9852381200005,622.8137105400006,702.3561451200006,544.4379805200006,483.6034883400005,491.6662048200004,508.3889701800006,535.6876963200006,663.3516103200005,616.4877062400005,653.1715411200005,596.4662680200004,651.3109142400007,598.3872636000004,623.4167620800006,649.4941341000007,649.4858731200006,593.2057227600006,655.2418698000006,584.1364376400006,607.1667789600007,620.9206752000006,598.9750641000005,609.5891524800005,614.0322888000005,669.0326227200006,660.9699062400006,653.3774301600006,672.1273129200007,657.8497976400007,673.9676050800007,699.0123546000007,650.4663879000005,649.8086868000006,652.7140099200006,626.3888085000007,656.5992123600007,626.4110496000004,637.3663800000005,641.1219486000006,650.8000044000005,643.0677271200005,643.6777687200005,620.0462822400006,619.4781810000006,622.6516682400006,619.9643079000007,648.8745606000007,619.9344412800006,638.6373000000006,657.6286575600006,618.9818867400007,624.6571800000005,650.0603289600007,645.6521429400005,643.0448505600006,638.5254590400006,645.3318711000005,625.2697634400007,639.2727600000005,634.1738289600006,661.0690380000005,611.6124571200007,631.4693112000007,649.3333627200007,648.7906798800005,641.1346578000007,665.6697684000006,634.5029972400006,666.9750032400007,636.5021544000006,663.5848241400007,641.8146000000007,672.7437091200006,654.6261090600007,622.9522408200006,667.5056123400005,625.9026816000006,695.0610643200007,631.1547585000008,662.3984203200007,677.4232365600008,637.3536708000006,633.8236905000006,663.7278026400006,631.3727212800006,672.1705242000006,669.5842020000006,654.5422283400006,628.9071364800008,668.2116084000006,632.4574515000006,633.2333481600006,645.6680294400006,682.2330333000006,617.7757836600006,614.3118912000006,630.1805983200006,634.1534942400006,615.9068958000006,629.8145733600006,643.5303420000007,622.5970186800006,629.4866760000006,627.6514675200007,620.7338499600006,625.7908406400005,620.6347182000006,608.0843832000005,655.2660172800005,636.2683051200006,631.1185372800005,633.6178014600006,646.2386725200005,624.3813903600008,645.6273600000005,632.8133091000007,615.1043098200007,648.8478712800006,587.8005000000006,646.3085731200005,655.9548559200006,651.3121851600006,651.9978465000006,646.7661043200006,666.3052284000007,647.3240382000006,635.8781326800007,661.6473066000007,611.3582731200006,630.9622141200007,638.2598367600006,694.7687527200006,611.6493138000005,610.8028810800006,625.3231420800006,620.9206752000007,624.6457417200005,602.6829732000004,625.9598730000005,626.5718209800006,605.1879565200007,624.0318873600006,637.1948058000006,666.1851264600007,633.4976995200007,600.0362823000005,608.1072597600004,624.6838693200006,641.7230937600006,620.8126470000007,647.4752776800005,639.5345695200007,662.3050077000005,617.6175541200005,639.8459449200006,651.4380062400007,638.4682676400005,651.3465000000007,659.8140045000006,638.9423208000006,656.5458337200006,651.8599516800006,660.3687610800006,644.9334376800007,671.5414188000007,657.1978156800006,628.1077278000006,666.9661068000007,646.8982800000006,676.7744319000006,663.6204099000007,666.7119228000007,656.7860376000007,645.2143110000007,641.6684442000006,649.4884149600007,657.9705350400006,648.0738810000007,649.7133678000007,658.8957648000006,662.0635329000007,648.1615744800007,636.1094401200006,668.7276019200007,655.5278268000005,651.8834637000007,677.4283202400006,666.3255631200007,635.1797621400007,658.5017796000005,657.7621041600005,633.1736149200007,644.3469081000005,617.5247769600006,657.8599650000007,651.9266749800007,612.1551399600005,627.9730102800005,634.1128248000007,643.0982292000008,650.6779960800005,676.1205435600006,659.2262040000007,625.9624148400005,625.9446219600006,595.3434102000006,613.9465017000006,613.3434501600007,616.4146283400006,636.6400492200006,663.6966651000007,642.3534700800006,648.1558553400006,628.4292705600006,634.9255781400007,634.0238604000006,639.1158013800006,614.7897571200006,594.6628325400005,578.7286730400004,617.5622691000005,607.8378247200005,624.3521592000005,604.5702894000005,626.0602756800006,640.3244463000005,631.4902813800005,634.7546394000008,608.9168358000004,611.4091099200007,630.7258230000006,633.2041170000006,649.5163752000007,632.2598234400007,628.4191032000007,584.6931006000005,618.0051847200006,643.7209800000005,605.3137776000005,599.5374462000004,593.4027153600006,611.4904488000005,608.9079393600006,609.5001880800005,619.4781810000007,586.4800141200006,627.1990200000005,590.5259879400006,595.7056224000006,609.2917572000007,630.2028394200006,619.2595827600005,628.7241240000006,621.6933945600006,631.4858331600004,609.8763804000006,635.1797621400007,628.8671025000006,619.8708952800007,602.2622986800005,591.1303104000006,625.6967925600006,615.8884674600006,637.2685191600007,616.2589406400007,618.9024542400006,634.7978506800007,622.7228397600006,608.7433552200005,606.3813504000004,640.4292972000005,606.2847604800006,607.2729007800007,610.5054858000005,596.8361057400007,615.1125708000005,631.8404198400005,613.6713475200006,678.1959559200006,625.8645540000005,585.5738481600006,605.4967900800004,603.0159542400006,603.9030564000007,599.9091903000005,601.7246995200006,637.8614033400006,610.8073293000007,651.4456317600005,595.4654185200004,619.6599225600006,596.6969400000006,624.5504227200006,611.6493138000005,616.8143326800006,610.7012074800006,595.3167208800004,578.0881293600006,605.9441539200004,574.7240041200006,585.1055141400005,613.0918080000006,630.9355248000005,591.9119262000006,628.1674610400006,610.8028810800006,605.2470543000006,597.2180172000006,638.8489081800005,606.5643628800005,609.6654076800005,589.6763779200007,609.9596256600006,626.3652964800007,639.2270068800007,625.2818371800006,641.1562634400007,624.7029331200005,619.6599225600006,627.7938105600007,630.9838197600006,659.6068445400005,543.2306065200005,400.7090022600004,409.4141688000005,455.7697048800004,567.0184161600006,654.9292234800005,609.0655334400005,598.4501741400005,618.8261990400006,589.0663363200006,576.8782135200005,622.1585512800004,572.7909348000006,595.8937185600005,584.1758361600005,601.1102097000005,579.4912250400005,638.0018400000006,567.4530708000005,560.9027491200006,619.5201213600006,584.0385768000006,571.9140000000006,577.4177190600005,597.8903338800006,613.2189000000005,598.1076612000004,597.2040370800005,599.0303491200006,619.0428909000005,584.8614975000005,607.3440723000006,609.2917572000005,580.1190595200006,607.4101601400005,568.1679633000005,585.9907099200005,601.2722520000004,583.2455227200005,582.3558787200005,580.1114340000006,573.9627230400006,580.4596660800006,598.2792354000004,575.1853480800005,584.5494866400004,565.6788664800005,588.1029789600005,573.5897080200006,569.4458733600004,609.6158418000006,580.2353487000006,580.3065202200005,599.4878803200006,579.4060734000004,601.6357351200005,622.4483210400005,627.0312585600007,604.8257443200006,603.6209121600007,609.0102484200004,612.1195542000005,584.0233257600006,614.6550396000006,599.6022631200003,576.0622828800006,603.6545915400005,604.6732339200006,610.5054858000005,597.5071515000004,614.6270793600005,589.6242702000005,623.4396386400005,586.9909239600006,599.4039996000005,606.7397498400005,618.5821824000005,633.1736149200007,590.3410690800005,598.1210058600007,613.8321189000006,615.8776646400006,572.0525302800005,605.8984008000006,608.3296707600006,615.1449792600006,620.8711093200005,603.7765998600006,596.2749945600006,604.4368428000006,604.9267824600005,604.7895231000005,615.5624764800006,595.2080572200005,630.6381295200007,646.1560627200006,632.2407596400008,601.3281724800005,609.5573794800006,632.8895643000004,623.6760297600005,620.4123072000006,620.0462822400006,614.9517994200005,599.2019233200006,631.5760684800006,618.7092744000006,623.6436213000005,620.1759160800007,613.3777650000006,612.1640364000007,590.2501983000006,589.5670788000004,618.9380400000005,599.5374462000004,612.1386180000004,598.2792354000004,615.2822386200005,606.5548309800005,604.0816206600005,607.7304319800006,593.8843940400005,604.3574103000007,661.7769404400005,606.9952047600005,620.2979244000006,655.9415112600005,630.0789247200005,636.6070053000005,654.6610593600006,602.7083916000006,612.9329430000005,588.1309392000006,595.8022123200006,591.1112466000005,608.4790038600006,616.6491130800006,603.0159542400006,597.0807578400006,619.5391851600006,602.9841812400006,607.2354086400005,607.8378247200005,603.2142177600006,612.0108905400007,601.9077120000005,601.9077120000005,626.8126603200005,634.1890800000006,603.8039246400006,592.4113977600006,587.5996946400005,615.6196678800006,606.7397498400005,617.7281241600007,606.2847604800006,587.8475240400005,601.3802802000007,633.4849903200006,634.0467369600005,640.5131779200005,608.0341818600008,638.2903388400007,644.8546406400005,639.1869729000005,632.8571558400006,612.5599279800006,612.3921665400006,593.0366904000007,644.3875775400007,637.9942144800006,606.4220198400005,624.0731922600005,612.7124383800005,661.5138600000006,609.8986215000007,629.1111191400005,642.4678528800006,607.1019620400006,630.3095967000006,622.1585512800006,637.1503236000005,595.2576231000005,619.6027311600005,596.1739564200005,589.1616553200006,604.3529620800006,572.8481262000005,580.3401996000005,603.3311424000007,573.6939234600004,590.3010351000005,613.4006415600005,599.1371064000004,602.7941787000007,584.1402504000005,629.1212865000005,650.1581898000006,657.2391205800006,626.9321268000007,661.7616894000006,617.8272559200005,648.8732896800007,681.6395136600006,628.3898720400006,643.7209800000005,645.0007964400007,679.5100872000007,624.0573057600004,639.2270068800005,641.6468385600006,637.2342043200006,650.1022693200006,606.0305764800006,604.2233282400006,631.0117800000006,618.3991699200005,628.4051230800006,630.3706008600005,643.0925100600006,597.9297324000005,630.3858519000006,619.5735000000004,627.8414700600006,620.1930735000004,631.6504173000005,624.7016622000006,639.2683117800005,622.0123954800006,618.2009064000005,639.2556025800006,623.2261240800005,623.4243876000005,626.5889784000005,627.1418286000006,595.9229497200006,634.7978506800006,609.5395866000006,634.8207272400007,637.3663800000005,604.9267824600004,611.9479800000005,550.0859490000005,605.0945439000005,559.2048000000004,559.2804197400005,597.2936369400007,607.3091220000007,623.9486421000006,624.6457417200007,624.5300880000005,630.6978627600005,613.5684030000007,629.2375756800005,636.5885769600005,625.8937851600006,594.5713263000005,588.1309392000006,620.2902988800006,610.2798975000005,575.8538520000005,622.1814278400005,636.7213881000007,625.2926400000006,629.0984099400007,617.5622691000005,613.0625768400007,626.9842345200005,590.8125804000005,623.5749916200007,621.3845610000005,605.0024022000005,604.6319290200005,614.3118912000006,588.4359600000005,613.2405056400005,611.2057627200005,631.5760684800006,609.6037680600004,607.7984262000007,649.4534646600007,614.6054737200006,624.0706504200006,651.3617510400007,614.9219328000006,627.6031725600006,607.5823698000005,630.7258230000006,626.7453015600005,624.1119553200006,630.5733126000005,624.9361469400006,606.5948649600006,644.3361052800007,629.0806170600006,603.3807082800005,656.3094426000005,638.6411127600006,659.1893473200006,651.3757311600006,642.3356772000005,637.6383568800005,635.8285668000005,639.1710864000006,634.0651653000004,640.5532119000004,636.0687706800006,661.5138600000006,553.6470668400005,591.3781398000004,554.5862767200005,580.3065202200006,566.7470747400006,566.7667740000006,558.4918138800006,572.4230034600005,562.3083866400005,571.2785400000005,577.1673478200005,591.9233644800006,552.5623366200005,589.7005254000005,577.6916023200005,571.3420860000006,576.3024867600003,579.3660394200006,578.6053938000006,563.1599030400005,579.3615912000005,600.2809344000005,597.2307264000007,583.3649892000005,611.4504148200006,579.2205190800005,588.0229110000006,591.5687778000007,620.0462822400006,579.6208588800005,629.6379154800007,613.1197682400006,643.7286055200004,624.9971511000008,621.1907457000005,626.9321268000007,620.7554556000007,630.3706008600006,636.0382686000006,639.8967817200006,633.5472654000006,613.8950294400006,606.9913920000005,608.9263677000007,599.7617635800004,629.6963778000006,617.4256452000008,585.1023368400006,583.4730174000005,584.0754334800006,635.0939750400006,599.7318969600005,602.6181562800006,574.1673411600005,622.0861088400005,612.0661755600006,589.2957373800006,572.5481890800005,597.0934670400005,587.2590880800004,585.4937802000004,589.6604914200007,612.8605005600006,577.7703993600005,627.1100556000006,575.2094955600006,574.5162087000004,609.3794506800006,589.3001856000006,587.3906283000006,599.5132987200005,607.1286513600004,594.6316950000006,597.1354074000005,593.9040933000006,599.5374462000004,583.8098112000005,582.6678895800005,602.1911271600004,607.7914361400005,589.0256668800006,608.4211770000004,618.4144209600006,609.6031326000005,593.6772340800004,597.5789584800006,603.9907498800006,629.6696884800006,601.1788393800006,624.6673473600006,605.5933800000006,624.6330325200006,617.0125962000006,609.5173455000005,608.7795764400006,630.1323033600005,636.5256664200007,603.4734854400007,616.3097774400005,602.6181562800004,657.8942798400006,639.0725901000005,588.8934912000005,636.4239928200006,610.6084303200006,648.7754288400006,596.4872382000007,635.9963282400006,625.6967925600006,599.0741958600005,649.2367728000006,618.3991699200005,599.9428696800005,614.5787844000006,615.8141186400006,637.9884953400007,596.6740634400005,647.5451782800005,638.9982412800007,642.3166134000006,606.7905866400006,621.1271997000006,641.7790142400006,632.8571558400006,582.8693304000006,582.2828008200005,568.8676047600006,656.3083835000006,219.05068752000017,129.81621702000015,70.91775964000009,144.83404320000017,313.5550278000003,739.0823440000006,673.3893364800007,594.3845010600006,619.9929036000005,635.9010092400005,611.1231529200005,590.6842174800006,628.0429108800006,630.8249547600005,665.5045488000006,633.5091378000006,612.3711963600006,599.6162432400006,632.4911308800007,649.4858731200006,624.1500829200006,634.7088862800005,615.5002014000006,608.4402408000005,606.4626892800005,668.2548196800005,643.7769004800006,606.4626892800005,610.4381270400005,596.4414850800006,607.1153067000006,582.0597543600006,603.3921465600006,609.3514904400006,596.5317204000006,634.8169144800006,622.5601620000007,624.4614583200007,634.8245400000005,588.8426544000005,648.7220502000005,585.8038846800005,595.1051127000006,624.5084823600006,595.9375653000005,623.2261240800005,633.4023805200006,652.7063844000006,621.2765328000005,616.2030201600006,618.8827549800005,625.2697634400007,639.8891562000007,643.6637886000007,655.0702956000006,613.8619855200005,667.5894930600007,647.3736040800004,623.0564562600006,631.0022481000008,655.0702956000006,641.6010854400006,644.8330350000007,651.4380062400007,614.1466716000006,628.2221106000006,618.5110108800006,626.9321268000007,631.4693112000006,634.0651653000004,633.9355314600008,650.6951535000006,635.9963282400005,630.9037518000006,610.9312440000006,631.9357388400006,629.3405202000006,635.1797621400007,635.3964540000004,637.2151405200005,644.9919000000007,619.1197815600005,616.8715240800007,606.2847604800006,604.5702894000005,609.5739014400006,595.6103034000005,607.4711643000006,612.3597580800005,657.2435688000006,639.8319648000006,655.9472304000006,637.1503236000005,642.4335380400007,611.7192144000005,602.8736112000006,644.3869420800005,611.4942615600005,643.0855200000005,597.8528417400006,607.1159421600006,599.1377418600006,588.1029789600005,609.7238700000005,592.0657075200005,606.8643000000004,561.5343963600005,663.8968350000005,662.7275886000007,571.3783072200005,605.9365284000006,586.7837640000006,596.6206848000006,608.7706800000005,646.2246924000005,628.1954212800006,655.2990612000006,621.0585700200006,629.4866760000006,658.5113115000006,639.7430004000007,648.1920765600006,644.8749753600007,658.5017796000005,635.8539852000005,653.3462926200006,645.6623103000005,624.5872794000004,640.5513055200006,627.7804659000004,680.7072938400006,630.8249547600005,643.6637886000005,647.4180862800007,654.6508920000006,655.9516786200006,649.3333627200005,648.0268569600005,626.5845301800006,651.9463742400006,653.3259579000005,645.6521429400005,679.4338320000006,643.5951589200006,641.7669405000005,642.4500600000005,621.1907457000005,615.2828740800005,667.5990249600005,680.4130758600006,645.5911387800007,664.2615890400004,635.3964540000005,655.3079576400006,654.0141610800007,649.4858731200006,638.6220489600006,652.7254482000008,676.0252245600007,666.2766327000005,635.9531169600006,639.5943027600006,617.7471879600007,672.7595956200005,599.3042323800006,625.7908406400005,623.9105145000005,619.5735000000006,619.4997866400006,575.6574948600006,615.8471625600006,617.7471879600007,643.6320156000005,631.9929302400006,644.3361052800007,648.1412397600005,620.6347182000006,633.4849903200004,627.0528642000006,641.8298510400007,636.7004179200006,650.1556479600006,642.4614982800007,627.2257093200005,642.4564146000005,629.0577405000007,606.3851631600006,641.6678087400005,644.0800149000006,644.7605925600005,653.3259579000007,634.5309574800006,645.0084219600005,660.4844148000008,647.5070506800006,651.3998786400007,666.8796842400006,634.7546394000008,661.0811117400008,657.1978156800005,647.3736040800004,670.2323712000006,684.4889163000005,620.6347182000006,621.2765328000005,680.1487245000006,660.2175216000006,698.2421770800007,645.5434792800006,652.3035027600006,574.8820218399997,393.4530022499996,68.57375951999988]}" \ No newline at end of file diff --git a/rowers/tests.py b/rowers/tests.py index ffa9b54e..f32736b1 100644 --- a/rowers/tests.py +++ b/rowers/tests.py @@ -330,13 +330,12 @@ class DataTest(TestCase): form = DocumentsForm(form_data,file_data) self.assertTrue(form.is_valid()) - + f.close() u = User.objects.get(username='john') r = Rower.objects.get(user=u) - rr = rrower(hrmax=r.max,hrut2=r.ut2, hrut1=r.ut1,hrat=r.at, hrtr=r.tr,hran=r.an,ftp=r.ftp) diff --git a/rowers/views.py b/rowers/views.py index 193f2398..8f90b2b8 100644 --- a/rowers/views.py +++ b/rowers/views.py @@ -49,7 +49,7 @@ from rowingdata import MysteryParser from rowingdata import painsledDesktopParser,speedcoachParser,ErgStickParser from rowingdata import SpeedCoach2Parser,FITParser,fitsummarydata from rowingdata import make_cumvalues -from rowingdata import summarydata,get_file_type +from rowingdata import summarydata,get_file_type,totimestamp import pandas as pd import numpy as np import matplotlib.pyplot as plt @@ -4456,6 +4456,18 @@ class JSONResponse(HttpResponse): kwargs['content_type'] = 'application/json' super(JSONResponse, self).__init__(content, **kwargs) +def trydf(df,aantal,column): + try: + s = df[column] + if len(s) != aantal: + return np.zeros(aantal) + if not np.issubdtype(s,np.number): + return np.zeros(aantal) + except KeyError: + s = np.zeros(aantal) + + return s + @login_required() def strokedatajson(request,id): try: @@ -4476,9 +4488,77 @@ def strokedatajson(request,id): return JSONResponse(datadf) if request.method == 'POST': + checkdata,r = dataprep.getrowdata_db(id=row.id) + if not checkdata.empty: + return "Not OK" strokedata = request.POST['strokedata'] # checking/validating and cleaning + try: + strokedata = json.loads(strokedata) + except: + return HttpResponse("Not OK") + try: + df = pd.DataFrame(strokedata) + # time, hr, pace, spm, power, drivelength, distance, drivespeed, dragfactor, strokerecoverytime, averagedriveforce, peakdriveforce, lapidx + time = df['time'] + aantal = len(time) + pace = df['pace'] + if len(pace) != aantal: + return "Not OK" + distance = df['distance'] + if len(distance) != aantal: + return "Not OK" + + spm = df['spm'] + if len(spm) != aantal: + return "Not OK" + + res = dataprep.testdata(time,distance,pace,spm) + if not res: + return HttpResponse("Not OK") + + power = trydf(df,aantal,'power') + drivelength = trydf(df,aantal,'drivelength') + drivespeed = trydf(df,aantal,'drivespeed') + dragfactor = trydf(df,aantal,'dragfactor') + drivetime = trydf(df,aantal,'drivetime') + strokerecoverytime = trydf(df,aantal,'strokerecoverytime') + averagedriveforce = trydf(df,aantal,'averagedriveforce') + peakdriveforce = trydf(df,aantal,'peakdriveforce') + lapidx = trydf(df,aantal,'lapidx') + hr = trydf(df,aantal,'hr') + + starttime = totimestamp(row.startdatetime)+time + unixtime = starttime+time + + data = DataFrame({'TimeStamp (sec)':unixtime, + ' Horizontal (meters)': distance, + ' Cadence (stokes/min)':spm, + ' HRCur (bpm)':hr, + ' DragFactor':dragfactor, + ' Stroke500mPace (sec/500m)':pace, + ' Power (watts)':power, + ' DriveLength (meters)':drivelength, + ' StrokeDistance (meters)':strokedistance, + ' DriveTime (ms)':drivetime, + ' StrokeRecoveryTime (ms)':strokerecoverytime, + ' AverageDriveForce (lbs)':averagedriveforce, + ' PeakDriveForce (lbs)':peakdriveforce, + ' lapIdx':lapidx, + ' ElapsedTime (sec)':time, + }) + + + timestr = time.strftime("%Y%m%d-%H%M%S") + csvfilename ='media/Import_'+timestr+'.csv' + + res = df.to_csv(csvfilename,index_label='index') + row.csvfilename = csvfilename + row.save() + + except: + return HttpResponse("Not OK") # mangling # From 70f4a187abf199b3a7f2f6ac06961fafa9b87569 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Sat, 26 Nov 2016 09:24:43 +0100 Subject: [PATCH 14/17] oauth working again (CORS allow all) --- rowers/#ownapistuff.py# | 279 +++++++++++++++++++++++++++++++++++++ rowers/.#ownapistuff.py | 1 + rowers/dataprep.py | 10 ++ rowers/ownapistuff.py | 279 +++++++++++++++++++++++++++++++++++++ rowers/tests.py | 40 +----- rowers/urls.py | 2 + rowers/views.py | 27 +++- rowsandall_app/settings.py | 2 +- 8 files changed, 603 insertions(+), 37 deletions(-) create mode 100644 rowers/#ownapistuff.py# create mode 100644 rowers/.#ownapistuff.py create mode 100644 rowers/ownapistuff.py diff --git a/rowers/#ownapistuff.py# b/rowers/#ownapistuff.py# new file mode 100644 index 00000000..528013b3 --- /dev/null +++ b/rowers/#ownapistuff.py# @@ -0,0 +1,279 @@ +# Python +import oauth2 as oauth +import cgi +import requests +import requests.auth +import json +from django.utils import timezone +from datetime import datetime +import numpy as np +from dateutil import parser +import time +import math +from math import sin,cos,atan2,sqrt + +import urllib +import c2stuff + +# Django +from django.shortcuts import render_to_response +from django.http import HttpResponseRedirect, HttpResponse,JsonResponse +from django.conf import settings +from django.contrib.auth import authenticate, login, logout +from django.contrib.auth.models import User +from django.contrib.auth.decorators import login_required + +# Project +# from .models import Profile +from rowingdata import rowingdata +import pandas as pd +from rowers.models import Rower,Workout + +from rowsandall_app.settings import C2_CLIENT_ID, C2_REDIRECT_URI, C2_CLIENT_SECRET, STRAVA_CLIENT_ID, STRAVA_REDIRECT_URI, STRAVA_CLIENT_SECRET, SPORTTRACKS_CLIENT_SECRET, SPORTTRACKS_CLIENT_ID, SPORTTRACKS_REDIRECT_URI + +TEST_CLIENT_ID = "LTqH0nUe8BySMEJgohJBoo1q4PV16xQJ8uF0XQPU" +TEST_CLIENT_SECRET = "HI4bM21rh7pTEXOwCAHLNe3SlLMgbksuzCOARSBbolbQyquZ5quNF8i9PiIaGumbBG4OHCJiQqZJh7Nez6aRiZFgO8POBRVkwCg1fLNk1oY5EJHtLiNrgWY0nbWWDedt" + +TEST_REDIRECT_URI = "http://localhost:8000/rowers/test_callback" + +def custom_exception_handler(exc,message): + + response = { + "errors": [ + { + "code": str(exc), + "detail": message, + } + ] + } + + res = HttpResponse(message) + res.status_code = 401 + res.json = json.dumps(response) + + return res + +def do_refresh_token(refreshtoken): + client_auth = requests.auth.HTTPBasicAuth(TEST_CLIENT_ID, TEST_CLIENT_SECRET) + post_data = {"grant_type": "refresh_token", + "client_secret": TEST_CLIENT_SECRET, + "client_id":TEST_CLIENT_ID, + "refresh_token": refreshtoken, + } + headers = {'user-agent': 'sanderroosendaal', + 'Accept': 'application/json', + 'Content-Type': 'application/json'} + + url = "http://localhost:8000/rowers/o/token" + + response = requests.post(url, + data=json.dumps(post_data), + headers=headers) + + token_json = response.json() + thetoken = token_json['access_token'] + expires_in = token_json['expires_in'] + try: + refresh_token = token_json['refresh_token'] + except KeyError: + refresh_token = refreshtoken + + return [thetoken,expires_in,refresh_token] + + +def get_token(code): + client_auth = requests.auth.HTTPBasicAuth(TEST_CLIENT_ID, TEST_CLIENT_SECRET) + post_data = {"grant_type": "authorization_code", + "code": code, + "redirect_uri": TEST_REDIRECT_URI, + "client_secret": TEST_CLIENT_SECRET, + "client_id":TEST_CLIENT_ID, + } + headers = {'Accept': 'application/json', + 'Content-Type': 'application/json'} + + url = "http://localhost:8000/rowers/o/token/" + + + response = requests.post(url, + data=json.dumps(post_data), + headers=headers) + print response + token_json = response.json() + thetoken = token_json['access_token'] + expires_in = token_json['expires_in'] + refresh_token = token_json['refresh_token'] + + return [thetoken,expires_in,refresh_token] + +def make_authorization_url(request): + # Generate a random string for the state parameter + # Save it for use later to prevent xsrf attacks + from uuid import uuid4 + state = str(uuid4()) + + params = {"client_id": TEST_CLIENT_ID, + "response_type": "code", + "redirect_uri": TEST_REDIRECT_URI, + "scope":"write", + "state":state} + + + import urllib + url = "http://localhost:8000/rowers/o/authorize" +urllib.urlencode(params) + + return HttpResponseRedirect(url) + + +def rower_ownapi_token_refresh(user): + r = Rower.objects.get(user=user) + res = do_refresh_token(r.ownapirefreshtoken) + access_token = res[0] + expires_in = res[1] + refresh_token = res[2] + expirydatetime = timezone.now()+timedelta(seconds=expires_in) + + r = Rower.objects.get(user=user) + r.ownapitoken = access_token + r.tokenexpirydate = expirydatetime + r.ownapirefreshtoken = refresh_token + + r.save() + return r.ownapitoken + +def get_ownapi_workout_list(user): + r = Rower.objects.get(user=user) + if (r.ownapitoken == '') or (r.ownapitoken is None): + s = "Token doesn't exist. Need to authorize" + return custom_exception_handler(401,s) + elif (timezone.now()>r.ownapitokenexpirydate): + s = "Token expired. Needs to refresh." + return custom_exception_handler(401,s) + else: + # ready to fetch. Hurray + authorizationstring = str('Bearer ' + r.ownapitoken) + headers = {'Authorization': authorizationstring, + 'user-agent': 'sanderroosendaal', + 'Content-Type': 'application/json'} + url = "https://api.ownapi.mobi/api/v2/fitnessActivities" + s = requests.get(url,headers=headers) + + return s + + +def get_ownapi_workout(user,ownapiid): + r = Rower.objects.get(user=user) + if (r.ownapitoken == '') or (r.ownapitoken is None): + return custom_exception_handler(401,s) + s = "Token doesn't exist. Need to authorize" + elif (timezone.now()>r.ownapitokenexpirydate): + s = "Token expired. Needs to refresh." + return custom_exception_handler(401,s) + else: + # ready to fetch. Hurray + authorizationstring = str('Bearer ' + r.ownapitoken) + headers = {'Authorization': authorizationstring, + 'user-agent': 'sanderroosendaal', + 'Content-Type': 'application/json'} + url = "https://api.ownapi.mobi/api/v2/fitnessActivities/"+str(ownapiid) + s = requests.get(url,headers=headers) + + return s + +def createownapiworkoutdata(w): + filename = w.csvfilename + row = rowingdata(filename) + averagehr = int(row.df[' HRCur (bpm)'].mean()) + maxhr = int(row.df[' HRCur (bpm)'].max()) + + # adding diff, trying to see if this is valid + t = row.df.ix[:,'TimeStamp (sec)'].values-10*row.df.ix[0,'TimeStamp (sec)'] + t[0] = t[1] + d = row.df.ix[:,'cum_dist'].values + d[0] = d[1] + t = t.astype(int) + d = d.astype(int) + spm = row.df[' Cadence (stokes/min)'].astype(int) + spm[0] = spm[1] + hr = row.df[' HRCur (bpm)'].astype(int) + + haslatlon=1 + + try: + lat = row.df[' latitude'].values + lon = row.df[' longitude'].values + except KeyError: + haslatlon = 0 + + haspower = 1 + try: + power = row.df[' Power (watts)'].values + except KeyError: + haspower = 0 + + locdata = [] + hrdata = [] + spmdata = [] + distancedata = [] + powerdata = [] + + for i in range(len(t)): + hrdata.append(t[i]) + hrdata.append(hr[i]) + distancedata.append(t[i]) + distancedata.append(d[i]) + spmdata.append(t[i]) + spmdata.append(spm[i]) + if haslatlon: + locdata.append(t[i]) + locdata.append([lat[i],lon[i]]) + if haspower: + powerdata.append(t[i]) + powerdata.append(power[i]) + + + if haslatlon: + data = { + "type": "Rowing", + "name": w.name, +# "start_time": str(w.date)+"T"+str(w.starttime)+"Z", + "start_time": w.startdatetime.isoformat(), + "total_distance": int(w.distance), + "duration": int(max(t)), + "notes": w.notes, + "avg_heartrate": averagehr, + "max_heartrate": maxhr, + "location": locdata, + "distance": distancedata, + "cadence": spmdata, + "heartrate": hrdata, + } + else: + data = { + "type": "Rowing", + "name": w.name, +# "start_time": str(w.date)+"T"+str(w.starttime)+"Z", + "start_time": w.startdatetime.isoformat(), + "total_distance": int(w.distance), + "duration": int(max(t)), + "notes": w.notes, + "avg_heartrate": averagehr, + "max_heartrate": maxhr, + "distance": distancedata, + "cadence": spmdata, + "heartrate": hrdata, + } + + if haspower: + data['power'] = powerdata + + return data + +def getidfromresponse(response): + t = json.loads(response.text) + uri = t['uris'][0] + id = uri[len(uri)-13:len(uri)-5] + + return int(id) + + diff --git a/rowers/.#ownapistuff.py b/rowers/.#ownapistuff.py new file mode 100644 index 00000000..d6b83c16 --- /dev/null +++ b/rowers/.#ownapistuff.py @@ -0,0 +1 @@ +E408191@CZ27LT9RCGN72.5176:1479844733 \ No newline at end of file diff --git a/rowers/dataprep.py b/rowers/dataprep.py index e5796b76..86573376 100644 --- a/rowers/dataprep.py +++ b/rowers/dataprep.py @@ -84,6 +84,16 @@ def rdata(file,rower=rrower()): return res +def delete_strokedata(id): + query = sa.text('DELETE FROM strokedata WHERE workoutid={id};'.format( + id=id, + )) + with engine.connect() as conn, conn.begin(): + try: + result = conn.execute(query) + except: + print "Database Locked" + def testdata(time,distance,pace,spm): t1 = np.issubdtype(time,np.number) t2 = np.issubdtype(distance,np.number) diff --git a/rowers/ownapistuff.py b/rowers/ownapistuff.py new file mode 100644 index 00000000..528013b3 --- /dev/null +++ b/rowers/ownapistuff.py @@ -0,0 +1,279 @@ +# Python +import oauth2 as oauth +import cgi +import requests +import requests.auth +import json +from django.utils import timezone +from datetime import datetime +import numpy as np +from dateutil import parser +import time +import math +from math import sin,cos,atan2,sqrt + +import urllib +import c2stuff + +# Django +from django.shortcuts import render_to_response +from django.http import HttpResponseRedirect, HttpResponse,JsonResponse +from django.conf import settings +from django.contrib.auth import authenticate, login, logout +from django.contrib.auth.models import User +from django.contrib.auth.decorators import login_required + +# Project +# from .models import Profile +from rowingdata import rowingdata +import pandas as pd +from rowers.models import Rower,Workout + +from rowsandall_app.settings import C2_CLIENT_ID, C2_REDIRECT_URI, C2_CLIENT_SECRET, STRAVA_CLIENT_ID, STRAVA_REDIRECT_URI, STRAVA_CLIENT_SECRET, SPORTTRACKS_CLIENT_SECRET, SPORTTRACKS_CLIENT_ID, SPORTTRACKS_REDIRECT_URI + +TEST_CLIENT_ID = "LTqH0nUe8BySMEJgohJBoo1q4PV16xQJ8uF0XQPU" +TEST_CLIENT_SECRET = "HI4bM21rh7pTEXOwCAHLNe3SlLMgbksuzCOARSBbolbQyquZ5quNF8i9PiIaGumbBG4OHCJiQqZJh7Nez6aRiZFgO8POBRVkwCg1fLNk1oY5EJHtLiNrgWY0nbWWDedt" + +TEST_REDIRECT_URI = "http://localhost:8000/rowers/test_callback" + +def custom_exception_handler(exc,message): + + response = { + "errors": [ + { + "code": str(exc), + "detail": message, + } + ] + } + + res = HttpResponse(message) + res.status_code = 401 + res.json = json.dumps(response) + + return res + +def do_refresh_token(refreshtoken): + client_auth = requests.auth.HTTPBasicAuth(TEST_CLIENT_ID, TEST_CLIENT_SECRET) + post_data = {"grant_type": "refresh_token", + "client_secret": TEST_CLIENT_SECRET, + "client_id":TEST_CLIENT_ID, + "refresh_token": refreshtoken, + } + headers = {'user-agent': 'sanderroosendaal', + 'Accept': 'application/json', + 'Content-Type': 'application/json'} + + url = "http://localhost:8000/rowers/o/token" + + response = requests.post(url, + data=json.dumps(post_data), + headers=headers) + + token_json = response.json() + thetoken = token_json['access_token'] + expires_in = token_json['expires_in'] + try: + refresh_token = token_json['refresh_token'] + except KeyError: + refresh_token = refreshtoken + + return [thetoken,expires_in,refresh_token] + + +def get_token(code): + client_auth = requests.auth.HTTPBasicAuth(TEST_CLIENT_ID, TEST_CLIENT_SECRET) + post_data = {"grant_type": "authorization_code", + "code": code, + "redirect_uri": TEST_REDIRECT_URI, + "client_secret": TEST_CLIENT_SECRET, + "client_id":TEST_CLIENT_ID, + } + headers = {'Accept': 'application/json', + 'Content-Type': 'application/json'} + + url = "http://localhost:8000/rowers/o/token/" + + + response = requests.post(url, + data=json.dumps(post_data), + headers=headers) + print response + token_json = response.json() + thetoken = token_json['access_token'] + expires_in = token_json['expires_in'] + refresh_token = token_json['refresh_token'] + + return [thetoken,expires_in,refresh_token] + +def make_authorization_url(request): + # Generate a random string for the state parameter + # Save it for use later to prevent xsrf attacks + from uuid import uuid4 + state = str(uuid4()) + + params = {"client_id": TEST_CLIENT_ID, + "response_type": "code", + "redirect_uri": TEST_REDIRECT_URI, + "scope":"write", + "state":state} + + + import urllib + url = "http://localhost:8000/rowers/o/authorize" +urllib.urlencode(params) + + return HttpResponseRedirect(url) + + +def rower_ownapi_token_refresh(user): + r = Rower.objects.get(user=user) + res = do_refresh_token(r.ownapirefreshtoken) + access_token = res[0] + expires_in = res[1] + refresh_token = res[2] + expirydatetime = timezone.now()+timedelta(seconds=expires_in) + + r = Rower.objects.get(user=user) + r.ownapitoken = access_token + r.tokenexpirydate = expirydatetime + r.ownapirefreshtoken = refresh_token + + r.save() + return r.ownapitoken + +def get_ownapi_workout_list(user): + r = Rower.objects.get(user=user) + if (r.ownapitoken == '') or (r.ownapitoken is None): + s = "Token doesn't exist. Need to authorize" + return custom_exception_handler(401,s) + elif (timezone.now()>r.ownapitokenexpirydate): + s = "Token expired. Needs to refresh." + return custom_exception_handler(401,s) + else: + # ready to fetch. Hurray + authorizationstring = str('Bearer ' + r.ownapitoken) + headers = {'Authorization': authorizationstring, + 'user-agent': 'sanderroosendaal', + 'Content-Type': 'application/json'} + url = "https://api.ownapi.mobi/api/v2/fitnessActivities" + s = requests.get(url,headers=headers) + + return s + + +def get_ownapi_workout(user,ownapiid): + r = Rower.objects.get(user=user) + if (r.ownapitoken == '') or (r.ownapitoken is None): + return custom_exception_handler(401,s) + s = "Token doesn't exist. Need to authorize" + elif (timezone.now()>r.ownapitokenexpirydate): + s = "Token expired. Needs to refresh." + return custom_exception_handler(401,s) + else: + # ready to fetch. Hurray + authorizationstring = str('Bearer ' + r.ownapitoken) + headers = {'Authorization': authorizationstring, + 'user-agent': 'sanderroosendaal', + 'Content-Type': 'application/json'} + url = "https://api.ownapi.mobi/api/v2/fitnessActivities/"+str(ownapiid) + s = requests.get(url,headers=headers) + + return s + +def createownapiworkoutdata(w): + filename = w.csvfilename + row = rowingdata(filename) + averagehr = int(row.df[' HRCur (bpm)'].mean()) + maxhr = int(row.df[' HRCur (bpm)'].max()) + + # adding diff, trying to see if this is valid + t = row.df.ix[:,'TimeStamp (sec)'].values-10*row.df.ix[0,'TimeStamp (sec)'] + t[0] = t[1] + d = row.df.ix[:,'cum_dist'].values + d[0] = d[1] + t = t.astype(int) + d = d.astype(int) + spm = row.df[' Cadence (stokes/min)'].astype(int) + spm[0] = spm[1] + hr = row.df[' HRCur (bpm)'].astype(int) + + haslatlon=1 + + try: + lat = row.df[' latitude'].values + lon = row.df[' longitude'].values + except KeyError: + haslatlon = 0 + + haspower = 1 + try: + power = row.df[' Power (watts)'].values + except KeyError: + haspower = 0 + + locdata = [] + hrdata = [] + spmdata = [] + distancedata = [] + powerdata = [] + + for i in range(len(t)): + hrdata.append(t[i]) + hrdata.append(hr[i]) + distancedata.append(t[i]) + distancedata.append(d[i]) + spmdata.append(t[i]) + spmdata.append(spm[i]) + if haslatlon: + locdata.append(t[i]) + locdata.append([lat[i],lon[i]]) + if haspower: + powerdata.append(t[i]) + powerdata.append(power[i]) + + + if haslatlon: + data = { + "type": "Rowing", + "name": w.name, +# "start_time": str(w.date)+"T"+str(w.starttime)+"Z", + "start_time": w.startdatetime.isoformat(), + "total_distance": int(w.distance), + "duration": int(max(t)), + "notes": w.notes, + "avg_heartrate": averagehr, + "max_heartrate": maxhr, + "location": locdata, + "distance": distancedata, + "cadence": spmdata, + "heartrate": hrdata, + } + else: + data = { + "type": "Rowing", + "name": w.name, +# "start_time": str(w.date)+"T"+str(w.starttime)+"Z", + "start_time": w.startdatetime.isoformat(), + "total_distance": int(w.distance), + "duration": int(max(t)), + "notes": w.notes, + "avg_heartrate": averagehr, + "max_heartrate": maxhr, + "distance": distancedata, + "cadence": spmdata, + "heartrate": hrdata, + } + + if haspower: + data['power'] = powerdata + + return data + +def getidfromresponse(response): + t = json.loads(response.text) + uri = t['uris'][0] + id = uri[len(uri)-13:len(uri)-5] + + return int(id) + + diff --git a/rowers/tests.py b/rowers/tests.py index f32736b1..a556c64c 100644 --- a/rowers/tests.py +++ b/rowers/tests.py @@ -24,6 +24,11 @@ import numpy as np from rowers import urls from rowers.views import error500_view,error404_view,error400_view,error403_view +from dataprep import delete_strokedata + + + + class DjangoTestCase(TestCase, MockTestCase): def _pre_setup(self): MockTestCase.setUp(self) @@ -33,12 +38,12 @@ class DjangoTestCase(TestCase, MockTestCase): def _post_teardown(self): TestCase._post_teardown(self) MockTestCase.tearDown(self) + delete_strokedata(1) # Create your tests here. class C2Objects(DjangoTestCase): def test_strokedata(self): - print "C2 strokedata" with open('rowers/testdata/c2stroketestdata.txt','r') as infile: res = json.load(infile) @@ -60,7 +65,6 @@ class C2Objects(DjangoTestCase): class StravaObjects(DjangoTestCase): def test_strokedata(self): - print "STRAVA strokedata" timejson = json.load(open('rowers/testdata/stravatimetestdata.txt','r')) velojson = json.load(open('rowers/testdata/stravavelotestdata.txt','r')) distancejson = json.load(open('rowers/testdata/stravadistancetestdata.txt','r')) @@ -136,7 +140,6 @@ class StravaObjects(DjangoTestCase): class STObjects(DjangoTestCase): def test_strokedata(self): - print "SportTracks strokedata" with open('rowers/testdata/sporttrackstestdata.txt','r') as infile: data = json.load(infile) @@ -152,7 +155,6 @@ class STObjects(DjangoTestCase): class TestErrorPages(TestCase): def test_error_handlers(self): - print "Error Handlers" self.assertTrue(urls.handler404.endswith('.error404_view')) self.assertTrue(urls.handler500.endswith('.error500_view')) @@ -178,7 +180,6 @@ class WorkoutTests(TestCase): duration="0:55:00",distance=8000) def test_checkworkoutuser(self): - print "Check Workout User" u = User.objects.get(username='john') r = Rower.objects.get(user=u) w = Workout.objects.get(user=r) @@ -198,7 +199,6 @@ class C2Tests(TestCase): duration="0:55:00",distance=8000) def c2_notokentest(self): - print "C2 No token" thetoken = c2_open(self.u) # should raise C2NoTokenError self.assertRaises(C2NoTokenError) @@ -213,7 +213,6 @@ class DataTest(TestCase): def test_workoutform(self): - print "Workout Form" form_data = { 'name':'test', 'date':'2016-05-01', @@ -227,7 +226,6 @@ class DataTest(TestCase): self.assertTrue(form.is_valid()) def test_rower_form_withvalidnumbers(self): - print "Workout Form with Valid Numbers" form_data = { 'max':192, 'rest':48, @@ -243,7 +241,6 @@ class DataTest(TestCase): def test_rower_form_twoequalvalues(self): - print "Workout Form Error" form_data = { 'max':192, 'rest':48, @@ -258,7 +255,6 @@ class DataTest(TestCase): self.assertFalse(form.is_valid()) def test_rower_form_abovemaxallowed(self): - print "Workout Form Error 2" form_data = { 'max':300, 'rest':48, @@ -273,7 +269,6 @@ class DataTest(TestCase): self.assertFalse(form.is_valid()) def test_rower_form_wrongorder(self): - print "Workout form error 3" form_data = { 'max':192, 'rest':48, @@ -288,7 +283,6 @@ class DataTest(TestCase): self.assertFalse(form.is_valid()) def test_rower_form_belowminalloed(self): - print "Workout form error 4" form_data = { 'max':192, 'rest':2, @@ -303,7 +297,6 @@ class DataTest(TestCase): self.assertFalse(form.is_valid()) def test_rower_form_wrongorder2(self): - print "Workout form error 5" form_data = { 'max':192, 'rest':48, @@ -318,7 +311,6 @@ class DataTest(TestCase): self.assertFalse(form.is_valid()) def test_painsled(self): - print "Test Painsled" filename = 'C:\\python\\rowingdata\\testdata\\testdata.csv' f = open(filename,'rb') file_data = {'file': SimpleUploadedFile(f.name, f.read())} @@ -399,7 +391,6 @@ class ViewTest(TestCase): self.nu = datetime.datetime.now() def test_upload_view_notloggedin(self): - print "Upload not logged in" response = self.c.post('/rowers/workout/upload/',follow=True) @@ -409,7 +400,6 @@ class ViewTest(TestCase): self.assertEqual(response.status_code, 200) def test_upload_view_sled(self): - print "Upload painsled" self.c.login(username='john',password='koeinsloot') filename = 'C:\\python\\rowingdata\\testdata\\testdata.csv' @@ -452,7 +442,6 @@ class ViewTest(TestCase): def test_upload_view_notloggedin(self): - print "Upload not logged in" response = self.c.post('/rowers/workout/upload/',follow=True) @@ -462,7 +451,6 @@ class ViewTest(TestCase): self.assertEqual(response.status_code, 200) def test_upload_view_sled_negativetime(self): - print "Painsled error" self.c.login(username='john',password='koeinsloot') filename = 'C:\\python\\rowingdata\\testdata\\tim.csv' @@ -504,7 +492,6 @@ class ViewTest(TestCase): def test_upload_view_sled_noname(self): - print "Upload no name" self.c.login(username='john',password='koeinsloot') filename = 'C:\\python\\rowingdata\\testdata\\testdata.csv' @@ -538,7 +525,6 @@ class ViewTest(TestCase): def test_upload_view_TCX_CN(self): - print "Upload TCX" self.c.login(username='john',password='koeinsloot') filename = 'C:\\python\\rowingdata\\testdata\\crewnerddata.tcx' @@ -582,7 +568,6 @@ class ViewTest(TestCase): os.remove(f_to_be_deleted) def test_upload_view_TCX_SpeedCoach2(self): - print "Upload TCX 2" self.c.login(username='john',password='koeinsloot') filename = 'C:\\python\\rowingdata\\testdata\\Speedcoach2example.csv' @@ -613,7 +598,6 @@ class ViewTest(TestCase): os.remove(f_to_be_deleted) def test_upload_view_TCX_SpeedCoach2(self): - print "Upload TCX 3" self.c.login(username='john',password='koeinsloot') filename = 'C:\\python\\rowingdata\\testdata\\Speedcoach2example.csv' @@ -646,7 +630,6 @@ class ViewTest(TestCase): def test_upload_view_TCX_SpeedCoach2(self): - print "Upload TCX 3" self.c.login(username='john',password='koeinsloot') filename = 'C:\\python\\rowingdata\\testdata\\speedcoach3test3.csv' @@ -677,7 +660,6 @@ class ViewTest(TestCase): os.remove(f_to_be_deleted) def test_upload_view_TCX_NoHR(self): - print "Upload TCX no HR" self.c.login(username='john',password='koeinsloot') filename = 'C:\\python\\rowingdata\\testdata\\NoHR.tcx' @@ -708,7 +690,6 @@ class ViewTest(TestCase): os.remove(f_to_be_deleted) def test_upload_view_TCX_CN(self): - print "Upload TCX 10" self.c.login(username='john',password='koeinsloot') filename = 'C:\\python\\rowingdata\\testdata\\rowinginmotionexample.tcx' @@ -736,7 +717,6 @@ class ViewTest(TestCase): os.remove(f_to_be_deleted) def test_upload_view_RP(self): - print "Upload RowPro" self.c.login(username='john',password='koeinsloot') filename = 'C:\\python\\rowingdata\\testdata\\RP_testdata.csv' @@ -764,7 +744,6 @@ class ViewTest(TestCase): os.remove(f_to_be_deleted) def test_upload_view_Mystery(self): - print "Upload Mystery" self.c.login(username='john',password='koeinsloot') filename = 'C:\\python\\rowingdata\\testdata\\mystery.csv' @@ -792,7 +771,6 @@ class ViewTest(TestCase): os.remove(f_to_be_deleted) def test_upload_view_RP_interval(self): - print "Upload RowPro Interval" self.c.login(username='john',password='koeinsloot') filename = 'C:\\python\\rowingdata\\testdata\\RP_interval.csv' @@ -820,7 +798,6 @@ class ViewTest(TestCase): os.remove(f_to_be_deleted) def test_upload_view_sled_desktop(self): - print "Upload Painsled Desktop" self.c.login(username='john',password='koeinsloot') filename = 'C:\\python\\rowingdata\\testdata\\painsled_desktop_example.csv' @@ -848,7 +825,6 @@ class ViewTest(TestCase): os.remove(f_to_be_deleted) def test_upload_view_sled_ergdata(self): - print "Upload Ergdata" self.c.login(username='john',password='koeinsloot') filename = 'C:\\python\\rowingdata\\testdata\\ergdata_example.csv' @@ -876,7 +852,6 @@ class ViewTest(TestCase): os.remove(f_to_be_deleted) def test_upload_view_sled_ergstick(self): - print "Upload Ergstick" self.c.login(username='john',password='koeinsloot') filename = 'C:\\python\\rowingdata\\testdata\\ergstick.csv' @@ -953,7 +928,6 @@ class subroutinetests(TestCase): def c2stuff(self): - print "Test C2 Stuff" data = c2stuff.createc2workoutdata(self.w) jsond = json.dumps(data) data = c2stuff.createc2workoutdata_as_splits(w) @@ -999,7 +973,6 @@ class PlotTests(TestCase): def test_ote_plots(self): - print "Plots" w = self.wote f1 = 'testdata.csv'[:-4] timestr = strftime("%Y%m%d-%H%M%S") @@ -1107,7 +1080,6 @@ class PlotTests(TestCase): os.remove(fullpathimagename) def test_otw_plots(self): - print "Plots 2" w = self.wotw f1 = 'testdata.csv'[:-4] timestr = strftime("%Y%m%d-%H%M%S") diff --git a/rowers/urls.py b/rowers/urls.py index 203b238b..0b740ab7 100644 --- a/rowers/urls.py +++ b/rowers/urls.py @@ -163,6 +163,8 @@ urlpatterns = [ url(r'^workout/(?P\d+)/flexchart$',views.workout_flexchart3_view), url(r'^workout/compare/(?P\d+)/(?P\d+)/(?P\w+.*)/(?P\w+.*)/(?P\w+.*)$',views.workout_comparison_view2), url(r'^workout/compare/(?P\d+)/(?P\d+)/(?P\w+.*)/(?P\w+.*)/$',views.workout_comparison_view2), + url(r'^test\_callback',views.rower_process_testcallback), + ] if settings.DEBUG: diff --git a/rowers/views.py b/rowers/views.py index 8f90b2b8..831b4098 100644 --- a/rowers/views.py +++ b/rowers/views.py @@ -29,6 +29,8 @@ from c2stuff import C2NoTokenError from iso8601 import ParseError import stravastuff import sporttracksstuff +import ownapistuff +from ownapistuff import TEST_CLIENT_ID, TEST_CLIENT_SECRET, TEST_REDIRECT_URI from rowsandall_app.settings import C2_CLIENT_ID, C2_REDIRECT_URI, C2_CLIENT_SECRET, STRAVA_CLIENT_ID, STRAVA_REDIRECT_URI, STRAVA_CLIENT_SECRET from rowsandall_app.settings import SPORTTRACKS_CLIENT_ID, SPORTTRACKS_REDIRECT_URI, SPORTTRACKS_CLIENT_SECRET import requests @@ -1169,6 +1171,7 @@ def rower_process_stravacallback(request): return imports_view(request,successmessage=successmessage) + @login_required() def rower_process_sporttrackscallback(request): code = request.GET['code'] @@ -1190,6 +1193,26 @@ def rower_process_sporttrackscallback(request): successmessage = "Tokens stored. Good to go" return imports_view(request,successmessage=successmessage) +@login_required() +def rower_process_testcallback(request): + code = request.GET['code'] + res = ownapistuff.get_token(code) + + + access_token = res[0] + expires_in = res[1] + refresh_token = res[2] + expirydatetime = timezone.now()+datetime.timedelta(seconds=expires_in) + + text = "Access Token:\n" + text += access_token + + text += "\n\nRefresh Token:\n" + text += refresh_token + + return HttpResponse(text) + + @login_required() def histo_all(request,theuser=0): promember=0 @@ -3731,7 +3754,7 @@ def workout_upload_view(request,message=""): 'user-agent': 'sanderroosendaal', 'Content-Type': 'application/json'} import urllib - url = "https://log.concept2.com/api/users/%s/results" % (c2userid) + url = "httpvs://log.concept2.com/api/users/%s/results" % (c2userid) response = requests.post(url,headers=headers,data=json.dumps(data)) # response = c2stuff.workout_c2_upload(request.user,w) @@ -4556,7 +4579,7 @@ def strokedatajson(request,id): res = df.to_csv(csvfilename,index_label='index') row.csvfilename = csvfilename row.save() - + datadf = dataprep.dataprep(data,id=row.id,bands=True,barchart=True,otwpower=True) except: return HttpResponse("Not OK") # mangling diff --git a/rowsandall_app/settings.py b/rowsandall_app/settings.py index d608b6af..1e78bec2 100644 --- a/rowsandall_app/settings.py +++ b/rowsandall_app/settings.py @@ -98,7 +98,7 @@ TEMPLATES = [ ] -#CORS_ORIGIN_ALLOW_ALL = True +CORS_ORIGIN_ALLOW_ALL = True WSGI_APPLICATION = 'rowsandall_app.wsgi.application' From aed20dc816ed4066b7473bc866f57a6c3f980271 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Sat, 26 Nov 2016 09:25:43 +0100 Subject: [PATCH 15/17] cleaning up --- rowers/#ownapistuff.py# | 279 ---------------------------------------- rowers/.#ownapistuff.py | 1 - 2 files changed, 280 deletions(-) delete mode 100644 rowers/#ownapistuff.py# delete mode 100644 rowers/.#ownapistuff.py diff --git a/rowers/#ownapistuff.py# b/rowers/#ownapistuff.py# deleted file mode 100644 index 528013b3..00000000 --- a/rowers/#ownapistuff.py# +++ /dev/null @@ -1,279 +0,0 @@ -# Python -import oauth2 as oauth -import cgi -import requests -import requests.auth -import json -from django.utils import timezone -from datetime import datetime -import numpy as np -from dateutil import parser -import time -import math -from math import sin,cos,atan2,sqrt - -import urllib -import c2stuff - -# Django -from django.shortcuts import render_to_response -from django.http import HttpResponseRedirect, HttpResponse,JsonResponse -from django.conf import settings -from django.contrib.auth import authenticate, login, logout -from django.contrib.auth.models import User -from django.contrib.auth.decorators import login_required - -# Project -# from .models import Profile -from rowingdata import rowingdata -import pandas as pd -from rowers.models import Rower,Workout - -from rowsandall_app.settings import C2_CLIENT_ID, C2_REDIRECT_URI, C2_CLIENT_SECRET, STRAVA_CLIENT_ID, STRAVA_REDIRECT_URI, STRAVA_CLIENT_SECRET, SPORTTRACKS_CLIENT_SECRET, SPORTTRACKS_CLIENT_ID, SPORTTRACKS_REDIRECT_URI - -TEST_CLIENT_ID = "LTqH0nUe8BySMEJgohJBoo1q4PV16xQJ8uF0XQPU" -TEST_CLIENT_SECRET = "HI4bM21rh7pTEXOwCAHLNe3SlLMgbksuzCOARSBbolbQyquZ5quNF8i9PiIaGumbBG4OHCJiQqZJh7Nez6aRiZFgO8POBRVkwCg1fLNk1oY5EJHtLiNrgWY0nbWWDedt" - -TEST_REDIRECT_URI = "http://localhost:8000/rowers/test_callback" - -def custom_exception_handler(exc,message): - - response = { - "errors": [ - { - "code": str(exc), - "detail": message, - } - ] - } - - res = HttpResponse(message) - res.status_code = 401 - res.json = json.dumps(response) - - return res - -def do_refresh_token(refreshtoken): - client_auth = requests.auth.HTTPBasicAuth(TEST_CLIENT_ID, TEST_CLIENT_SECRET) - post_data = {"grant_type": "refresh_token", - "client_secret": TEST_CLIENT_SECRET, - "client_id":TEST_CLIENT_ID, - "refresh_token": refreshtoken, - } - headers = {'user-agent': 'sanderroosendaal', - 'Accept': 'application/json', - 'Content-Type': 'application/json'} - - url = "http://localhost:8000/rowers/o/token" - - response = requests.post(url, - data=json.dumps(post_data), - headers=headers) - - token_json = response.json() - thetoken = token_json['access_token'] - expires_in = token_json['expires_in'] - try: - refresh_token = token_json['refresh_token'] - except KeyError: - refresh_token = refreshtoken - - return [thetoken,expires_in,refresh_token] - - -def get_token(code): - client_auth = requests.auth.HTTPBasicAuth(TEST_CLIENT_ID, TEST_CLIENT_SECRET) - post_data = {"grant_type": "authorization_code", - "code": code, - "redirect_uri": TEST_REDIRECT_URI, - "client_secret": TEST_CLIENT_SECRET, - "client_id":TEST_CLIENT_ID, - } - headers = {'Accept': 'application/json', - 'Content-Type': 'application/json'} - - url = "http://localhost:8000/rowers/o/token/" - - - response = requests.post(url, - data=json.dumps(post_data), - headers=headers) - print response - token_json = response.json() - thetoken = token_json['access_token'] - expires_in = token_json['expires_in'] - refresh_token = token_json['refresh_token'] - - return [thetoken,expires_in,refresh_token] - -def make_authorization_url(request): - # Generate a random string for the state parameter - # Save it for use later to prevent xsrf attacks - from uuid import uuid4 - state = str(uuid4()) - - params = {"client_id": TEST_CLIENT_ID, - "response_type": "code", - "redirect_uri": TEST_REDIRECT_URI, - "scope":"write", - "state":state} - - - import urllib - url = "http://localhost:8000/rowers/o/authorize" +urllib.urlencode(params) - - return HttpResponseRedirect(url) - - -def rower_ownapi_token_refresh(user): - r = Rower.objects.get(user=user) - res = do_refresh_token(r.ownapirefreshtoken) - access_token = res[0] - expires_in = res[1] - refresh_token = res[2] - expirydatetime = timezone.now()+timedelta(seconds=expires_in) - - r = Rower.objects.get(user=user) - r.ownapitoken = access_token - r.tokenexpirydate = expirydatetime - r.ownapirefreshtoken = refresh_token - - r.save() - return r.ownapitoken - -def get_ownapi_workout_list(user): - r = Rower.objects.get(user=user) - if (r.ownapitoken == '') or (r.ownapitoken is None): - s = "Token doesn't exist. Need to authorize" - return custom_exception_handler(401,s) - elif (timezone.now()>r.ownapitokenexpirydate): - s = "Token expired. Needs to refresh." - return custom_exception_handler(401,s) - else: - # ready to fetch. Hurray - authorizationstring = str('Bearer ' + r.ownapitoken) - headers = {'Authorization': authorizationstring, - 'user-agent': 'sanderroosendaal', - 'Content-Type': 'application/json'} - url = "https://api.ownapi.mobi/api/v2/fitnessActivities" - s = requests.get(url,headers=headers) - - return s - - -def get_ownapi_workout(user,ownapiid): - r = Rower.objects.get(user=user) - if (r.ownapitoken == '') or (r.ownapitoken is None): - return custom_exception_handler(401,s) - s = "Token doesn't exist. Need to authorize" - elif (timezone.now()>r.ownapitokenexpirydate): - s = "Token expired. Needs to refresh." - return custom_exception_handler(401,s) - else: - # ready to fetch. Hurray - authorizationstring = str('Bearer ' + r.ownapitoken) - headers = {'Authorization': authorizationstring, - 'user-agent': 'sanderroosendaal', - 'Content-Type': 'application/json'} - url = "https://api.ownapi.mobi/api/v2/fitnessActivities/"+str(ownapiid) - s = requests.get(url,headers=headers) - - return s - -def createownapiworkoutdata(w): - filename = w.csvfilename - row = rowingdata(filename) - averagehr = int(row.df[' HRCur (bpm)'].mean()) - maxhr = int(row.df[' HRCur (bpm)'].max()) - - # adding diff, trying to see if this is valid - t = row.df.ix[:,'TimeStamp (sec)'].values-10*row.df.ix[0,'TimeStamp (sec)'] - t[0] = t[1] - d = row.df.ix[:,'cum_dist'].values - d[0] = d[1] - t = t.astype(int) - d = d.astype(int) - spm = row.df[' Cadence (stokes/min)'].astype(int) - spm[0] = spm[1] - hr = row.df[' HRCur (bpm)'].astype(int) - - haslatlon=1 - - try: - lat = row.df[' latitude'].values - lon = row.df[' longitude'].values - except KeyError: - haslatlon = 0 - - haspower = 1 - try: - power = row.df[' Power (watts)'].values - except KeyError: - haspower = 0 - - locdata = [] - hrdata = [] - spmdata = [] - distancedata = [] - powerdata = [] - - for i in range(len(t)): - hrdata.append(t[i]) - hrdata.append(hr[i]) - distancedata.append(t[i]) - distancedata.append(d[i]) - spmdata.append(t[i]) - spmdata.append(spm[i]) - if haslatlon: - locdata.append(t[i]) - locdata.append([lat[i],lon[i]]) - if haspower: - powerdata.append(t[i]) - powerdata.append(power[i]) - - - if haslatlon: - data = { - "type": "Rowing", - "name": w.name, -# "start_time": str(w.date)+"T"+str(w.starttime)+"Z", - "start_time": w.startdatetime.isoformat(), - "total_distance": int(w.distance), - "duration": int(max(t)), - "notes": w.notes, - "avg_heartrate": averagehr, - "max_heartrate": maxhr, - "location": locdata, - "distance": distancedata, - "cadence": spmdata, - "heartrate": hrdata, - } - else: - data = { - "type": "Rowing", - "name": w.name, -# "start_time": str(w.date)+"T"+str(w.starttime)+"Z", - "start_time": w.startdatetime.isoformat(), - "total_distance": int(w.distance), - "duration": int(max(t)), - "notes": w.notes, - "avg_heartrate": averagehr, - "max_heartrate": maxhr, - "distance": distancedata, - "cadence": spmdata, - "heartrate": hrdata, - } - - if haspower: - data['power'] = powerdata - - return data - -def getidfromresponse(response): - t = json.loads(response.text) - uri = t['uris'][0] - id = uri[len(uri)-13:len(uri)-5] - - return int(id) - - diff --git a/rowers/.#ownapistuff.py b/rowers/.#ownapistuff.py deleted file mode 100644 index d6b83c16..00000000 --- a/rowers/.#ownapistuff.py +++ /dev/null @@ -1 +0,0 @@ -E408191@CZ27LT9RCGN72.5176:1479844733 \ No newline at end of file From 0facd70ac1500429a540c43896b593e42a3af888 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Sat, 26 Nov 2016 17:41:08 +0100 Subject: [PATCH 16/17] testing api --- rowers/ownapistuff.py | 7 +++-- rowers/serializers.py | 64 ++++++++++++++++++++++++++++++++++++++----- rowers/views.py | 4 ++- 3 files changed, 64 insertions(+), 11 deletions(-) diff --git a/rowers/ownapistuff.py b/rowers/ownapistuff.py index 528013b3..4a1754bf 100644 --- a/rowers/ownapistuff.py +++ b/rowers/ownapistuff.py @@ -31,8 +31,8 @@ from rowers.models import Rower,Workout from rowsandall_app.settings import C2_CLIENT_ID, C2_REDIRECT_URI, C2_CLIENT_SECRET, STRAVA_CLIENT_ID, STRAVA_REDIRECT_URI, STRAVA_CLIENT_SECRET, SPORTTRACKS_CLIENT_SECRET, SPORTTRACKS_CLIENT_ID, SPORTTRACKS_REDIRECT_URI -TEST_CLIENT_ID = "LTqH0nUe8BySMEJgohJBoo1q4PV16xQJ8uF0XQPU" -TEST_CLIENT_SECRET = "HI4bM21rh7pTEXOwCAHLNe3SlLMgbksuzCOARSBbolbQyquZ5quNF8i9PiIaGumbBG4OHCJiQqZJh7Nez6aRiZFgO8POBRVkwCg1fLNk1oY5EJHtLiNrgWY0nbWWDedt" +TEST_CLIENT_ID = "1" +TEST_CLIENT_SECRET = "aapnootmies" TEST_REDIRECT_URI = "http://localhost:8000/rowers/test_callback" @@ -98,7 +98,8 @@ def get_token(code): response = requests.post(url, data=json.dumps(post_data), headers=headers) - print response + + print response.text token_json = response.json() thetoken = token_json['access_token'] expires_in = token_json['expires_in'] diff --git a/rowers/serializers.py b/rowers/serializers.py index 9f7f4620..b0890f54 100644 --- a/rowers/serializers.py +++ b/rowers/serializers.py @@ -1,6 +1,8 @@ from rest_framework import serializers from rowers.models import Workout,Rower +import datetime + # Serializers define the API representation. class RowerSerializer(serializers.HyperlinkedModelSerializer): class Meta: @@ -18,7 +20,7 @@ class RowerSerializer(serializers.HyperlinkedModelSerializer): ) -class WorkoutSerializer(serializers.HyperlinkedModelSerializer): +class WorkoutSerializer(serializers.ModelSerializer): class Meta: model = Workout fields = ( @@ -26,21 +28,69 @@ class WorkoutSerializer(serializers.HyperlinkedModelSerializer): 'name', 'date', 'workouttype', - 'boattype', 'starttime', - 'startdatetime', 'distance', 'duration', - 'weightcategory', - 'weightvalue', 'averagehr', 'maxhr', 'notes', 'summary', - 'csvfilename', ) -class StrokeDataSerielizer(serializers.Serializer): + def create(self, validated_data): + r = Rower.objects.get(user=self.context['request'].user) + d = validated_data['date'] + t = validated_data['starttime'] + rowdatetime = datetime.datetime(d.year, + d.month, + d.day, + t.hour, + t.minute, + t.second) + w = Workout(user=r, + name=validated_data['name'], + date=validated_data['date'], + workouttype=validated_data['workouttype'], + duration=validated_data['duration'], + distance=validated_data['distance'], + weightcategory=r.weightcategory, + starttime=validated_data['starttime'], + csvfilename='', + notes=validated_data['notes'], + uploadedtoc2=0, + summary=validated_data['summary'], + averagehr=validated_data['averagehr'], + maxhr=validated_data['maxhr'], + startdatetime=rowdatetime) + w.save() + return w + + def update(self, instance, validated_data): + d = validated_data['date'] + t = validated_data['starttime'] + rowdatetime = datetime.datetime(d.year, + d.month, + d.day, + t.hour, + t.minute, + t.second) + + + instance.name=validated_data['name'] + instance.date=validated_data['date'] + instance.workouttype=validated_data['workouttype'] + instance.duration=validated_data['duration'] + instance.distance=validated_data['distance'] + instance.starttime=validated_data['starttime'] + instance.notes=validated_data['notes'] + instance.summary=validated_data['summary'] + instance.averagehr=validated_data['averagehr'] + instance.maxhr=validated_data['maxhr'] + instance.startdatetime=rowdatetime + instance.save() + return instance + +class StrokeDataSerializer(serializers.Serializer): workoutid = serializers.IntegerField strokedata = serializers.JSONField diff --git a/rowers/views.py b/rowers/views.py index 831b4098..2450589d 100644 --- a/rowers/views.py +++ b/rowers/views.py @@ -4490,7 +4490,9 @@ def trydf(df,aantal,column): s = np.zeros(aantal) return s - + +from django.views.decorators.csrf import csrf_exempt +@csrf_exempt @login_required() def strokedatajson(request,id): try: From 2b8527074efd62a825dd967cfa9774588c585f16 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Sat, 26 Nov 2016 21:32:37 +0100 Subject: [PATCH 17/17] Strokedata post working (somehow) --- rowers/forms.py | 4 + rowers/templates/strokedata_form.html | 25 +++++ rowers/urls.py | 2 +- rowers/views.py | 152 ++++++++++++++++---------- 4 files changed, 122 insertions(+), 61 deletions(-) create mode 100644 rowers/templates/strokedata_form.html diff --git a/rowers/forms.py b/rowers/forms.py index 04034c38..d27030bd 100644 --- a/rowers/forms.py +++ b/rowers/forms.py @@ -27,6 +27,10 @@ class CNsummaryForm(forms.Form): class SummaryStringForm(forms.Form): intervalstring = forms.CharField(max_length=255,label='Workout Description') +class StrokeDataForm(forms.Form): + strokedata = forms.CharField(label='payload', + widget=forms.Textarea) + class DocumentsForm(forms.Form): filetypechoices = ( ('csv' , 'Painsled iOS CSV'), diff --git a/rowers/templates/strokedata_form.html b/rowers/templates/strokedata_form.html new file mode 100644 index 00000000..34cabb57 --- /dev/null +++ b/rowers/templates/strokedata_form.html @@ -0,0 +1,25 @@ +{% extends "base.html" %} + +{% block title %}Change Rower {% endblock %} + +{% block content %} + {% if form.errors %} +

+ Please correct the error{{ form.errors|pluralize }} below. +

+ {% endif %} +
+

Stroke Data for workout {{ id }}

+ +
+ + {{ form.as_table }} +
+ {% csrf_token %} +
+ + +
+
+ +{% endblock %} diff --git a/rowers/urls.py b/rowers/urls.py index 0b740ab7..46c0f9b3 100644 --- a/rowers/urls.py +++ b/rowers/urls.py @@ -164,7 +164,7 @@ urlpatterns = [ url(r'^workout/compare/(?P\d+)/(?P\d+)/(?P\w+.*)/(?P\w+.*)/(?P\w+.*)$',views.workout_comparison_view2), url(r'^workout/compare/(?P\d+)/(?P\d+)/(?P\w+.*)/(?P\w+.*)/$',views.workout_comparison_view2), url(r'^test\_callback',views.rower_process_testcallback), - + url(r'^workout/(\d+)/test\_strokedata$',views.strokedataform), ] if settings.DEBUG: diff --git a/rowers/views.py b/rowers/views.py index 2450589d..5ad543ee 100644 --- a/rowers/views.py +++ b/rowers/views.py @@ -15,7 +15,7 @@ from django.utils import timezone,translation from django.core.mail import send_mail, BadHeaderError from rowers.forms import EmailForm, RegistrationForm, RegistrationFormTermsOfService,RegistrationFormUniqueEmail,CNsummaryForm,UpdateWindForm,UpdateStreamForm from rowers.forms import PredictedPieceForm,DateRangeForm,DeltaDaysForm -from rowers.forms import SummaryStringForm,IntervalUpdateForm +from rowers.forms import SummaryStringForm,IntervalUpdateForm,StrokeDataForm from rowers.models import Workout, User, Rower, WorkoutForm from rowers.models import RowerPowerForm,RowerForm,GraphImage,AdvancedWorkoutForm import StringIO @@ -51,7 +51,7 @@ from rowingdata import MysteryParser from rowingdata import painsledDesktopParser,speedcoachParser,ErgStickParser from rowingdata import SpeedCoach2Parser,FITParser,fitsummarydata from rowingdata import make_cumvalues -from rowingdata import summarydata,get_file_type,totimestamp +from rowingdata import summarydata,get_file_type import pandas as pd import numpy as np import matplotlib.pyplot as plt @@ -4479,6 +4479,11 @@ class JSONResponse(HttpResponse): kwargs['content_type'] = 'application/json' super(JSONResponse, self).__init__(content, **kwargs) +def totimestamp(dt, epoch=datetime.datetime(1970,1,1,tzinfo=tz('UTC'))): + td = dt - epoch + # return td.total_seconds() + return (td.microseconds + (td.seconds + td.days * 86400) * 10**6) / 10**6 + def trydf(df,aantal,column): try: s = df[column] @@ -4491,6 +4496,25 @@ def trydf(df,aantal,column): return s +@login_required() +def strokedataform(request,id=0): + if request.method == 'GET': + form = StrokeDataForm() + return render(request, 'strokedata_form.html', + { + 'form':form, + 'id':id, + }) + elif request.method == 'POST': + form = StrokeDataForm() + + return render(request, 'strokedata_form.html', + { + 'form':form, + 'id':id, + }) + + from django.views.decorators.csrf import csrf_exempt @csrf_exempt @login_required() @@ -4515,75 +4539,83 @@ def strokedatajson(request,id): if request.method == 'POST': checkdata,r = dataprep.getrowdata_db(id=row.id) if not checkdata.empty: - return "Not OK" - strokedata = request.POST['strokedata'] + return "Not OK 1" + # strokedata = request.POST['strokedata'] + print request.body + received_json_data = json.loads(request.body) # checking/validating and cleaning try: - strokedata = json.loads(strokedata) + strokedata = json.loads(received_json_data['strokedata']) except: - return HttpResponse("Not OK") + return HttpResponse("Not OK 2") - try: - df = pd.DataFrame(strokedata) - # time, hr, pace, spm, power, drivelength, distance, drivespeed, dragfactor, strokerecoverytime, averagedriveforce, peakdriveforce, lapidx - time = df['time'] - aantal = len(time) - pace = df['pace'] - if len(pace) != aantal: - return "Not OK" - distance = df['distance'] - if len(distance) != aantal: - return "Not OK" + df = pd.DataFrame(strokedata) + df.index = df.index.astype(int) + df.sort_index(inplace=True) + # time, hr, pace, spm, power, drivelength, distance, drivespeed, dragfactor, strokerecoverytime, averagedriveforce, peakdriveforce, lapidx + time = df['timesecs'] + aantal = len(time) + pace = df['pseconds'] + if len(pace) != aantal: + return "Not OK" + distance = df['distance'] + if len(distance) != aantal: + return "Not OK 3" + + spm = df['spm'] + if len(spm) != aantal: + return "Not OK 4" - spm = df['spm'] - if len(spm) != aantal: - return "Not OK" - - res = dataprep.testdata(time,distance,pace,spm) - if not res: - return HttpResponse("Not OK") + res = dataprep.testdata(time,distance,pace,spm) + if not res: + return HttpResponse("Not OK 5") - power = trydf(df,aantal,'power') - drivelength = trydf(df,aantal,'drivelength') - drivespeed = trydf(df,aantal,'drivespeed') - dragfactor = trydf(df,aantal,'dragfactor') - drivetime = trydf(df,aantal,'drivetime') - strokerecoverytime = trydf(df,aantal,'strokerecoverytime') - averagedriveforce = trydf(df,aantal,'averagedriveforce') - peakdriveforce = trydf(df,aantal,'peakdriveforce') - lapidx = trydf(df,aantal,'lapidx') - hr = trydf(df,aantal,'hr') + power = trydf(df,aantal,'power') + drivelength = trydf(df,aantal,'drivelength') + drivespeed = trydf(df,aantal,'drivespeed') + dragfactor = trydf(df,aantal,'dragfactor') + drivetime = trydf(df,aantal,'drivetime') + strokerecoverytime = trydf(df,aantal,'strokerecoverytime') + averagedriveforce = trydf(df,aantal,'averagedriveforce') + peakdriveforce = trydf(df,aantal,'peakdriveforce') + lapidx = trydf(df,aantal,'lapidx') + hr = trydf(df,aantal,'hr') - starttime = totimestamp(row.startdatetime)+time - unixtime = starttime+time + starttime = totimestamp(row.startdatetime)+time + unixtime = starttime+time - data = DataFrame({'TimeStamp (sec)':unixtime, - ' Horizontal (meters)': distance, - ' Cadence (stokes/min)':spm, - ' HRCur (bpm)':hr, - ' DragFactor':dragfactor, - ' Stroke500mPace (sec/500m)':pace, - ' Power (watts)':power, - ' DriveLength (meters)':drivelength, - ' StrokeDistance (meters)':strokedistance, - ' DriveTime (ms)':drivetime, - ' StrokeRecoveryTime (ms)':strokerecoverytime, - ' AverageDriveForce (lbs)':averagedriveforce, - ' PeakDriveForce (lbs)':peakdriveforce, - ' lapIdx':lapidx, - ' ElapsedTime (sec)':time, - }) + data = pd.DataFrame({'TimeStamp (sec)':unixtime, + ' Horizontal (meters)': distance, + ' Cadence (stokes/min)':spm, + ' HRCur (bpm)':hr, + ' DragFactor':dragfactor, + ' Stroke500mPace (sec/500m)':pace, + ' Power (watts)':power, + ' DriveLength (meters)':drivelength, + ' DriveTime (ms)':drivetime, + ' StrokeRecoveryTime (ms)':strokerecoverytime, + ' AverageDriveForce (lbs)':averagedriveforce, + ' PeakDriveForce (lbs)':peakdriveforce, + ' lapIdx':lapidx, + ' ElapsedTime (sec)':time, + }) - timestr = time.strftime("%Y%m%d-%H%M%S") - csvfilename ='media/Import_'+timestr+'.csv' + timestr = row.startdatetime.strftime("%Y%m%d-%H%M%S") + csvfilename ='media/Import_'+timestr+'.csv' + + res = data.to_csv(csvfilename,index_label='index') + row.csvfilename = csvfilename + row.save() - res = df.to_csv(csvfilename,index_label='index') - row.csvfilename = csvfilename - row.save() - datadf = dataprep.dataprep(data,id=row.id,bands=True,barchart=True,otwpower=True) - except: - return HttpResponse("Not OK") + r = Rower.objects.get(user=request.user) + + rr = rrower(hrmax=r.max,hrut2=r.ut2, + hrut1=r.ut1,hrat=r.at, + hrtr=r.tr,hran=r.an,ftp=r.ftp) + rowdata = rdata(row.csvfilename,rower=rr).df + + datadf = dataprep.dataprep(rowdata,id=row.id,bands=True,barchart=True,otwpower=True) # mangling #