diff --git a/src/vgps3/plugins/chart/chart.js b/src/vgps3/plugins/chart/chart.js index 22b90d1..25662dd 100644 --- a/src/vgps3/plugins/chart/chart.js +++ b/src/vgps3/plugins/chart/chart.js @@ -140,8 +140,9 @@ vgps3.chart.Chart.prototype.init = function(vgps) { goog.base(this, 'init', vgps); this.resizeCharts_(); this.getHandler() - .listen(vgps, vgps3.track.EventType.LOAD, this.mapLoadHandler_) - .listen(vgps, vgps3.track.EventType.SELECT, this.mapSelectHandler_); + .listen(vgps, vgps3.track.EventType.LOAD, this.trackLoadHandler_) + .listen(vgps, vgps3.track.EventType.LOAD, this.trackUpdateHandler_) + .listen(vgps, vgps3.track.EventType.SELECT, this.trackSelectHandler_); }; @@ -211,12 +212,12 @@ vgps3.chart.Chart.prototype.handleMouseWheel_ = function(event) { /** - * Creates the charts when a track has been loaded. + * Creates the charts when a track gets loaded. * * @param {vgps3.track.LoadEvent} event * @private */ -vgps3.chart.Chart.prototype.mapLoadHandler_ = function(event) { +vgps3.chart.Chart.prototype.trackLoadHandler_ = function(event) { this.logger_.info(goog.string.format('Adding track[%d]', event.trackIndex)); if (!this.chartContainers_) { @@ -268,13 +269,25 @@ vgps3.chart.Chart.prototype.mapLoadHandler_ = function(event) { }; +/** + * Updates the charts when a track gets updated. + * + * @param {vgps3.track.UpdateEvent} event + * @private + */ +vgps3.chart.Chart.prototype.trackUpdateHandler_ = function(event) { + this.chartData_[event.trackIndex] = {'fixes': event.fixes}; + this.drawCharts_(event.trackIndex); +}; + + /** * Redraws the charts when a new track is selected. * * @param {vgps3.track.TrackSelectEvent} event * @private */ -vgps3.chart.Chart.prototype.mapSelectHandler_ = function(event) { +vgps3.chart.Chart.prototype.trackSelectHandler_ = function(event) { this.currentTrackIndex_ = event.trackIndex; this.trackLoaded_.addCallback(function() { this.drawCharts_(event.trackIndex); diff --git a/src/vgps3/plugins/track/track.js b/src/vgps3/plugins/track/track.js index adaea51..55784c1 100644 --- a/src/vgps3/plugins/track/track.js +++ b/src/vgps3/plugins/track/track.js @@ -15,6 +15,7 @@ goog.provide('vgps3.track.Track'); +goog.require('goog.array'); goog.require('goog.color'); goog.require('goog.events'); goog.require('goog.events.Event'); @@ -29,6 +30,7 @@ goog.require('vgps3.loadMask'); goog.require('vgps3.track.ClickEvent'); goog.require('vgps3.track.LoadEvent'); goog.require('vgps3.track.TrackSelectEvent'); +goog.require('vgps3.track.UpdateEvent'); goog.require('vgps3.track.templates'); @@ -46,7 +48,8 @@ vgps3.track.Track = function() { * bounds: google.maps.Bounds, * polyline: google.maps.Polyline, * color: string, - * iconScaler: function(number) + * iconScaler: function(number), + * url: string * }>} * @private */ @@ -60,11 +63,17 @@ vgps3.track.Track = function() { this.kmlLayers_ = []; /** - * @type {number} The index of the current track - * @private - */ + * @type {number} The index of the current track + * @private + */ this.currentTrackIndex_; + /** + * @type {number} The index for the next track to add + * @private + */ + this.nextTrackIndex_ = 0; + /** * @type {boolean} Whether a load request has been queued * @private @@ -127,9 +136,22 @@ vgps3.track.Track.prototype.load = function(url) { vgps3.loadMask.setMessage('Chargement de la trace', undefined, true); this.jsonRequest_ = true; } - goog.net.XhrIo.send(vgps3.track.PROXY_URL + url, goog.bind(this.trackLoadHandler_, this, url)); + goog.net.XhrIo.send(vgps3.track.PROXY_URL + url, goog.bind(this.trackLoadHandler_, this, url, this.nextTrackIndex_)); + this.nextTrackIndex_++; }; +/** + * Update a track + * + * @param {string} url The track url. + */ +vgps3.track.Track.prototype.update = function(url) { + var index = goog.array.findIndex(this.tracks_, function(t) { return t.url == url; }); + + if (index > -1) { + goog.net.XhrIo.send(vgps3.track.PROXY_URL + url, goog.bind(this.trackLoadHandler_, this, url, index)); + } +}; /** * Moves to the specified position on the current track. @@ -177,18 +199,19 @@ vgps3.track.Track.prototype.disposeInternal = function() { * * @param {goog.events.Event} event * @param {string} url The url of the track. + * @param {number} trackIndex The track index. * * @private * @see load */ -vgps3.track.Track.prototype.trackLoadHandler_ = function(url, event) { +vgps3.track.Track.prototype.trackLoadHandler_ = function(url, trackIndex, event) { var xhr = /** @type {goog.net.XhrIo} */ (event.target); if (xhr.isSuccess()) { var track = /** @type {vgps3.track.GpsFixes} */ (xhr.getResponseJson()); goog.dispose(xhr); if (track) { - this.addTrack_(url, track); + this.addTrack_(url, trackIndex, track); return; } } else { @@ -207,12 +230,12 @@ vgps3.track.Track.prototype.trackLoadHandler_ = function(url, event) { * * @private */ -vgps3.track.Track.prototype.addTrack_ = function(url, gpsFixes) { +vgps3.track.Track.prototype.addTrack_ = function(url, trackIndex, gpsFixes) { var point, minElevation = Number.MAX_VALUE, maxElevation = Number.MIN_VALUE, bounds = new google.maps.LatLngBounds(), - trackIndex = this.tracks_.length; + updating = goog.isDef(this.tracks_[trackIndex]); if (gpsFixes['kmlUrl']) { this.logger_.info('Adding a kml layer'); @@ -234,9 +257,19 @@ vgps3.track.Track.prototype.addTrack_ = function(url, gpsFixes) { return; } - this.logger_.info(goog.string.format('Adding track[%d]', this.tracks_.length)); + if (updating) { + this.logger_.info(goog.string.format('Updating track[%d]', trackIndex)); + // Remove the track from the map + this.tracks_[trackIndex].polyline.setMap(null); + } else { + this.logger_.info(goog.string.format('Adding track[%d]', trackIndex)); + } - this.tracks_.push({points: [], fixes: gpsFixes}); + this.tracks_[trackIndex] = { + points: [], + fixes: gpsFixes, + url: url + }; for (var i = 0; i < gpsFixes['nbTrackPt']; i++) { point = new google.maps.LatLng(gpsFixes['lat'][i], gpsFixes['lon'][i]); @@ -260,7 +293,6 @@ vgps3.track.Track.prototype.addTrack_ = function(url, gpsFixes) { this.tracks_[trackIndex].color = this.getTrackColor_(trackIndex); this.tracks_[trackIndex].polyline = new google.maps.Polyline(this.getPolylineOptions_(trackIndex)); - // todo compute maxDelta server side var maxDelta = 0; var points = this.tracks_[trackIndex].points; for (var i = 1, nbPoints = points.length; i < nbPoints; ++i) { @@ -274,9 +306,11 @@ vgps3.track.Track.prototype.addTrack_ = function(url, gpsFixes) { this.logger_.info(goog.string.format('track[%s].maxDelta = %.1fm', trackIndex, maxDelta)); } - this.gMap_.fitBounds(this.getTracksBounds_()); + if (!updating) { + this.gMap_.fitBounds(this.getTracksBounds_()); + } - if (0 === trackIndex) { + if (!this.currentTrackMarker_) { this.currentTrackMarker_ = new google.maps.Marker({ position: this.tracks_[0].points[0], map: this.gMap_, @@ -305,15 +339,21 @@ vgps3.track.Track.prototype.addTrack_ = function(url, gpsFixes) { ); this.trackControl_.setExtraClass('vgps3-earth-control'); - this.selectCurrentTrack_(0); + this.selectCurrentTrack_(trackIndex); vgps3.loadMask.close(); } this.tracks_[trackIndex].iconScaler = this.getIconScaler_(minElevation, maxElevation, gpsFixes['elev']); - this.dispatchEvent( - new vgps3.track.LoadEvent(trackIndex, gpsFixes, this.tracks_[trackIndex].color, url) - ); + if (updating) { + this.dispatchEvent( + new vgps3.track.UpdateEvent(trackIndex, gpsFixes) + ); + } else { + this.dispatchEvent( + new vgps3.track.LoadEvent(trackIndex, gpsFixes, this.tracks_[trackIndex].color, url) + ); + } }; @@ -404,11 +444,11 @@ vgps3.track.Track.prototype.getTracksBounds_ = function() { * Selects a track. * * @param {number} trackIndex - * @param {number=} previousTrackIndex + * @param {number=} opt_prevTrackIndex * @private */ -vgps3.track.Track.prototype.selectCurrentTrack_ = function(trackIndex, previousTrackIndex) { - if (trackIndex !== previousTrackIndex) { +vgps3.track.Track.prototype.selectCurrentTrack_ = function(trackIndex, opt_prevTrackIndex) { + if (trackIndex !== opt_prevTrackIndex) { this.currentTrackIndex_ = trackIndex; this.updateTrackControl_(trackIndex); goog.style.setStyle( @@ -419,13 +459,13 @@ vgps3.track.Track.prototype.selectCurrentTrack_ = function(trackIndex, previousT this.updateInfoControl_(0); this.moveTo(0); this.tracks_[trackIndex].polyline.setOptions(this.getPolylineOptions_(trackIndex)); - if (goog.isDef(previousTrackIndex)) { - this.tracks_[previousTrackIndex].polyline.setOptions(this.getPolylineOptions_(previousTrackIndex)); + if (goog.isDef(opt_prevTrackIndex)) { + this.tracks_[opt_prevTrackIndex].polyline.setOptions(this.getPolylineOptions_(opt_prevTrackIndex)); } this.dispatchEvent( new vgps3.track.TrackSelectEvent( trackIndex, - goog.isDef(previousTrackIndex) ? previousTrackIndex : null + goog.isDef(opt_prevTrackIndex) ? opt_prevTrackIndex : null )); } }; @@ -512,7 +552,8 @@ vgps3.track.Track.prototype.updateTrackControl_ = function(trackIndex) { vgps3.track.EventType = { CLICK: 'vgps3.track.click', LOAD: 'vgps3.track.load', - SELECT: 'vgps3.track.select' + SELECT: 'vgps3.track.select', + UPDATE: 'vgps3.track.update' }; diff --git a/src/vgps3/plugins/track/updateevent.js b/src/vgps3/plugins/track/updateevent.js new file mode 100644 index 0000000..b7ae03a --- /dev/null +++ b/src/vgps3/plugins/track/updateevent.js @@ -0,0 +1,45 @@ +/** + * Copyright Victor Berchet + * + * This file is part of VisuGps3 + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + */ + +/** + * @fileoverview Update event. + * @author Victor Berchet + */ + +goog.provide('vgps3.track.UpdateEvent'); + +goog.require('goog.events.Event'); + + + +/** + * @param {number} trackIndex + * @param {vgps3.track.GpsFixes} fixes + * + * @constructor + * @extends {goog.events.Event} + */ +vgps3.track.UpdateEvent = function(trackIndex, fixes) { + goog.base(this, vgps3.track.EventType.UPDATE); + + /** + * @type {vgps3.track.GpsFixes} The fixes + */ + this.fixes = fixes; + + /** + * @type {number} The track index + */ + this.trackIndex = trackIndex; + +}; +goog.inherits(vgps3.track.UpdateEvent, goog.events.Event); + + diff --git a/src/vgps3/viewer.js b/src/vgps3/viewer.js index 32b7b50..f316197 100644 --- a/src/vgps3/viewer.js +++ b/src/vgps3/viewer.js @@ -15,6 +15,7 @@ goog.provide('vgps3.Viewer'); +goog.require('goog.Timer'); goog.require('goog.Uri'); goog.require('goog.array'); goog.require('goog.debug.Console'); @@ -151,10 +152,11 @@ vgps3.Viewer.prototype.parseUrl_ = function(url) { turnpoints = uri.getParameterValues('turnpoints'), start = uri.getParameterValue('start'), end = uri.getParameterValue('end'), - hasTrack = false; + hasTrack = false, + urls = uri.getParameterValues('track') || []; goog.array.forEach( - uri.getParameterValues('track') || [], + urls, function(track) { hasTrack = true; this.logger_.info('Loading track: ' + track); @@ -163,6 +165,26 @@ vgps3.Viewer.prototype.parseUrl_ = function(url) { this ); + if (uri.getQueryData().containsKey('live')) { + this.logger_.info('Updating activated'); + // Load every min + var trackPlugin = this.plugins['track']; + var timer = new goog.Timer(60000); + timer.listen( + goog.Timer.TICK, + function() { + goog.array.forEach( + urls, + function(track) { + trackPlugin.update(track); + }, + this + ); + } + ); + timer.start(); + } + if (routeType && turnpoints) { turnpoints = goog.array.map(/** @type {!Array.} */(goog.json.parse(turnpoints)), this.array2LatLng_); this.plugins.route.draw( diff --git a/tests/fixtures/tracks/json/tom.json b/tests/fixtures/tracks/json/tom.json index ec096f1..86290a8 100644 --- a/tests/fixtures/tracks/json/tom.json +++ b/tests/fixtures/tracks/json/tom.json @@ -1 +1,7 @@ -{"time":{"label":["08h56","11h01","13h06","15h11","17h15"],"hour":["08","08","08","08","08","08","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17"],"min":["56","56","57","58","58","59","00","00","01","01","02","03","03","04","05","05","06","06","07","08","08","09","10","10","11","11","12","13","13","14","15","15","16","16","17","18","18","19","20","20","21","22","22","23","23","24","25","25","26","26","27","28","28","29","30","30","31","31","32","33","33","34","35","35","36","36","37","38","38","39","40","40","41","42","42","43","43","44","45","45","46","47","47","48","48","49","50","50","51","52","52","53","53","54","55","55","56","57","57","58","58","59","00","00","01","02","02","03","03","04","05","05","06","07","07","08","08","09","10","10","11","12","12","13","13","14","15","15","16","17","17","18","18","19","20","20","21","22","22","23","23","24","25","25","26","27","27","28","28","29","30","30","31","32","32","33","34","34","35","35","36","37","37","38","38","39","40","40","41","42","42","43","44","44","45","45","46","47","47","48","48","49","50","50","51","52","52","53","54","54","55","55","56","57","57","58","59","59","00","00","01","02","02","03","04","04","05","05","06","07","07","08","09","09","10","10","11","12","12","13","14","14","15","15","16","17","17","18","19","19","20","20","21","22","22","23","24","24","25","25","26","27","27","28","29","29","30","31","31","32","32","33","34","34","35","35","36","37","37","38","39","39","40","41","41","42","42","43","44","44","45","45","46","47","47","48","49","49","50","51","51","52","52","53","54","54","55","56","56","57","57","58","59","59","00","01","01","02","02","03","04","04","05","06","06","07","07","08","09","09","10","11","11","12","12","13","14","14","15","16","16","17","17","18","19","19","20","21","21","22","22","23","24","24","25","26","26","27","27","28","29","29","30","31","31","32","32","33","34","34","35","36","36","37","37","38","39","39","40","41","41","42","43","43","44","44","45","46","46","47","47","48","49","49","50","51","51","52","53","53","54","54","55","56","56","57","58","58","59","59","00","01","01","02","03","03","04","04","05","06","06","07","07","08","09","09","10","11","11","12","13","13","14","14","15","16","16","17","18","18","19","19","20","21","21","22","22","23","24","24","25","26","26","27","28","28","29","29","30","31","31","32","32","33","34","34","35","36","36","37","38","38","39","39","40","41","41","42","43","43","44","44","45","46","46","47","47","48","49","49","50","51","51","52","53","53","54","54","55","56","56","57","57","58","59","59","00","01","01","02","02","03","04","04","05","06","06","07","08","08","09","09","10","11","11","12","12","13","14","14","15","16","16","17","17","18","19","19","20","21","21","22","22","23","24","24","25","26","26","27","27","28","29","29","30","31","31","32","32","33","34","34","35","36","36","37","37","38","39","39","40","41","41","42","42","43","44","44","45","46","46","47","47","48","49","49","50","51","51","52","52","53","54","54","55","56","56","57","57","58","59","59","00","01","01","02","02","03","04","04","05","06","06","07","07","08","09","09","10","11","11","12","12","13","14","14","15","15","16","17","17","18","19","19","20","21","21","22","22","23","24","24","25","25","26","27","27","28","29","29","30","30","31","32","32","33","34","34","35","36","36","37","37","38","39","39","40","40","41","42","42","43","44","44","45","45","46","47","47","48","49","49","50","50","51","52","52","53","54","54","55","55","56","57","57","58","59","59","00","00","01","02","02","03","04","04","05","05","06","07","07","08","09","09","10","10","11","12","12","13","14","14","15","15","16","17","17","18","19","19","20","20","21","22","22","23","24","24","25","25","26","27","27","28","29","29","30","30","31","32","32","33","34","34","35","35","36","37","37","38","39","39","40","40","41","42","42","43","43","44","45","45","46","47","47","48","49","49","50","50","51","52","52","53","54","54","55","55","56","57","57","58","58","59","00","00","01","02","02","03","04","04","05","05","06","07","07","08","08","09","10","10","11","12","12","13","13","14","15","15"],"sec":["18","54","30","07","43","20","02","39","15","51","28","10","46","23","01","38","20","56","33","09","46","28","04","41","17","53","36","12","49","25","01","44","20","57","33","09","52","28","04","41","17","00","36","12","49","25","07","44","20","56","33","15","52","28","04","41","23","59","36","12","49","31","07","44","20","57","39","15","52","28","05","47","23","00","36","12","55","31","08","44","20","03","39","16","52","28","11","47","23","00","36","19","55","31","08","44","27","03","39","15","52","34","11","47","24","00","42","19","55","32","08","50","27","03","39","16","58","35","11","47","24","06","42","19","55","31","14","50","27","03","39","22","58","35","11","47","30","06","43","19","55","38","14","50","27","03","46","22","58","35","11","53","30","06","42","19","01","38","14","50","27","09","45","22","58","34","17","53","30","06","43","25","02","38","14","51","33","09","46","22","59","41","17","54","30","06","49","25","02","38","14","57","33","09","46","22","04","41","17","54","30","06","49","25","01","38","14","57","33","09","46","22","05","41","17","54","30","13","49","25","02","38","21","58","34","10","47","29","05","42","18","54","37","13","50","26","02","45","21","57","34","10","53","29","05","42","18","00","37","13","50","26","08","45","21","58","34","16","53","29","05","42","24","01","37","13","50","32","09","45","21","58","40","16","53","29","05","48","24","00","37","13","56","32","08","45","21","04","40","16","53","29","12","48","24","01","37","19","56","32","08","45","27","04","40","16","53","35","12","48","24","00","43","19","56","32","08","51","27","03","40","16","59","35","11","48","24","07","43","19","56","32","15","51","27","03","40","22","59","35","11","48","30","06","43","19","56","38","14","51","27","04","46","22","59","35","11","54","30","07","43","19","02","38","15","51","27","10","46","23","59","35","18","54","31","07","43","26","02","38","15","51","34","10","48","25","01","43","19","56","32","08","50","27","03","39","15","58","34","10","46","23","59","41","17","54","30","06","49","25","01","37","14","56","32","08","45","21","03","39","16","52","28","10","47","23","59","36","18","54","30","07","43","25","01","38","14","50","32","09","45","21","57","40","16","52","29","05","47","23","00","36","12","54","31","07","43","19","02","38","14","50","27","10","46","22","58","35","17","53","29","06","42","24","00","37","13","49","31","08","44","20","56","39","15","51","27","04","46","22","58","35","11","53","29","06","42","18","00","37","13","49","25","08","44","20","56","33","15","51","28","04","40","22","59","35","11","47","30","06","42","18","55","37","13","49","26","02","44","20","57","33","09","51","28","04","40","16","59","35","11","47","24","06","42","19","55","31","13","50","26","02","38","21","57","33","09","46","28","04","40","17","53","35","11","48","24","00","42","19","55","31","07","50","26","02","38","15","57","33","09","46","22","04","40","17","53","29","11","48","24","00","36","19","55","31","07","44","26","02","38","15","51","27","09","46","22","58","34","17","53","29","05","42","24","00","36","13","49","31","07","44","20","56","38","15","51","27","03","46","22","58","34","11","53","29","05","42","18","00","36","13","49","25","07","44","20","56","32","15","51","27","03","40","22","58","34","11","47","29","05","42","18","54","36","13","49","25","01","44","20","56","32","09","51","27","03","40","16","58","34","11","47","23","05","42","18","54","30","13","49","25","01","38","20","56","32","09","45","27","03","40","16","53","35","11","48","24","00","42","19","55","31","07","50","26","02","38","15","57","33","09","46","22","04","41","17","53","29","12","48","24","00","36","19","55","31","07","44","26","02","39","15","51","33","10","46","22","58","41","17","53","29","05","48","24","00","36","13","55","31","07","44","20","02","38","15","51","27","09","46","22","58","34","17","53","29","05","42","24","00","36","13","49","31","07","44","20","56","39","15","51","27","03","46","22","58","34","11","53"]},"elev":[1983,1979,1976,1973,1983,2006,2002,1995,1981,1987,1990,1990,2019,2062,2083,2097,2132,2165,2183,2192,2157,2126,2105,2062,2031,2007,1984,1987,1973,1962,1944,1915,1921,1989,2066,2135,2185,2196,2181,2149,2107,2086,2078,2047,2040,2033,2046,2087,2125,2169,2231,2253,2237,2216,2197,2173,2146,2122,2131,2150,2148,2132,2154,2204,2231,2228,2224,2219,2234,2199,2149,2102,2089,2104,2117,2148,2223,2280,2324,2344,2373,2475,2535,2536,2500,2468,2420,2368,2309,2246,2194,2120,2064,2100,2175,2232,2302,2343,2383,2421,2470,2461,2408,2373,2352,2305,2267,2248,2208,2160,2124,2074,2019,1963,1921,1896,1852,1830,1801,1787,1775,1812,1861,1908,1970,2012,2049,2038,2026,2043,2076,2150,2213,2294,2381,2433,2445,2424,2359,2294,2234,2169,2110,2048,1980,1916,1856,1842,1887,1956,1995,2005,2029,2021,2024,2062,2087,2084,2108,2138,2145,2095,2046,2036,2041,2077,2165,2227,2219,2182,2114,2050,1996,1928,1834,1727,1627,1569,1550,1545,1561,1579,1586,1599,1637,1694,1753,1790,1781,1771,1768,1801,1788,1764,1793,1833,1861,1873,1871,1886,1928,1968,1954,1958,1960,1977,2012,2022,2016,2011,2047,2090,2118,2137,2170,2208,2212,2161,2089,2027,1985,1950,1899,1853,1814,1761,1704,1636,1570,1508,1453,1386,1326,1291,1285,1318,1358,1454,1550,1620,1677,1765,1868,1913,1936,1979,2044,2094,2078,2043,2005,1962,1922,1900,1935,1995,2037,2108,2148,2111,2072,2042,2006,1970,1934,1882,1797,1687,1606,1530,1456,1401,1362,1325,1297,1269,1230,1178,1118,1054,1007,982,961,903,825,804,834,896,942,994,1052,1112,1170,1176,1137,1068,1025,1055,1099,1097,1109,1184,1276,1302,1274,1233,1209,1175,1114,1064,1024,1011,998,961,904,896,940,998,1032,1047,1003,944,935,943,934,932,945,959,1002,974,959,962,1026,1112,1216,1318,1391,1375,1328,1307,1286,1237,1222,1251,1249,1215,1175,1189,1242,1318,1399,1464,1491,1485,1473,1485,1511,1546,1522,1506,1495,1513,1554,1496,1442,1414,1427,1426,1465,1526,1571,1557,1544,1557,1636,1700,1758,1846,1919,1938,1927,1937,1924,1903,1917,1946,1903,1859,1842,1871,1936,2028,2044,2067,2035,1996,1947,1911,1955,1959,1904,1874,1946,2055,2112,2230,2324,2399,2471,2466,2455,2470,2509,2531,2486,2437,2375,2338,2275,2217,2176,2213,2305,2446,2545,2641,2638,2589,2526,2471,2426,2367,2322,2292,2299,2285,2250,2200,2146,2103,2061,2029,2000,1950,1890,1924,2010,2097,2173,2241,2327,2423,2498,2506,2458,2414,2390,2339,2270,2266,2377,2530,2682,2700,2681,2664,2644,2601,2579,2575,2529,2504,2467,2421,2383,2337,2287,2234,2185,2142,2100,2068,2039,1992,1946,1903,1868,1824,1763,1712,1670,1640,1617,1571,1544,1506,1462,1431,1408,1363,1341,1344,1365,1439,1486,1536,1583,1625,1671,1667,1616,1538,1459,1409,1421,1467,1517,1558,1600,1632,1652,1642,1629,1651,1679,1720,1755,1807,1865,1899,1926,1923,1895,1808,1708,1627,1652,1702,1735,1767,1831,1884,1923,1954,1982,2013,2051,2070,2032,1990,1966,1927,1897,1867,1871,1923,1998,2073,2140,2147,2154,2185,2217,2254,2243,2204,2191,2169,2119,2114,2138,2206,2282,2367,2425,2451,2453,2465,2437,2381,2326,2276,2229,2167,2156,2177,2215,2283,2355,2402,2425,2420,2402,2337,2293,2280,2251,2191,2149,2138,2134,2113,2079,2054,1995,1972,1993,2030,2082,2150,2198,2213,2199,2184,2146,2102,2036,1965,1919,1902,1885,1864,1840,1806,1751,1725,1719,1731,1743,1749,1762,1783,1806,1827,1834,1841,1863,1881,1902,1920,1901,1877,1843,1806,1709,1625,1550,1438,1366,1359,1383,1405,1435,1462,1494,1530,1575,1621,1667,1716,1775,1842,1905,1944,1960,1948,1942,1945,1958,1957,1963,1957,1952,1980,2018,2030,2039,2030,2007,1969,1944,1923,1899,1897,1913,1937,1945,1976,2018,2079,2123,2166,2203,2261,2303,2338,2381,2430,2464,2509,2534,2516,2487,2462,2428,2366,2295,2213,2161,2169,2187,2186,2167,2146,2110,2082,2062,2052,2057,2029,1955,1893,1828,1769,1729,1697,1672,1650,1624,1599,1575,1556,1551,1550,1552,1552,1542,1530,1512,1493,1482,1475,1489,1512,1541,1561,1577,1581,1606,1646,1670,1679,1686,1690,1710,1711,1698,1713,1732,1742,1731,1722,1711,1691,1645,1606,1558,1522,1504,1466,1448,1459,1472,1470,1475,1488,1485,1468,1453,1442,1400,1373,1350,1322,1311,1303,1297,1290,1288,1278,1272,1268,1254,1230,1184,1166,1144,1111,1085,1067],"lat":[46.00875,46.00875,46.008766666667,46.008766666667,46.008766666667,46.008766666667,46.008766666667,46.008766666667,46.00875,46.008766666667,46.00875,46.0087,46.008833333333,46.009083333333,46.009333333333,46.00905,46.00855,46.008483333333,46.008866666667,46.008966666667,46.008733333333,46.008333333333,46.008583333333,46.008883333333,46.008783333333,46.008216666667,46.007866666667,46.008116666667,46.008466666667,46.0088,46.009066666667,46.0087,46.008116666667,46.007516666667,46.006983333333,46.006983333333,46.0074,46.007883333333,46.00825,46.008533333333,46.008866666667,46.009166666667,46.009616666667,46.00995,46.009633333333,46.009133333333,46.0086,46.00815,46.007916666667,46.008116666667,46.008416666667,46.008033333333,46.007633333333,46.00785,46.008233333333,46.0085,46.0087,46.008966666667,46.008816666667,46.00825,46.007566666667,46.007133333333,46.007466666667,46.007866666667,46.008316666667,46.008733333333,46.009166666667,46.00915,46.008616666667,46.0083,46.008683333333,46.008916666667,46.0086,46.00815,46.00815,46.008333333333,46.007866666667,46.0075,46.0078,46.00805,46.007916666667,46.0075,46.007616666667,46.008033333333,46.008316666667,46.0087,46.00845,46.008033333333,46.00805,46.0083,46.008416666667,46.007883333333,46.007433333333,46.00705,46.006766666667,46.006333333333,46.006533333333,46.0068,46.006383333333,46.0063,46.006616666667,46.006316666667,46.00585,46.005916666667,46.006316666667,46.0061,46.00575,46.006183333333,46.0064,46.006083333333,46.005616666667,46.005016666667,46.004416666667,46.0038,46.0032,46.002633333333,46.0021,46.00155,46.000983333333,46.000433333333,45.999883333333,45.999383333333,45.998716666667,45.998033333333,45.997433333333,45.99685,45.9963,45.99575,45.99515,45.994616666667,45.994016666667,45.993433333333,45.992816666667,45.992266666667,45.991716666667,45.991183333333,45.990666666667,45.990066666667,45.989433333333,45.98865,45.98795,45.987283333333,45.986566666667,45.985866666667,45.985216666667,45.984616666667,45.984016666667,45.983433333333,45.982883333333,45.982383333333,45.98185,45.9813,45.98075,45.9802,45.979583333333,45.978883333333,45.978366666667,45.97815,45.978116666667,45.9781,45.978033333333,45.977833333333,45.977533333333,45.9772,45.97685,45.9766,45.9764,45.976183333333,45.975933333333,45.975833333333,45.975783333333,45.975566666667,45.97525,45.974916666667,45.97455,45.974183333333,45.974183333333,45.974633333333,45.975016666667,45.975166666667,45.9752,45.975133333333,45.974983333333,45.9749,45.975083333333,45.975316666667,45.975483333333,45.975583333333,45.975666666667,45.975833333333,45.97615,45.976483333333,45.976816666667,45.977133333333,45.977166666667,45.9769,45.976683333333,45.97705,45.97715,45.976683333333,45.976483333333,45.97685,45.977116666667,45.977016666667,45.976533333333,45.976516666667,45.97695,45.976966666667,45.976566666667,45.976133333333,45.976366666667,45.976366666667,45.975883333333,45.975916666667,45.976333333333,45.976216666667,45.975733333333,45.975766666667,45.976133333333,45.976133333333,45.97565,45.97575,45.9761,45.975966666667,45.9756,45.975383333333,45.975783333333,45.975666666667,45.975166666667,45.974616666667,45.97405,45.973516666667,45.972983333333,45.972466666667,45.97195,45.971416666667,45.970883333333,45.970266666667,45.969733333333,45.969166666667,45.968533333333,45.967883333333,45.9672,45.966583333333,45.965983333333,45.965433333333,45.964833333333,45.96425,45.963666666667,45.963116666667,45.9626,45.9621,45.961866666667,45.961516666667,45.9611,45.960616666667,45.960166666667,45.959766666667,45.9594,45.958916666667,45.9584,45.957833333333,45.957266666667,45.956733333333,45.9562,45.9557,45.955183333333,45.95465,45.954233333333,45.953816666667,45.953166666667,45.9527,45.952266666667,45.951783333333,45.951316666667,45.950866666667,45.9505,45.950066666667,45.94965,45.949266666667,45.948983333333,45.948716666667,45.948416666667,45.9486,45.9492,45.94935,45.949,45.948983333333,45.949516666667,45.949366666667,45.948933333333,45.949,45.949616666667,45.949716666667,45.9494,45.949166666667,45.94935,45.94985,45.949866666667,45.949566666667,45.94925,45.9495,45.9498,45.94965,45.949266666667,45.9496,45.94995,45.949683333333,45.949466666667,45.9494,45.949283333333,45.94905,45.948733333333,45.9485,45.948266666667,45.947883333333,45.947433333333,45.946983333333,45.94655,45.94615,45.945716666667,45.9453,45.944866666667,45.944433333333,45.94395,45.94345,45.94295,45.94245,45.942033333333,45.94165,45.941233333333,45.94075,45.940283333333,45.93985,45.939383333333,45.93895,45.938533333333,45.938166666667,45.937683333333,45.93725,45.936833333333,45.936416666667,45.936,45.935616666667,45.93525,45.93485,45.934416666667,45.93395,45.933533333333,45.933116666667,45.9327,45.93225,45.931866666667,45.931483333333,45.931016666667,45.930633333333,45.930266666667,45.9301,45.93055,45.931,45.930683333333,45.9303,45.929933333333,45.929533333333,45.929133333333,45.9288,45.9284,45.928083333333,45.927616666667,45.9271,45.926633333333,45.92615,45.925766666667,45.925366666667,45.924933333333,45.92465,45.924183333333,45.923783333333,45.923283333333,45.922833333333,45.922966666667,45.923366666667,45.92305,45.923,45.923466666667,45.923516666667,45.923083333333,45.923166666667,45.923516666667,45.92325,45.923033333333,45.923266666667,45.923666666667,45.923483333333,45.923166666667,45.922833333333,45.9224,45.92195,45.921566666667,45.921116666667,45.9206,45.920133333333,45.919666666667,45.919216666667,45.918716666667,45.918283333333,45.917916666667,45.917566666667,45.917216666667,45.9168,45.916383333333,45.916,45.91565,45.915333333333,45.915083333333,45.9147,45.914983333333,45.915466666667,45.915633333333,45.915766666667,45.915383333333,45.914983333333,45.914566666667,45.914166666667,45.913783333333,45.913466666667,45.91305,45.91265,45.91225,45.9118,45.91135,45.9109,45.910366666667,45.909916666667,45.909433333333,45.90895,45.90845,45.90795,45.907483333333,45.907083333333,45.906616666667,45.906116666667,45.905766666667,45.90545,45.90505,45.904583333333,45.904266666667,45.903983333333,45.903983333333,45.904433333333,45.90435,45.904033333333,45.903666666667,45.903216666667,45.902683333333,45.90215,45.901716666667,45.9014,45.9012,45.901,45.900833333333,45.900466666667,45.900616666667,45.901083333333,45.90135,45.901016666667,45.9012,45.9014,45.90105,45.900916666667,45.901366666667,45.901133333333,45.9008,45.900966666667,45.9013,45.90095,45.900783333333,45.900983333333,45.901483333333,45.90135,45.901066666667,45.901466666667,45.9016,45.901233333333,45.9008,45.900283333333,45.899783333333,45.899183333333,45.898566666667,45.897866666667,45.897183333333,45.896616666667,45.896216666667,45.895833333333,45.895433333333,45.894966666667,45.8945,45.894083333333,45.893616666667,45.89315,45.89265,45.89225,45.8918,45.891416666667,45.891033333333,45.890716666667,45.890283333333,45.889833333333,45.8894,45.888966666667,45.888516666667,45.888083333333,45.88755,45.8869,45.88635,45.885866666667,45.8853,45.884716666667,45.8842,45.883683333333,45.88325,45.882733333333,45.882166666667,45.881566666667,45.880933333333,45.880366666667,45.879766666667,45.879166666667,45.878516666667,45.8778,45.8771,45.8763,45.87565,45.875,45.87435,45.873716666667,45.873083333333,45.872466666667,45.871816666667,45.871183333333,45.870566666667,45.869883333333,45.8692,45.868566666667,45.867916666667,45.867266666667,45.86665,45.865933333333,45.865333333333,45.864733333333,45.864183333333,45.863716666667,45.86345,45.8633,45.863066666667,45.862783333333,45.86255,45.862333333333,45.862083333333,45.861883333333,45.861566666667,45.8612,45.860866666667,45.860366666667,45.859766666667,45.859066666667,45.8584,45.857816666667,45.85735,45.85685,45.856266666667,45.855716666667,45.855183333333,45.855233333333,45.855516666667,45.85505,45.854683333333,45.85505,45.855066666667,45.8545,45.8547,45.8547,45.8542,45.853633333333,45.853133333333,45.852616666667,45.852133333333,45.851616666667,45.851116666667,45.850633333333,45.8501,45.8496,45.849016666667,45.8484,45.847816666667,45.847216666667,45.846716666667,45.846366666667,45.845916666667,45.8454,45.844783333333,45.8442,45.843566666667,45.84295,45.842283333333,45.841616666667,45.84095,45.8403,45.8397,45.839133333333,45.838616666667,45.838216666667,45.8378,45.837233333333,45.836533333333,45.835866666667,45.83525,45.834583333333,45.833966666667,45.833316666667,45.8327,45.832066666667,45.831383333333,45.830816666667,45.830216666667,45.829583333333,45.828983333333,45.8284,45.827816666667,45.827266666667,45.826583333333,45.826033333333,45.82555,45.825033333333,45.824633333333,45.824116666667,45.823616666667,45.823083333333,45.822533333333,45.822033333333,45.821583333333,45.821166666667,45.8207,45.8202,45.819633333333,45.819116666667,45.818633333333,45.818133333333,45.817516666667,45.81685,45.8162,45.815666666667,45.815183333333,45.81465,45.814133333333,45.81365,45.813166666667,45.812616666667,45.812183333333,45.811766666667,45.811233333333,45.810766666667,45.8103,45.809766666667,45.809283333333,45.808833333333,45.808316666667,45.807783333333,45.8073,45.806783333333,45.80625,45.805683333333,45.805383333333,45.805116666667,45.804833333333,45.80445,45.8041,45.803716666667,45.803333333333,45.803,45.802633333333,45.80225,45.801866666667,45.801516666667,45.801183333333,45.800883333333,45.800566666667,45.80025,45.8,45.799783333333,45.7996,45.7994,45.7992,45.798983333333,45.798816666667,45.798683333333,45.79855,45.79845,45.798316666667,45.798166666667,45.798,45.7978,45.797616666667,45.797366666667,45.797133333333,45.79695,45.7968,45.7967,45.7966,45.796483333333,45.796266666667,45.79605,45.795866666667,45.795683333333,45.795466666667,45.795333333333,45.7951,45.794816666667,45.794633333333,45.794366666667,45.794116666667,45.7939,45.793633333333,45.793383333333,45.793166666667,45.792966666667,45.7927,45.792466666667,45.7923,45.792133333333,45.791883333333,45.791716666667,45.791583333333,45.7914,45.79125,45.791183333333,45.7909,45.79085,45.790533333333,45.7904,45.790333333333,45.79035,45.790433333333,45.790333333333,45.79025,45.790166666667,45.7899,45.7896,45.789983333333,45.790416666667,45.79045,45.79015,45.789966666667,45.7905,45.7907,45.7906,45.790316666667,45.790483333333,45.791,45.791016666667,45.790833333333,45.790733333333,45.791,45.790766666667,45.7911,45.791366666667,45.791033333333,45.791116666667,45.7916,45.791616666667,45.791533333333,45.791416666667,45.791066666667,45.790783333333,45.791183333333,45.79135,45.791116666667,45.790816666667,45.7912,45.791266666667,45.7913,45.79115,45.790866666667,45.790483333333,45.790433333333,45.790516666667,45.790566666667,45.790516666667,45.790483333333,45.7904,45.790366666667,45.7903,45.790283333333,45.790116666667,45.79015,45.790666666667,45.790666666667,45.790383333333,45.7904,45.79085,45.790866666667,45.790533333333,45.790683333333,45.79115,45.791116666667,45.79075,45.790566666667,45.79105,45.791033333333,45.79065,45.790783333333,45.791283333333,45.791216666667,45.7909,45.7911,45.791566666667,45.791683333333,45.791416666667,45.791566666667,45.792033333333,45.791766666667,45.791866666667,45.792266666667,45.791933333333,45.792433333333,45.792416666667,45.791966666667,45.791766666667,45.7922,45.792083333333,45.791616666667,45.791166666667,45.790716666667,45.790266666667,45.789816666667,45.789316666667,45.788916666667,45.7884,45.787933333333,45.78735,45.786883333333,45.786433333333,45.785733333333,45.785066666667,45.784316666667,45.783716666667,45.783216666667,45.782716666667,45.781983333333,45.78125,45.7805,45.7798,45.779033333333,45.77825,45.7775,45.776633333333,45.775883333333,45.775133333333,45.774416666667,45.773733333333,45.77305,45.7724,45.77175,45.771066666667,45.770383333333,45.7697,45.769,45.7683,45.7676,45.766916666667,45.7662,45.765383333333,45.7647,45.764,45.763316666667,45.762616666667,45.7619,45.761183333333,45.760466666667,45.759766666667,45.759083333333,45.7584,45.7577,45.756966666667,45.756233333333,45.755516666667,45.754783333333,45.753966666667,45.753266666667,45.75255,45.75185,45.75115,45.7505,45.749883333333,45.749283333333,45.74865,45.748,45.747333333333,45.746733333333,45.746166666667,45.745566666667,45.745033333333,45.744466666667,45.743933333333,45.7433,45.742766666667,45.742216666667,45.741683333333,45.741233333333,45.740666666667,45.740333333333,45.740183333333,45.740683333333,45.74095,45.74065,45.740833333333,45.741283333333,45.7412,45.740766666667,45.740516666667,45.740233333333,45.739783333333,45.739483333333,45.739266666667,45.7389,45.7384,45.737833333333,45.737416666667,45.73705,45.73675,45.7364,45.736016666667,45.735616666667,45.735233333333,45.734933333333,45.734566666667,45.734233333333,45.733666666667,45.733216666667,45.732783333333,45.7323,45.73185,45.731416666667,45.730983333333,45.730516666667,45.73005,45.729533333333,45.729083333333,45.728633333333,45.7282,45.72775,45.727216666667,45.72675,45.72635,45.72595,45.725533333333,45.725633333333,45.7259,45.725733333333,45.725316666667,45.72485,45.724483333333,45.724016666667,45.723516666667,45.723016666667,45.722483333333,45.721933333333,45.721383333333,45.720916666667,45.72035,45.7197,45.719183333333,45.718583333333,45.718016666667,45.71755,45.717016666667,45.7165,45.715966666667,45.715483333333,45.7149,45.7143,45.7138,45.713266666667,45.7129,45.71245,45.711866666667,45.711333333333,45.710766666667,45.710233333333,45.709633333333,45.708966666667,45.708216666667,45.70745,45.706716666667,45.705966666667,45.705216666667,45.7045,45.703766666667,45.703016666667,45.7023,45.701583333333,45.700933333333,45.700416666667,45.699866666667,45.699333333333,45.69885,45.698283333333,45.69775,45.697183333333,45.69675,45.696166666667,45.695483333333,45.6949,45.694233333333,45.693666666667,45.6932,45.692666666667,45.6921,45.691583333333,45.691216666667,45.690783333333,45.690566666667,45.691033333333,45.691366666667,45.69105,45.690466666667,45.6901,45.690366666667,45.690416666667,45.6899,45.689983333333,45.690133333333,45.6899,45.68955,45.689166666667,45.688766666667,45.688366666667,45.687883333333,45.687283333333,45.686766666667,45.6864,45.686033333333,45.6855,45.6849,45.684283333333,45.683733333333,45.683166666667,45.6826,45.682,45.681433333333,45.680833333333,45.680266666667,45.6796,45.679016666667,45.678466666667,45.6779,45.67735,45.676766666667,45.67615,45.675516666667,45.67485,45.674183333333,45.6735,45.672933333333,45.672416666667,45.671916666667,45.671366666667,45.670916666667,45.6705,45.6701,45.6697,45.6693,45.668916666667,45.668616666667,45.66835,45.668016666667,45.667733333333,45.66755,45.667366666667,45.667066666667,45.6667,45.66635,45.666083333333,45.665766666667,45.665616666667,45.665416666667,45.665116666667,45.66485,45.664583333333,45.6643,45.6639,45.6635,45.663133333333,45.6628,45.66245,45.6621,45.661733333333,45.661433333333,45.66125,45.66105,45.66075,45.66035,45.659966666667,45.659483333333,45.65895,45.6585,45.65815,45.657766666667,45.657366666667,45.656966666667,45.6565,45.655966666667,45.655466666667,45.65495,45.65445,45.653866666667,45.6535,45.653083333333,45.652633333333,45.652233333333,45.651783333333,45.6513,45.650883333333,45.650366666667,45.649883333333,45.649366666667,45.648883333333,45.648383333333,45.648016666667,45.64755,45.6471,45.646766666667,45.646416666667,45.646216666667,45.645883333333,45.646266666667,45.64645,45.646233333333,45.64615,45.646683333333,45.647,45.646716666667,45.646816666667,45.647183333333,45.64685,45.646983333333,45.6473,45.6473,45.647116666667,45.64695,45.64735,45.64755,45.6473,45.647433333333,45.64785,45.6479,45.647883333333,45.647816666667,45.6476,45.6472,45.6467,45.646116666667,45.6456,45.645166666667,45.644716666667,45.644283333333,45.643783333333,45.6433,45.642783333333,45.64225,45.641666666667,45.64115,45.640616666667,45.6401,45.639616666667,45.639183333333,45.639166666667,45.639716666667,45.639633333333,45.639183333333,45.6387,45.638166666667,45.637733333333,45.63725,45.636816666667,45.6364,45.635983333333,45.635566666667,45.6351,45.634633333333,45.6341,45.633533333333,45.632966666667,45.632416666667,45.63185,45.6314,45.631083333333,45.630733333333,45.630383333333,45.62995,45.629566666667,45.629183333333,45.628783333333,45.628466666667,45.62825,45.627933333333,45.62765,45.627333333333,45.627016666667,45.626733333333,45.626433333333,45.6261,45.62575,45.62545,45.625116666667,45.6248,45.6244,45.624066666667,45.623783333333,45.623516666667,45.623233333333,45.622916666667,45.6225,45.622066666667,45.62165,45.621283333333,45.6209,45.620483333333,45.619983333333,45.619583333333,45.619233333333,45.618883333333,45.61855,45.61825,45.617983333333,45.617616666667,45.617483333333,45.617983333333,45.61815,45.6181,45.617833333333,45.617533333333,45.617266666667,45.617683333333,45.61795,45.617966666667,45.61755,45.6172,45.616783333333,45.616416666667,45.616066666667,45.615733333333,45.615366666667,45.615,45.614666666667,45.61445,45.614233333333,45.613983333333,45.6137,45.61335,45.613016666667,45.612766666667,45.612433333333,45.6121,45.611833333333,45.611533333333,45.611266666667,45.61105,45.6109,45.610766666667,45.610583333333,45.610433333333,45.61045,45.610383333333,45.610166666667,45.609916666667,45.609716666667,45.609533333333,45.609333333333,45.609116666667,45.608866666667,45.608583333333,45.608433333333,45.608133333333,45.607916666667,45.6077,45.607483333333,45.6072,45.606983333333,45.606833333333,45.606633333333,45.606433333333,45.6062,45.605883333333,45.605533333333,45.605233333333,45.60485,45.605,45.605433333333,45.6053,45.60495,45.605333333333,45.605466666667,45.6053,45.605033333333,45.604866666667,45.604666666667,45.604533333333,45.60445,45.60415,45.603883333333,45.603583333333,45.603316666667,45.603016666667,45.60255,45.602166666667,45.601783333333,45.601333333333,45.601033333333,45.600683333333,45.600383333333,45.600233333333,45.600683333333,45.600633333333,45.600366666667,45.600866666667,45.60105,45.600716666667,45.600183333333,45.599733333333,45.599316666667,45.598883333333,45.598383333333,45.598016666667,45.59755,45.59705,45.596516666667,45.596,45.595433333333,45.594816666667,45.5943,45.5938,45.5933,45.592966666667,45.592583333333,45.59205,45.59165,45.591383333333,45.591133333333,45.590766666667,45.59035,45.589916666667,45.589533333333,45.589183333333,45.588816666667,45.588533333333,45.588283333333,45.587983333333,45.5877,45.5874,45.587066666667,45.58665,45.5863,45.585966666667,45.585616666667,45.5853,45.584883333333,45.584516666667,45.584183333333,45.583866666667,45.583533333333,45.583133333333,45.582733333333,45.5824,45.58215,45.5818,45.581533333333,45.581283333333,45.581116666667,45.580983333333,45.580866666667,45.58075,45.580466666667,45.580083333333,45.579716666667,45.579383333333,45.5791,45.578816666667,45.57855,45.578283333333,45.577966666667,45.577516666667,45.577083333333,45.576583333333,45.576083333333,45.575633333333,45.575216666667,45.57475,45.574333333333,45.573916666667,45.57355,45.5732,45.57285,45.572566666667,45.57235,45.57215,45.571933333333,45.57175,45.57155,45.571366666667,45.571166666667,45.570933333333,45.57065,45.570333333333,45.570033333333,45.56975,45.56945,45.5692,45.569,45.5688,45.56855,45.568266666667,45.568016666667,45.567783333333,45.567566666667,45.567366666667,45.567183333333,45.56705,45.566916666667,45.566716666667,45.56645,45.56615,45.565933333333,45.5657,45.565583333333,45.565366666667,45.565183333333,45.56505,45.564866666667,45.564633333333,45.564383333333,45.5641,45.56375,45.5634,45.563033333333,45.562633333333,45.562283333333,45.561916666667,45.56155,45.561433333333,45.561933333333,45.561816666667,45.5615,45.561633333333,45.562083333333,45.561883333333,45.561483333333,45.561016666667,45.560566666667,45.56015,45.559933333333,45.560433333333,45.5604,45.56005,45.560366666667,45.560716666667,45.5603,45.560566666667,45.56075,45.560383333333,45.5604,45.560816666667,45.560666666667,45.5603,45.560533333333,45.560783333333,45.56055,45.560466666667,45.5609,45.560883333333,45.560616666667,45.560533333333,45.56105,45.561566666667,45.56185,45.56155,45.561266666667,45.561666666667,45.56205,45.56185,45.561516666667,45.561683333333,45.56215,45.562716666667,45.562816666667,45.5625,45.56225,45.562366666667,45.563,45.56355,45.56385,45.563633333333,45.5632,45.56305,45.563466666667,45.563966666667,45.564183333333,45.563866666667,45.563466666667,45.56355,45.564016666667,45.5645,45.56495,45.565483333333,45.565966666667,45.565766666667,45.565533333333,45.565666666667,45.566166666667,45.566616666667,45.566483333333,45.566116666667,45.566183333333,45.566666666667,45.56715,45.567133333333,45.566833333333,45.5666,45.566966666667,45.5674,45.5672,45.566883333333,45.566516666667,45.5662,45.565933333333,45.565583333333,45.565283333333,45.564983333333,45.564566666667,45.564133333333,45.563683333333,45.563266666667,45.562833333333,45.562383333333,45.5619,45.5614,45.560933333333,45.560466666667,45.560083333333,45.559633333333,45.559166666667,45.558733333333,45.55835,45.557983333333,45.557616666667,45.557183333333,45.55675,45.5564,45.556,45.55565,45.555366666667,45.555033333333,45.55475,45.554433333333,45.554116666667,45.553766666667,45.553633333333,45.553533333333,45.553233333333,45.552833333333,45.552916666667,45.5533,45.552966666667,45.552883333333,45.553216666667,45.553166666667,45.552683333333,45.55295,45.55295,45.5525,45.552816666667,45.552966666667,45.552683333333,45.552483333333,45.552166666667,45.552016666667,45.55245,45.552233333333,45.552016666667,45.552466666667,45.5526,45.552216666667,45.552516666667,45.55275,45.55245,45.55205,45.552466666667,45.552766666667,45.5525,45.552,45.551816666667,45.552216666667,45.552383333333,45.552166666667,45.551833333333,45.55135,45.55085,45.550383333333,45.549866666667,45.549433333333,45.548983333333,45.5485,45.54795,45.547533333333,45.547133333333,45.546666666667,45.546166666667,45.54565,45.545133333333,45.5446,45.544033333333,45.543466666667,45.542966666667,45.542533333333,45.54215,45.5417,45.5413,45.540616666667,45.5401,45.539583333333,45.539083333333,45.538566666667,45.538066666667,45.537566666667,45.537066666667,45.536566666667,45.536083333333,45.535583333333,45.535066666667,45.534566666667,45.534183333333,45.533833333333,45.533466666667,45.53285,45.532283333333,45.531716666667,45.5312,45.530716666667,45.5302,45.529666666667,45.5291,45.528533333333,45.527983333333,45.527416666667,45.526833333333,45.526316666667,45.525833333333,45.5254,45.524983333333,45.5245,45.524083333333,45.523616666667,45.52325,45.522966666667,45.522666666667,45.522366666667,45.52205,45.521766666667,45.521466666667,45.521166666667,45.52085,45.5205,45.520116666667,45.519733333333,45.519416666667,45.51905,45.518583333333,45.518116666667,45.517766666667,45.5174,45.517,45.51655,45.516083333333,45.515566666667,45.515066666667,45.51455,45.514033333333,45.513566666667,45.513066666667,45.512583333333,45.5121,45.5116,45.511083333333,45.510566666667,45.509966666667,45.50945,45.508916666667,45.50835,45.507783333333,45.5072,45.5066,45.505983333333,45.505383333333,45.504766666667,45.50415,45.503566666667,45.50295,45.502316666667,45.501683333333,45.501033333333,45.5004,45.499783333333,45.499183333333,45.498483333333,45.497883333333,45.4973,45.49675,45.496183333333,45.49565,45.495116666667,45.4946,45.494066666667,45.493533333333,45.493016666667,45.492516666667,45.492016666667,45.491466666667,45.4909,45.490366666667,45.4898,45.489216666667,45.4885,45.4879,45.48735,45.4867,45.486083333333,45.485466666667,45.484866666667,45.484266666667,45.4837,45.48315,45.482616666667,45.482083333333,45.481566666667,45.481066666667,45.48055,45.480033333333,45.479466666667,45.478966666667,45.478483333333,45.478,45.477516666667,45.4771,45.47675,45.476466666667,45.476166666667,45.475883333333,45.4756,45.475266666667,45.474983333333,45.474766666667,45.47455,45.474416666667,45.474733333333,45.474733333333,45.4744,45.473816666667,45.4732,45.472816666667,45.472866666667,45.473166666667,45.473266666667,45.4728,45.4722,45.4719,45.4721,45.472416666667,45.47275,45.47255,45.47205,45.471833333333,45.47195,45.472216666667,45.471966666667,45.4714,45.470816666667,45.470316666667,45.469866666667,45.47,45.470183333333,45.469733333333,45.469283333333,45.469416666667,45.469716666667,45.469383333333,45.468916666667,45.468966666667,45.46915,45.468666666667,45.468316666667,45.468583333333,45.4684,45.468016666667,45.468283333333,45.468383333333,45.4679,45.467683333333,45.467966666667,45.467816666667,45.467216666667,45.466533333333,45.466016666667,45.465466666667,45.464883333333,45.464316666667,45.463716666667,45.463116666667,45.462466666667,45.461833333333,45.461183333333,45.460483333333,45.459783333333,45.4591,45.458383333333,45.45765,45.456916666667,45.456233333333,45.455416666667,45.454766666667,45.4541,45.45345,45.4528,45.452166666667,45.451516666667,45.451,45.450966666667,45.451266666667,45.451233333333,45.4507,45.450216666667,45.4503,45.450516666667,45.45015,45.449583333333,45.449083333333,45.448416666667,45.4477,45.447033333333,45.446316666667,45.445583333333,45.444883333333,45.444183333333,45.443383333333,45.442566666667,45.441733333333,45.441083333333,45.440633333333,45.4407,45.440766666667,45.440433333333,45.439866666667,45.4401,45.4401,45.43955,45.43895,45.439116666667,45.439033333333,45.438516666667,45.4381,45.438366666667,45.43805,45.43745,45.437533333333,45.437383333333,45.43685,45.436,45.435166666667,45.434416666667,45.433666666667,45.432883333333,45.432116666667,45.431416666667,45.4307,45.429983333333,45.4293,45.428583333333,45.42785,45.427166666667,45.426483333333,45.425716666667,45.424933333333,45.424033333333,45.4233,45.4226,45.421916666667,45.421183333333,45.420433333333,45.419683333333,45.418983333333,45.4183,45.417666666667,45.417116666667,45.416616666667,45.416016666667,45.41535,45.414633333333,45.413916666667,45.413083333333,45.41235,45.411566666667,45.410733333333,45.40995,45.409183333333,45.4084,45.407566666667,45.406816666667,45.40605,45.4053,45.404533333333,45.403733333333,45.402916666667,45.402116666667,45.401416666667,45.400816666667,45.4003,45.399716666667,45.399066666667,45.398466666667,45.397716666667,45.39715,45.3966,45.3961,45.395533333333,45.3949,45.394316666667,45.393716666667,45.393083333333,45.392416666667,45.3918,45.391116666667,45.390433333333,45.389783333333,45.389116666667,45.388483333333,45.387833333333,45.3871,45.3865,45.385966666667,45.385416666667,45.384833333333,45.384283333333,45.38385,45.38395,45.384133333333,45.383783333333,45.383983333333,45.384233333333,45.383966666667,45.383666666667,45.383983333333,45.384016666667,45.383533333333,45.383066666667,45.382533333333,45.382016666667,45.381566666667,45.381216666667,45.381533333333,45.381483333333,45.381,45.38055,45.380833333333,45.3809,45.38045,45.379933333333,45.3794,45.3788,45.378083333333,45.377333333333,45.3765,45.3758,45.375116666667,45.374416666667,45.373733333333,45.37305,45.372333333333,45.371616666667,45.371116666667,45.37065,45.370133333333,45.3697,45.3694,45.369416666667,45.36905,45.36865,45.368166666667,45.367733333333,45.3673,45.366866666667,45.3665,45.366233333333,45.365916666667,45.365533333333,45.365083333333,45.364616666667,45.36415,45.363666666667,45.363366666667,45.36305,45.362616666667,45.362083333333,45.361416666667,45.360833333333,45.360266666667,45.3597,45.359133333333,45.358666666667,45.358216666667,45.35775,45.3573,45.356866666667,45.356333333333,45.355833333333,45.355383333333,45.354883333333,45.3544,45.353816666667,45.353366666667,45.352866666667,45.352416666667,45.351933333333,45.35145,45.35105,45.350533333333,45.34995,45.34935,45.348733333333,45.3481,45.34745,45.346833333333,45.34625,45.345666666667,45.345016666667,45.3446,45.344166666667,45.34365,45.343133333333,45.34255,45.34195,45.341366666667,45.340833333333,45.3404,45.340016666667,45.339616666667,45.339183333333,45.338766666667,45.33845,45.338066666667,45.338383333333,45.33885,45.338883333333,45.338633333333,45.339,45.33935,45.339,45.338983333333,45.339433333333,45.3393,45.338816666667,45.339,45.339166666667,45.338666666667,45.338783333333,45.338666666667,45.338166666667,45.338016666667,45.338383333333,45.338183333333,45.33765,45.33775,45.3377,45.337216666667,45.33655,45.33605,45.335533333333,45.334983333333,45.334333333333,45.333616666667,45.332866666667,45.332166666667,45.331483333333,45.330816666667,45.330216666667,45.329566666667,45.32895,45.328366666667,45.327866666667,45.32715,45.326483333333,45.325766666667,45.325083333333,45.324383333333,45.323766666667,45.323283333333,45.32275,45.322183333333,45.3216,45.3211,45.320533333333,45.319883333333,45.31925,45.318716666667,45.31815,45.317633333333,45.317166666667,45.316666666667,45.31625,45.3158,45.315283333333,45.314783333333,45.314316666667,45.3139,45.313483333333,45.3132,45.312833333333,45.312466666667,45.312083333333,45.31155,45.310933333333,45.3104,45.309933333333,45.30945,45.308983333333,45.308433333333,45.307866666667,45.307366666667,45.306833333333,45.3063,45.305766666667,45.3053,45.304866666667,45.304333333333,45.3038,45.303333333333,45.302933333333,45.302516666667,45.302116666667,45.3017,45.301233333333,45.300866666667,45.300516666667,45.300166666667,45.299866666667,45.300116666667,45.300516666667,45.3004,45.300166666667,45.300566666667,45.300766666667,45.30045,45.300783333333,45.3011,45.300816666667,45.301083333333,45.301516666667,45.3016,45.301483333333,45.301266666667,45.301,45.300766666667,45.300966666667,45.3013,45.300966666667,45.300516666667,45.30025,45.2999,45.299716666667,45.299983333333,45.300133333333,45.3003,45.300483333333,45.30075,45.300983333333,45.301233333333,45.301433333333,45.301583333333,45.301766666667,45.301916666667,45.301966666667,45.30195,45.301933333333,45.302,45.3018,45.301616666667,45.3015,45.30145,45.30145,45.301533333333,45.30145,45.30135,45.301316666667,45.301566666667,45.301966666667,45.302366666667,45.302133333333,45.301883333333,45.302033333333,45.302616666667,45.302766666667,45.302583333333,45.3023,45.302016666667,45.301683333333,45.301316666667,45.300966666667,45.300633333333,45.300416666667,45.300083333333,45.299766666667,45.29945,45.29905,45.298616666667,45.298216666667,45.2979,45.297516666667,45.297233333333,45.296833333333,45.29635,45.295883333333,45.295416666667,45.295,45.29455,45.294233333333,45.29385,45.293483333333,45.293083333333,45.29275,45.292466666667,45.292166666667,45.291733333333,45.291333333333,45.291033333333,45.290633333333,45.290333333333,45.289966666667,45.2895,45.289,45.2885,45.287966666667,45.287383333333,45.2868,45.286233333333,45.285683333333,45.285033333333,45.284533333333,45.284066666667,45.28365,45.283133333333,45.2826,45.282083333333,45.28155,45.281033333333,45.280466666667,45.280033333333,45.279616666667,45.279183333333,45.27875,45.27825,45.277816666667,45.277283333333,45.27675,45.2762,45.2758,45.2755,45.27515,45.274683333333,45.274183333333,45.2737,45.273233333333,45.272916666667,45.272683333333,45.27235,45.272,45.2717,45.27145,45.271183333333,45.2709,45.270483333333,45.270166666667,45.269783333333,45.269366666667,45.268883333333,45.2685,45.2681,45.267716666667,45.26735,45.26695,45.266583333333,45.266233333333,45.265883333333,45.265483333333,45.265033333333,45.26455,45.263966666667,45.263433333333,45.262866666667,45.26235,45.261866666667,45.26145,45.260966666667,45.260466666667,45.260033333333,45.259633333333,45.2593,45.2589,45.258566666667,45.2582,45.2578,45.257316666667,45.256966666667,45.256533333333,45.2561,45.255616666667,45.255083333333,45.254616666667,45.254116666667,45.253683333333,45.253333333333,45.2529,45.252416666667,45.251916666667,45.25145,45.25105,45.25035,45.249866666667,45.249366666667,45.2488,45.248316666667,45.247966666667,45.247533333333,45.247033333333,45.246616666667,45.24625,45.24575,45.245233333333,45.244716666667,45.24425,45.243783333333,45.243366666667,45.242966666667,45.242516666667,45.241966666667,45.241516666667,45.241166666667,45.24075,45.240333333333,45.23985,45.239416666667,45.239016666667,45.238666666667,45.23835,45.2381,45.237733333333,45.23735,45.237033333333,45.236683333333,45.236366666667,45.236066666667,45.235766666667,45.23535,45.235283333333,45.235133333333,45.23505,45.23495,45.234833333333,45.234333333333,45.234183333333,45.23455,45.234966666667,45.235333333333,45.235716666667,45.236183333333,45.23655,45.236866666667,45.23725,45.237566666667,45.238016666667,45.238566666667,45.23915,45.239666666667,45.240216666667,45.240783333333,45.241366666667,45.241933333333,45.242533333333,45.24315,45.243716666667,45.244266666667,45.244883333333,45.245483333333,45.246066666667,45.246633333333,45.24725,45.247733333333,45.248166666667,45.248566666667,45.249016666667,45.2495,45.25005,45.250633333333,45.251266666667,45.251783333333,45.252316666667,45.2529,45.2535,45.254033333333,45.2545,45.25495,45.255416666667,45.255883333333,45.256283333333,45.256716666667,45.257116666667,45.257533333333,45.2578,45.258083333333,45.2582,45.258466666667,45.258816666667,45.259233333333,45.25975,45.260166666667,45.260683333333,45.261166666667,45.261766666667,45.262216666667,45.2627,45.263116666667,45.263466666667,45.26395,45.2645,45.264983333333,45.26545,45.265983333333,45.266583333333,45.267216666667,45.267833333333,45.268433333333,45.269033333333,45.269633333333,45.2702,45.27085,45.271383333333,45.271966666667,45.27255,45.273066666667,45.273733333333,45.274483333333,45.275383333333,45.276083333333,45.276783333333,45.2775,45.27825,45.27875,45.2793,45.279866666667,45.28045,45.28105,45.281583333333,45.2821,45.282666666667,45.28325,45.2838,45.28435,45.2849,45.285416666667,45.285933333333,45.2864,45.286933333333,45.2875,45.288116666667,45.288733333333,45.289283333333,45.289833333333,45.290233333333,45.290666666667,45.291083333333,45.29085,45.290683333333,45.29105,45.29125,45.290883333333,45.29065,45.29095,45.290966666667,45.29045,45.2905,45.290783333333,45.290316666667,45.290233333333,45.290516666667,45.290983333333,45.291466666667,45.292,45.292383333333,45.2921,45.2917,45.292016666667,45.291766666667,45.2913,45.291583333333,45.2915,45.291016666667,45.291233333333,45.2915,45.291833333333,45.29235,45.292816666667,45.293283333333,45.293816666667,45.294366666667,45.29485,45.295366666667,45.295866666667,45.296483333333,45.296783333333,45.297166666667,45.297633333333,45.298183333333,45.29885,45.299483333333,45.30015,45.300733333333,45.30125,45.301816666667,45.3025,45.303233333333,45.303933333333,45.3047,45.305416666667,45.3061,45.3068,45.307333333333,45.307816666667,45.308266666667,45.308716666667,45.309116666667,45.309566666667,45.309983333333,45.310466666667,45.310866666667,45.311383333333,45.31195,45.312566666667,45.313183333333,45.313783333333,45.314283333333,45.314916666667,45.31565,45.316383333333,45.31705,45.317783333333,45.318483333333,45.319216666667,45.319916666667,45.320566666667,45.3212,45.321916666667,45.322616666667,45.323333333333,45.32405,45.324666666667,45.32525,45.325883333333,45.32655,45.327266666667,45.328133333333,45.328833333333,45.329516666667,45.330266666667,45.331016666667,45.33175,45.332383333333,45.33295,45.333466666667,45.333933333333,45.33425,45.334666666667,45.33495,45.335416666667,45.335816666667,45.336483333333,45.337033333333,45.3376,45.33825,45.3389,45.339533333333,45.340183333333,45.340816666667,45.341416666667,45.342083333333,45.342666666667,45.3432,45.343683333333,45.344116666667,45.344416666667,45.344716666667,45.344683333333,45.344133333333,45.344266666667,45.344633333333,45.344483333333,45.34395,45.344166666667,45.344433333333,45.344083333333,45.34365,45.34385,45.343983333333,45.343683333333,45.343116666667,45.343083333333,45.343316666667,45.3436,45.34405,45.3445,45.344983333333,45.345516666667,45.346083333333,45.346566666667,45.347016666667,45.347516666667,45.348066666667,45.34865,45.349266666667,45.349783333333,45.3503,45.3509,45.351466666667,45.352166666667,45.352733333333,45.3532,45.353666666667,45.354216666667,45.3548,45.35535,45.35595,45.356583333333,45.35705,45.357483333333,45.358033333333,45.358633333333,45.35915,45.3596,45.3601,45.360633333333,45.361316666667,45.362,45.362816666667,45.363516666667,45.36435,45.365166666667,45.365983333333,45.366766666667,45.367433333333,45.368133333333,45.368683333333,45.3693,45.37,45.370733333333,45.371316666667,45.371933333333,45.372633333333,45.373083333333,45.373583333333,45.3741,45.3746,45.375133333333,45.375733333333,45.376333333333,45.376916666667,45.37745,45.378,45.3785,45.378933333333,45.379433333333,45.379966666667,45.3805,45.381016666667,45.38155,45.382083333333,45.382633333333,45.383233333333,45.38375,45.384266666667,45.384766666667,45.38525,45.38575,45.38625,45.386716666667,45.387166666667,45.387583333333,45.38805,45.38855,45.389033333333,45.38955,45.390116666667,45.390633333333,45.391133333333,45.3917,45.39225,45.392783333333,45.393333333333,45.393933333333,45.39455,45.39515,45.395833333333,45.396416666667,45.396966666667,45.397483333333,45.397966666667,45.398466666667,45.39905,45.399633333333,45.400166666667,45.400733333333,45.401283333333,45.401866666667,45.402433333333,45.403,45.403533333333,45.404083333333,45.404566666667,45.40505,45.405516666667,45.406016666667,45.406516666667,45.40705,45.40755,45.408016666667,45.408516666667,45.408933333333,45.409333333333,45.409716666667,45.4101,45.410516666667,45.410883333333,45.41125,45.411716666667,45.412066666667,45.4125,45.412966666667,45.4134,45.413866666667,45.414333333333,45.414883333333,45.414966666667,45.41455,45.414816666667,45.415316666667,45.41545,45.41505,45.415116666667,45.415583333333,45.4159,45.41555,45.41535,45.4158,45.41625,45.4161,45.415916666667,45.416316666667,45.41665,45.416633333333,45.416316666667,45.416,45.416033333333,45.41645,45.417066666667,45.417483333333,45.417866666667,45.418333333333,45.4189,45.419233333333,45.418983333333,45.419066666667,45.419616666667,45.419866666667,45.41955,45.4193,45.419716666667,45.420133333333,45.42005,45.4199,45.420416666667,45.420733333333,45.42045,45.4208,45.42135,45.421366666667,45.4213,45.421816666667,45.422483333333,45.4232,45.42385,45.424416666667,45.424983333333,45.4256,45.426066666667,45.426466666667,45.426916666667,45.427366666667,45.427733333333,45.4281,45.42855,45.429,45.42945,45.4299,45.430383333333,45.430866666667,45.4313,45.4318,45.4324,45.433,45.433683333333,45.4343,45.435,45.435666666667,45.436433333333,45.43715,45.437916666667,45.43865,45.43945,45.440266666667,45.441066666667,45.4417,45.4422,45.442866666667,45.4435,45.444083333333,45.444583333333,45.445066666667,45.445666666667,45.4462,45.446633333333,45.446566666667,45.4461,45.4463,45.446716666667,45.446733333333,45.4462,45.445866666667,45.445933333333,45.44635,45.446316666667,45.44585,45.446,45.446433333333,45.44695,45.4474,45.447816666667,45.448216666667,45.448633333333,45.449066666667,45.449566666667,45.45005,45.450516666667,45.451083333333,45.451583333333,45.452116666667,45.4525,45.452916666667,45.453316666667,45.453516666667,45.453716666667,45.454116666667,45.454566666667,45.4551,45.45565,45.4562,45.4567,45.457066666667,45.457383333333,45.457733333333,45.458066666667,45.458333333333,45.45865,45.45905,45.45955,45.460033333333,45.460616666667,45.461166666667,45.4618,45.462283333333,45.46275,45.4633,45.464,45.46465,45.46525,45.465916666667,45.466433333333,45.466766666667,45.467133333333,45.467616666667,45.467983333333,45.468533333333,45.469133333333,45.469783333333,45.470283333333,45.4708,45.471416666667,45.471983333333,45.472516666667,45.47305,45.473533333333,45.474016666667,45.47455,45.475033333333,45.475516666667,45.476083333333,45.476666666667,45.477266666667,45.47785,45.478366666667,45.478866666667,45.479333333333,45.479833333333,45.480366666667,45.480916666667,45.48145,45.481966666667,45.4825,45.48305,45.483583333333,45.48415,45.484683333333,45.485183333333,45.485683333333,45.486266666667,45.4868,45.487416666667,45.487933333333,45.488483333333,45.489,45.489533333333,45.490066666667,45.490566666667,45.491116666667,45.491633333333,45.492133333333,45.49265,45.4932,45.493733333333,45.494216666667,45.4947,45.49515,45.49565,45.496166666667,45.4967,45.497166666667,45.497633333333,45.498083333333,45.498566666667,45.499033333333,45.499533333333,45.5001,45.5006,45.5011,45.501633333333,45.50215,45.502666666667,45.50315,45.50365,45.504133333333,45.504616666667,45.5051,45.505566666667,45.506033333333,45.506483333333,45.506966666667,45.507433333333,45.507933333333,45.508416666667,45.508916666667,45.509416666667,45.509883333333,45.510366666667,45.510866666667,45.511383333333,45.511883333333,45.51245,45.512933333333,45.513433333333,45.513933333333,45.514383333333,45.51485,45.515266666667,45.5156,45.515866666667,45.516333333333,45.516766666667,45.517166666667,45.517566666667,45.518,45.518383333333,45.518633333333,45.518883333333,45.5192,45.519533333333,45.519933333333,45.520316666667,45.5207,45.52105,45.521416666667,45.52175,45.522083333333,45.522383333333,45.5227,45.523,45.523283333333,45.523566666667,45.523883333333,45.524166666667,45.524466666667,45.524783333333,45.525116666667,45.52545,45.525716666667,45.525966666667,45.52625,45.52655,45.526816666667,45.527116666667,45.5274,45.527683333333,45.527966666667,45.5282,45.52845,45.528716666667,45.529016666667,45.5293,45.52955,45.5298,45.530083333333,45.530333333333,45.530616666667,45.530883333333,45.531116666667,45.531333333333,45.53165,45.531966666667,45.532266666667,45.532566666667,45.532883333333,45.533183333333,45.53345,45.533733333333,45.534016666667,45.534266666667,45.5345,45.5347,45.534916666667,45.53505,45.53525,45.53555,45.535866666667,45.536166666667,45.536483333333,45.536783333333,45.537066666667,45.537383333333,45.5377,45.538033333333,45.538333333333,45.538466666667,45.538633333333,45.538866666667,45.53905,45.539233333333,45.539433333333,45.539616666667,45.539866666667,45.540116666667,45.540433333333,45.540783333333,45.541133333333,45.541566666667,45.541883333333,45.5422,45.542416666667,45.54225,45.542033333333,45.54175,45.541483333333,45.541216666667,45.54085,45.54035,45.53985,45.539433333333,45.538816666667,45.538316666667,45.53845,45.53875,45.538766666667,45.5384,45.538116666667,45.538433333333,45.5389,45.539133333333,45.53885,45.53855,45.538416666667,45.538816666667,45.538866666667,45.53835,45.53825,45.538633333333,45.538566666667,45.538066666667,45.538016666667,45.538416666667,45.538716666667,45.53865,45.538133333333,45.537816666667,45.538116666667,45.538516666667,45.5388,45.53855,45.537916666667,45.537633333333,45.537833333333,45.537916666667,45.53735,45.537133333333,45.5371,45.537333333333,45.537766666667,45.538166666667,45.5382,45.53765,45.537183333333,45.537216666667,45.537516666667,45.53745,45.5368,45.53625,45.536366666667,45.536616666667,45.536933333333,45.537233333333,45.5375,45.537683333333,45.5379,45.538183333333,45.538583333333,45.539033333333,45.539516666667,45.540016666667,45.540516666667,45.540966666667,45.541466666667,45.541916666667,45.542383333333,45.542866666667,45.543333333333,45.543783333333,45.544233333333,45.544666666667,45.5451,45.545483333333,45.545933333333,45.546366666667,45.546833333333,45.547283333333,45.547716666667,45.5482,45.548683333333,45.549183333333,45.5496,45.549983333333,45.550333333333,45.550683333333,45.5509,45.551133333333,45.551466666667,45.55175,45.55215,45.552533333333,45.552766666667,45.553033333333,45.55325,45.553483333333,45.55315,45.552533333333,45.552533333333,45.5528,45.5531,45.553,45.552416666667,45.55235,45.552566666667,45.552766666667,45.55225,45.551866666667,45.551933333333,45.552266666667,45.552616666667,45.553016666667,45.553483333333,45.553933333333,45.554366666667,45.554783333333,45.555133333333,45.555383333333,45.55495,45.554933333333,45.555233333333,45.55565,45.556116666667,45.556583333333,45.556966666667,45.557366666667,45.5578,45.558266666667,45.55875,45.559216666667,45.559683333333,45.560116666667,45.560583333333,45.5611,45.5616,45.56215,45.562616666667,45.5631,45.563566666667,45.56405,45.564566666667,45.565066666667,45.565533333333,45.56595,45.566216666667,45.565866666667,45.565383333333,45.56485,45.564583333333,45.564883333333,45.565033333333,45.564666666667,45.564616666667,45.564916666667,45.5653,45.5657,45.56615,45.56605,45.5655,45.564883333333,45.5645,45.564633333333,45.565066666667,45.565433333333,45.5656,45.565033333333,45.564783333333,45.565116666667,45.565466666667,45.565516666667,45.564933333333,45.564583333333,45.564816666667,45.565033333333,45.56485,45.564283333333,45.5645,45.564883333333,45.565283333333,45.565633333333,45.566,45.56645,45.5669,45.567316666667,45.567783333333,45.568166666667,45.568566666667,45.569016666667,45.569516666667,45.570066666667,45.5707,45.571333333333,45.571916666667,45.572466666667,45.572966666667,45.573433333333,45.573616666667,45.573666666667,45.57375,45.5739,45.57395,45.574,45.574016666667,45.574016666667,45.574016666667,45.57405,45.574083333333,45.574183333333,45.574333333333,45.574416666667,45.5745,45.574566666667,45.574633333333,45.574666666667,45.574633333333,45.5746,45.574533333333,45.574433333333,45.574433333333,45.574433333333,45.574516666667,45.574916666667,45.5751,45.574616666667,45.574466666667,45.574916666667,45.5749,45.57435,45.5743,45.574716666667,45.574883333333,45.574383333333,45.574166666667,45.57455,45.57475,45.574883333333,45.574966666667,45.575066666667,45.575233333333,45.57535,45.575616666667,45.575533333333,45.5751,45.575083333333,45.575383333333,45.575,45.574683333333,45.57495,45.575233333333,45.575333333333,45.575133333333,45.57465,45.5744,45.574583333333,45.574933333333,45.575183333333,45.5754,45.575633333333,45.5758,45.5762,45.5766,45.576366666667,45.575833333333,45.575733333333,45.57605,45.5765,45.576833333333,45.577233333333,45.5776,45.577933333333,45.578133333333,45.578466666667,45.578433333333,45.577933333333,45.577616666667,45.577816666667,45.5783,45.578666666667,45.57905,45.57935,45.57965,45.58005,45.580333333333,45.58055,45.5808,45.58105,45.581333333333,45.581583333333,45.581866666667,45.582166666667,45.582433333333,45.582716666667,45.583016666667,45.583316666667,45.583566666667,45.5838,45.58405,45.58435,45.584566666667,45.584766666667,45.584983333333,45.585183333333,45.5854,45.585683333333,45.585883333333,45.586083333333,45.586266666667,45.586516666667,45.5868,45.58705,45.5873,45.58765,45.587966666667,45.588333333333,45.588616666667,45.588883333333,45.589166666667,45.589466666667,45.589733333333,45.58995,45.590233333333,45.590566666667,45.590916666667,45.591283333333,45.591616666667,45.591933333333,45.59225,45.592516666667,45.59275,45.592966666667,45.5932,45.593416666667,45.593566666667,45.593666666667,45.59375,45.593683333333,45.593633333333,45.593766666667,45.593733333333,45.593333333333,45.592716666667,45.59245,45.592433333333,45.5925,45.592583333333,45.592016666667,45.591366666667,45.59125,45.5914,45.591583333333,45.591833333333,45.591883333333,45.59135,45.590783333333,45.59065,45.590866666667,45.591,45.59045,45.590216666667,45.590416666667,45.5907,45.591,45.591316666667,45.59165,45.591933333333,45.592166666667,45.5925,45.5928,45.5931,45.593383333333,45.593566666667,45.593866666667,45.59405,45.594166666667,45.594366666667,45.594516666667,45.594683333333,45.594566666667,45.594033333333,45.593316666667,45.59295,45.593066666667,45.59325,45.593383333333,45.59345,45.5934,45.593283333333,45.59335,45.593483333333,45.59365,45.593833333333,45.594016666667,45.59425,45.594383333333,45.59455,45.5947,45.594866666667,45.595066666667,45.595266666667,45.595533333333,45.595733333333,45.595916666667,45.5961,45.5962,45.596333333333,45.596483333333,45.596733333333,45.59705,45.597333333333,45.597616666667,45.597966666667,45.5983,45.59865,45.599,45.599366666667,45.599683333333,45.600033333333,45.600383333333,45.600733333333,45.6011,45.601416666667,45.601733333333,45.601966666667,45.6022,45.602516666667,45.6028,45.603066666667,45.60335,45.60335,45.6027,45.6026,45.602966666667,45.603116666667,45.603216666667,45.6034,45.602833333333,45.60275,45.603033333333,45.602716666667,45.602216666667,45.602383333333,45.602683333333,45.6025,45.601933333333,45.60195,45.602216666667,45.6018,45.60135,45.601416666667,45.601683333333,45.60185,45.601466666667,45.600983333333,45.601166666667,45.601483333333,45.601266666667,45.6007,45.6006,45.600916666667,45.6009,45.600566666667,45.600016666667,45.600133333333,45.600383333333,45.600683333333,45.601033333333,45.601483333333,45.601916666667,45.602283333333,45.602566666667,45.60285,45.603183333333,45.603466666667,45.6038,45.604183333333,45.604483333333,45.6048,45.605133333333,45.605583333333,45.606,45.606416666667,45.606766666667,45.607116666667,45.607516666667,45.60805,45.608533333333,45.608983333333,45.60955,45.610066666667,45.610616666667,45.611116666667,45.611616666667,45.612133333333,45.612666666667,45.61325,45.61385,45.6145,45.61515,45.615766666667,45.616383333333,45.617,45.617633333333,45.6184,45.619,45.6196,45.62005,45.6205,45.620983333333,45.621433333333,45.621883333333,45.622183333333,45.62245,45.622783333333,45.623116666667,45.6235,45.623883333333,45.624366666667,45.624866666667,45.625433333333,45.625983333333,45.626533333333,45.626933333333,45.626616666667,45.626316666667,45.6261,45.626483333333,45.627016666667,45.627566666667,45.62775,45.627383333333,45.627483333333,45.628,45.628066666667,45.627716666667,45.62795,45.62835,45.628066666667,45.627716666667,45.62785,45.628266666667,45.628333333333,45.627933333333,45.627933333333,45.628333333333,45.62825,45.62785,45.62775,45.628233333333,45.62845,45.628466666667,45.62805,45.628016666667,45.628466666667,45.628766666667,45.628583333333,45.628166666667,45.628166666667,45.628616666667,45.6288,45.628816666667,45.6288,45.628816666667,45.628833333333,45.628816666667,45.6292,45.62955,45.629983333333,45.630416666667,45.630866666667,45.631266666667,45.63175,45.632166666667,45.632516666667,45.633016666667,45.633516666667,45.634,45.634633333333,45.635183333333,45.635666666667,45.63615,45.636666666667,45.637183333333,45.637716666667,45.638283333333,45.6388,45.6393,45.639733333333,45.640183333333,45.640633333333,45.641116666667,45.641633333333,45.642166666667,45.642666666667,45.6432,45.643683333333,45.6442,45.644583333333,45.645133333333,45.645666666667,45.646183333333,45.646666666667,45.647283333333,45.647833333333,45.648366666667,45.6489,45.649383333333,45.649916666667,45.65045,45.650966666667,45.651466666667,45.651966666667,45.652466666667,45.6529,45.653366666667,45.6538,45.65425,45.6547,45.65515,45.655616666667,45.656066666667,45.65655,45.657016666667,45.657533333333,45.658066666667,45.658583333333,45.65915,45.659633333333,45.660133333333,45.660633333333,45.661133333333,45.6617,45.662283333333,45.662833333333,45.6634,45.663983333333,45.664616666667,45.665233333333,45.665733333333,45.666233333333,45.66675,45.6673,45.667916666667,45.668533333333,45.669083333333,45.669633333333,45.6702,45.670766666667,45.671333333333,45.671816666667,45.672266666667,45.67285,45.6733,45.6738,45.674266666667,45.6747,45.675083333333,45.67495,45.674533333333,45.674633333333,45.675133333333,45.675466666667,45.675483333333,45.67505,45.675,45.675466666667,45.67555,45.67505,45.6748,45.675216666667,45.67555,45.675266666667,45.674766666667,45.674966666667,45.6752,45.67485,45.674383333333,45.67445,45.674883333333,45.674933333333,45.67445,45.674083333333,45.674216666667,45.6747,45.67515,45.675516666667,45.675883333333,45.676316666667,45.6767,45.677083333333,45.6776,45.678116666667,45.678633333333,45.679166666667,45.679666666667,45.680133333333,45.6806,45.681066666667,45.681533333333,45.68195,45.6824,45.682883333333,45.683316666667,45.683766666667,45.684133333333,45.684583333333,45.685,45.68535,45.68585,45.686316666667,45.686783333333,45.6873,45.6878,45.6883,45.6888,45.689283333333,45.68975,45.69025,45.690716666667,45.69115,45.69155,45.6919,45.692333333333,45.692766666667,45.693183333333,45.693583333333,45.694083333333,45.694483333333,45.694883333333,45.695316666667,45.69575,45.696183333333,45.696666666667,45.697116666667,45.69755,45.698,45.6984,45.698766666667,45.699083333333,45.699433333333,45.699783333333,45.700133333333,45.700583333333,45.701066666667,45.701566666667,45.702,45.702433333333,45.702866666667,45.703316666667,45.703766666667,45.704233333333,45.704816666667,45.705316666667,45.705766666667,45.70625,45.70675,45.707233333333,45.707716666667,45.708183333333,45.70865,45.709083333333,45.7095,45.709916666667,45.710383333333,45.710783333333,45.7112,45.711616666667,45.712083333333,45.712616666667,45.713083333333,45.713566666667,45.714033333333,45.714483333333,45.714916666667,45.71535,45.715866666667,45.716316666667,45.716766666667,45.7172,45.717616666667,45.718033333333,45.718466666667,45.7188,45.719133333333,45.719466666667,45.7198,45.720133333333,45.720466666667,45.7208,45.72115,45.7215,45.72185,45.722216666667,45.722583333333,45.722933333333,45.7233,45.723683333333,45.72405,45.7244,45.72475,45.7252,45.725583333333,45.726016666667,45.726466666667,45.726916666667,45.727283333333,45.7276,45.728,45.728466666667,45.728783333333,45.728583333333,45.728183333333,45.728283333333,45.728766666667,45.729033333333,45.7288,45.728483333333,45.728733333333,45.72925,45.729583333333,45.7295,45.729133333333,45.7292,45.729716666667,45.73,45.72975,45.7293,45.728883333333,45.728733333333,45.729016666667,45.729483333333,45.729833333333,45.7302,45.73065,45.731083333333,45.73155,45.732116666667,45.732583333333,45.732666666667,45.732383333333,45.732283333333,45.73265,45.733183333333,45.73365,45.733833333333,45.733683333333,45.733683333333,45.734116666667,45.73455,45.734866666667,45.73455,45.7342,45.733933333333,45.7337,45.7336,45.7339,45.734416666667,45.7344,45.734066666667,45.7338,45.733683333333,45.733916666667,45.734466666667,45.735066666667,45.735666666667,45.73625,45.7368,45.737366666667,45.73795,45.738583333333,45.739166666667,45.739816666667,45.7405,45.741133333333,45.7419,45.742533333333,45.7432,45.7438,45.7444,45.74495,45.74555,45.7461,45.7468,45.747416666667,45.747983333333,45.74855,45.749066666667,45.749583333333,45.750016666667,45.750433333333,45.750883333333,45.751416666667,45.751933333333,45.752433333333,45.753083333333,45.753716666667,45.754416666667,45.755083333333,45.756083333333,45.75695,45.7578,45.758616666667,45.75945,45.760283333333,45.7611,45.761883333333,45.7625,45.763183333333,45.7639,45.764616666667,45.7654,45.7662,45.766883333333,45.767633333333,45.768333333333,45.769083333333,45.769866666667,45.770516666667,45.771066666667,45.771666666667,45.772266666667,45.772866666667,45.77355,45.774116666667,45.7747,45.775283333333,45.775866666667,45.776416666667,45.776916666667,45.7774,45.777916666667,45.778033333333,45.777816666667,45.778033333333,45.778516666667,45.77865,45.778316666667,45.778016666667,45.777916666667,45.778183333333,45.77865,45.778716666667,45.77835,45.7781,45.778233333333,45.778766666667,45.778933333333,45.778533333333,45.778483333333,45.77865,45.778983333333,45.779483333333,45.78,45.78025,45.780033333333,45.779933333333,45.780483333333,45.780983333333,45.781116666667,45.780833333333,45.78095,45.781516666667,45.781766666667,45.78165,45.781316666667,45.781483333333,45.782016666667,45.7823,45.782316666667,45.781983333333,45.78205,45.78255,45.782866666667,45.7829,45.78265,45.78225,45.7825,45.783,45.783366666667,45.7835,45.783166666667,45.782933333333,45.78335,45.7837,45.783766666667,45.783516666667,45.783033333333,45.783133333333,45.783533333333,45.783683333333,45.783416666667,45.782916666667,45.783066666667,45.7834,45.783533333333,45.783166666667,45.782783333333,45.783116666667,45.783283333333,45.783383333333,45.783216666667,45.782516666667,45.7824,45.782683333333,45.782883333333,45.782983333333,45.782633333333,45.78195,45.781916666667,45.78215,45.782383333333,45.78255,45.782616666667,45.782383333333,45.7817,45.781466666667,45.781633333333,45.781783333333,45.781966666667,45.7822,45.782466666667,45.782733333333,45.7831,45.783316666667,45.783616666667,45.78395,45.784333333333,45.784733333333,45.785133333333,45.7855,45.785883333333,45.786233333333,45.786583333333,45.786933333333,45.7873,45.787716666667,45.788,45.788266666667,45.78855,45.78885,45.789116666667,45.789366666667,45.789566666667,45.78975,45.789983333333,45.790216666667,45.790516666667,45.790766666667,45.791,45.791283333333,45.79155,45.791866666667,45.792083333333,45.792366666667,45.792683333333,45.792916666667,45.7932,45.793416666667,45.793583333333,45.793783333333,45.793783333333,45.79315,45.79245,45.7921,45.79235,45.792666666667,45.792983333333,45.79325,45.793483333333,45.793666666667,45.793866666667,45.793466666667,45.793016666667,45.79305,45.793233333333,45.793433333333,45.793333333333,45.792666666667,45.792616666667,45.792816666667,45.793066666667,45.793283333333,45.793533333333,45.793766666667,45.793983333333,45.794166666667,45.794366666667,45.7946,45.794916666667,45.795216666667,45.795533333333,45.795833333333,45.79615,45.796516666667,45.796883333333,45.797283333333,45.79765,45.798,45.798266666667,45.798583333333,45.798933333333,45.799266666667,45.7996,45.799966666667,45.80035,45.800783333333,45.801183333333,45.801583333333,45.802016666667,45.802433333333,45.802883333333,45.803433333333,45.803966666667,45.80445,45.804883333333,45.805316666667,45.8057,45.806083333333,45.8065,45.806916666667,45.807466666667,45.807933333333,45.808366666667,45.80875,45.809083333333,45.809416666667,45.809733333333,45.81005,45.810383333333,45.810716666667,45.810966666667,45.811283333333,45.81165,45.811966666667,45.81225,45.8125,45.812816666667,45.81305,45.813366666667,45.813666666667,45.81395,45.814183333333,45.8144,45.814716666667,45.814983333333,45.815233333333,45.815433333333,45.815666666667,45.81585,45.816216666667,45.816633333333,45.8171,45.817516666667,45.817766666667,45.817383333333,45.8169,45.81695,45.8173,45.81765,45.817366666667,45.816933333333,45.816766666667,45.817,45.817233333333,45.817133333333,45.81665,45.8163,45.816383333333,45.816616666667,45.816283333333,45.815883333333,45.81605,45.8163,45.816283333333,45.81585,45.815483333333,45.8154,45.815583333333,45.815666666667,45.815216666667,45.81455,45.814133333333,45.814183333333,45.81435,45.81425,45.813783333333,45.813216666667,45.813016666667,45.813216666667,45.813516666667,45.81375,45.813916666667,45.81385,45.813466666667,45.812933333333,45.81285,45.813166666667,45.813333333333,45.813183333333,45.812716666667,45.81245,45.81235,45.812316666667,45.812583333333,45.812816666667,45.812883333333,45.813,45.81315,45.812983333333,45.81235,45.811816666667,45.811783333333,45.8121,45.812266666667,45.8119,45.811366666667,45.811433333333,45.811716666667,45.811916666667,45.81205,45.8121,45.8117,45.811083333333,45.810816666667,45.81105,45.81135,45.811483333333,45.8114,45.810883333333,45.810316666667,45.810283333333,45.8106,45.810916666667,45.810816666667,45.810283333333,45.8102,45.810533333333,45.810816666667,45.810616666667,45.810116666667,45.809783333333,45.809716666667,45.810016666667,45.81035,45.810733333333,45.811183333333,45.811516666667,45.81185,45.81225,45.812633333333,45.813,45.813416666667,45.8139,45.814366666667,45.814816666667,45.81525,45.815716666667,45.816216666667,45.81665,45.817066666667,45.817483333333,45.817883333333,45.818233333333,45.818566666667,45.818966666667,45.81935,45.819716666667,45.82015,45.8206,45.821016666667,45.821483333333,45.822,45.82255,45.8231,45.823533333333,45.8241,45.824566666667,45.8251,45.825566666667,45.826066666667,45.826583333333,45.82705,45.827566666667,45.828066666667,45.8286,45.829133333333,45.829683333333,45.830166666667,45.830666666667,45.831216666667,45.831633333333,45.832083333333,45.832583333333,45.833083333333,45.8335,45.833883333333,45.834033333333,45.833716666667,45.833433333333,45.833716666667,45.834183333333,45.83465,45.8351,45.835483333333,45.835716666667,45.836016666667,45.836366666667,45.8367,45.837016666667,45.837416666667,45.837783333333,45.83815,45.838466666667,45.838783333333,45.8391,45.839383333333,45.839666666667,45.83995,45.840283333333,45.840616666667,45.840916666667,45.841233333333,45.84155,45.841883333333,45.842216666667,45.8426,45.8429,45.8432,45.843466666667,45.843783333333,45.844133333333,45.844483333333,45.844816666667,45.845166666667,45.84555,45.845933333333,45.846316666667,45.846716666667,45.847166666667,45.847583333333,45.847983333333,45.84825,45.8486,45.848966666667,45.849333333333,45.8497,45.850016666667,45.850333333333,45.850666666667,45.851016666667,45.851333333333,45.851583333333,45.851883333333,45.8522,45.852566666667,45.85295,45.85345,45.854,45.85435,45.854683333333,45.85495,45.855266666667,45.85565,45.8559,45.856033333333,45.856166666667,45.856383333333,45.856583333333,45.8568,45.856883333333,45.85695,45.85695,45.857016666667,45.857133333333,45.857316666667,45.8575,45.8577,45.857916666667,45.8582,45.85845,45.858566666667,45.8586,45.858733333333,45.858833333333,45.858983333333,45.8593,45.859583333333,45.859883333333,45.8602,45.860533333333,45.860883333333,45.861266666667,45.861616666667,45.861983333333,45.862333333333,45.862683333333,45.863066666667,45.86345,45.863883333333,45.864183333333,45.864483333333,45.86485,45.865216666667,45.865583333333,45.86595,45.866366666667,45.866766666667,45.8672,45.867616666667,45.867966666667,45.868366666667,45.868766666667,45.8692,45.8696,45.869983333333,45.870316666667,45.870666666667,45.871016666667,45.8714,45.87175,45.872116666667,45.872483333333,45.87285,45.873316666667,45.8737,45.87405,45.874416666667,45.874766666667,45.875166666667,45.8755,45.875816666667,45.876166666667,45.876583333333,45.877,45.87745,45.8777,45.877983333333,45.878316666667,45.87825,45.8777,45.877333333333,45.877383333333,45.8776,45.877833333333,45.878016666667,45.878283333333,45.878333333333,45.8781,45.878283333333,45.878433333333,45.878683333333,45.878866666667,45.878683333333,45.878116666667,45.8777,45.877766666667,45.878133333333,45.87845,45.87875,45.87905,45.87935,45.879666666667,45.880016666667,45.8804,45.8808,45.881183333333,45.881616666667,45.88205,45.882466666667,45.8829,45.883333333333,45.8838,45.884166666667,45.88465,45.885083333333,45.88555,45.886016666667,45.886483333333,45.886983333333,45.887483333333,45.88795,45.8884,45.888733333333,45.88905,45.8894,45.889716666667,45.890016666667,45.89035,45.890633333333,45.890933333333,45.8912,45.891516666667,45.891866666667,45.892216666667,45.89255,45.89285,45.893133333333,45.89345,45.893716666667,45.894016666667,45.894333333333,45.8946,45.894816666667,45.89505,45.895283333333,45.895516666667,45.8955,45.895216666667,45.895,45.89515,45.895333333333,45.895416666667,45.895616666667,45.8958,45.8957,45.895116666667,45.89455,45.894633333333,45.894883333333,45.895116666667,45.895333333333,45.895583333333,45.895816666667,45.896033333333,45.896283333333,45.896583333333,45.896816666667,45.897066666667,45.897333333333,45.89765,45.897833333333,45.898083333333,45.898283333333,45.89845,45.898583333333,45.898833333333,45.8986,45.8981,45.898266666667,45.898633333333,45.898833333333,45.89835,45.898016666667,45.898116666667,45.898466666667,45.8985,45.897983333333,45.89755,45.897666666667,45.897933333333,45.897716666667,45.8972,45.89695,45.896816666667,45.896783333333,45.896733333333,45.89675,45.896816666667,45.896933333333,45.897166666667,45.897483333333,45.897816666667,45.897666666667,45.897133333333,45.8967,45.896883333333,45.8973,45.897733333333,45.898116666667,45.89845,45.8988,45.898466666667,45.898166666667,45.898466666667,45.898733333333,45.898533333333,45.898133333333,45.898166666667,45.8985,45.898633333333,45.898633333333,45.898766666667,45.8989,45.899066666667,45.899266666667,45.899466666667,45.89975,45.900116666667,45.900416666667,45.900633333333,45.900866666667,45.901083333333,45.90145,45.901583333333,45.901133333333,45.90095,45.90125,45.90175,45.901983333333,45.90165,45.9013,45.901433333333,45.901733333333,45.90205,45.902383333333,45.90265,45.902883333333,45.903183333333,45.9035,45.9038,45.90415,45.9044,45.9046,45.904783333333,45.905083333333,45.905383333333,45.905783333333,45.9062,45.906633333333,45.907083333333,45.907533333333,45.907966666667,45.90845,45.90885,45.909283333333,45.90975,45.91025,45.910716666667,45.911233333333,45.911766666667,45.91225,45.912633333333,45.91305,45.913516666667,45.914016666667,45.914516666667,45.915,45.915466666667,45.91595,45.916466666667,45.916983333333,45.917483333333,45.918,45.91855,45.919083333333,45.919583333333,45.9201,45.920733333333,45.921316666667,45.921933333333,45.922516666667,45.92305,45.923666666667,45.92425,45.92485,45.92545,45.926,45.926466666667,45.926816666667,45.926566666667,45.926333333333,45.92655,45.92695,45.92745,45.9279,45.928366666667,45.9288,45.929233333333,45.929733333333,45.93025,45.930833333333,45.931366666667,45.93195,45.93245,45.932966666667,45.93345,45.93375,45.93355,45.93325,45.93345,45.9338,45.933916666667,45.933533333333,45.933533333333,45.933866666667,45.934033333333,45.934,45.934233333333,45.934716666667,45.935233333333,45.935633333333,45.93605,45.936483333333,45.9369,45.937333333333,45.93775,45.938266666667,45.938666666667,45.938866666667,45.938516666667,45.93855,45.938916666667,45.939266666667,45.939583333333,45.939733333333,45.939916666667,45.940133333333,45.940466666667,45.94075,45.941033333333,45.941283333333,45.941533333333,45.941766666667,45.942016666667,45.942266666667,45.942583333333,45.942916666667,45.94325,45.9436,45.94395,45.944283333333,45.944683333333,45.945016666667,45.945316666667,45.9457,45.9461,45.9465,45.946833333333,45.9472,45.947566666667,45.947916666667,45.94825,45.9486,45.948983333333,45.949116666667,45.9488,45.948283333333,45.947816666667,45.947333333333,45.94685,45.946433333333,45.945983333333,45.94555,45.945133333333,45.944733333333,45.944383333333,45.944,45.94365,45.943333333333,45.943033333333,45.942683333333,45.942383333333,45.942083333333,45.941766666667,45.94145,45.941116666667,45.940833333333,45.94055,45.9403,45.94005,45.9398,45.9396,45.939383333333,45.939166666667,45.938916666667,45.938733333333,45.9386,45.938533333333,45.938466666667,45.938333333333,45.938166666667,45.938,45.937733333333,45.937533333333,45.937316666667,45.937116666667,45.936933333333,45.936733333333,45.93655,45.936366666667,45.936166666667,45.936,45.935866666667,45.93565,45.93545,45.935333333333,45.9352,45.935066666667,45.934916666667,45.934733333333,45.934683333333,45.934633333333,45.934483333333,45.9343,45.9341,45.933883333333,45.933783333333,45.933633333333,45.933483333333,45.9334,45.93335,45.9333,45.933283333333,45.933133333333,45.932983333333,45.933,45.933016666667,45.933,45.933016666667,45.932983333333,45.932916666667,45.93285,45.932833333333,45.932866666667,45.93285,45.932866666667,45.932916666667,45.933,45.933033333333,45.933033333333,45.933083333333,45.93305,45.93315,45.933233333333,45.93355,45.93405,45.934433333333,45.9347,45.93495,45.935216666667,45.9356,45.935683333333,45.935433333333,45.935183333333,45.935066666667,45.935,45.9352,45.935583333333,45.936083333333,45.935933333333,45.935733333333,45.9355,45.935333333333,45.9352,45.935,45.93485,45.934816666667,45.934716666667,45.934566666667,45.934516666667,45.934533333333,45.934516666667,45.934516666667,45.934516666667,45.934533333333,45.93455,45.934566666667,45.934566666667],"lon":[6.5828333333333,6.58285,6.5828666666667,6.5828833333333,6.58295,6.58295,6.5829333333333,6.5829333333333,6.5829666666667,6.5829666666667,6.583,6.5833833333333,6.5838,6.58425,6.5847,6.5853666666667,6.5853333333333,6.5858666666667,6.5856833333333,6.5850666666667,6.5844166666667,6.5844333333333,6.5848,6.5845333333333,6.5838833333333,6.58335,6.58365,6.5839666666667,6.5838166666667,6.5837,6.5841666666667,6.5847333333333,6.5846166666667,6.5843833333333,6.5842833333333,6.58475,6.5847666666667,6.5846333333333,6.5843,6.5840333333333,6.584,6.5838333333333,6.5836333333333,6.5837833333333,6.5841666666667,6.5840333333333,6.58415,6.5843166666667,6.58485,6.5853,6.58485,6.5842333333333,6.58445,6.58495,6.5848333333333,6.5844333333333,6.58405,6.5840833333333,6.5846833333333,6.5848833333333,6.5846333333333,6.5847833333333,6.5850166666667,6.5847,6.58435,6.5841666666667,6.584,6.5844666666667,6.5843833333333,6.5845833333333,6.5847666666667,6.5841333333333,6.5835,6.5836666666667,6.5841833333333,6.5835833333333,6.5831,6.5834,6.5836666666667,6.5833,6.5827333333333,6.58305,6.5834666666667,6.58335,6.5829666666667,6.5823166666667,6.5819333333333,6.58225,6.5827833333333,6.5832666666667,6.5828,6.58235,6.5817833333333,6.5812333333333,6.5805666666667,6.5807,6.58105,6.58055,6.58025,6.58075,6.5805166666667,6.5800166666667,6.5801666666667,6.5807666666667,6.5804666666667,6.5797833333333,6.5802333333333,6.5806333333333,6.58005,6.5794166666667,6.5791833333333,6.5792,6.5794,6.5797333333333,6.5799166666667,6.5800666666667,6.5803166666667,6.5805833333333,6.5808166666667,6.5811,6.5814833333333,6.5819333333333,6.5825666666667,6.5832166666667,6.5837666666667,6.58435,6.5848,6.5850666666667,6.58545,6.58595,6.5862166666667,6.58645,6.5868,6.5871333333333,6.5873833333333,6.5876833333333,6.588,6.5884,6.5887666666667,6.58925,6.5896333333333,6.5899166666667,6.5901666666667,6.5903833333333,6.5906,6.59085,6.59105,6.5912333333333,6.5915666666667,6.5919833333333,6.5923666666667,6.5927166666667,6.59295,6.5927666666667,6.5924666666667,6.5922166666667,6.5918166666667,6.5911,6.5902833333333,6.5894833333333,6.5887166666667,6.5878666666667,6.5871166666667,6.5864666666667,6.5859333333333,6.58535,6.5847666666667,6.5840833333333,6.5833166666667,6.5823666666667,6.5815,6.5806166666667,6.5801166666667,6.5796833333333,6.5793,6.5792333333333,6.5796166666667,6.5797666666667,6.5800666666667,6.5806666666667,6.5812833333333,6.5818666666667,6.5824,6.58295,6.5834833333333,6.584,6.5845666666667,6.5850833333333,6.58575,6.58625,6.5867,6.5873666666667,6.5879833333333,6.5885666666667,6.5892166666667,6.5898166666667,6.5902166666667,6.5902,6.5895,6.5890666666667,6.5896,6.5898833333333,6.5894,6.5886333333333,6.58865,6.5891833333333,6.589,6.5881666666667,6.58775,6.5881333333333,6.5884666666667,6.5877333333333,6.5877,6.5883833333333,6.5880833333333,6.5873333333333,6.5870833333333,6.5877333333333,6.58755,6.58695,6.5867333333333,6.58745,6.5871333333333,6.5864333333333,6.5861,6.58665,6.5867333333333,6.5861,6.58595,6.5858166666667,6.5857333333333,6.5857,6.5856166666667,6.5855166666667,6.58545,6.58535,6.5852333333333,6.58505,6.5848833333333,6.5847166666667,6.5845666666667,6.5844166666667,6.5842666666667,6.5840833333333,6.5838833333333,6.58355,6.5831666666667,6.5827666666667,6.58265,6.5826,6.5823833333333,6.5821,6.5823833333333,6.5827166666667,6.5822,6.5817666666667,6.5813,6.5808833333333,6.5804,6.5800166666667,6.57985,6.5797666666667,6.5796666666667,6.5796666666667,6.5798,6.5799,6.5799166666667,6.5798833333333,6.57995,6.5797666666667,6.5794,6.5792,6.5789166666667,6.5785333333333,6.5782666666667,6.57805,6.57735,6.5767,6.57605,6.5755166666667,6.575,6.5744,6.5742833333333,6.5748166666667,6.5746,6.5740166666667,6.5735166666667,6.5740333333333,6.5739,6.5732166666667,6.573,6.5736,6.57335,6.5725,6.5720833333333,6.5726333333333,6.57325,6.5728333333333,6.5720333333333,6.5714166666667,6.57165,6.57215,6.5715166666667,6.5707666666667,6.5708833333333,6.5712833333333,6.5707,6.5701833333333,6.5696166666667,6.56885,6.5681666666667,6.5675,6.5669166666667,6.5662333333333,6.5655666666667,6.56505,6.5645666666667,6.5641833333333,6.5638,6.5633166666667,6.5628,6.5624166666667,6.56205,6.5616666666667,6.56135,6.5610666666667,6.56085,6.5606666666667,6.56025,6.5597833333333,6.5594,6.5591333333333,6.5588833333333,6.5585333333333,6.5581666666667,6.5577833333333,6.55745,6.5570833333333,6.55665,6.55635,6.5560333333333,6.5557166666667,6.5553666666667,6.555,6.5546333333333,6.5543666666667,6.5541166666667,6.5539833333333,6.5536833333333,6.5533166666667,6.553,6.55275,6.5524166666667,6.5520166666667,6.5514333333333,6.5509166666667,6.5504666666667,6.5509333333333,6.5514166666667,6.5510166666667,6.5503833333333,6.5504833333333,6.5501666666667,6.5498333333333,6.5494166666667,6.549,6.5485833333333,6.5480666666667,6.5477666666667,6.5473666666667,6.5471,6.5468833333333,6.5465166666667,6.5460166666667,6.5453166666667,6.5446666666667,6.5441,6.5435666666667,6.54315,6.5429166666667,6.5433,6.5426,6.54195,6.54235,6.5421666666667,6.5411833333333,6.54105,6.5414333333333,6.54095,6.5402666666667,6.5405166666667,6.5408333333333,6.5404,6.5397333333333,6.54,6.5403166666667,6.5404833333333,6.5406666666667,6.5407,6.5406,6.5405666666667,6.5404833333333,6.5402833333333,6.5400333333333,6.5397166666667,6.5393333333333,6.5387666666667,6.53815,6.5375333333333,6.5369833333333,6.5365833333333,6.5361833333333,6.5356,6.53495,6.5342666666667,6.5343666666667,6.5346833333333,6.53395,6.5330833333333,6.53245,6.5318666666667,6.53105,6.53025,6.5294666666667,6.5286166666667,6.5278333333333,6.5273333333333,6.5266333333333,6.52595,6.5253333333333,6.5247333333333,6.5241,6.5233,6.5226333333333,6.52195,6.5212833333333,6.5206333333333,6.51995,6.5193333333333,6.51875,6.5182,6.51775,6.5172666666667,6.5168333333333,6.51635,6.51595,6.5154333333333,6.5149666666667,6.5153833333333,6.5148833333333,6.5141833333333,6.5136,6.51325,6.5131,6.5127166666667,6.5123333333333,6.5118333333333,6.5111666666667,6.51055,6.50985,6.5092,6.5092666666667,6.5098,6.5099666666667,6.5092833333333,6.5090333333333,6.50945,6.5088,6.5083833333333,6.50885,6.50855,6.5080166666667,6.5083333333333,6.5086666666667,6.5080666666667,6.5076333333333,6.5080833333333,6.50875,6.5088666666667,6.5082333333333,6.5084333333333,6.5086333333333,6.5079166666667,6.5077833333333,6.5076166666667,6.5075333333333,6.5073166666667,6.5070833333333,6.5067666666667,6.5064,6.50615,6.5059166666667,6.5057666666667,6.5055333333333,6.5052666666667,6.50525,6.5051833333333,6.5051166666667,6.5051,6.505,6.5047666666667,6.5045833333333,6.5042333333333,6.5038,6.5032833333333,6.5027666666667,6.5021166666667,6.50155,6.501,6.5005666666667,6.5001333333333,6.4997166666667,6.4994333333333,6.4992,6.4989666666667,6.4986,6.4981833333333,6.4976833333333,6.49715,6.4966666666667,6.4961,6.4956166666667,6.4952166666667,6.4949333333333,6.4946833333333,6.4943833333333,6.4940333333333,6.49375,6.4934166666667,6.4931,6.49285,6.49265,6.4923833333333,6.4921333333333,6.4919666666667,6.4917666666667,6.4914833333333,6.4912,6.4909666666667,6.4907,6.4904333333333,6.4902333333333,6.49005,6.48975,6.48945,6.4892333333333,6.4890333333333,6.4885833333333,6.4881333333333,6.4877833333333,6.4874666666667,6.48695,6.4862666666667,6.48545,6.4846833333333,6.4840333333333,6.4833333333333,6.4826333333333,6.48195,6.4812833333333,6.4806666666667,6.4799833333333,6.47925,6.4787833333333,6.4788,6.4791333333333,6.4796,6.4801666666667,6.4805833333333,6.4808833333333,6.4807666666667,6.4806166666667,6.4806,6.4812,6.4807,6.4802333333333,6.4807666666667,6.4809666666667,6.4803833333333,6.4806333333333,6.4809,6.48025,6.4798833333333,6.4802833333333,6.4806333333333,6.4807,6.4807,6.4809,6.4809666666667,6.48085,6.4809666666667,6.4809,6.4808333333333,6.4806833333333,6.4805333333333,6.4804333333333,6.4804333333333,6.4804333333333,6.4803,6.4801333333333,6.4798833333333,6.4795333333333,6.4792833333333,6.4789666666667,6.4787,6.47855,6.4784333333333,6.4782833333333,6.4783166666667,6.4780833333333,6.4777333333333,6.4775333333333,6.4771833333333,6.4767666666667,6.47635,6.4759833333333,6.4757666666667,6.47545,6.4752166666667,6.4748833333333,6.47445,6.4739833333333,6.4735333333333,6.4730333333333,6.4726166666667,6.47215,6.4716666666667,6.4712666666667,6.47075,6.4702833333333,6.4698,6.4691666666667,6.46845,6.4676666666667,6.46715,6.4665833333333,6.4659166666667,6.46535,6.4648,6.4641666666667,6.4636,6.4629,6.46215,6.4616333333333,6.4609666666667,6.4603833333333,6.45975,6.4593,6.4588333333333,6.4585,6.4583,6.4580833333333,6.4578666666667,6.4578,6.4576333333333,6.4573,6.4570166666667,6.4566833333333,6.45635,6.4559333333333,6.4554666666667,6.4551666666667,6.4547833333333,6.4541166666667,6.4535,6.4529166666667,6.4524666666667,6.45205,6.4516,6.4510333333333,6.4505333333333,6.4497833333333,6.4493,6.4489166666667,6.44845,6.4478166666667,6.4473,6.4467833333333,6.4460666666667,6.4453,6.4445,6.44375,6.4429666666667,6.4421333333333,6.4413,6.4404333333333,6.4395333333333,6.43865,6.4377666666667,6.43685,6.43595,6.4351333333333,6.43435,6.4335333333333,6.43285,6.43215,6.43145,6.4307666666667,6.4300833333333,6.42945,6.4288166666667,6.4282,6.4276166666667,6.427,6.4264166666667,6.4258166666667,6.4253166666667,6.4247833333333,6.42425,6.42365,6.4231166666667,6.4227,6.4220833333333,6.4215166666667,6.4209333333333,6.42035,6.4198833333333,6.4193666666667,6.4189,6.4185166666667,6.41805,6.4176333333333,6.41725,6.4169,6.4165166666667,6.41615,6.4158666666667,6.4155833333333,6.4152666666667,6.4149666666667,6.4146,6.4142,6.4137666666667,6.4132666666667,6.4126666666667,6.4122,6.4121333333333,6.4129166666667,6.4130333333333,6.41255,6.4120166666667,6.4113333333333,6.4108,6.4102166666667,6.4096166666667,6.4091166666667,6.409,6.4095333333333,6.4103,6.41,6.4094833333333,6.4094666666667,6.4103166666667,6.4107666666667,6.4103666666667,6.4098833333333,6.4097666666667,6.4106666666667,6.4107166666667,6.4102,6.4099666666667,6.4105666666667,6.4104166666667,6.41045,6.4110666666667,6.4106833333333,6.41065,6.4115166666667,6.41145,6.4110333333333,6.4105166666667,6.4101666666667,6.4099666666667,6.4107333333333,6.4112333333333,6.4107,6.4103166666667,6.41095,6.4113333333333,6.4109333333333,6.41055,6.4101166666667,6.4097833333333,6.4095,6.4089833333333,6.4084,6.4077166666667,6.4071166666667,6.4064833333333,6.4058833333333,6.4050833333333,6.4044833333333,6.4039166666667,6.4035666666667,6.4042,6.4040666666667,6.4035666666667,6.40345,6.4040666666667,6.4038,6.4032333333333,6.40315,6.4037333333333,6.4035333333333,6.4028333333333,6.4025166666667,6.403,6.4031833333333,6.4024166666667,6.4023833333333,6.4029833333333,6.4027333333333,6.4021,6.40215,6.40275,6.4023833333333,6.4016333333333,6.4013666666667,6.40195,6.4016166666667,6.4011666666667,6.40165,6.4011333333333,6.4010666666667,6.4010666666667,6.4003666666667,6.4000666666667,6.4005333333333,6.40035,6.3996,6.3992166666667,6.39895,6.3987666666667,6.3985333333333,6.39825,6.3978833333333,6.3975666666667,6.3973333333333,6.39715,6.3971666666667,6.3969666666667,6.3966166666667,6.3961833333333,6.3957833333333,6.3953666666667,6.3950833333333,6.3948833333333,6.3947166666667,6.3946,6.3944,6.3941166666667,6.3937666666667,6.3935166666667,6.39325,6.3928833333333,6.39235,6.3919166666667,6.3915,6.39105,6.39055,6.39005,6.3895166666667,6.3889,6.3884,6.3879333333333,6.3875,6.3870333333333,6.3866166666667,6.3862166666667,6.3858,6.3853666666667,6.3848666666667,6.3845166666667,6.3841,6.38365,6.3832166666667,6.3828166666667,6.3823833333333,6.3819833333333,6.38155,6.3810666666667,6.3806333333333,6.3802666666667,6.3799333333333,6.3796333333333,6.37925,6.3788666666667,6.3783666666667,6.37795,6.37755,6.3771666666667,6.3767833333333,6.3763666666667,6.3759166666667,6.37545,6.375,6.3746,6.3742,6.3737,6.37315,6.3726,6.3721666666667,6.3717333333333,6.3712333333333,6.37065,6.3702166666667,6.3696333333333,6.3690166666667,6.3685166666667,6.3678,6.36725,6.3666666666667,6.36625,6.3668,6.3669,6.3663333333333,6.3664166666667,6.3669666666667,6.36675,6.3662333333333,6.3657,6.36495,6.36435,6.3639333333333,6.36355,6.3632666666667,6.3628,6.36225,6.3617,6.3610833333333,6.36045,6.35985,6.3591666666667,6.3584666666667,6.3578333333333,6.3572,6.3567666666667,6.3561666666667,6.35575,6.3552833333333,6.3548666666667,6.35445,6.3541,6.3538666666667,6.35365,6.3535333333333,6.3533333333333,6.35305,6.35275,6.35245,6.352,6.3516333333333,6.3510833333333,6.3504833333333,6.3499666666667,6.3499833333333,6.3505,6.34995,6.3493166666667,6.3489166666667,6.34835,6.34775,6.3472166666667,6.3468166666667,6.3464333333333,6.3459833333333,6.3455833333333,6.34525,6.3449166666667,6.3446666666667,6.3444666666667,6.3444,6.3442166666667,6.3438833333333,6.3436166666667,6.3435666666667,6.3433333333333,6.3430666666667,6.3427833333333,6.3425166666667,6.34225,6.342,6.34175,6.34135,6.3410333333333,6.3407166666667,6.3404666666667,6.3402666666667,6.3398666666667,6.3394166666667,6.3391,6.3387,6.33825,6.3378333333333,6.3374,6.3370166666667,6.3366333333333,6.3362666666667,6.3359666666667,6.3355833333333,6.3351333333333,6.3348,6.3345,6.33425,6.334,6.3337833333333,6.3334,6.3330666666667,6.3326,6.3324,6.3322333333333,6.3320166666667,6.3318,6.3316,6.3314166666667,6.3312333333333,6.3311333333333,6.3311166666667,6.3311,6.3310166666667,6.3309,6.33145,6.3314166666667,6.33075,6.33015,6.3300833333333,6.3307166666667,6.3312333333333,6.3307333333333,6.3307,6.3313,6.3309166666667,6.3304,6.3298833333333,6.3293666666667,6.3288666666667,6.3283833333333,6.32775,6.3269833333333,6.3262666666667,6.32565,6.3250333333333,6.3242666666667,6.3234666666667,6.3227166666667,6.3218166666667,6.3209166666667,6.3200333333333,6.3191333333333,6.3183,6.3174666666667,6.3166,6.31565,6.3148166666667,6.314,6.3131833333333,6.3123666666667,6.3115666666667,6.3108,6.3100666666667,6.3093833333333,6.3087166666667,6.3081,6.3072833333333,6.3064166666667,6.3055166666667,6.30445,6.3035,6.3025666666667,6.3016333333333,6.3007166666667,6.2997666666667,6.2988333333333,6.2979,6.2969,6.2958666666667,6.2948333333333,6.2938333333333,6.2927666666667,6.2917333333333,6.2907166666667,6.2897833333333,6.2887833333333,6.2874833333333,6.2864,6.28525,6.2841666666667,6.2831833333333,6.2821666666667,6.2812666666667,6.2803666666667,6.2796,6.2788,6.2779333333333,6.2771,6.27625,6.27535,6.2744833333333,6.27355,6.2728333333333,6.2723833333333,6.27195,6.2716333333333,6.27135,6.2711833333333,6.2711166666667,6.2713333333333,6.27135,6.2713666666667,6.27135,6.2714833333333,6.2714666666667,6.2713,6.2710166666667,6.2707166666667,6.2707,6.27045,6.2700666666667,6.2698333333333,6.2695666666667,6.2692666666667,6.2690833333333,6.2688333333333,6.26845,6.2683,6.2682,6.2681,6.2678333333333,6.2676333333333,6.2674666666667,6.26715,6.2668,6.2662166666667,6.2656,6.2656666666667,6.2661333333333,6.2655333333333,6.2651,6.26565,6.2656333333333,6.26495,6.2646666666667,6.2653,6.2648666666667,6.2647,6.2653,6.2648833333333,6.2643,6.2637,6.2641666666667,6.2646166666667,6.2640666666667,6.26395,6.2645666666667,6.2642166666667,6.2636333333333,6.2630166666667,6.26235,6.2618333333333,6.26145,6.2612333333333,6.2608166666667,6.2602666666667,6.25975,6.2593166666667,6.2590166666667,6.2588,6.2587333333333,6.2585166666667,6.2582666666667,6.2579666666667,6.2576666666667,6.2573333333333,6.2571333333333,6.2569,6.2567166666667,6.2572,6.25705,6.2562833333333,6.2559833333333,6.2557333333333,6.2556333333333,6.2555833333333,6.2554,6.2552833333333,6.2553333333333,6.2553833333333,6.2554666666667,6.2555666666667,6.2557833333333,6.2559,6.2561,6.2563,6.2564,6.2563833333333,6.2562666666667,6.2560166666667,6.2556666666667,6.2551,6.2545,6.2540833333333,6.2535833333333,6.2532833333333,6.25305,6.2528,6.25245,6.2518666666667,6.2512666666667,6.2506833333333,6.2501,6.2494,6.2488,6.2482333333333,6.24755,6.247,6.2463833333333,6.2457333333333,6.24515,6.2447166666667,6.2443333333333,6.2438666666667,6.2433833333333,6.2429,6.24235,6.2417833333333,6.2412333333333,6.24075,6.2403333333333,6.2398666666667,6.2392666666667,6.2387166666667,6.2381,6.23765,6.2373166666667,6.2368833333333,6.2367,6.2374333333333,6.2377833333333,6.2371666666667,6.2365833333333,6.2360333333333,6.2355833333333,6.2361333333333,6.2361833333333,6.2355166666667,6.2348,6.2345166666667,6.2339666666667,6.23315,6.2324333333333,6.2317,6.2309333333333,6.2304166666667,6.2299666666667,6.22965,6.2291666666667,6.2286833333333,6.2281,6.2276,6.2269833333333,6.22645,6.2258166666667,6.2252,6.2245833333333,6.2239333333333,6.2231833333333,6.2225833333333,6.2220333333333,6.2213666666667,6.2208,6.22025,6.2196666666667,6.2191166666667,6.2184833333333,6.2178166666667,6.2171,6.2164166666667,6.2158166666667,6.2153,6.2147333333333,6.2143333333333,6.2139833333333,6.2135666666667,6.2129666666667,6.21245,6.2119666666667,6.2114833333333,6.2109333333333,6.2103166666667,6.2096833333333,6.2090166666667,6.2082666666667,6.2075666666667,6.2070166666667,6.20655,6.2059666666667,6.20595,6.2066,6.2063666666667,6.2056166666667,6.20595,6.20595,6.20535,6.2047166666667,6.2041333333333,6.2036666666667,6.2032,6.2026833333333,6.2020833333333,6.2015166666667,6.2009,6.2003,6.1997166666667,6.1992666666667,6.1988,6.1983666666667,6.1978333333333,6.1970666666667,6.1966833333333,6.1961833333333,6.1959,6.1964,6.1962833333333,6.1956333333333,6.1958333333333,6.1959333333333,6.19535,6.1947833333333,6.1940833333333,6.1935833333333,6.1931166666667,6.1926666666667,6.1921833333333,6.1916666666667,6.19105,6.19045,6.1899166666667,6.1894166666667,6.1889166666667,6.1884666666667,6.1879333333333,6.1875666666667,6.1871333333333,6.1867166666667,6.1860333333333,6.1850666666667,6.1840833333333,6.1833,6.1825833333333,6.18195,6.1813833333333,6.1807666666667,6.1799833333333,6.1791833333333,6.1784,6.17755,6.1767166666667,6.1758666666667,6.175,6.1741,6.1732833333333,6.1723666666667,6.1715666666667,6.17075,6.1699333333333,6.1691,6.1682833333333,6.16755,6.1667833333333,6.1661333333333,6.1655166666667,6.1649,6.1643166666667,6.1636666666667,6.1629833333333,6.16225,6.1616166666667,6.16095,6.1602666666667,6.1595833333333,6.1589,6.1582,6.1574666666667,6.15695,6.1564,6.15585,6.1552666666667,6.1547,6.1541333333333,6.15355,6.1528333333333,6.152,6.1511833333333,6.1503666666667,6.1496,6.14875,6.1478666666667,6.1468166666667,6.14595,6.1450666666667,6.1441666666667,6.1432166666667,6.1423,6.1414,6.14045,6.1395,6.13855,6.1376166666667,6.1366833333333,6.1357333333333,6.1347666666667,6.1338,6.13285,6.1319333333333,6.1310166666667,6.13005,6.1289166666667,6.12795,6.127,6.1260833333333,6.1251833333333,6.1242833333333,6.1234333333333,6.12255,6.1216,6.1206666666667,6.1197333333333,6.1188333333333,6.1178833333333,6.117,6.11615,6.1153333333333,6.1144833333333,6.1133666666667,6.1125333333333,6.1115833333333,6.1107333333333,6.1098333333333,6.1089166666667,6.1079833333333,6.1071166666667,6.1062333333333,6.10535,6.1046333333333,6.1040333333333,6.1034666666667,6.1030833333333,6.1027333333333,6.1023666666667,6.1026333333333,6.1023333333333,6.1015333333333,6.10135,6.1017166666667,6.10135,6.1005666666667,6.1001,6.0997333333333,6.0994,6.0989666666667,6.0991,6.0990333333333,6.0981333333333,6.0981166666667,6.0984166666667,6.0977666666667,6.0974166666667,6.0977333333333,6.09705,6.0967666666667,6.0973166666667,6.0971,6.0963833333333,6.0965,6.0968333333333,6.0962,6.0956333333333,6.0959833333333,6.0957666666667,6.0950666666667,6.0946166666667,6.0951333333333,6.09555,6.0955,6.0957,6.0959166666667,6.09545,6.0949833333333,6.0953666666667,6.0958,6.0955833333333,6.0949333333333,6.0945333333333,6.0946,6.0951,6.0951666666667,6.0949166666667,6.0943,6.0938333333333,6.09375,6.0942666666667,6.0949,6.0950166666667,6.0944833333333,6.0940666666667,6.0942333333333,6.0949166666667,6.09525,6.0949333333333,6.0942666666667,6.0937,6.0932166666667,6.0926333333333,6.09215,6.0924666666667,6.0929833333333,6.0924833333333,6.0916333333333,6.0912,6.09155,6.0920166666667,6.0916833333333,6.0909,6.0903666666667,6.0905666666667,6.0911,6.0913166666667,6.0914333333333,6.0917333333333,6.09115,6.0902666666667,6.0895333333333,6.0887666666667,6.0880333333333,6.0872833333333,6.08645,6.0856,6.08475,6.0839333333333,6.0830166666667,6.0821333333333,6.0813333333333,6.08055,6.0797833333333,6.0790333333333,6.0783,6.0775333333333,6.0767166666667,6.0759,6.0749833333333,6.0742166666667,6.0736,6.0730166666667,6.07235,6.0717333333333,6.07125,6.0707666666667,6.0704166666667,6.0698,6.0691833333333,6.0684666666667,6.0677833333333,6.0670166666667,6.06625,6.06545,6.0645666666667,6.06395,6.0632666666667,6.0626166666667,6.0624,6.0629166666667,6.0624166666667,6.06175,6.06225,6.06235,6.0616333333333,6.0616,6.0617,6.0609,6.0608833333333,6.0611166666667,6.0603833333333,6.0597166666667,6.0589833333333,6.05845,6.0588666666667,6.0587166666667,6.05805,6.05835,6.0586,6.0579166666667,6.0578166666667,6.0581333333333,6.0576,6.0570833333333,6.0576,6.0577666666667,6.0571166666667,6.0565166666667,6.0563666666667,6.0568833333333,6.0572,6.0564166666667,6.0557,6.0549,6.0541666666667,6.0533666666667,6.0526666666667,6.05195,6.0512,6.0505,6.0498166666667,6.04905,6.0483333333333,6.0476333333333,6.0469833333333,6.0463833333333,6.0458,6.0452166666667,6.0446333333333,6.0440833333333,6.0435833333333,6.04295,6.04225,6.0415333333333,6.0408666666667,6.0403666666667,6.0396166666667,6.0390666666667,6.0385,6.0379166666667,6.0373166666667,6.0367166666667,6.0361166666667,6.0355333333333,6.0349166666667,6.0342833333333,6.0336833333333,6.0331833333333,6.0326,6.0319333333333,6.0312,6.0305,6.0296166666667,6.0289833333333,6.0283833333333,6.0276833333333,6.0268833333333,6.0261,6.0253333333333,6.0246166666667,6.0238666666667,6.0231333333333,6.0224333333333,6.0217166666667,6.0209666666667,6.02015,6.0193,6.0184333333333,6.0174333333333,6.0165833333333,6.0157666666667,6.0148666666667,6.0139,6.01295,6.0120166666667,6.0111,6.0102,6.0093,6.0084166666667,6.00755,6.0067,6.00585,6.005,6.0041333333333,6.0031666666667,6.0024166666667,6.0018,6.0012166666667,6.0006333333333,6.0001333333333,5.9997166666667,5.9993166666667,5.9989666666667,5.9986833333333,5.9984,5.9980666666667,5.9977166666667,5.9974,5.99705,5.9967166666667,5.9964,5.9961166666667,5.9958166666667,5.99545,5.99515,5.9948666666667,5.9946166666667,5.9943666666667,5.99415,5.9939833333333,5.9938333333333,5.9936833333333,5.9935333333333,5.9933833333333,5.9932166666667,5.9931,5.993,5.99295,5.9928833333333,5.9928666666667,5.9928666666667,5.9928833333333,5.99285,5.9927833333333,5.9926666666667,5.9925333333333,5.9923833333333,5.99215,5.9918833333333,5.9915333333333,5.9911,5.9906666666667,5.9901833333333,5.9896833333333,5.9892333333333,5.9888833333333,5.9884833333333,5.9879666666667,5.98745,5.9870166666667,5.9866166666667,5.9863333333333,5.9861833333333,5.9858333333333,5.9855666666667,5.9853833333333,5.9851333333333,5.98485,5.9845,5.9841833333333,5.9838833333333,5.9837,5.9834166666667,5.9830666666667,5.9827,5.9822833333333,5.9818,5.98145,5.9809333333333,5.9803666666667,5.9798,5.9791833333333,5.97845,5.9777666666667,5.9769166666667,5.9760333333333,5.9752333333333,5.9744333333333,5.9738666666667,5.9732166666667,5.9725833333333,5.9721,5.9719833333333,5.9726666666667,5.9733166666667,5.97365,5.9735833333333,5.97305,5.9726,5.9726166666667,5.9732,5.9736833333333,5.9735166666667,5.9729833333333,5.9727,5.9726166666667,5.9728333333333,5.9734833333333,5.9734166666667,5.97285,5.9724,5.9726166666667,5.9731166666667,5.9733666666667,5.9732166666667,5.9728,5.9729833333333,5.9735666666667,5.9732333333333,5.9729,5.9734,5.9739333333333,5.9736,5.9731166666667,5.9734833333333,5.9741,5.9738333333333,5.97355,5.9740833333333,5.9741833333333,5.9737166666667,5.9741,5.9745666666667,5.9741833333333,5.9739833333333,5.9746166666667,5.9748166666667,5.9743333333333,5.9742666666667,5.9743,5.9741666666667,5.9739666666667,5.9737666666667,5.9736166666667,5.9734833333333,5.9733166666667,5.97325,5.97325,5.9731,5.9728,5.9724833333333,5.9721333333333,5.9718666666667,5.9716333333333,5.9713666666667,5.9710666666667,5.9706833333333,5.9703166666667,5.9699,5.9694833333333,5.9690333333333,5.9687333333333,5.9682833333333,5.96775,5.967,5.9669333333333,5.9673833333333,5.9676666666667,5.9671833333333,5.9665166666667,5.9667833333333,5.9674666666667,5.96765,5.9671333333333,5.9666166666667,5.9662,5.9659,5.9655166666667,5.9652166666667,5.9651,5.9649333333333,5.9646833333333,5.9645166666667,5.9644666666667,5.9646166666667,5.9649666666667,5.96555,5.9653166666667,5.9648,5.9649666666667,5.9652,5.9647166666667,5.9640666666667,5.9641833333333,5.9644,5.9637166666667,5.9632833333333,5.9635333333333,5.9633,5.9626333333333,5.96265,5.9629333333333,5.9622833333333,5.9621333333333,5.9622,5.9624333333333,5.9625833333333,5.9626666666667,5.9626666666667,5.9625833333333,5.96245,5.9623,5.9621666666667,5.9620666666667,5.96195,5.9618333333333,5.9617166666667,5.9615,5.9613,5.9611333333333,5.96095,5.9609166666667,5.9608,5.9608333333333,5.9609333333333,5.9609833333333,5.9609333333333,5.96075,5.9605333333333,5.9605,5.9603166666667,5.9598833333333,5.9594,5.9590666666667,5.9588166666667,5.9586333333333,5.95835,5.9580833333333,5.9578,5.9575166666667,5.9572,5.9569166666667,5.9566333333333,5.9562833333333,5.9559833333333,5.95575,5.9554333333333,5.95505,5.9546833333333,5.9543333333333,5.9540833333333,5.9538666666667,5.9535666666667,5.9531,5.9526666666667,5.9522833333333,5.95185,5.9511666666667,5.95055,5.94995,5.9494166666667,5.94885,5.9484666666667,5.9480666666667,5.9475666666667,5.9469666666667,5.9464166666667,5.94585,5.9453,5.9448,5.9444333333333,5.9441166666667,5.9438166666667,5.9435166666667,5.9432666666667,5.9430166666667,5.9427833333333,5.9425666666667,5.9423833333333,5.9421166666667,5.9419666666667,5.9422333333333,5.9415666666667,5.9413166666667,5.9415833333333,5.9409333333333,5.94035,5.9405666666667,5.9407333333333,5.9399666666667,5.93945,5.9392666666667,5.9390666666667,5.9388833333333,5.9388,5.9389333333333,5.93895,5.9381833333333,5.93785,5.9377333333333,5.9379,5.9371333333333,5.93665,5.9365,5.9363,5.9362166666667,5.9360833333333,5.9359166666667,5.9357833333333,5.9357,5.9356,5.93555,5.9354833333333,5.9354333333333,5.9354166666667,5.93545,5.9355666666667,5.9357166666667,5.9357666666667,5.9357333333333,5.9357,5.9361666666667,5.9363,5.9361,5.9357333333333,5.93535,5.9349166666667,5.9344333333333,5.9339833333333,5.93355,5.9329666666667,5.93225,5.9316,5.93105,5.9304166666667,5.92975,5.929,5.9283666666667,5.92785,5.9275333333333,5.9273666666667,5.9272833333333,5.9273333333333,5.92735,5.9273333333333,5.9272833333333,5.9273333333333,5.9272666666667,5.9270833333333,5.9268666666667,5.92655,5.9262666666667,5.9259166666667,5.9254833333333,5.9250333333333,5.9249,5.92475,5.92445,5.92425,5.9239833333333,5.92355,5.9232333333333,5.9229833333333,5.9228833333333,5.9228333333333,5.9228666666667,5.92285,5.9228166666667,5.9228666666667,5.92285,5.9228333333333,5.92275,5.9226333333333,5.9225833333333,5.9225,5.9224166666667,5.9223666666667,5.92225,5.9221666666667,5.9220666666667,5.9219666666667,5.92185,5.9215,5.92095,5.9203666666667,5.9197,5.9199333333333,5.9204,5.9203833333333,5.9196666666667,5.9197333333333,5.9198,5.9190333333333,5.9185,5.9188,5.9185166666667,5.9177166666667,5.9177166666667,5.9178166666667,5.91705,5.91675,5.9168333333333,5.9160833333333,5.9158666666667,5.91605,5.9155833333333,5.9146,5.9144666666667,5.9145166666667,5.9137,5.9130166666667,5.91255,5.9119833333333,5.9115333333333,5.91115,5.9106666666667,5.9103,5.90995,5.9095833333333,5.9092333333333,5.9089,5.9085333333333,5.90805,5.9074166666667,5.9067833333333,5.9061166666667,5.9054333333333,5.9047833333333,5.90415,5.9035333333333,5.9028,5.9021166666667,5.9016333333333,5.9013333333333,5.9010833333333,5.9007333333333,5.9003833333333,5.8999833333333,5.8994333333333,5.8988166666667,5.8981833333333,5.8976166666667,5.8971166666667,5.8967666666667,5.8963,5.8956833333333,5.8950666666667,5.8943833333333,5.8938333333333,5.8932833333333,5.8928166666667,5.8921833333333,5.8916333333333,5.89115,5.8906333333333,5.8902333333333,5.8898166666667,5.8891166666667,5.8884,5.8877333333333,5.88715,5.8866666666667,5.8863666666667,5.8860833333333,5.8857666666667,5.8856333333333,5.8854666666667,5.8852166666667,5.8850333333333,5.8848833333333,5.8845,5.8843,5.8841333333333,5.8838666666667,5.8836333333333,5.8833666666667,5.88295,5.8826166666667,5.8822166666667,5.8818,5.8814666666667,5.8815333333333,5.8819333333333,5.8813166666667,5.8806333333333,5.88085,5.8809666666667,5.8802,5.88,5.8803,5.8796333333333,5.8792166666667,5.87955,5.87915,5.8783833333333,5.8776166666667,5.8768833333333,5.8763,5.8758166666667,5.8753833333333,5.8756666666667,5.8760333333333,5.8757,5.8750833333333,5.87455,5.8739166666667,5.87335,5.8726,5.87165,5.8707666666667,5.8697666666667,5.8687833333333,5.8677166666667,5.86665,5.8655833333333,5.86455,5.8635333333333,5.8626833333333,5.86175,5.86075,5.8599333333333,5.8590833333333,5.8582833333333,5.8577,5.857,5.8562666666667,5.8555333333333,5.8547166666667,5.8539166666667,5.8530666666667,5.8521666666667,5.8514666666667,5.8508166666667,5.85045,5.8506,5.8509333333333,5.8507,5.8498833333333,5.8492,5.8486166666667,5.8479666666667,5.84735,5.8468166666667,5.84625,5.84545,5.84465,5.8439,5.8431166666667,5.8423833333333,5.8417333333333,5.8411333333333,5.8406333333333,5.8402833333333,5.8397833333333,5.8393666666667,5.8389333333333,5.8386,5.8382333333333,5.8378,5.8374166666667,5.8370666666667,5.8367833333333,5.8364833333333,5.8360666666667,5.8356833333333,5.8352,5.8347,5.83405,5.8335666666667,5.83315,5.83265,5.8321166666667,5.8315166666667,5.8308666666667,5.83025,5.8296833333333,5.8291,5.82855,5.8280833333333,5.8276833333333,5.8272666666667,5.8269,5.8264666666667,5.8260833333333,5.8256666666667,5.8252,5.8247,5.8244166666667,5.8240833333333,5.8237666666667,5.8234,5.8229,5.82255,5.8221,5.8218166666667,5.8217166666667,5.8214166666667,5.8210166666667,5.82055,5.8200666666667,5.8196333333333,5.8193166666667,5.8191166666667,5.8189166666667,5.8185833333333,5.8181833333333,5.8177666666667,5.8172333333333,5.8169,5.81655,5.8161666666667,5.8158166666667,5.8151666666667,5.8144666666667,5.8138166666667,5.8131,5.8123666666667,5.8118333333333,5.8113333333333,5.81095,5.8104333333333,5.8098166666667,5.8091666666667,5.8085333333333,5.8080666666667,5.8075333333333,5.8070166666667,5.8065,5.80605,5.8056166666667,5.8051,5.8045666666667,5.8039,5.8033166666667,5.8026833333333,5.8020333333333,5.8014333333333,5.8007833333333,5.8001666666667,5.7995166666667,5.7987666666667,5.7982833333333,5.7979,5.7974666666667,5.7971,5.79675,5.7962833333333,5.7958333333333,5.7954,5.7949166666667,5.7943,5.79375,5.7933,5.7928,5.7922833333333,5.7916833333333,5.7910666666667,5.79055,5.7901833333333,5.7898833333333,5.7896,5.7893333333333,5.7887666666667,5.7883333333333,5.7879333333333,5.7874666666667,5.7868666666667,5.78645,5.7859666666667,5.7855166666667,5.7850666666667,5.7844666666667,5.7839833333333,5.7834,5.78285,5.7822333333333,5.78165,5.7810833333333,5.7804166666667,5.7797666666667,5.7790666666667,5.7784166666667,5.7777833333333,5.7771833333333,5.7766333333333,5.77605,5.7753666666667,5.7745666666667,5.7739833333333,5.7736833333333,5.7732333333333,5.7727333333333,5.7722,5.7716,5.7710333333333,5.7704,5.7696166666667,5.7691833333333,5.7685833333333,5.7678833333333,5.7673,5.7666333333333,5.7658,5.7648833333333,5.7641,5.7647833333333,5.7653333333333,5.7658166666667,5.7663333333333,5.7669833333333,5.7676666666667,5.76855,5.7694166666667,5.77005,5.7705833333333,5.7713666666667,5.7722333333333,5.7730666666667,5.7737333333333,5.7744833333333,5.7753,5.7760166666667,5.7766333333333,5.7773666666667,5.7781333333333,5.7788833333333,5.7796,5.78035,5.7811333333333,5.7818666666667,5.7826666666667,5.7836,5.7841833333333,5.7848666666667,5.78555,5.7860833333333,5.7867833333333,5.7874,5.7879666666667,5.7887333333333,5.7894,5.7901166666667,5.79075,5.79115,5.7916333333333,5.79215,5.7925666666667,5.7928333333333,5.7932666666667,5.7938,5.7943,5.7948166666667,5.7954166666667,5.79615,5.7968666666667,5.7973833333333,5.7979,5.79845,5.7991666666667,5.79975,5.8002166666667,5.8006,5.8011333333333,5.8017166666667,5.8021666666667,5.80275,5.8033,5.8040333333333,5.8047166666667,5.8052833333333,5.8058333333333,5.8064166666667,5.8069166666667,5.8073833333333,5.8078833333333,5.8083333333333,5.8088166666667,5.8092333333333,5.80965,5.8100333333333,5.8105,5.8108833333333,5.81125,5.8116333333333,5.8119,5.8119333333333,5.81215,5.8124666666667,5.8126166666667,5.81285,5.8133666666667,5.8139333333333,5.8143833333333,5.8147166666667,5.81505,5.81535,5.8155666666667,5.8158333333333,5.8161833333333,5.8165,5.8168833333333,5.8173333333333,5.81775,5.8181333333333,5.81845,5.8188333333333,5.8192666666667,5.81975,5.82015,5.8204833333333,5.8208,5.8211,5.82135,5.8216,5.8218833333333,5.8216,5.8210666666667,5.8215666666667,5.8219166666667,5.8213,5.8208666666667,5.82135,5.8217833333333,5.82115,5.8212333333333,5.8218166666667,5.8214833333333,5.8211833333333,5.8218,5.82225,5.8225166666667,5.8228666666667,5.8232833333333,5.8229666666667,5.8224333333333,5.8231166666667,5.8235166666667,5.82315,5.8237666666667,5.8241333333333,5.8237166666667,5.8242,5.8248666666667,5.8253166666667,5.82575,5.8261666666667,5.8265333333333,5.8269333333333,5.8274666666667,5.8278833333333,5.82825,5.8285333333333,5.8287833333333,5.8290833333333,5.8294666666667,5.8297166666667,5.8300666666667,5.8304,5.8306833333333,5.8309666666667,5.8312666666667,5.8316,5.83175,5.8318833333333,5.8321333333333,5.8323166666667,5.83245,5.8326166666667,5.8328333333333,5.8330666666667,5.8333,5.8335166666667,5.8338833333333,5.8339666666667,5.8341,5.8341833333333,5.83435,5.8344666666667,5.83465,5.83475,5.8347666666667,5.83485,5.83505,5.83515,5.8352166666667,5.8352666666667,5.8353666666667,5.8357,5.8361166666667,5.8363833333333,5.8366,5.8368333333333,5.8371,5.83735,5.83765,5.8378666666667,5.8379833333333,5.8379666666667,5.8378833333333,5.8380833333333,5.83835,5.8386666666667,5.8389166666667,5.8391,5.8392833333333,5.8395333333333,5.8397333333333,5.8399833333333,5.8403666666667,5.8407333333333,5.84115,5.8415333333333,5.8418833333333,5.84215,5.8423666666667,5.8424,5.8426166666667,5.84305,5.8433666666667,5.8437166666667,5.8440833333333,5.8443166666667,5.8444833333333,5.8445833333333,5.84475,5.8448666666667,5.8449333333333,5.84505,5.8453166666667,5.8458166666667,5.8462666666667,5.8466666666667,5.8471833333333,5.8476333333333,5.8480166666667,5.84815,5.8476333333333,5.8479333333333,5.8488166666667,5.8491,5.8486166666667,5.84905,5.84965,5.84925,5.8488166666667,5.8492833333333,5.8496666666667,5.8491333333333,5.8484833333333,5.8485833333333,5.8493166666667,5.8498,5.8502166666667,5.85055,5.8508333333333,5.8511333333333,5.8516166666667,5.8522,5.8528833333333,5.8535,5.8540833333333,5.8546333333333,5.8552333333333,5.8556666666667,5.8562666666667,5.8567833333333,5.8572833333333,5.8578333333333,5.8585666666667,5.8592666666667,5.8598333333333,5.8604666666667,5.8612,5.86195,5.86265,5.8632166666667,5.8636166666667,5.86385,5.8640166666667,5.8642166666667,5.8646166666667,5.8650333333333,5.8654333333333,5.8659666666667,5.8666166666667,5.8672833333333,5.8679333333333,5.8684333333333,5.8688833333333,5.86945,5.8699666666667,5.8704666666667,5.87095,5.87135,5.87185,5.8723666666667,5.8728333333333,5.8734666666667,5.8740666666667,5.8745166666667,5.8748,5.8752,5.8755333333333,5.8758666666667,5.8762166666667,5.8766,5.8769833333333,5.8771833333333,5.87725,5.87745,5.8777666666667,5.8780833333333,5.8784833333333,5.8787666666667,5.87895,5.8791666666667,5.8793666666667,5.8796333333333,5.8798666666667,5.8800666666667,5.8802333333333,5.8804166666667,5.8806333333333,5.8808166666667,5.881,5.8812166666667,5.8815,5.8818333333333,5.8822333333333,5.8826833333333,5.88315,5.8834833333333,5.8837,5.8839,5.8841166666667,5.8843166666667,5.8844166666667,5.8846166666667,5.8846666666667,5.88465,5.8846666666667,5.8847333333333,5.8847166666667,5.8847166666667,5.88485,5.885,5.8852,5.8855333333333,5.8858,5.8861,5.8864166666667,5.8868,5.88715,5.8875166666667,5.8878666666667,5.8882,5.8884833333333,5.8887666666667,5.8890666666667,5.8893666666667,5.8897166666667,5.8901833333333,5.8906166666667,5.8910833333333,5.8915666666667,5.892,5.8924333333333,5.8928333333333,5.8932333333333,5.8938333333333,5.8943666666667,5.8949333333333,5.8954833333333,5.8960166666667,5.8965833333333,5.8971666666667,5.8977,5.8982166666667,5.8987166666667,5.8991166666667,5.8995166666667,5.90005,5.9005333333333,5.9011166666667,5.9012833333333,5.9008,5.901,5.9018333333333,5.90235,5.9019166666667,5.90215,5.9028833333333,5.9032166666667,5.9027333333333,5.9025666666667,5.90325,5.9038833333333,5.90385,5.9035833333333,5.9042166666667,5.90485,5.9045,5.9040166666667,5.9036666666667,5.9034,5.9028,5.9026833333333,5.90305,5.90355,5.904,5.90425,5.9043833333333,5.9040166666667,5.9038333333333,5.9045833333333,5.9047,5.90425,5.9039166666667,5.9044833333333,5.9049666666667,5.9046333333333,5.9042166666667,5.9048166666667,5.9053166666667,5.9048666666667,5.9051,5.9059,5.9060333333333,5.9055,5.90605,5.9064333333333,5.9066,5.9067,5.9068,5.9068666666667,5.9070166666667,5.9072166666667,5.9077166666667,5.9083,5.9088833333333,5.9092333333333,5.9098333333333,5.9106,5.9112833333333,5.9119833333333,5.9126833333333,5.9134333333333,5.9141833333333,5.915,5.9158833333333,5.9167833333333,5.9175,5.9181333333333,5.9187,5.91915,5.9193333333333,5.9195333333333,5.9196,5.9196166666667,5.91965,5.9197,5.91975,5.9197166666667,5.9197333333333,5.9198,5.91975,5.9196,5.9196333333333,5.9196833333333,5.9198,5.9202333333333,5.9205833333333,5.9207333333333,5.9209833333333,5.9217666666667,5.9217,5.9212833333333,5.9213666666667,5.9219666666667,5.9222,5.9216666666667,5.9210166666667,5.921,5.9215833333333,5.9212666666667,5.92065,5.9206833333333,5.9207166666667,5.9207666666667,5.9207333333333,5.9205,5.92025,5.9200666666667,5.9197833333333,5.9195,5.9192166666667,5.9191833333333,5.9191666666667,5.9191166666667,5.919,5.9189166666667,5.91875,5.9188666666667,5.9192166666667,5.9196,5.9198333333333,5.9199666666667,5.9202833333333,5.9206333333333,5.9209666666667,5.9214333333333,5.9218833333333,5.9223666666667,5.92295,5.9236333333333,5.92425,5.9248333333333,5.9254333333333,5.9260166666667,5.926,5.9259833333333,5.9259666666667,5.9263166666667,5.9265666666667,5.9267666666667,5.927,5.9272166666667,5.9276,5.928,5.9284333333333,5.9292833333333,5.9301166666667,5.9308666666667,5.93155,5.9319333333333,5.9324333333333,5.9329333333333,5.9332,5.9334833333333,5.9338833333333,5.9342833333333,5.9345333333333,5.9348833333333,5.9352,5.9354333333333,5.93565,5.9359333333333,5.9362333333333,5.93655,5.9368666666667,5.93715,5.9375166666667,5.938,5.9385166666667,5.9391333333333,5.93975,5.9403166666667,5.94075,5.94125,5.9418,5.9423333333333,5.94285,5.9434,5.9439333333333,5.9443333333333,5.9446833333333,5.9451166666667,5.9456333333333,5.9461833333333,5.9467666666667,5.9473166666667,5.94785,5.9483333333333,5.9488666666667,5.9494333333333,5.9499666666667,5.9505,5.9510833333333,5.95165,5.9522333333333,5.9527833333333,5.9533833333333,5.9540333333333,5.95475,5.9555,5.9561333333333,5.95675,5.9573666666667,5.9580166666667,5.9586333333333,5.9592333333333,5.9598166666667,5.9603833333333,5.9609166666667,5.9615166666667,5.9620333333333,5.96255,5.963,5.96345,5.96395,5.9644333333333,5.9649,5.9653833333333,5.9659166666667,5.9664666666667,5.9670166666667,5.9676166666667,5.9682,5.9687833333333,5.9693333333333,5.9698666666667,5.97035,5.9707833333333,5.9712333333333,5.9716666666667,5.9721,5.9725333333333,5.9729333333333,5.9733333333333,5.97385,5.9743166666667,5.97475,5.97515,5.9755166666667,5.9758833333333,5.9763,5.9767666666667,5.9772333333333,5.9778,5.9783333333333,5.9789166666667,5.9794666666667,5.9799666666667,5.9804333333333,5.9807833333333,5.9811666666667,5.98165,5.9821166666667,5.9825333333333,5.9829166666667,5.9832666666667,5.98365,5.984,5.9843833333333,5.9849,5.98535,5.9857833333333,5.9862333333333,5.9867166666667,5.9871666666667,5.9877,5.9881666666667,5.9886333333333,5.9891666666667,5.9897166666667,5.9902666666667,5.9908833333333,5.9914833333333,5.9919666666667,5.9924833333333,5.9930166666667,5.99355,5.9940666666667,5.9946166666667,5.99515,5.99575,5.9963666666667,5.9969333333333,5.9976333333333,5.9982,5.99875,5.9992833333333,5.9997833333333,6.0002666666667,6.00075,6.0012333333333,6.0017166666667,6.0023333333333,6.0028666666667,6.0034,6.0039333333333,6.00445,6.0049666666667,6.00545,6.0059666666667,6.0065,6.0070333333333,6.0076166666667,6.0082666666667,6.0089666666667,6.0097333333333,6.01055,6.0113,6.01205,6.0126833333333,6.0134166666667,6.0140833333333,6.0148166666667,6.0155833333333,6.0163333333333,6.0170333333333,6.01765,6.01825,6.0188833333333,6.0194833333333,6.0199166666667,6.0205666666667,6.0213333333333,6.0220333333333,6.0226333333333,6.0232333333333,6.02385,6.0244833333333,6.0251,6.02565,6.0259333333333,6.0262,6.0265166666667,6.0265166666667,6.0261666666667,6.0256166666667,6.0249666666667,6.0243666666667,6.024,6.0238666666667,6.0237,6.0234,6.0231333333333,6.02315,6.0236166666667,6.02445,6.0245833333333,6.02425,6.0240166666667,6.0247666666667,6.02515,6.0254,6.0254333333333,6.02515,6.0249,6.0245166666667,6.0246666666667,6.0255833333333,6.02595,6.02565,6.02585,6.0267,6.0267333333333,6.0262666666667,6.02625,6.0270833333333,6.0281333333333,6.0284666666667,6.0283166666667,6.0283333333333,6.0290333333333,6.0297166666667,6.03055,6.0307333333333,6.0304,6.0303166666667,6.0311666666667,6.0316,6.0312833333333,6.0307666666667,6.0303666666667,6.0304166666667,6.0311333333333,6.0321333333333,6.03275,6.0327,6.03245,6.0328166666667,6.0337,6.0343166666667,6.0341333333333,6.0339833333333,6.0344166666667,6.0348,6.0351666666667,6.0355166666667,6.036,6.0365666666667,6.03705,6.03765,6.0381833333333,6.0386166666667,6.03905,6.0394833333333,6.04,6.0406166666667,6.0411666666667,6.04165,6.0420666666667,6.0424833333333,6.04295,6.0435166666667,6.0440666666667,6.04455,6.0451,6.0457166666667,6.0462833333333,6.0469333333333,6.04755,6.04815,6.0487166666667,6.0492333333333,6.0497666666667,6.05025,6.0505166666667,6.0507666666667,6.0509,6.0508833333333,6.05085,6.0511333333333,6.0516833333333,6.052,6.0522666666667,6.0525833333333,6.0527166666667,6.0530833333333,6.0532166666667,6.0528333333333,6.0532,6.05385,6.0541333333333,6.0540833333333,6.0536333333333,6.05385,6.0546833333333,6.0551333333333,6.0549333333333,6.0547333333333,6.0554166666667,6.05595,6.0561333333333,6.0561166666667,6.05635,6.05685,6.0572166666667,6.0574833333333,6.0579833333333,6.0582,6.058,6.0580166666667,6.0589,6.0595,6.06,6.0603666666667,6.0606666666667,6.0608333333333,6.0610166666667,6.0611833333333,6.06135,6.0615833333333,6.0618333333333,6.0621,6.0622666666667,6.0623666666667,6.06255,6.0628333333333,6.0631166666667,6.0632833333333,6.0633666666667,6.06355,6.0636,6.0636833333333,6.0639833333333,6.0642833333333,6.0643,6.0639833333333,6.0638333333333,6.06425,6.0645833333333,6.0644166666667,6.0644,6.0653333333333,6.0658166666667,6.0655333333333,6.0653,6.0655166666667,6.06595,6.0662666666667,6.0659833333333,6.0661833333333,6.06645,6.0663166666667,6.0660666666667,6.06635,6.06665,6.06635,6.0661666666667,6.0669333333333,6.0676,6.0677166666667,6.0675,6.0673333333333,6.0682,6.0686333333333,6.0685166666667,6.0680833333333,6.06855,6.0693,6.0694333333333,6.0694666666667,6.0694666666667,6.0696,6.0698666666667,6.0701833333333,6.07045,6.0704833333333,6.07045,6.0704833333333,6.0704333333333,6.0704,6.0706166666667,6.0709166666667,6.07125,6.0715833333333,6.0719333333333,6.0722,6.0726166666667,6.0734833333333,6.0744333333333,6.0753166666667,6.0762666666667,6.0772666666667,6.0783,6.0792833333333,6.0802333333333,6.0811666666667,6.0821,6.08295,6.0839333333333,6.0848666666667,6.0859333333333,6.08715,6.0882333333333,6.0893166666667,6.0904,6.0915,6.0926666666667,6.0938166666667,6.0950833333333,6.0963833333333,6.0975333333333,6.0986,6.0992,6.0990166666667,6.0992166666667,6.1002666666667,6.1007,6.10035,6.10075,6.1017,6.10195,6.10155,6.1015833333333,6.1024,6.10305,6.1039666666667,6.1049,6.10585,6.10675,6.1076666666667,6.1083833333333,6.1090333333333,6.10965,6.10955,6.1090666666667,6.1092833333333,6.10975,6.1093333333333,6.1091,6.1095833333333,6.1102333333333,6.11075,6.1106166666667,6.11005,6.1096666666667,6.1099166666667,6.11055,6.1112666666667,6.1121166666667,6.1127833333333,6.1132666666667,6.1129333333333,6.1125,6.1124,6.1129666666667,6.1134833333333,6.114,6.11465,6.1152666666667,6.1158666666667,6.1164833333333,6.11715,6.1177166666667,6.11835,6.11845,6.11785,6.11735,6.1172666666667,6.1176,6.1180166666667,6.1185,6.1190333333333,6.1196666666667,6.1201833333333,6.1206666666667,6.1212,6.12175,6.1223666666667,6.12305,6.12365,6.1242833333333,6.1249666666667,6.12565,6.12635,6.1269833333333,6.1276166666667,6.1282333333333,6.1288,6.12965,6.1305666666667,6.1314666666667,6.1324166666667,6.13335,6.1342166666667,6.13505,6.1359333333333,6.1368666666667,6.1379166666667,6.13875,6.1396166666667,6.1405,6.1414166666667,6.1422,6.1429833333333,6.1438166666667,6.1446166666667,6.1453666666667,6.1461333333333,6.1469333333333,6.1478166666667,6.1487833333333,6.1496833333333,6.1505333333333,6.1514166666667,6.15225,6.15305,6.15385,6.1546833333333,6.1554333333333,6.1561833333333,6.1569333333333,6.1579,6.1587333333333,6.1593,6.1597666666667,6.1602833333333,6.1607666666667,6.1611833333333,6.1613166666667,6.1609333333333,6.1606,6.1610666666667,6.1617333333333,6.1622833333333,6.16255,6.1623166666667,6.16205,6.1626166666667,6.1632,6.1634666666667,6.16345,6.1634833333333,6.1628666666667,6.1624833333333,6.16285,6.1635333333333,6.1638166666667,6.1633,6.1630333333333,6.1636333333333,6.1642166666667,6.1645333333333,6.1647833333333,6.16505,6.1653166666667,6.1656166666667,6.1660666666667,6.1664333333333,6.16675,6.1671666666667,6.1677333333333,6.1682166666667,6.16875,6.16915,6.1694666666667,6.1697166666667,6.1699333333333,6.1702166666667,6.1708833333333,6.17145,6.1710166666667,6.1703666666667,6.1700166666667,6.1703,6.1706666666667,6.1713333333333,6.172,6.1728,6.17365,6.1745,6.17535,6.1762666666667,6.1771,6.1778666666667,6.1785,6.1791833333333,6.1800333333333,6.1809166666667,6.18175,6.1825,6.18325,6.18395,6.1846666666667,6.1854,6.1862,6.18715,6.1879166666667,6.1884333333333,6.1888666666667,6.1893333333333,6.1898166666667,6.19045,6.1911,6.1916833333333,6.1923,6.1929166666667,6.19355,6.1941333333333,6.1947166666667,6.1952333333333,6.1957666666667,6.1962666666667,6.1967666666667,6.1971666666667,6.1975666666667,6.1979666666667,6.1984333333333,6.1989166666667,6.1994333333333,6.2000666666667,6.2001333333333,6.1995,6.1994,6.2000666666667,6.2007,6.2003666666667,6.2001833333333,6.20085,6.2006666666667,6.2001166666667,6.2005,6.20105,6.2007666666667,6.2001333333333,6.2002166666667,6.2009,6.2007833333333,6.2003,6.20085,6.20145,6.2017166666667,6.20135,6.2009,6.2014,6.2020666666667,6.2021833333333,6.2015833333333,6.2017833333333,6.2025833333333,6.2027666666667,6.20215,6.2016666666667,6.2020833333333,6.2027666666667,6.20335,6.2038666666667,6.2044833333333,6.2050333333333,6.20565,6.20615,6.2067166666667,6.2073,6.2078166666667,6.2083333333333,6.2087833333333,6.20935,6.2098,6.2102833333333,6.2106,6.2108833333333,6.2109666666667,6.2111833333333,6.2114666666667,6.2118333333333,6.21235,6.2128833333333,6.2134333333333,6.2139166666667,6.2144166666667,6.2148166666667,6.21525,6.2158,6.21635,6.2169,6.2173833333333,6.2178833333333,6.21845,6.21895,6.2194333333333,6.2198666666667,6.22035,6.22085,6.2213333333333,6.22195,6.2225666666667,6.2232166666667,6.2241333333333,6.2251333333333,6.2262,6.2273166666667,6.2284,6.2292666666667,6.23015,6.2309833333333,6.2318333333333,6.2326333333333,6.2333666666667,6.23405,6.2346333333333,6.2351,6.2354833333333,6.23585,6.2356666666667,6.2357166666667,6.23635,6.2361666666667,6.2359666666667,6.2361666666667,6.2361166666667,6.2357,6.2357666666667,6.2366,6.23665,6.2363,6.2366833333333,6.2375666666667,6.23745,6.2372666666667,6.2376166666667,6.2383333333333,6.2384333333333,6.2380666666667,6.2381666666667,6.2390666666667,6.2392666666667,6.2388333333333,6.2388166666667,6.23965,6.23985,6.2394833333333,6.2390166666667,6.2390333333333,6.2399833333333,6.2403333333333,6.2400333333333,6.2396666666667,6.23995,6.2408166666667,6.24105,6.2406333333333,6.24015,6.2396166666667,6.2390333333333,6.2385166666667,6.238,6.2378,6.2382666666667,6.2387166666667,6.2392666666667,6.2397833333333,6.2403333333333,6.2409666666667,6.2417833333333,6.24255,6.24325,6.2439833333333,6.2445833333333,6.24525,6.2458666666667,6.2464,6.247,6.2475166666667,6.248,6.2485,6.2489833333333,6.2495166666667,6.2500833333333,6.25065,6.2512333333333,6.25175,6.2521333333333,6.2524833333333,6.2529166666667,6.2533,6.2537666666667,6.2542166666667,6.2546,6.2549333333333,6.2553166666667,6.2557333333333,6.2561166666667,6.2565,6.2568333333333,6.25715,6.25745,6.2577833333333,6.2581666666667,6.2585666666667,6.2589166666667,6.2593833333333,6.2598166666667,6.2602666666667,6.2607,6.261,6.2611666666667,6.2613,6.2614833333333,6.2617333333333,6.26195,6.2621833333333,6.2625,6.2628,6.2630833333333,6.2633666666667,6.2636166666667,6.26395,6.2643333333333,6.2646666666667,6.2649666666667,6.2652666666667,6.2655833333333,6.266,6.2663666666667,6.2666666666667,6.2669333333333,6.2672833333333,6.2676,6.2679166666667,6.2682333333333,6.2684833333333,6.2686666666667,6.26895,6.26925,6.2695333333333,6.2697833333333,6.27015,6.2705166666667,6.2709333333333,6.2712833333333,6.2715666666667,6.27185,6.27215,6.27255,6.2729,6.2733,6.2734666666667,6.2739,6.27445,6.2743333333333,6.2737,6.2738,6.2743,6.2749833333333,6.2750166666667,6.2743666666667,6.27435,6.2750666666667,6.2754,6.2748333333333,6.2745,6.2750166666667,6.2757333333333,6.2755666666667,6.2751333333333,6.27565,6.2762833333333,6.2760166666667,6.2753166666667,6.2754833333333,6.2762666666667,6.2767166666667,6.27625,6.2756666666667,6.2755333333333,6.2759666666667,6.2765166666667,6.2769,6.2773666666667,6.2778333333333,6.27825,6.2786,6.2788666666667,6.27915,6.2794333333333,6.2798,6.2803,6.2808,6.28125,6.28175,6.2822333333333,6.2826166666667,6.2830666666667,6.2835333333333,6.2840166666667,6.2844833333333,6.2849666666667,6.28545,6.2859833333333,6.2866333333333,6.2872833333333,6.28795,6.2885333333333,6.28915,6.2897666666667,6.2904333333333,6.2910333333333,6.2916166666667,6.29225,6.2929,6.2936166666667,6.2943333333333,6.29505,6.2957,6.2963833333333,6.2970666666667,6.2977833333333,6.2986166666667,6.2993166666667,6.2999833333333,6.3005666666667,6.3011166666667,6.3016833333333,6.3022,6.3027833333333,6.30335,6.30395,6.3045333333333,6.3051333333333,6.3056666666667,6.3061333333333,6.30665,6.3071333333333,6.30765,6.3082,6.3087,6.3092166666667,6.3098,6.3103333333333,6.3108,6.3112666666667,6.3116833333333,6.3120833333333,6.3125,6.3129,6.3133333333333,6.3137666666667,6.31415,6.3146,6.3150666666667,6.3155666666667,6.31605,6.3166,6.3171333333333,6.31765,6.3182333333333,6.3189166666667,6.3196,6.3201833333333,6.32075,6.3213333333333,6.3219333333333,6.3224833333333,6.3230833333333,6.3236666666667,6.3242333333333,6.3248333333333,6.3254166666667,6.3259666666667,6.3264833333333,6.3269833333333,6.3275,6.32805,6.3286333333333,6.3291833333333,6.3297333333333,6.3303,6.33085,6.3314166666667,6.332,6.3326,6.3332166666667,6.3338,6.33445,6.3351333333333,6.3357666666667,6.33645,6.3371833333333,6.3378666666667,6.3385333333333,6.3391166666667,6.3397833333333,6.34035,6.3409,6.3414166666667,6.3419333333333,6.3424666666667,6.3430666666667,6.3435666666667,6.34385,6.3435333333333,6.3430833333333,6.3434333333333,6.3442333333333,6.3445333333333,6.3441833333333,6.34385,6.3443833333333,6.3451333333333,6.3452666666667,6.3449,6.3444666666667,6.3446333333333,6.3454333333333,6.34565,6.3452166666667,6.3448,6.34495,6.34495,6.34455,6.3442333333333,6.3445666666667,6.3452833333333,6.3460166666667,6.3467333333333,6.3475166666667,6.3482833333333,6.34865,6.3486333333333,6.3483166666667,6.3483333333333,6.3492166666667,6.3500666666667,6.3506166666667,6.3507333333333,6.3505,6.3502833333333,6.35005,6.3502333333333,6.35095,6.3509166666667,6.3507333333333,6.3507166666667,6.35065,6.3505333333333,6.3502666666667,6.3499833333333,6.3504,6.35135,6.3517333333333,6.3516833333333,6.3514833333333,6.3512333333333,6.3512833333333,6.3515833333333,6.3518833333333,6.3520833333333,6.35235,6.3525333333333,6.3527166666667,6.3529666666667,6.3533833333333,6.3538666666667,6.3544,6.3549333333333,6.3554166666667,6.3558666666667,6.3562333333333,6.3566166666667,6.3570833333333,6.35745,6.35795,6.3582833333333,6.3585666666667,6.3588333333333,6.3591,6.3593666666667,6.3598,6.3601,6.3603,6.3606,6.3608,6.3612166666667,6.36175,6.3623,6.3626666666667,6.3625666666667,6.3625,6.3626833333333,6.3632,6.3637333333333,6.3642333333333,6.3647833333333,6.3653166666667,6.3657833333333,6.36625,6.3667833333333,6.3674166666667,6.3679666666667,6.3682166666667,6.3683166666667,6.3685666666667,6.3688666666667,6.3692,6.3695666666667,6.3699333333333,6.3703166666667,6.3707166666667,6.3711,6.3713833333333,6.3716833333333,6.3719833333333,6.3723333333333,6.3728166666667,6.37325,6.3737833333333,6.3743333333333,6.3749,6.37555,6.3762,6.3768333333333,6.3770833333333,6.3768166666667,6.3765666666667,6.3763166666667,6.3766666666667,6.3776666666667,6.3783,6.37835,6.3781,6.3778666666667,6.37835,6.3793333333333,6.3798166666667,6.3797666666667,6.3795,6.3797666666667,6.3807166666667,6.38125,6.3810166666667,6.3807833333333,6.3806833333333,6.38125,6.3814,6.3811166666667,6.3811166666667,6.3819833333333,6.3825333333333,6.38245,6.3821166666667,6.3822166666667,6.3831666666667,6.3834166666667,6.3831666666667,6.3829833333333,6.3834166666667,6.3844,6.3847,6.3844666666667,6.3841666666667,6.3843166666667,6.3852666666667,6.3856,6.3853833333333,6.3851,6.3849166666667,6.38535,6.3862833333333,6.3866333333333,6.38645,6.3861166666667,6.3859666666667,6.3868,6.3874666666667,6.38735,6.38695,6.3864833333333,6.3868166666667,6.3877333333333,6.3879333333333,6.3876833333333,6.3873333333333,6.3877333333333,6.3885166666667,6.3887166666667,6.3884166666667,6.3880833333333,6.38885,6.38915,6.3887833333333,6.38825,6.3877666666667,6.3879166666667,6.3888,6.3890166666667,6.3889833333333,6.3887833333333,6.3883333333333,6.38885,6.3895833333333,6.3897,6.3896833333333,6.3895833333333,6.3893666666667,6.38885,6.3889333333333,6.3898,6.3900333333333,6.3899333333333,6.3897833333333,6.38985,6.38995,6.3899833333333,6.39005,6.3901166666667,6.3902333333333,6.3904,6.3906166666667,6.3908166666667,6.3910333333333,6.39135,6.3916666666667,6.3920333333333,6.3924,6.3927833333333,6.3931333333333,6.3935,6.3937666666667,6.3941,6.3943666666667,6.3946666666667,6.3949833333333,6.3953333333333,6.3957,6.3961,6.3964833333333,6.3969,6.3974166666667,6.3978166666667,6.39815,6.3984666666667,6.3986,6.3987166666667,6.3987333333333,6.39875,6.3989666666667,6.3992,6.3994,6.3997166666667,6.4,6.4001833333333,6.3996666666667,6.39925,6.3989666666667,6.3983166666667,6.3980666666667,6.3982,6.3984166666667,6.3987,6.3990333333333,6.3994166666667,6.3994666666667,6.3988166666667,6.3993166666667,6.3998833333333,6.4001166666667,6.40005,6.39945,6.39945,6.3999833333333,6.40015,6.4003333333333,6.4006333333333,6.4009333333333,6.40125,6.4016,6.4019666666667,6.40235,6.40275,6.40315,6.4036166666667,6.4040166666667,6.4043666666667,6.40475,6.4050333333333,6.4053,6.4055666666667,6.4059,6.4063,6.4066666666667,6.4067666666667,6.4068833333333,6.40705,6.4073,6.4075333333333,6.4077666666667,6.40795,6.4080166666667,6.4079833333333,6.4079,6.40775,6.4076166666667,6.4075166666667,6.4074166666667,6.4073333333333,6.4072,6.4070833333333,6.40695,6.4067166666667,6.4065166666667,6.4063833333333,6.4064666666667,6.4066,6.40655,6.4064,6.4061333333333,6.40595,6.4057666666667,6.4055166666667,6.4052666666667,6.40505,6.4045833333333,6.40425,6.4039833333333,6.4038166666667,6.4037,6.4036666666667,6.4036833333333,6.4037666666667,6.4038166666667,6.4039833333333,6.4041333333333,6.40425,6.40435,6.4046666666667,6.40495,6.4051333333333,6.4054,6.4057666666667,6.4061,6.40615,6.4060833333333,6.4060166666667,6.406,6.4063666666667,6.4067833333333,6.40635,6.4056333333333,6.4052333333333,6.40535,6.4057333333333,6.4051833333333,6.4044833333333,6.40415,6.4046,6.4051333333333,6.40525,6.4046,6.4040833333333,6.4043833333333,6.40485,6.4043666666667,6.4038833333333,6.4042,6.4048,6.4049833333333,6.4043666666667,6.40365,6.4032666666667,6.4036333333333,6.4040333333333,6.40385,6.4031333333333,6.40255,6.4028333333333,6.4034666666667,6.4038833333333,6.4034333333333,6.4027666666667,6.40255,6.4027833333333,6.4031833333333,6.4036333333333,6.4042666666667,6.40475,6.4043166666667,6.4036666666667,6.40355,6.404,6.4046,6.4046666666667,6.4038666666667,6.4031833333333,6.4025,6.4023333333333,6.4026666666667,6.4031833333333,6.4037333333333,6.4042,6.4048833333333,6.4052333333333,6.40495,6.40435,6.4041833333333,6.40465,6.4052666666667,6.4050333333333,6.4043166666667,6.40415,6.4043833333333,6.4048666666667,6.4053333333333,6.4058666666667,6.4058,6.4052333333333,6.4048166666667,6.40495,6.4054,6.40605,6.4063833333333,6.4061166666667,6.4054833333333,6.4052166666667,6.4054833333333,6.4061166666667,6.4060833333333,6.4053666666667,6.4050833333333,6.4054166666667,6.40595,6.4058333333333,6.4051333333333,6.4043666666667,6.4038333333333,6.40385,6.4040333333333,6.40425,6.4046,6.4049666666667,6.40525,6.4054833333333,6.4058166666667,6.4060666666667,6.40625,6.4064666666667,6.4067666666667,6.4071333333333,6.4074666666667,6.4078166666667,6.40805,6.4083833333333,6.4087333333333,6.4090166666667,6.40915,6.4092333333333,6.4092333333333,6.4090833333333,6.4089166666667,6.40895,6.4091833333333,6.4094166666667,6.4096833333333,6.4099833333333,6.41025,6.41045,6.4107666666667,6.4109833333333,6.4111166666667,6.4113833333333,6.4117333333333,6.412,6.4122666666667,6.4125,6.41275,6.4130333333333,6.41335,6.4135666666667,6.4138166666667,6.4140666666667,6.41435,6.4146166666667,6.4149,6.4152166666667,6.4155,6.4158333333333,6.4162833333333,6.4167833333333,6.4174833333333,6.4179666666667,6.4175833333333,6.4172333333333,6.4173833333333,6.41775,6.4181666666667,6.4186333333333,6.4192166666667,6.4197666666667,6.4203333333333,6.42085,6.42135,6.4221,6.42275,6.42325,6.4238833333333,6.4243666666667,6.42485,6.4252833333333,6.4257666666667,6.4263,6.4267166666667,6.4270666666667,6.4274333333333,6.4278166666667,6.4282,6.4286,6.42895,6.4293333333333,6.4297333333333,6.4301,6.43045,6.4308,6.4311166666667,6.4313166666667,6.4315166666667,6.43175,6.4320166666667,6.4323666666667,6.4327333333333,6.4330166666667,6.4332833333333,6.4335,6.4336666666667,6.4340166666667,6.4343333333333,6.4346166666667,6.43485,6.4350666666667,6.4353333333333,6.4355666666667,6.4357833333333,6.43605,6.4365833333333,6.4371166666667,6.4376333333333,6.4380666666667,6.4385,6.4389666666667,6.4392833333333,6.4392333333333,6.4388,6.4382,6.4376166666667,6.437,6.4364166666667,6.4359,6.4353666666667,6.4348333333333,6.4342333333333,6.4336833333333,6.43315,6.4326666666667,6.4321166666667,6.43155,6.43095,6.4303833333333,6.4296666666667,6.4290333333333,6.4283666666667,6.4277333333333,6.4270333333333,6.4263333333333,6.4257,6.4250833333333,6.4245666666667,6.424,6.4235333333333,6.4233,6.4232833333333,6.4234666666667,6.4236666666667,6.4237666666667,6.4237333333333,6.4237,6.4237166666667,6.4237833333333,6.4239166666667,6.42405,6.4241166666667,6.4241833333333,6.4243833333333,6.4245166666667,6.4247166666667,6.4249,6.4251,6.4253666666667,6.4256166666667,6.4258,6.4259333333333,6.42605,6.4261166666667,6.4262,6.4262166666667,6.42625,6.4262666666667,6.42625,6.4262,6.4260833333333,6.4260666666667,6.4260833333333,6.4260833333333,6.4261,6.42605,6.4259333333333,6.4258833333333,6.4259166666667,6.4260166666667,6.4261666666667,6.4263833333333,6.4266,6.42685,6.4272333333333,6.4276666666667,6.4279833333333,6.4281166666667,6.4282833333333,6.42845,6.4289166666667,6.4292833333333,6.42925,6.4286833333333,6.42855,6.4291,6.4297833333333,6.4302666666667,6.4307833333333,6.4313,6.4315666666667,6.4310833333333,6.43055,6.4303,6.4309,6.4313333333333,6.4311333333333,6.4306166666667,6.4305333333333,6.4311833333333,6.4318666666667,6.4319,6.4316666666667,6.4314666666667,6.43135,6.4312666666667,6.43125,6.4312333333333,6.43125,6.4312833333333,6.4313166666667,6.4314,6.43145,6.4315333333333,6.4316333333333,6.4317333333333,6.43185,6.4320166666667,6.43215,6.4322333333333,6.4324,6.4326,6.4327833333333,6.4329333333333,6.4331333333333,6.4333166666667,6.4333833333333,6.4334666666667,6.43355,6.4336833333333,6.43385,6.4339333333333,6.4340166666667,6.43415,6.4342,6.4341833333333,6.4342666666667,6.4344666666667,6.4346333333333,6.4348333333333,6.4350833333333,6.43535,6.4355666666667,6.4358333333333,6.43615,6.4364,6.4366166666667,6.4367,6.4367833333333,6.43695,6.4371,6.4368333333333,6.4364333333333,6.4360333333333,6.436,6.4364333333333,6.4371,6.4373666666667,6.4373833333333,6.437,6.4368,6.4374666666667,6.43815,6.4383833333333,6.43845,6.4385166666667,6.4387333333333,6.43915,6.4393,6.4393333333333,6.4395666666667,6.4400666666667,6.4408,6.4414833333333,6.4415,6.4412666666667,6.4418,6.4427333333333,6.4437,6.4444,6.4443,6.444,6.4445333333333,6.4451666666667,6.4453666666667,6.4451,6.4448666666667,6.4456333333333,6.4465166666667,6.4468,6.44645,6.4464166666667,6.4474166666667,6.44815,6.4481833333333,6.44785,6.4483,6.4492,6.4501333333333,6.4510833333333,6.452,6.4529166666667,6.4538,6.4547,6.4554166666667,6.4559166666667,6.4559166666667,6.4554666666667,6.45565,6.4555166666667,6.4552833333333,6.4554166666667,6.45575,6.4563333333333,6.4569666666667,6.4569666666667,6.45665,6.4575166666667,6.4580666666667,6.4579333333333,6.4575666666667,6.45725,6.45685,6.45705,6.4577833333333,6.4586833333333,6.45945,6.4603666666667,6.4612166666667,6.4620333333333,6.4628,6.4635333333333,6.4641833333333,6.4649,6.4656833333333,6.4664666666667,6.4671833333333,6.4676166666667,6.46725,6.4673,6.4680833333333,6.4686166666667,6.4686666666667,6.4683333333333,6.4680833333333,6.4688,6.46965,6.4704,6.4711333333333,6.4718333333333,6.4726166666667,6.4734,6.4741666666667,6.4748833333333,6.4756,6.4763666666667,6.47715,6.4780333333333,6.4788666666667,6.4795833333333,6.4802,6.4806333333333,6.4809166666667,6.48105,6.48115,6.4812166666667,6.48115,6.48105,6.4809,6.4806333333333,6.4803833333333,6.4802333333333,6.4802166666667,6.4801833333333,6.4804166666667,6.4810166666667,6.4816666666667,6.4822,6.4826833333333,6.4830666666667,6.4834666666667,6.4838833333333,6.4842833333333,6.4846833333333,6.4850833333333,6.48555,6.4860166666667,6.4865166666667,6.4870333333333,6.4875,6.4881333333333,6.4887666666667,6.4893,6.4896333333333,6.4898833333333,6.4900166666667,6.4901,6.4900333333333,6.49015,6.4903333333333,6.4905833333333,6.49095,6.4912,6.4909,6.4905833333333,6.4902333333333,6.4897166666667,6.4894666666667,6.4898833333333,6.4905333333333,6.4911333333333,6.4918166666667,6.4925333333333,6.4931166666667,6.4936333333333,6.49405,6.4945166666667,6.49495,6.4953166666667,6.4956333333333,6.49585,6.4957333333333,6.4956,6.4962833333333,6.49705,6.4973666666667,6.4970666666667,6.49715,6.4978666666667,6.4980666666667,6.4977666666667,6.4973666666667,6.497,6.49695,6.4973333333333,6.4980666666667,6.4987666666667,6.4994333333333,6.5001166666667,6.50075,6.50145,6.5022666666667,6.50275,6.5024,6.5024333333333,6.5032333333333,6.5038166666667,6.5044166666667,6.505,6.5056833333333,6.5063666666667,6.507,6.5075166666667,6.5080166666667,6.5085666666667,6.5091666666667,6.5098,6.5104333333333,6.5110666666667,6.5117,6.5122333333333,6.51275,6.5132333333333,6.5136666666667,6.5141833333333,6.51455,6.5149833333333,6.5153666666667,6.5157666666667,6.51615,6.51645,6.5167166666667,6.5169666666667,6.5172166666667,6.5174166666667,6.5175833333333,6.5176833333333,6.5177666666667,6.5175333333333,6.51685,6.5162333333333,6.5157666666667,6.5152666666667,6.5147166666667,6.5142,6.5136666666667,6.51315,6.5126166666667,6.5120666666667,6.5115,6.5109166666667,6.51025,6.5096833333333,6.5091,6.5084666666667,6.5078,6.5071166666667,6.5064666666667,6.5058333333333,6.5052,6.5046,6.50395,6.50335,6.50285,6.5023833333333,6.50205,6.50165,6.5011666666667,6.5008333333333,6.50045,6.5001333333333,6.4998,6.4994166666667,6.4990333333333,6.4987833333333,6.4984666666667,6.4981333333333,6.49785,6.4975,6.4971833333333,6.4968833333333,6.49655,6.4962666666667,6.4959333333333,6.49565,6.4952833333333,6.4949166666667,6.4945666666667,6.4942666666667,6.4940166666667,6.4937166666667,6.49335,6.4929833333333,6.4926666666667,6.4923666666667,6.4920166666667,6.4917333333333,6.4914,6.4910666666667,6.49075,6.4904,6.4901333333333,6.4898166666667,6.4894,6.4890833333333,6.48865,6.4882333333333,6.48785,6.4874666666667,6.4871,6.48675,6.4864,6.48605,6.4856833333333,6.4853,6.4849,6.48455,6.4841666666667,6.4836833333333,6.4832666666667,6.4828,6.4823333333333,6.4819166666667,6.4816,6.4812333333333,6.4809166666667,6.48055,6.4802333333333,6.4799,6.47985,6.4804333333333,6.4813833333333,6.4824166666667,6.4835,6.4844166666667,6.4849,6.48455,6.4843333333333,6.4850666666667,6.4860833333333,6.48705,6.488,6.4888666666667,6.48895,6.4887166666667,6.4885,6.4882666666667,6.488,6.4876666666667,6.4873666666667,6.48685,6.4863,6.48585,6.4856166666667,6.4856166666667,6.4856333333333,6.4855833333333,6.4855833333333,6.4856166666667,6.4856333333333,6.4856333333333,6.4856166666667,6.4856],"elevGnd":[1980,1980,1880,1740,1880,1880,1820,1880,1740,1820,1860,1880,1940,2000,2000,1980,1920,1920,1880,1760,1940,1840,1780,1860,1900,1900,2040,1980,1920,2000,1880,1800,1800,1760,1800,1780,1820,1780,1620,1540,1680,1840,1900,1920,1980,1960,1980,1920,2020,2040,2020,1920,1800,1700,1560,1740,1760,1940,2100,2120,2120,2060,2080,2080,2060,1960,2100,2140,2060,1820,1860,1920,1940,2040,2100,2180,2240,2120,2240,2200,2120,2120,2220,2040,1860,1680,1460,1340,1260,1180,1300,1400,1440,1500,1520,1640,1480,1380,1660,1820,1660,1520,1560,1780,1740,1720,1460,1260,1240,1440,1420,1520,1620,1740,1740,1660,1740,1720,1660,1600,1760,1760,1760,1820,1800,1800,1860,1880,1860,1940,2000,2060,2060,1980,1900,1960,1720,1500,1020,680,500,460,620,920,1080,1200,1420,1520,1480,1520,1520,1800,1880,1900,1940,1980,1900,1900,1860,1820,1700,1640,1620,1720,1660,1560,1540,1520,1380,1180,1040,920,960,980,960,980,1160,1300,1420,1460,1480,1480,1500,1380,1520,1520,1520,1640,1520,1540,1580,1720,1740,1700,1740,1800,1680,1740,1640,1720,1760,1840,1820,1900,1860,1880,1860,1880,1960,1980,1980,1960,1960,1960,1900,1880,1720,1440,1260,1220,1100,1000,700,620,580,560,500,520,580,600,640,720,920,1100,1180,1280,1340,1420,1420,1520,1540,1580,1580,1580,1480,1380,1360,1360,1280,1100,1140,1180,1340,1520,1520,1540,1600,1520,1540,1400,1160,980,860,800,900,1100,1220,820,440,380,360,320,320,360,340,340,320,320,320,320,300,300,300,380,460,460,460,500,540,540,560,540,540,540,600,580,680,760,860,740,720,800,920,900,960,960,940,940,840,820,920,960,880,660,660,800,900,920,960,960,660,580,720,900,940,860,880,900,900,900,920,900,880,1000,960,900,820,820,900,880,840,880,960,960,980,960,1020,1080,1080,1060,1040,1040,1080,1220,1320,1360,1340,1300,1300,1300,1360,1340,1040,1020,1020,1100,1140,1280,1300,1440,1340,1360,1200,1380,1340,1300,1360,1240,1220,1280,1300,1140,1160,1240,1260,1320,1340,1340,1340,1360,1340,1340,1260,1160,1300,1420,1440,1420,1440,1420,1440,1520,1460,1480,1580,1520,1380,1560,1560,1400,1560,1720,1720,1760,1680,1440,1120,1000,1180,1460,1680,1740,1680,1640,1700,1600,1440,1280,1280,1340,1400,1540,1700,1640,1640,1480,1360,1140,1040,920,880,940,1100,1340,1540,1860,1840,1820,1840,1840,1840,1840,1820,1820,1780,1680,1580,1540,1620,1900,1760,1920,1920,1820,1720,1800,1880,1920,1860,1360,1040,900,840,740,640,580,540,460,420,380,360,360,340,340,340,340,320,320,340,340,400,440,480,460,500,820,1020,1140,1180,1180,1180,1280,1280,1300,1180,1060,1060,980,860,800,820,920,1100,1160,1240,1380,1440,1500,1420,1480,1360,1320,1500,1580,1640,1600,1680,1660,1620,1640,1580,1460,1340,1140,1140,1280,1380,1420,1240,1180,1080,1020,960,900,940,1060,1280,1120,1020,960,1060,1080,920,1040,1160,1080,1040,1040,1120,1320,1500,1460,1560,1720,1780,1780,1860,1920,1960,1920,1940,1920,1760,1760,1560,1680,1720,1900,1880,1820,1760,1800,1700,2000,2120,2120,2100,2160,1960,1960,1960,1960,1700,1560,1740,1720,1720,1700,1740,1720,1760,1720,1660,1560,1640,1760,1820,1840,1800,1800,1840,1760,1600,1480,1240,1220,1180,1100,920,820,820,860,880,900,1080,1240,1400,1520,1460,1520,1580,1640,1700,1700,1720,1740,1700,1740,1780,1660,1540,1480,1480,1280,1120,800,460,500,840,1200,1200,1280,1340,1420,1420,1460,1560,1600,1640,1620,1660,1680,1700,1700,1740,1760,1800,1800,1860,1880,1920,1840,1900,1920,1940,1860,1760,1780,1840,1840,1840,1760,1780,1840,1800,1760,1720,1680,1680,1720,1780,1800,1860,1860,1840,1820,1820,1800,1780,1780,1760,1860,1880,1640,1540,1540,1400,1280,1180,1160,1260,1400,1560,1840,1960,1860,1880,1980,1960,1760,1620,1580,1660,1720,1680,1640,1640,1600,1560,1540,1520,1440,1480,1460,1460,1400,1340,1240,1240,1320,1320,1420,1420,1400,1460,1480,1500,1460,1460,1560,1540,1620,1620,1640,1640,1580,1600,1660,1620,1600,1640,1700,1680,1480,1500,1560,1480,1440,1400,1400,1340,1420,1300,1340,1400,1420,1400,1460,1400,1320,1240,1180,1240,1240,1260,1220,1180,1200,1160,1180,1140,1080,1080,1080,1080,1100,1080,1080,1080,1080],"speed":[0,1,4,23,28,27,30,25,28,29,28,30,29,28,26,29,31,28,32,38,41,44,40,44,44,39,38,36,35,29,27,29,30,29,30,32,30,30,34,37,41,34,32,35,33,36,34,30,33,32,31,33,34,34,34,32,31,31,32,31,32,35,33,29,27,29,34,34,35,41,41,43,37,31,35,33,28,28,28,35,37,30,34,37,40,42,45,44,44,43,38,36,41,36,30,33,36,35,41,40,41,46,45,44,43,43,39,36,40,37,36,44,41,33,30,27,27,24,20,23,25,28,30,25,26,28,27,25,28,26,27,30,29,28,31,32,37,42,49,52,50,50,50,50,50,47,44,41,32,30,35,37,35,33,35,33,38,38,36,36,40,51,47,37,39,33,32,30,39,50,55,53,53,52,50,51,50,46,37,29,31,31,32,30,30,29,27,29,34,35,35,31,30,33,31,29,35,32,32,33,30,31,37,33,32,32,30,29,28,32,30,28,30,32,30,34,39,41,41,41,44,43,37,34,33,40,49,47,46,47,45,44,43,43,32,29,32,30,28,27,29,29,31,33,33,36,33,32,41,46,46,42,37,38,30,28,31,28,30,35,44,43,44,43,43,42,46,50,49,48,46,43,37,36,37,40,41,40,39,41,42,41,37,39,40,32,32,29,29,31,28,28,30,37,43,48,47,33,39,49,40,27,31,40,49,48,49,45,46,53,54,48,46,47,46,36,29,31,30,35,45,42,28,33,38,39,34,34,34,38,37,34,32,30,28,28,33,45,48,51,47,43,40,37,39,39,33,30,28,27,31,30,38,48,41,35,33,31,38,35,32,31,33,40,40,38,35,33,30,32,36,36,40,43,34,36,39,38,38,40,40,37,32,35,36,40,47,52,50,44,44,38,36,39,41,44,44,46,45,40,40,37,30,29,31,32,31,36,35,40,45,38,31,42,47,46,46,47,34,39,42,34,30,31,34,42,46,47,39,46,55,48,41,38,36,35,35,35,37,38,39,39,38,37,36,35,31,30,27,32,30,29,31,38,38,44,49,49,44,37,32,30,30,32,27,31,36,37,41,44,41,36,40,42,42,42,43,44,43,41,40,40,39,38,35,33,30,29,30,31,31,31,30,31,33,37,37,33,33,27,30,32,24,29,31,36,31,30,31,27,36,38,38,39,26,23,24,29,30,31,31,31,32,30,30,26,28,26,30,28,29,36,41,44,47,53,45,32,38,34,27,29,32,34,34,31,31,34,38,44,43,43,44,41,27,24,28,25,27,25,25,27,31,37,39,37,34,35,31,29,30,29,31,29,31,33,34,30,33,41,44,48,53,47,38,27,30,27,28,29,28,27,36,44,42,40,38,37,39,35,32,36,38,39,40,37,32,30,32,32,33,33,36,36,38,42,43,42,40,36,36,37,37,38,41,39,36,35,37,38,35,30,29,28,34,37,27,21,25,32,41,47,44,39,39,54,57,51,48,44,36,26,27,26,28,30,29,27,31,29,29,28,28,22,21,19,25,27,23,23,20,27,28,23,23,21,26,26,26,30,30,28,25,22,19,21,28,30,28,27,31,33,29,28,28,28,30,27,31,30,31,28,30,32,28,32,35,36,35,32,30,34,33,28,26,26,28,26,27,33,31,27,31,30,23,24,25,27,26,24,26,28,29,28,26,26,23,27,30,28,21,22,20,18,25,25,23,31,31,32,33,40,32,29,26,33,39,34,32,39,39,34,30,35,38,40,41,38,32,40,34,28,25,36,35,33,32,32,29,26,32,38,36,35,27,20,18,19,18,18,18,18,17,19,23,35,37,27,16,2],"vario":[0,-0.1,-0.1,-0.1,0.3,0.6,-0.3,-0.2,-0.4,0.2,-0.1,0.1,0.8,1.2,0.5,0.3,0.9,0.9,0.5,0.2,-1.1,-0.6,-0.6,-1.2,-0.8,-0.7,-0.4,0.1,-0.4,-0.3,-0.5,-0.5,0.3,2,2.2,1.9,0.9,0.2,-0.4,-1,-1.2,-0.2,-0.3,-0.9,-0.1,-0.2,0.4,1.2,1.1,1.2,1.7,0.2,-0.4,-0.6,-0.5,-0.7,-0.6,-0.7,0.3,0.5,-0,-0.3,0.7,1.3,0.7,-0.2,-0.1,-0.1,0.5,-1.1,-1.3,-1.1,-0.3,0.5,0.3,0.9,1.8,1.5,1.1,0.5,1,2.6,1.4,-0.2,-1,-0.9,-1.3,-1.5,-1.6,-1.8,-1.4,-2,-1.4,1.2,2.1,1.5,1.6,1.1,1.1,1.1,1.3,-0.5,-1.6,-0.9,-0.6,-1.4,-0.8,-0.6,-1.2,-1,-1.1,-1.2,-1.6,-1.5,-1.1,-0.6,-1.1,-0.3,-0.9,-0.3,-0.3,1.2,1.3,1.1,1.7,1.2,0.7,-0.4,-0.2,0.5,1,1.9,1.7,2.2,2.4,1.3,-0.2,-0.5,-1.9,-1.8,-1.7,-1.5,-1.7,-1.7,-1.9,-1.7,-1.3,-0.2,1.4,2,0.9,0.4,0.5,-0.3,0.1,1.3,0.4,0,0.7,1,-0.1,-1.3,-1.3,-0.1,0.2,1.1,2.2,1.6,-0.4,-1.1,-1.9,-1.4,-1.5,-1.9,-2.7,-3,-2.2,-1.6,-0.4,-0,0.6,0.3,0.2,0.5,1.1,1.6,1.3,1,-0.3,-0.3,0.1,0.6,-0.4,-0.7,0.9,1.1,0.6,0.3,-0.1,0.6,1.2,1,-0.6,0.1,0,0.5,1.1,0.2,-0.2,-0.2,1.2,1.1,0.7,0.6,0.9,1,0,-1.6,-1.9,-1.7,-1.1,-1,-1.4,-1.2,-1.1,-1.5,-1.6,-1.6,-1.9,-1.6,-1.6,-1.9,-1.2,-0.9,0.2,1,1.2,2.6,2.7,1.8,1.7,2.5,2.5,1.2,0.6,1.2,1.8,1.1,-0.6,-0.9,-1.1,-1.2,-1,-0.4,1.1,1.6,1.2,1.7,0.8,-1.2,-1,-0.8,-0.9,-1,-1,-1.5,-2.4,-2.6,-2.1,-2.1,-2,-1.3,-1,-1,-0.7,-0.8,-1.1,-1.3,-1.7,-1.7,-1.2,-0.7,-0.6,-1.7,-2.1,-0.4,1,1.6,1.2,1.5,1.6,1.7,1.2,0,-1.1,-2,-1.1,0.9,1.2,-0.2,0.5,2,2,0.3,-0.8,-1.1,-0.6,-0.7,-1.8,-1.3,-1.1,-0.2,-0.4,-1.1,-1.5,-0.1,1.3,1.2,0.9,0.3,-1.3,-1.7,0,0.2,-0.3,0,0.3,0.6,1.2,-1,-0.1,0.1,1.8,2.5,3.2,2.7,1.8,-0.8,-1.2,-0.6,-0.7,-1.3,-0.4,0.9,-0.3,-1,-1,0.5,1.6,2,2.3,1.6,0.4,-0.2,-0.2,0.4,0.7,0.7,-0.8,-0.1,-0.5,0.7,0.5,-1.7,-1.2,-0.8,0.5,-0.2,1.3,1.6,1.1,-0.5,-0.3,0.4,2.2,1.8,1.6,2.1,2,0.4,-0.3,0.4,-0.6,-0.5,0.5,0.7,-1.3,-1.1,-0.3,0.9,1.9,2.6,0,0.7,-1,-1,-1.4,-0.4,1.3,-0.2,-1.6,-0.4,2.1,2.5,1.5,3.4,2.5,2.2,1,-0.1,-0.4,0.5,1.2,0.2,-1.2,-1.4,-1.6,-0.9,-1.8,-1.5,-1.1,1.3,2.6,3.4,2.6,2.6,-0.4,-1.4,-1.6,-1.5,-1.2,-1.7,-1.2,-0.5,0.2,-0.5,-1,-1.5,-1.2,-1.1,-1.2,-0.8,-0.8,-1.3,-1.7,1.3,2.4,2.4,1.7,1.9,2.4,2.6,2,-0.2,-1.4,-1.2,-0.6,-1.6,-1.3,0.2,3.3,4.3,3.7,-0.1,-0.6,-0.4,-0.6,-1,-0.4,-0.2,-1.4,-0.7,-1,-1.1,-1,-1.3,-1.4,-1.5,-1.2,-1.2,-1.2,-0.9,-0.8,-1.2,-1.3,-1.2,-1,-1.2,-1.5,-1.4,-1.1,-0.8,-0.6,-1.1,-0.7,-1,-1.2,-0.9,-0.5,-1.3,-0.5,0.2,0.7,1.8,1.3,1.4,1.4,1.2,0.9,-0.2,-1.6,-2.2,-2.2,-1.1,0.5,1.4,1.4,1.1,0.8,1,0.5,-0.4,-0.2,0.5,0.9,1.2,1,1.4,1.2,1,0.7,-0.1,-0.9,-2.2,-2.7,-2.1,0.9,1.4,0.7,1,1.8,1.4,1.1,0.7,0.8,0.9,1.1,0.4,-1.1,-1,-0.7,-1.1,-0.8,-0.9,0.3,1.5,2.1,1.8,1.3,0.1,0.3,1,0.9,1,-0.5,-1.1,-0.3,-0.7,-1.2,0.1,0.8,2,2.1,1.9,1.6,0.6,0.1,0.4,-0.9,-1.6,-1.5,-1.3,-1.4,-1.5,-0.1,0.6,1.1,1.9,1.6,1.1,0.6,-0.2,-0.6,-1.6,-1.2,-0.3,-1,-1.5,-1,-0.3,-0.1,-0.7,-1,-0.7,-1.4,-0.4,0.6,1.1,1.4,1.6,1.3,0.3,-0.4,-0.4,-1,-1.2,-1.8,-1.9,-1.2,-0.3,-0.6,-0.6,-0.6,-1,-1.3,-0.6,-0.1,0.4,0.3,0.2,0.4,0.6,0.6,0.5,0.1,0.2,0.6,0.3,0.6,0.4,-0.6,-0.6,-1,-1.1,-2.5,-2.1,-2.1,-3.1,-1.9,0.1,0.6,0.6,0.8,0.7,0.8,1,1.2,1.2,1.3,1.2,1.6,1.9,1.7,1,0.2,-0.3,-0.1,0.1,0.4,0,0.2,-0.2,-0.1,0.9,0.7,0.3,0.2,-0.3,-0.6,-1,-0.7,-0.6,-0.6,0,0.4,0.6,0.2,1,1.2,1.4,1.2,1.2,1.1,1.6,0.9,1,1.2,1.3,0.9,1.1,0.7,-0.6,-0.8,-0.7,-0.9,-1.7,-2,-2.3,-1.3,0.4,0.5,-0.1,-0.6,-0.6,-0.8,-0.8,-0.5,-0.3,0.2,-0.9,-2.1,-1.8,-1.7,-1.7,-0.9,-0.9,-0.7,-0.7,-0.7,-0.6,-0.6,-0.5,-0.1,0,0.1,0,-0.3,-0.3,-0.6,-0.4,-0.3,-0.1,0.4,0.7,0.6,0.6,0.4,0.1,0.8,0.9,0.7,0.2,0.2,0.1,0.5,-0,-0.3,0.5,0.5,0.1,-0.3,-0.3,-0.3,-0.6,-1.1,-1.1,-1.3,-0.9,-0.5,-0.9,-0.4,0.3,0.3,-0.1,0.2,0.3,-0.1,-0.5,-0.4,-0.2,-1.3,-0.7,-0.7,-0.8,-0.2,-0.2,-0.2,-0.2,-0.1,-0.2,-0.2,-0.1,-0.4,-0.7,-1.1,-0.4,-0.7,-1,-0.8,-0.5],"nbTrackPt":4954,"nbChartPt":800,"nbChartLbl":5,"date":{"day":16,"month":4,"year":2011},"pilot":"Tom"} +{"doaramaVId":11275,"doaramaUrl":"http:\/\/doarama-thirdparty-dev.herokuapp.com\/api\/0.2\/visualisation?k=wk8MrJE","doaramaUpload":true, + + + + + + "time":{"label":["08h56","11h01","13h06","15h11","17h15"],"hour":["08","08","08","08","08","08","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","09","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","10","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","11","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","12","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","13","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","14","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","15","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","16","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17","17"],"min":["56","56","57","58","58","59","00","00","01","01","02","03","03","04","05","05","06","06","07","08","08","09","10","10","11","11","12","13","13","14","15","15","16","16","17","18","18","19","20","20","21","22","22","23","23","24","25","25","26","26","27","28","28","29","30","30","31","31","32","33","33","34","35","35","36","36","37","38","38","39","40","40","41","42","42","43","43","44","45","45","46","47","47","48","48","49","50","50","51","52","52","53","53","54","55","55","56","57","57","58","58","59","00","00","01","02","02","03","03","04","05","05","06","07","07","08","08","09","10","10","11","12","12","13","13","14","15","15","16","17","17","18","18","19","20","20","21","22","22","23","23","24","25","25","26","27","27","28","28","29","30","30","31","32","32","33","34","34","35","35","36","37","37","38","38","39","40","40","41","42","42","43","44","44","45","45","46","47","47","48","48","49","50","50","51","52","52","53","54","54","55","55","56","57","57","58","59","59","00","00","01","02","02","03","04","04","05","05","06","07","07","08","09","09","10","10","11","12","12","13","14","14","15","15","16","17","17","18","19","19","20","20","21","22","22","23","24","24","25","25","26","27","27","28","29","29","30","31","31","32","32","33","34","34","35","35","36","37","37","38","39","39","40","41","41","42","42","43","44","44","45","45","46","47","47","48","49","49","50","51","51","52","52","53","54","54","55","56","56","57","57","58","59","59","00","01","01","02","02","03","04","04","05","06","06","07","07","08","09","09","10","11","11","12","12","13","14","14","15","16","16","17","17","18","19","19","20","21","21","22","22","23","24","24","25","26","26","27","27","28","29","29","30","31","31","32","32","33","34","34","35","36","36","37","37","38","39","39","40","41","41","42","43","43","44","44","45","46","46","47","47","48","49","49","50","51","51","52","53","53","54","54","55","56","56","57","58","58","59","59","00","01","01","02","03","03","04","04","05","06","06","07","07","08","09","09","10","11","11","12","13","13","14","14","15","16","16","17","18","18","19","19","20","21","21","22","22","23","24","24","25","26","26","27","28","28","29","29","30","31","31","32","32","33","34","34","35","36","36","37","38","38","39","39","40","41","41","42","43","43","44","44","45","46","46","47","47","48","49","49","50","51","51","52","53","53","54","54","55","56","56","57","57","58","59","59","00","01","01","02","02","03","04","04","05","06","06","07","08","08","09","09","10","11","11","12","12","13","14","14","15","16","16","17","17","18","19","19","20","21","21","22","22","23","24","24","25","26","26","27","27","28","29","29","30","31","31","32","32","33","34","34","35","36","36","37","37","38","39","39","40","41","41","42","42","43","44","44","45","46","46","47","47","48","49","49","50","51","51","52","52","53","54","54","55","56","56","57","57","58","59","59","00","01","01","02","02","03","04","04","05","06","06","07","07","08","09","09","10","11","11","12","12","13","14","14","15","15","16","17","17","18","19","19","20","21","21","22","22","23","24","24","25","25","26","27","27","28","29","29","30","30","31","32","32","33","34","34","35","36","36","37","37","38","39","39","40","40","41","42","42","43","44","44","45","45","46","47","47","48","49","49","50","50","51","52","52","53","54","54","55","55","56","57","57","58","59","59","00","00","01","02","02","03","04","04","05","05","06","07","07","08","09","09","10","10","11","12","12","13","14","14","15","15","16","17","17","18","19","19","20","20","21","22","22","23","24","24","25","25","26","27","27","28","29","29","30","30","31","32","32","33","34","34","35","35","36","37","37","38","39","39","40","40","41","42","42","43","43","44","45","45","46","47","47","48","49","49","50","50","51","52","52","53","54","54","55","55","56","57","57","58","58","59","00","00","01","02","02","03","04","04","05","05","06","07","07","08","08","09","10","10","11","12","12","13","13","14","15","15"],"sec":["18","54","30","07","43","20","02","39","15","51","28","10","46","23","01","38","20","56","33","09","46","28","04","41","17","53","36","12","49","25","01","44","20","57","33","09","52","28","04","41","17","00","36","12","49","25","07","44","20","56","33","15","52","28","04","41","23","59","36","12","49","31","07","44","20","57","39","15","52","28","05","47","23","00","36","12","55","31","08","44","20","03","39","16","52","28","11","47","23","00","36","19","55","31","08","44","27","03","39","15","52","34","11","47","24","00","42","19","55","32","08","50","27","03","39","16","58","35","11","47","24","06","42","19","55","31","14","50","27","03","39","22","58","35","11","47","30","06","43","19","55","38","14","50","27","03","46","22","58","35","11","53","30","06","42","19","01","38","14","50","27","09","45","22","58","34","17","53","30","06","43","25","02","38","14","51","33","09","46","22","59","41","17","54","30","06","49","25","02","38","14","57","33","09","46","22","04","41","17","54","30","06","49","25","01","38","14","57","33","09","46","22","05","41","17","54","30","13","49","25","02","38","21","58","34","10","47","29","05","42","18","54","37","13","50","26","02","45","21","57","34","10","53","29","05","42","18","00","37","13","50","26","08","45","21","58","34","16","53","29","05","42","24","01","37","13","50","32","09","45","21","58","40","16","53","29","05","48","24","00","37","13","56","32","08","45","21","04","40","16","53","29","12","48","24","01","37","19","56","32","08","45","27","04","40","16","53","35","12","48","24","00","43","19","56","32","08","51","27","03","40","16","59","35","11","48","24","07","43","19","56","32","15","51","27","03","40","22","59","35","11","48","30","06","43","19","56","38","14","51","27","04","46","22","59","35","11","54","30","07","43","19","02","38","15","51","27","10","46","23","59","35","18","54","31","07","43","26","02","38","15","51","34","10","48","25","01","43","19","56","32","08","50","27","03","39","15","58","34","10","46","23","59","41","17","54","30","06","49","25","01","37","14","56","32","08","45","21","03","39","16","52","28","10","47","23","59","36","18","54","30","07","43","25","01","38","14","50","32","09","45","21","57","40","16","52","29","05","47","23","00","36","12","54","31","07","43","19","02","38","14","50","27","10","46","22","58","35","17","53","29","06","42","24","00","37","13","49","31","08","44","20","56","39","15","51","27","04","46","22","58","35","11","53","29","06","42","18","00","37","13","49","25","08","44","20","56","33","15","51","28","04","40","22","59","35","11","47","30","06","42","18","55","37","13","49","26","02","44","20","57","33","09","51","28","04","40","16","59","35","11","47","24","06","42","19","55","31","13","50","26","02","38","21","57","33","09","46","28","04","40","17","53","35","11","48","24","00","42","19","55","31","07","50","26","02","38","15","57","33","09","46","22","04","40","17","53","29","11","48","24","00","36","19","55","31","07","44","26","02","38","15","51","27","09","46","22","58","34","17","53","29","05","42","24","00","36","13","49","31","07","44","20","56","38","15","51","27","03","46","22","58","34","11","53","29","05","42","18","00","36","13","49","25","07","44","20","56","32","15","51","27","03","40","22","58","34","11","47","29","05","42","18","54","36","13","49","25","01","44","20","56","32","09","51","27","03","40","16","58","34","11","47","23","05","42","18","54","30","13","49","25","01","38","20","56","32","09","45","27","03","40","16","53","35","11","48","24","00","42","19","55","31","07","50","26","02","38","15","57","33","09","46","22","04","41","17","53","29","12","48","24","00","36","19","55","31","07","44","26","02","39","15","51","33","10","46","22","58","41","17","53","29","05","48","24","00","36","13","55","31","07","44","20","02","38","15","51","27","09","46","22","58","34","17","53","29","05","42","24","00","36","13","49","31","07","44","20","56","39","15","51","27","03","46","22","58","34","11","53"]},"elev":[1983,1979,1976,1973,1983,2006,2002,1995,1981,1987,1990,1990,2019,2062,2083,2097,2132,2165,2183,2192,2157,2126,2105,2062,2031,2007,1984,1987,1973,1962,1944,1915,1921,1989,2066,2135,2185,2196,2181,2149,2107,2086,2078,2047,2040,2033,2046,2087,2125,2169,2231,2253,2237,2216,2197,2173,2146,2122,2131,2150,2148,2132,2154,2204,2231,2228,2224,2219,2234,2199,2149,2102,2089,2104,2117,2148,2223,2280,2324,2344,2373,2475,2535,2536,2500,2468,2420,2368,2309,2246,2194,2120,2064,2100,2175,2232,2302,2343,2383,2421,2470,2461,2408,2373,2352,2305,2267,2248,2208,2160,2124,2074,2019,1963,1921,1896,1852,1830,1801,1787,1775,1812,1861,1908,1970,2012,2049,2038,2026,2043,2076,2150,2213,2294,2381,2433,2445,2424,2359,2294,2234,2169,2110,2048,1980,1916,1856,1842,1887,1956,1995,2005,2029,2021,2024,2062,2087,2084,2108,2138,2145,2095,2046,2036,2041,2077,2165,2227,2219,2182,2114,2050,1996,1928,1834,1727,1627,1569,1550,1545,1561,1579,1586,1599,1637,1694,1753,1790,1781,1771,1768,1801,1788,1764,1793,1833,1861,1873,1871,1886,1928,1968,1954,1958,1960,1977,2012,2022,2016,2011,2047,2090,2118,2137,2170,2208,2212,2161,2089,2027,1985,1950,1899,1853,1814,1761,1704,1636,1570,1508,1453,1386,1326,1291,1285,1318,1358,1454,1550,1620,1677,1765,1868,1913,1936,1979,2044,2094,2078,2043,2005,1962,1922,1900,1935,1995,2037,2108,2148,2111,2072,2042,2006,1970,1934,1882,1797,1687,1606,1530,1456,1401,1362,1325,1297,1269,1230,1178,1118,1054,1007,982,961,903,825,804,834,896,942,994,1052,1112,1170,1176,1137,1068,1025,1055,1099,1097,1109,1184,1276,1302,1274,1233,1209,1175,1114,1064,1024,1011,998,961,904,896,940,998,1032,1047,1003,944,935,943,934,932,945,959,1002,974,959,962,1026,1112,1216,1318,1391,1375,1328,1307,1286,1237,1222,1251,1249,1215,1175,1189,1242,1318,1399,1464,1491,1485,1473,1485,1511,1546,1522,1506,1495,1513,1554,1496,1442,1414,1427,1426,1465,1526,1571,1557,1544,1557,1636,1700,1758,1846,1919,1938,1927,1937,1924,1903,1917,1946,1903,1859,1842,1871,1936,2028,2044,2067,2035,1996,1947,1911,1955,1959,1904,1874,1946,2055,2112,2230,2324,2399,2471,2466,2455,2470,2509,2531,2486,2437,2375,2338,2275,2217,2176,2213,2305,2446,2545,2641,2638,2589,2526,2471,2426,2367,2322,2292,2299,2285,2250,2200,2146,2103,2061,2029,2000,1950,1890,1924,2010,2097,2173,2241,2327,2423,2498,2506,2458,2414,2390,2339,2270,2266,2377,2530,2682,2700,2681,2664,2644,2601,2579,2575,2529,2504,2467,2421,2383,2337,2287,2234,2185,2142,2100,2068,2039,1992,1946,1903,1868,1824,1763,1712,1670,1640,1617,1571,1544,1506,1462,1431,1408,1363,1341,1344,1365,1439,1486,1536,1583,1625,1671,1667,1616,1538,1459,1409,1421,1467,1517,1558,1600,1632,1652,1642,1629,1651,1679,1720,1755,1807,1865,1899,1926,1923,1895,1808,1708,1627,1652,1702,1735,1767,1831,1884,1923,1954,1982,2013,2051,2070,2032,1990,1966,1927,1897,1867,1871,1923,1998,2073,2140,2147,2154,2185,2217,2254,2243,2204,2191,2169,2119,2114,2138,2206,2282,2367,2425,2451,2453,2465,2437,2381,2326,2276,2229,2167,2156,2177,2215,2283,2355,2402,2425,2420,2402,2337,2293,2280,2251,2191,2149,2138,2134,2113,2079,2054,1995,1972,1993,2030,2082,2150,2198,2213,2199,2184,2146,2102,2036,1965,1919,1902,1885,1864,1840,1806,1751,1725,1719,1731,1743,1749,1762,1783,1806,1827,1834,1841,1863,1881,1902,1920,1901,1877,1843,1806,1709,1625,1550,1438,1366,1359,1383,1405,1435,1462,1494,1530,1575,1621,1667,1716,1775,1842,1905,1944,1960,1948,1942,1945,1958,1957,1963,1957,1952,1980,2018,2030,2039,2030,2007,1969,1944,1923,1899,1897,1913,1937,1945,1976,2018,2079,2123,2166,2203,2261,2303,2338,2381,2430,2464,2509,2534,2516,2487,2462,2428,2366,2295,2213,2161,2169,2187,2186,2167,2146,2110,2082,2062,2052,2057,2029,1955,1893,1828,1769,1729,1697,1672,1650,1624,1599,1575,1556,1551,1550,1552,1552,1542,1530,1512,1493,1482,1475,1489,1512,1541,1561,1577,1581,1606,1646,1670,1679,1686,1690,1710,1711,1698,1713,1732,1742,1731,1722,1711,1691,1645,1606,1558,1522,1504,1466,1448,1459,1472,1470,1475,1488,1485,1468,1453,1442,1400,1373,1350,1322,1311,1303,1297,1290,1288,1278,1272,1268,1254,1230,1184,1166,1144,1111,1085,1067],"lat":[46.00875,46.00875,46.008766666667,46.008766666667,46.008766666667,46.008766666667,46.008766666667,46.008766666667,46.00875,46.008766666667,46.00875,46.0087,46.008833333333,46.009083333333,46.009333333333,46.00905,46.00855,46.008483333333,46.008866666667,46.008966666667,46.008733333333,46.008333333333,46.008583333333,46.008883333333,46.008783333333,46.008216666667,46.007866666667,46.008116666667,46.008466666667,46.0088,46.009066666667,46.0087,46.008116666667,46.007516666667,46.006983333333,46.006983333333,46.0074,46.007883333333,46.00825,46.008533333333,46.008866666667,46.009166666667,46.009616666667,46.00995,46.009633333333,46.009133333333,46.0086,46.00815,46.007916666667,46.008116666667,46.008416666667,46.008033333333,46.007633333333,46.00785,46.008233333333,46.0085,46.0087,46.008966666667,46.008816666667,46.00825,46.007566666667,46.007133333333,46.007466666667,46.007866666667,46.008316666667,46.008733333333,46.009166666667,46.00915,46.008616666667,46.0083,46.008683333333,46.008916666667,46.0086,46.00815,46.00815,46.008333333333,46.007866666667,46.0075,46.0078,46.00805,46.007916666667,46.0075,46.007616666667,46.008033333333,46.008316666667,46.0087,46.00845,46.008033333333,46.00805,46.0083,46.008416666667,46.007883333333,46.007433333333,46.00705,46.006766666667,46.006333333333,46.006533333333,46.0068,46.006383333333,46.0063,46.006616666667,46.006316666667,46.00585,46.005916666667,46.006316666667,46.0061,46.00575,46.006183333333,46.0064,46.006083333333,46.005616666667,46.005016666667,46.004416666667,46.0038,46.0032,46.002633333333,46.0021,46.00155,46.000983333333,46.000433333333,45.999883333333,45.999383333333,45.998716666667,45.998033333333,45.997433333333,45.99685,45.9963,45.99575,45.99515,45.994616666667,45.994016666667,45.993433333333,45.992816666667,45.992266666667,45.991716666667,45.991183333333,45.990666666667,45.990066666667,45.989433333333,45.98865,45.98795,45.987283333333,45.986566666667,45.985866666667,45.985216666667,45.984616666667,45.984016666667,45.983433333333,45.982883333333,45.982383333333,45.98185,45.9813,45.98075,45.9802,45.979583333333,45.978883333333,45.978366666667,45.97815,45.978116666667,45.9781,45.978033333333,45.977833333333,45.977533333333,45.9772,45.97685,45.9766,45.9764,45.976183333333,45.975933333333,45.975833333333,45.975783333333,45.975566666667,45.97525,45.974916666667,45.97455,45.974183333333,45.974183333333,45.974633333333,45.975016666667,45.975166666667,45.9752,45.975133333333,45.974983333333,45.9749,45.975083333333,45.975316666667,45.975483333333,45.975583333333,45.975666666667,45.975833333333,45.97615,45.976483333333,45.976816666667,45.977133333333,45.977166666667,45.9769,45.976683333333,45.97705,45.97715,45.976683333333,45.976483333333,45.97685,45.977116666667,45.977016666667,45.976533333333,45.976516666667,45.97695,45.976966666667,45.976566666667,45.976133333333,45.976366666667,45.976366666667,45.975883333333,45.975916666667,45.976333333333,45.976216666667,45.975733333333,45.975766666667,45.976133333333,45.976133333333,45.97565,45.97575,45.9761,45.975966666667,45.9756,45.975383333333,45.975783333333,45.975666666667,45.975166666667,45.974616666667,45.97405,45.973516666667,45.972983333333,45.972466666667,45.97195,45.971416666667,45.970883333333,45.970266666667,45.969733333333,45.969166666667,45.968533333333,45.967883333333,45.9672,45.966583333333,45.965983333333,45.965433333333,45.964833333333,45.96425,45.963666666667,45.963116666667,45.9626,45.9621,45.961866666667,45.961516666667,45.9611,45.960616666667,45.960166666667,45.959766666667,45.9594,45.958916666667,45.9584,45.957833333333,45.957266666667,45.956733333333,45.9562,45.9557,45.955183333333,45.95465,45.954233333333,45.953816666667,45.953166666667,45.9527,45.952266666667,45.951783333333,45.951316666667,45.950866666667,45.9505,45.950066666667,45.94965,45.949266666667,45.948983333333,45.948716666667,45.948416666667,45.9486,45.9492,45.94935,45.949,45.948983333333,45.949516666667,45.949366666667,45.948933333333,45.949,45.949616666667,45.949716666667,45.9494,45.949166666667,45.94935,45.94985,45.949866666667,45.949566666667,45.94925,45.9495,45.9498,45.94965,45.949266666667,45.9496,45.94995,45.949683333333,45.949466666667,45.9494,45.949283333333,45.94905,45.948733333333,45.9485,45.948266666667,45.947883333333,45.947433333333,45.946983333333,45.94655,45.94615,45.945716666667,45.9453,45.944866666667,45.944433333333,45.94395,45.94345,45.94295,45.94245,45.942033333333,45.94165,45.941233333333,45.94075,45.940283333333,45.93985,45.939383333333,45.93895,45.938533333333,45.938166666667,45.937683333333,45.93725,45.936833333333,45.936416666667,45.936,45.935616666667,45.93525,45.93485,45.934416666667,45.93395,45.933533333333,45.933116666667,45.9327,45.93225,45.931866666667,45.931483333333,45.931016666667,45.930633333333,45.930266666667,45.9301,45.93055,45.931,45.930683333333,45.9303,45.929933333333,45.929533333333,45.929133333333,45.9288,45.9284,45.928083333333,45.927616666667,45.9271,45.926633333333,45.92615,45.925766666667,45.925366666667,45.924933333333,45.92465,45.924183333333,45.923783333333,45.923283333333,45.922833333333,45.922966666667,45.923366666667,45.92305,45.923,45.923466666667,45.923516666667,45.923083333333,45.923166666667,45.923516666667,45.92325,45.923033333333,45.923266666667,45.923666666667,45.923483333333,45.923166666667,45.922833333333,45.9224,45.92195,45.921566666667,45.921116666667,45.9206,45.920133333333,45.919666666667,45.919216666667,45.918716666667,45.918283333333,45.917916666667,45.917566666667,45.917216666667,45.9168,45.916383333333,45.916,45.91565,45.915333333333,45.915083333333,45.9147,45.914983333333,45.915466666667,45.915633333333,45.915766666667,45.915383333333,45.914983333333,45.914566666667,45.914166666667,45.913783333333,45.913466666667,45.91305,45.91265,45.91225,45.9118,45.91135,45.9109,45.910366666667,45.909916666667,45.909433333333,45.90895,45.90845,45.90795,45.907483333333,45.907083333333,45.906616666667,45.906116666667,45.905766666667,45.90545,45.90505,45.904583333333,45.904266666667,45.903983333333,45.903983333333,45.904433333333,45.90435,45.904033333333,45.903666666667,45.903216666667,45.902683333333,45.90215,45.901716666667,45.9014,45.9012,45.901,45.900833333333,45.900466666667,45.900616666667,45.901083333333,45.90135,45.901016666667,45.9012,45.9014,45.90105,45.900916666667,45.901366666667,45.901133333333,45.9008,45.900966666667,45.9013,45.90095,45.900783333333,45.900983333333,45.901483333333,45.90135,45.901066666667,45.901466666667,45.9016,45.901233333333,45.9008,45.900283333333,45.899783333333,45.899183333333,45.898566666667,45.897866666667,45.897183333333,45.896616666667,45.896216666667,45.895833333333,45.895433333333,45.894966666667,45.8945,45.894083333333,45.893616666667,45.89315,45.89265,45.89225,45.8918,45.891416666667,45.891033333333,45.890716666667,45.890283333333,45.889833333333,45.8894,45.888966666667,45.888516666667,45.888083333333,45.88755,45.8869,45.88635,45.885866666667,45.8853,45.884716666667,45.8842,45.883683333333,45.88325,45.882733333333,45.882166666667,45.881566666667,45.880933333333,45.880366666667,45.879766666667,45.879166666667,45.878516666667,45.8778,45.8771,45.8763,45.87565,45.875,45.87435,45.873716666667,45.873083333333,45.872466666667,45.871816666667,45.871183333333,45.870566666667,45.869883333333,45.8692,45.868566666667,45.867916666667,45.867266666667,45.86665,45.865933333333,45.865333333333,45.864733333333,45.864183333333,45.863716666667,45.86345,45.8633,45.863066666667,45.862783333333,45.86255,45.862333333333,45.862083333333,45.861883333333,45.861566666667,45.8612,45.860866666667,45.860366666667,45.859766666667,45.859066666667,45.8584,45.857816666667,45.85735,45.85685,45.856266666667,45.855716666667,45.855183333333,45.855233333333,45.855516666667,45.85505,45.854683333333,45.85505,45.855066666667,45.8545,45.8547,45.8547,45.8542,45.853633333333,45.853133333333,45.852616666667,45.852133333333,45.851616666667,45.851116666667,45.850633333333,45.8501,45.8496,45.849016666667,45.8484,45.847816666667,45.847216666667,45.846716666667,45.846366666667,45.845916666667,45.8454,45.844783333333,45.8442,45.843566666667,45.84295,45.842283333333,45.841616666667,45.84095,45.8403,45.8397,45.839133333333,45.838616666667,45.838216666667,45.8378,45.837233333333,45.836533333333,45.835866666667,45.83525,45.834583333333,45.833966666667,45.833316666667,45.8327,45.832066666667,45.831383333333,45.830816666667,45.830216666667,45.829583333333,45.828983333333,45.8284,45.827816666667,45.827266666667,45.826583333333,45.826033333333,45.82555,45.825033333333,45.824633333333,45.824116666667,45.823616666667,45.823083333333,45.822533333333,45.822033333333,45.821583333333,45.821166666667,45.8207,45.8202,45.819633333333,45.819116666667,45.818633333333,45.818133333333,45.817516666667,45.81685,45.8162,45.815666666667,45.815183333333,45.81465,45.814133333333,45.81365,45.813166666667,45.812616666667,45.812183333333,45.811766666667,45.811233333333,45.810766666667,45.8103,45.809766666667,45.809283333333,45.808833333333,45.808316666667,45.807783333333,45.8073,45.806783333333,45.80625,45.805683333333,45.805383333333,45.805116666667,45.804833333333,45.80445,45.8041,45.803716666667,45.803333333333,45.803,45.802633333333,45.80225,45.801866666667,45.801516666667,45.801183333333,45.800883333333,45.800566666667,45.80025,45.8,45.799783333333,45.7996,45.7994,45.7992,45.798983333333,45.798816666667,45.798683333333,45.79855,45.79845,45.798316666667,45.798166666667,45.798,45.7978,45.797616666667,45.797366666667,45.797133333333,45.79695,45.7968,45.7967,45.7966,45.796483333333,45.796266666667,45.79605,45.795866666667,45.795683333333,45.795466666667,45.795333333333,45.7951,45.794816666667,45.794633333333,45.794366666667,45.794116666667,45.7939,45.793633333333,45.793383333333,45.793166666667,45.792966666667,45.7927,45.792466666667,45.7923,45.792133333333,45.791883333333,45.791716666667,45.791583333333,45.7914,45.79125,45.791183333333,45.7909,45.79085,45.790533333333,45.7904,45.790333333333,45.79035,45.790433333333,45.790333333333,45.79025,45.790166666667,45.7899,45.7896,45.789983333333,45.790416666667,45.79045,45.79015,45.789966666667,45.7905,45.7907,45.7906,45.790316666667,45.790483333333,45.791,45.791016666667,45.790833333333,45.790733333333,45.791,45.790766666667,45.7911,45.791366666667,45.791033333333,45.791116666667,45.7916,45.791616666667,45.791533333333,45.791416666667,45.791066666667,45.790783333333,45.791183333333,45.79135,45.791116666667,45.790816666667,45.7912,45.791266666667,45.7913,45.79115,45.790866666667,45.790483333333,45.790433333333,45.790516666667,45.790566666667,45.790516666667,45.790483333333,45.7904,45.790366666667,45.7903,45.790283333333,45.790116666667,45.79015,45.790666666667,45.790666666667,45.790383333333,45.7904,45.79085,45.790866666667,45.790533333333,45.790683333333,45.79115,45.791116666667,45.79075,45.790566666667,45.79105,45.791033333333,45.79065,45.790783333333,45.791283333333,45.791216666667,45.7909,45.7911,45.791566666667,45.791683333333,45.791416666667,45.791566666667,45.792033333333,45.791766666667,45.791866666667,45.792266666667,45.791933333333,45.792433333333,45.792416666667,45.791966666667,45.791766666667,45.7922,45.792083333333,45.791616666667,45.791166666667,45.790716666667,45.790266666667,45.789816666667,45.789316666667,45.788916666667,45.7884,45.787933333333,45.78735,45.786883333333,45.786433333333,45.785733333333,45.785066666667,45.784316666667,45.783716666667,45.783216666667,45.782716666667,45.781983333333,45.78125,45.7805,45.7798,45.779033333333,45.77825,45.7775,45.776633333333,45.775883333333,45.775133333333,45.774416666667,45.773733333333,45.77305,45.7724,45.77175,45.771066666667,45.770383333333,45.7697,45.769,45.7683,45.7676,45.766916666667,45.7662,45.765383333333,45.7647,45.764,45.763316666667,45.762616666667,45.7619,45.761183333333,45.760466666667,45.759766666667,45.759083333333,45.7584,45.7577,45.756966666667,45.756233333333,45.755516666667,45.754783333333,45.753966666667,45.753266666667,45.75255,45.75185,45.75115,45.7505,45.749883333333,45.749283333333,45.74865,45.748,45.747333333333,45.746733333333,45.746166666667,45.745566666667,45.745033333333,45.744466666667,45.743933333333,45.7433,45.742766666667,45.742216666667,45.741683333333,45.741233333333,45.740666666667,45.740333333333,45.740183333333,45.740683333333,45.74095,45.74065,45.740833333333,45.741283333333,45.7412,45.740766666667,45.740516666667,45.740233333333,45.739783333333,45.739483333333,45.739266666667,45.7389,45.7384,45.737833333333,45.737416666667,45.73705,45.73675,45.7364,45.736016666667,45.735616666667,45.735233333333,45.734933333333,45.734566666667,45.734233333333,45.733666666667,45.733216666667,45.732783333333,45.7323,45.73185,45.731416666667,45.730983333333,45.730516666667,45.73005,45.729533333333,45.729083333333,45.728633333333,45.7282,45.72775,45.727216666667,45.72675,45.72635,45.72595,45.725533333333,45.725633333333,45.7259,45.725733333333,45.725316666667,45.72485,45.724483333333,45.724016666667,45.723516666667,45.723016666667,45.722483333333,45.721933333333,45.721383333333,45.720916666667,45.72035,45.7197,45.719183333333,45.718583333333,45.718016666667,45.71755,45.717016666667,45.7165,45.715966666667,45.715483333333,45.7149,45.7143,45.7138,45.713266666667,45.7129,45.71245,45.711866666667,45.711333333333,45.710766666667,45.710233333333,45.709633333333,45.708966666667,45.708216666667,45.70745,45.706716666667,45.705966666667,45.705216666667,45.7045,45.703766666667,45.703016666667,45.7023,45.701583333333,45.700933333333,45.700416666667,45.699866666667,45.699333333333,45.69885,45.698283333333,45.69775,45.697183333333,45.69675,45.696166666667,45.695483333333,45.6949,45.694233333333,45.693666666667,45.6932,45.692666666667,45.6921,45.691583333333,45.691216666667,45.690783333333,45.690566666667,45.691033333333,45.691366666667,45.69105,45.690466666667,45.6901,45.690366666667,45.690416666667,45.6899,45.689983333333,45.690133333333,45.6899,45.68955,45.689166666667,45.688766666667,45.688366666667,45.687883333333,45.687283333333,45.686766666667,45.6864,45.686033333333,45.6855,45.6849,45.684283333333,45.683733333333,45.683166666667,45.6826,45.682,45.681433333333,45.680833333333,45.680266666667,45.6796,45.679016666667,45.678466666667,45.6779,45.67735,45.676766666667,45.67615,45.675516666667,45.67485,45.674183333333,45.6735,45.672933333333,45.672416666667,45.671916666667,45.671366666667,45.670916666667,45.6705,45.6701,45.6697,45.6693,45.668916666667,45.668616666667,45.66835,45.668016666667,45.667733333333,45.66755,45.667366666667,45.667066666667,45.6667,45.66635,45.666083333333,45.665766666667,45.665616666667,45.665416666667,45.665116666667,45.66485,45.664583333333,45.6643,45.6639,45.6635,45.663133333333,45.6628,45.66245,45.6621,45.661733333333,45.661433333333,45.66125,45.66105,45.66075,45.66035,45.659966666667,45.659483333333,45.65895,45.6585,45.65815,45.657766666667,45.657366666667,45.656966666667,45.6565,45.655966666667,45.655466666667,45.65495,45.65445,45.653866666667,45.6535,45.653083333333,45.652633333333,45.652233333333,45.651783333333,45.6513,45.650883333333,45.650366666667,45.649883333333,45.649366666667,45.648883333333,45.648383333333,45.648016666667,45.64755,45.6471,45.646766666667,45.646416666667,45.646216666667,45.645883333333,45.646266666667,45.64645,45.646233333333,45.64615,45.646683333333,45.647,45.646716666667,45.646816666667,45.647183333333,45.64685,45.646983333333,45.6473,45.6473,45.647116666667,45.64695,45.64735,45.64755,45.6473,45.647433333333,45.64785,45.6479,45.647883333333,45.647816666667,45.6476,45.6472,45.6467,45.646116666667,45.6456,45.645166666667,45.644716666667,45.644283333333,45.643783333333,45.6433,45.642783333333,45.64225,45.641666666667,45.64115,45.640616666667,45.6401,45.639616666667,45.639183333333,45.639166666667,45.639716666667,45.639633333333,45.639183333333,45.6387,45.638166666667,45.637733333333,45.63725,45.636816666667,45.6364,45.635983333333,45.635566666667,45.6351,45.634633333333,45.6341,45.633533333333,45.632966666667,45.632416666667,45.63185,45.6314,45.631083333333,45.630733333333,45.630383333333,45.62995,45.629566666667,45.629183333333,45.628783333333,45.628466666667,45.62825,45.627933333333,45.62765,45.627333333333,45.627016666667,45.626733333333,45.626433333333,45.6261,45.62575,45.62545,45.625116666667,45.6248,45.6244,45.624066666667,45.623783333333,45.623516666667,45.623233333333,45.622916666667,45.6225,45.622066666667,45.62165,45.621283333333,45.6209,45.620483333333,45.619983333333,45.619583333333,45.619233333333,45.618883333333,45.61855,45.61825,45.617983333333,45.617616666667,45.617483333333,45.617983333333,45.61815,45.6181,45.617833333333,45.617533333333,45.617266666667,45.617683333333,45.61795,45.617966666667,45.61755,45.6172,45.616783333333,45.616416666667,45.616066666667,45.615733333333,45.615366666667,45.615,45.614666666667,45.61445,45.614233333333,45.613983333333,45.6137,45.61335,45.613016666667,45.612766666667,45.612433333333,45.6121,45.611833333333,45.611533333333,45.611266666667,45.61105,45.6109,45.610766666667,45.610583333333,45.610433333333,45.61045,45.610383333333,45.610166666667,45.609916666667,45.609716666667,45.609533333333,45.609333333333,45.609116666667,45.608866666667,45.608583333333,45.608433333333,45.608133333333,45.607916666667,45.6077,45.607483333333,45.6072,45.606983333333,45.606833333333,45.606633333333,45.606433333333,45.6062,45.605883333333,45.605533333333,45.605233333333,45.60485,45.605,45.605433333333,45.6053,45.60495,45.605333333333,45.605466666667,45.6053,45.605033333333,45.604866666667,45.604666666667,45.604533333333,45.60445,45.60415,45.603883333333,45.603583333333,45.603316666667,45.603016666667,45.60255,45.602166666667,45.601783333333,45.601333333333,45.601033333333,45.600683333333,45.600383333333,45.600233333333,45.600683333333,45.600633333333,45.600366666667,45.600866666667,45.60105,45.600716666667,45.600183333333,45.599733333333,45.599316666667,45.598883333333,45.598383333333,45.598016666667,45.59755,45.59705,45.596516666667,45.596,45.595433333333,45.594816666667,45.5943,45.5938,45.5933,45.592966666667,45.592583333333,45.59205,45.59165,45.591383333333,45.591133333333,45.590766666667,45.59035,45.589916666667,45.589533333333,45.589183333333,45.588816666667,45.588533333333,45.588283333333,45.587983333333,45.5877,45.5874,45.587066666667,45.58665,45.5863,45.585966666667,45.585616666667,45.5853,45.584883333333,45.584516666667,45.584183333333,45.583866666667,45.583533333333,45.583133333333,45.582733333333,45.5824,45.58215,45.5818,45.581533333333,45.581283333333,45.581116666667,45.580983333333,45.580866666667,45.58075,45.580466666667,45.580083333333,45.579716666667,45.579383333333,45.5791,45.578816666667,45.57855,45.578283333333,45.577966666667,45.577516666667,45.577083333333,45.576583333333,45.576083333333,45.575633333333,45.575216666667,45.57475,45.574333333333,45.573916666667,45.57355,45.5732,45.57285,45.572566666667,45.57235,45.57215,45.571933333333,45.57175,45.57155,45.571366666667,45.571166666667,45.570933333333,45.57065,45.570333333333,45.570033333333,45.56975,45.56945,45.5692,45.569,45.5688,45.56855,45.568266666667,45.568016666667,45.567783333333,45.567566666667,45.567366666667,45.567183333333,45.56705,45.566916666667,45.566716666667,45.56645,45.56615,45.565933333333,45.5657,45.565583333333,45.565366666667,45.565183333333,45.56505,45.564866666667,45.564633333333,45.564383333333,45.5641,45.56375,45.5634,45.563033333333,45.562633333333,45.562283333333,45.561916666667,45.56155,45.561433333333,45.561933333333,45.561816666667,45.5615,45.561633333333,45.562083333333,45.561883333333,45.561483333333,45.561016666667,45.560566666667,45.56015,45.559933333333,45.560433333333,45.5604,45.56005,45.560366666667,45.560716666667,45.5603,45.560566666667,45.56075,45.560383333333,45.5604,45.560816666667,45.560666666667,45.5603,45.560533333333,45.560783333333,45.56055,45.560466666667,45.5609,45.560883333333,45.560616666667,45.560533333333,45.56105,45.561566666667,45.56185,45.56155,45.561266666667,45.561666666667,45.56205,45.56185,45.561516666667,45.561683333333,45.56215,45.562716666667,45.562816666667,45.5625,45.56225,45.562366666667,45.563,45.56355,45.56385,45.563633333333,45.5632,45.56305,45.563466666667,45.563966666667,45.564183333333,45.563866666667,45.563466666667,45.56355,45.564016666667,45.5645,45.56495,45.565483333333,45.565966666667,45.565766666667,45.565533333333,45.565666666667,45.566166666667,45.566616666667,45.566483333333,45.566116666667,45.566183333333,45.566666666667,45.56715,45.567133333333,45.566833333333,45.5666,45.566966666667,45.5674,45.5672,45.566883333333,45.566516666667,45.5662,45.565933333333,45.565583333333,45.565283333333,45.564983333333,45.564566666667,45.564133333333,45.563683333333,45.563266666667,45.562833333333,45.562383333333,45.5619,45.5614,45.560933333333,45.560466666667,45.560083333333,45.559633333333,45.559166666667,45.558733333333,45.55835,45.557983333333,45.557616666667,45.557183333333,45.55675,45.5564,45.556,45.55565,45.555366666667,45.555033333333,45.55475,45.554433333333,45.554116666667,45.553766666667,45.553633333333,45.553533333333,45.553233333333,45.552833333333,45.552916666667,45.5533,45.552966666667,45.552883333333,45.553216666667,45.553166666667,45.552683333333,45.55295,45.55295,45.5525,45.552816666667,45.552966666667,45.552683333333,45.552483333333,45.552166666667,45.552016666667,45.55245,45.552233333333,45.552016666667,45.552466666667,45.5526,45.552216666667,45.552516666667,45.55275,45.55245,45.55205,45.552466666667,45.552766666667,45.5525,45.552,45.551816666667,45.552216666667,45.552383333333,45.552166666667,45.551833333333,45.55135,45.55085,45.550383333333,45.549866666667,45.549433333333,45.548983333333,45.5485,45.54795,45.547533333333,45.547133333333,45.546666666667,45.546166666667,45.54565,45.545133333333,45.5446,45.544033333333,45.543466666667,45.542966666667,45.542533333333,45.54215,45.5417,45.5413,45.540616666667,45.5401,45.539583333333,45.539083333333,45.538566666667,45.538066666667,45.537566666667,45.537066666667,45.536566666667,45.536083333333,45.535583333333,45.535066666667,45.534566666667,45.534183333333,45.533833333333,45.533466666667,45.53285,45.532283333333,45.531716666667,45.5312,45.530716666667,45.5302,45.529666666667,45.5291,45.528533333333,45.527983333333,45.527416666667,45.526833333333,45.526316666667,45.525833333333,45.5254,45.524983333333,45.5245,45.524083333333,45.523616666667,45.52325,45.522966666667,45.522666666667,45.522366666667,45.52205,45.521766666667,45.521466666667,45.521166666667,45.52085,45.5205,45.520116666667,45.519733333333,45.519416666667,45.51905,45.518583333333,45.518116666667,45.517766666667,45.5174,45.517,45.51655,45.516083333333,45.515566666667,45.515066666667,45.51455,45.514033333333,45.513566666667,45.513066666667,45.512583333333,45.5121,45.5116,45.511083333333,45.510566666667,45.509966666667,45.50945,45.508916666667,45.50835,45.507783333333,45.5072,45.5066,45.505983333333,45.505383333333,45.504766666667,45.50415,45.503566666667,45.50295,45.502316666667,45.501683333333,45.501033333333,45.5004,45.499783333333,45.499183333333,45.498483333333,45.497883333333,45.4973,45.49675,45.496183333333,45.49565,45.495116666667,45.4946,45.494066666667,45.493533333333,45.493016666667,45.492516666667,45.492016666667,45.491466666667,45.4909,45.490366666667,45.4898,45.489216666667,45.4885,45.4879,45.48735,45.4867,45.486083333333,45.485466666667,45.484866666667,45.484266666667,45.4837,45.48315,45.482616666667,45.482083333333,45.481566666667,45.481066666667,45.48055,45.480033333333,45.479466666667,45.478966666667,45.478483333333,45.478,45.477516666667,45.4771,45.47675,45.476466666667,45.476166666667,45.475883333333,45.4756,45.475266666667,45.474983333333,45.474766666667,45.47455,45.474416666667,45.474733333333,45.474733333333,45.4744,45.473816666667,45.4732,45.472816666667,45.472866666667,45.473166666667,45.473266666667,45.4728,45.4722,45.4719,45.4721,45.472416666667,45.47275,45.47255,45.47205,45.471833333333,45.47195,45.472216666667,45.471966666667,45.4714,45.470816666667,45.470316666667,45.469866666667,45.47,45.470183333333,45.469733333333,45.469283333333,45.469416666667,45.469716666667,45.469383333333,45.468916666667,45.468966666667,45.46915,45.468666666667,45.468316666667,45.468583333333,45.4684,45.468016666667,45.468283333333,45.468383333333,45.4679,45.467683333333,45.467966666667,45.467816666667,45.467216666667,45.466533333333,45.466016666667,45.465466666667,45.464883333333,45.464316666667,45.463716666667,45.463116666667,45.462466666667,45.461833333333,45.461183333333,45.460483333333,45.459783333333,45.4591,45.458383333333,45.45765,45.456916666667,45.456233333333,45.455416666667,45.454766666667,45.4541,45.45345,45.4528,45.452166666667,45.451516666667,45.451,45.450966666667,45.451266666667,45.451233333333,45.4507,45.450216666667,45.4503,45.450516666667,45.45015,45.449583333333,45.449083333333,45.448416666667,45.4477,45.447033333333,45.446316666667,45.445583333333,45.444883333333,45.444183333333,45.443383333333,45.442566666667,45.441733333333,45.441083333333,45.440633333333,45.4407,45.440766666667,45.440433333333,45.439866666667,45.4401,45.4401,45.43955,45.43895,45.439116666667,45.439033333333,45.438516666667,45.4381,45.438366666667,45.43805,45.43745,45.437533333333,45.437383333333,45.43685,45.436,45.435166666667,45.434416666667,45.433666666667,45.432883333333,45.432116666667,45.431416666667,45.4307,45.429983333333,45.4293,45.428583333333,45.42785,45.427166666667,45.426483333333,45.425716666667,45.424933333333,45.424033333333,45.4233,45.4226,45.421916666667,45.421183333333,45.420433333333,45.419683333333,45.418983333333,45.4183,45.417666666667,45.417116666667,45.416616666667,45.416016666667,45.41535,45.414633333333,45.413916666667,45.413083333333,45.41235,45.411566666667,45.410733333333,45.40995,45.409183333333,45.4084,45.407566666667,45.406816666667,45.40605,45.4053,45.404533333333,45.403733333333,45.402916666667,45.402116666667,45.401416666667,45.400816666667,45.4003,45.399716666667,45.399066666667,45.398466666667,45.397716666667,45.39715,45.3966,45.3961,45.395533333333,45.3949,45.394316666667,45.393716666667,45.393083333333,45.392416666667,45.3918,45.391116666667,45.390433333333,45.389783333333,45.389116666667,45.388483333333,45.387833333333,45.3871,45.3865,45.385966666667,45.385416666667,45.384833333333,45.384283333333,45.38385,45.38395,45.384133333333,45.383783333333,45.383983333333,45.384233333333,45.383966666667,45.383666666667,45.383983333333,45.384016666667,45.383533333333,45.383066666667,45.382533333333,45.382016666667,45.381566666667,45.381216666667,45.381533333333,45.381483333333,45.381,45.38055,45.380833333333,45.3809,45.38045,45.379933333333,45.3794,45.3788,45.378083333333,45.377333333333,45.3765,45.3758,45.375116666667,45.374416666667,45.373733333333,45.37305,45.372333333333,45.371616666667,45.371116666667,45.37065,45.370133333333,45.3697,45.3694,45.369416666667,45.36905,45.36865,45.368166666667,45.367733333333,45.3673,45.366866666667,45.3665,45.366233333333,45.365916666667,45.365533333333,45.365083333333,45.364616666667,45.36415,45.363666666667,45.363366666667,45.36305,45.362616666667,45.362083333333,45.361416666667,45.360833333333,45.360266666667,45.3597,45.359133333333,45.358666666667,45.358216666667,45.35775,45.3573,45.356866666667,45.356333333333,45.355833333333,45.355383333333,45.354883333333,45.3544,45.353816666667,45.353366666667,45.352866666667,45.352416666667,45.351933333333,45.35145,45.35105,45.350533333333,45.34995,45.34935,45.348733333333,45.3481,45.34745,45.346833333333,45.34625,45.345666666667,45.345016666667,45.3446,45.344166666667,45.34365,45.343133333333,45.34255,45.34195,45.341366666667,45.340833333333,45.3404,45.340016666667,45.339616666667,45.339183333333,45.338766666667,45.33845,45.338066666667,45.338383333333,45.33885,45.338883333333,45.338633333333,45.339,45.33935,45.339,45.338983333333,45.339433333333,45.3393,45.338816666667,45.339,45.339166666667,45.338666666667,45.338783333333,45.338666666667,45.338166666667,45.338016666667,45.338383333333,45.338183333333,45.33765,45.33775,45.3377,45.337216666667,45.33655,45.33605,45.335533333333,45.334983333333,45.334333333333,45.333616666667,45.332866666667,45.332166666667,45.331483333333,45.330816666667,45.330216666667,45.329566666667,45.32895,45.328366666667,45.327866666667,45.32715,45.326483333333,45.325766666667,45.325083333333,45.324383333333,45.323766666667,45.323283333333,45.32275,45.322183333333,45.3216,45.3211,45.320533333333,45.319883333333,45.31925,45.318716666667,45.31815,45.317633333333,45.317166666667,45.316666666667,45.31625,45.3158,45.315283333333,45.314783333333,45.314316666667,45.3139,45.313483333333,45.3132,45.312833333333,45.312466666667,45.312083333333,45.31155,45.310933333333,45.3104,45.309933333333,45.30945,45.308983333333,45.308433333333,45.307866666667,45.307366666667,45.306833333333,45.3063,45.305766666667,45.3053,45.304866666667,45.304333333333,45.3038,45.303333333333,45.302933333333,45.302516666667,45.302116666667,45.3017,45.301233333333,45.300866666667,45.300516666667,45.300166666667,45.299866666667,45.300116666667,45.300516666667,45.3004,45.300166666667,45.300566666667,45.300766666667,45.30045,45.300783333333,45.3011,45.300816666667,45.301083333333,45.301516666667,45.3016,45.301483333333,45.301266666667,45.301,45.300766666667,45.300966666667,45.3013,45.300966666667,45.300516666667,45.30025,45.2999,45.299716666667,45.299983333333,45.300133333333,45.3003,45.300483333333,45.30075,45.300983333333,45.301233333333,45.301433333333,45.301583333333,45.301766666667,45.301916666667,45.301966666667,45.30195,45.301933333333,45.302,45.3018,45.301616666667,45.3015,45.30145,45.30145,45.301533333333,45.30145,45.30135,45.301316666667,45.301566666667,45.301966666667,45.302366666667,45.302133333333,45.301883333333,45.302033333333,45.302616666667,45.302766666667,45.302583333333,45.3023,45.302016666667,45.301683333333,45.301316666667,45.300966666667,45.300633333333,45.300416666667,45.300083333333,45.299766666667,45.29945,45.29905,45.298616666667,45.298216666667,45.2979,45.297516666667,45.297233333333,45.296833333333,45.29635,45.295883333333,45.295416666667,45.295,45.29455,45.294233333333,45.29385,45.293483333333,45.293083333333,45.29275,45.292466666667,45.292166666667,45.291733333333,45.291333333333,45.291033333333,45.290633333333,45.290333333333,45.289966666667,45.2895,45.289,45.2885,45.287966666667,45.287383333333,45.2868,45.286233333333,45.285683333333,45.285033333333,45.284533333333,45.284066666667,45.28365,45.283133333333,45.2826,45.282083333333,45.28155,45.281033333333,45.280466666667,45.280033333333,45.279616666667,45.279183333333,45.27875,45.27825,45.277816666667,45.277283333333,45.27675,45.2762,45.2758,45.2755,45.27515,45.274683333333,45.274183333333,45.2737,45.273233333333,45.272916666667,45.272683333333,45.27235,45.272,45.2717,45.27145,45.271183333333,45.2709,45.270483333333,45.270166666667,45.269783333333,45.269366666667,45.268883333333,45.2685,45.2681,45.267716666667,45.26735,45.26695,45.266583333333,45.266233333333,45.265883333333,45.265483333333,45.265033333333,45.26455,45.263966666667,45.263433333333,45.262866666667,45.26235,45.261866666667,45.26145,45.260966666667,45.260466666667,45.260033333333,45.259633333333,45.2593,45.2589,45.258566666667,45.2582,45.2578,45.257316666667,45.256966666667,45.256533333333,45.2561,45.255616666667,45.255083333333,45.254616666667,45.254116666667,45.253683333333,45.253333333333,45.2529,45.252416666667,45.251916666667,45.25145,45.25105,45.25035,45.249866666667,45.249366666667,45.2488,45.248316666667,45.247966666667,45.247533333333,45.247033333333,45.246616666667,45.24625,45.24575,45.245233333333,45.244716666667,45.24425,45.243783333333,45.243366666667,45.242966666667,45.242516666667,45.241966666667,45.241516666667,45.241166666667,45.24075,45.240333333333,45.23985,45.239416666667,45.239016666667,45.238666666667,45.23835,45.2381,45.237733333333,45.23735,45.237033333333,45.236683333333,45.236366666667,45.236066666667,45.235766666667,45.23535,45.235283333333,45.235133333333,45.23505,45.23495,45.234833333333,45.234333333333,45.234183333333,45.23455,45.234966666667,45.235333333333,45.235716666667,45.236183333333,45.23655,45.236866666667,45.23725,45.237566666667,45.238016666667,45.238566666667,45.23915,45.239666666667,45.240216666667,45.240783333333,45.241366666667,45.241933333333,45.242533333333,45.24315,45.243716666667,45.244266666667,45.244883333333,45.245483333333,45.246066666667,45.246633333333,45.24725,45.247733333333,45.248166666667,45.248566666667,45.249016666667,45.2495,45.25005,45.250633333333,45.251266666667,45.251783333333,45.252316666667,45.2529,45.2535,45.254033333333,45.2545,45.25495,45.255416666667,45.255883333333,45.256283333333,45.256716666667,45.257116666667,45.257533333333,45.2578,45.258083333333,45.2582,45.258466666667,45.258816666667,45.259233333333,45.25975,45.260166666667,45.260683333333,45.261166666667,45.261766666667,45.262216666667,45.2627,45.263116666667,45.263466666667,45.26395,45.2645,45.264983333333,45.26545,45.265983333333,45.266583333333,45.267216666667,45.267833333333,45.268433333333,45.269033333333,45.269633333333,45.2702,45.27085,45.271383333333,45.271966666667,45.27255,45.273066666667,45.273733333333,45.274483333333,45.275383333333,45.276083333333,45.276783333333,45.2775,45.27825,45.27875,45.2793,45.279866666667,45.28045,45.28105,45.281583333333,45.2821,45.282666666667,45.28325,45.2838,45.28435,45.2849,45.285416666667,45.285933333333,45.2864,45.286933333333,45.2875,45.288116666667,45.288733333333,45.289283333333,45.289833333333,45.290233333333,45.290666666667,45.291083333333,45.29085,45.290683333333,45.29105,45.29125,45.290883333333,45.29065,45.29095,45.290966666667,45.29045,45.2905,45.290783333333,45.290316666667,45.290233333333,45.290516666667,45.290983333333,45.291466666667,45.292,45.292383333333,45.2921,45.2917,45.292016666667,45.291766666667,45.2913,45.291583333333,45.2915,45.291016666667,45.291233333333,45.2915,45.291833333333,45.29235,45.292816666667,45.293283333333,45.293816666667,45.294366666667,45.29485,45.295366666667,45.295866666667,45.296483333333,45.296783333333,45.297166666667,45.297633333333,45.298183333333,45.29885,45.299483333333,45.30015,45.300733333333,45.30125,45.301816666667,45.3025,45.303233333333,45.303933333333,45.3047,45.305416666667,45.3061,45.3068,45.307333333333,45.307816666667,45.308266666667,45.308716666667,45.309116666667,45.309566666667,45.309983333333,45.310466666667,45.310866666667,45.311383333333,45.31195,45.312566666667,45.313183333333,45.313783333333,45.314283333333,45.314916666667,45.31565,45.316383333333,45.31705,45.317783333333,45.318483333333,45.319216666667,45.319916666667,45.320566666667,45.3212,45.321916666667,45.322616666667,45.323333333333,45.32405,45.324666666667,45.32525,45.325883333333,45.32655,45.327266666667,45.328133333333,45.328833333333,45.329516666667,45.330266666667,45.331016666667,45.33175,45.332383333333,45.33295,45.333466666667,45.333933333333,45.33425,45.334666666667,45.33495,45.335416666667,45.335816666667,45.336483333333,45.337033333333,45.3376,45.33825,45.3389,45.339533333333,45.340183333333,45.340816666667,45.341416666667,45.342083333333,45.342666666667,45.3432,45.343683333333,45.344116666667,45.344416666667,45.344716666667,45.344683333333,45.344133333333,45.344266666667,45.344633333333,45.344483333333,45.34395,45.344166666667,45.344433333333,45.344083333333,45.34365,45.34385,45.343983333333,45.343683333333,45.343116666667,45.343083333333,45.343316666667,45.3436,45.34405,45.3445,45.344983333333,45.345516666667,45.346083333333,45.346566666667,45.347016666667,45.347516666667,45.348066666667,45.34865,45.349266666667,45.349783333333,45.3503,45.3509,45.351466666667,45.352166666667,45.352733333333,45.3532,45.353666666667,45.354216666667,45.3548,45.35535,45.35595,45.356583333333,45.35705,45.357483333333,45.358033333333,45.358633333333,45.35915,45.3596,45.3601,45.360633333333,45.361316666667,45.362,45.362816666667,45.363516666667,45.36435,45.365166666667,45.365983333333,45.366766666667,45.367433333333,45.368133333333,45.368683333333,45.3693,45.37,45.370733333333,45.371316666667,45.371933333333,45.372633333333,45.373083333333,45.373583333333,45.3741,45.3746,45.375133333333,45.375733333333,45.376333333333,45.376916666667,45.37745,45.378,45.3785,45.378933333333,45.379433333333,45.379966666667,45.3805,45.381016666667,45.38155,45.382083333333,45.382633333333,45.383233333333,45.38375,45.384266666667,45.384766666667,45.38525,45.38575,45.38625,45.386716666667,45.387166666667,45.387583333333,45.38805,45.38855,45.389033333333,45.38955,45.390116666667,45.390633333333,45.391133333333,45.3917,45.39225,45.392783333333,45.393333333333,45.393933333333,45.39455,45.39515,45.395833333333,45.396416666667,45.396966666667,45.397483333333,45.397966666667,45.398466666667,45.39905,45.399633333333,45.400166666667,45.400733333333,45.401283333333,45.401866666667,45.402433333333,45.403,45.403533333333,45.404083333333,45.404566666667,45.40505,45.405516666667,45.406016666667,45.406516666667,45.40705,45.40755,45.408016666667,45.408516666667,45.408933333333,45.409333333333,45.409716666667,45.4101,45.410516666667,45.410883333333,45.41125,45.411716666667,45.412066666667,45.4125,45.412966666667,45.4134,45.413866666667,45.414333333333,45.414883333333,45.414966666667,45.41455,45.414816666667,45.415316666667,45.41545,45.41505,45.415116666667,45.415583333333,45.4159,45.41555,45.41535,45.4158,45.41625,45.4161,45.415916666667,45.416316666667,45.41665,45.416633333333,45.416316666667,45.416,45.416033333333,45.41645,45.417066666667,45.417483333333,45.417866666667,45.418333333333,45.4189,45.419233333333,45.418983333333,45.419066666667,45.419616666667,45.419866666667,45.41955,45.4193,45.419716666667,45.420133333333,45.42005,45.4199,45.420416666667,45.420733333333,45.42045,45.4208,45.42135,45.421366666667,45.4213,45.421816666667,45.422483333333,45.4232,45.42385,45.424416666667,45.424983333333,45.4256,45.426066666667,45.426466666667,45.426916666667,45.427366666667,45.427733333333,45.4281,45.42855,45.429,45.42945,45.4299,45.430383333333,45.430866666667,45.4313,45.4318,45.4324,45.433,45.433683333333,45.4343,45.435,45.435666666667,45.436433333333,45.43715,45.437916666667,45.43865,45.43945,45.440266666667,45.441066666667,45.4417,45.4422,45.442866666667,45.4435,45.444083333333,45.444583333333,45.445066666667,45.445666666667,45.4462,45.446633333333,45.446566666667,45.4461,45.4463,45.446716666667,45.446733333333,45.4462,45.445866666667,45.445933333333,45.44635,45.446316666667,45.44585,45.446,45.446433333333,45.44695,45.4474,45.447816666667,45.448216666667,45.448633333333,45.449066666667,45.449566666667,45.45005,45.450516666667,45.451083333333,45.451583333333,45.452116666667,45.4525,45.452916666667,45.453316666667,45.453516666667,45.453716666667,45.454116666667,45.454566666667,45.4551,45.45565,45.4562,45.4567,45.457066666667,45.457383333333,45.457733333333,45.458066666667,45.458333333333,45.45865,45.45905,45.45955,45.460033333333,45.460616666667,45.461166666667,45.4618,45.462283333333,45.46275,45.4633,45.464,45.46465,45.46525,45.465916666667,45.466433333333,45.466766666667,45.467133333333,45.467616666667,45.467983333333,45.468533333333,45.469133333333,45.469783333333,45.470283333333,45.4708,45.471416666667,45.471983333333,45.472516666667,45.47305,45.473533333333,45.474016666667,45.47455,45.475033333333,45.475516666667,45.476083333333,45.476666666667,45.477266666667,45.47785,45.478366666667,45.478866666667,45.479333333333,45.479833333333,45.480366666667,45.480916666667,45.48145,45.481966666667,45.4825,45.48305,45.483583333333,45.48415,45.484683333333,45.485183333333,45.485683333333,45.486266666667,45.4868,45.487416666667,45.487933333333,45.488483333333,45.489,45.489533333333,45.490066666667,45.490566666667,45.491116666667,45.491633333333,45.492133333333,45.49265,45.4932,45.493733333333,45.494216666667,45.4947,45.49515,45.49565,45.496166666667,45.4967,45.497166666667,45.497633333333,45.498083333333,45.498566666667,45.499033333333,45.499533333333,45.5001,45.5006,45.5011,45.501633333333,45.50215,45.502666666667,45.50315,45.50365,45.504133333333,45.504616666667,45.5051,45.505566666667,45.506033333333,45.506483333333,45.506966666667,45.507433333333,45.507933333333,45.508416666667,45.508916666667,45.509416666667,45.509883333333,45.510366666667,45.510866666667,45.511383333333,45.511883333333,45.51245,45.512933333333,45.513433333333,45.513933333333,45.514383333333,45.51485,45.515266666667,45.5156,45.515866666667,45.516333333333,45.516766666667,45.517166666667,45.517566666667,45.518,45.518383333333,45.518633333333,45.518883333333,45.5192,45.519533333333,45.519933333333,45.520316666667,45.5207,45.52105,45.521416666667,45.52175,45.522083333333,45.522383333333,45.5227,45.523,45.523283333333,45.523566666667,45.523883333333,45.524166666667,45.524466666667,45.524783333333,45.525116666667,45.52545,45.525716666667,45.525966666667,45.52625,45.52655,45.526816666667,45.527116666667,45.5274,45.527683333333,45.527966666667,45.5282,45.52845,45.528716666667,45.529016666667,45.5293,45.52955,45.5298,45.530083333333,45.530333333333,45.530616666667,45.530883333333,45.531116666667,45.531333333333,45.53165,45.531966666667,45.532266666667,45.532566666667,45.532883333333,45.533183333333,45.53345,45.533733333333,45.534016666667,45.534266666667,45.5345,45.5347,45.534916666667,45.53505,45.53525,45.53555,45.535866666667,45.536166666667,45.536483333333,45.536783333333,45.537066666667,45.537383333333,45.5377,45.538033333333,45.538333333333,45.538466666667,45.538633333333,45.538866666667,45.53905,45.539233333333,45.539433333333,45.539616666667,45.539866666667,45.540116666667,45.540433333333,45.540783333333,45.541133333333,45.541566666667,45.541883333333,45.5422,45.542416666667,45.54225,45.542033333333,45.54175,45.541483333333,45.541216666667,45.54085,45.54035,45.53985,45.539433333333,45.538816666667,45.538316666667,45.53845,45.53875,45.538766666667,45.5384,45.538116666667,45.538433333333,45.5389,45.539133333333,45.53885,45.53855,45.538416666667,45.538816666667,45.538866666667,45.53835,45.53825,45.538633333333,45.538566666667,45.538066666667,45.538016666667,45.538416666667,45.538716666667,45.53865,45.538133333333,45.537816666667,45.538116666667,45.538516666667,45.5388,45.53855,45.537916666667,45.537633333333,45.537833333333,45.537916666667,45.53735,45.537133333333,45.5371,45.537333333333,45.537766666667,45.538166666667,45.5382,45.53765,45.537183333333,45.537216666667,45.537516666667,45.53745,45.5368,45.53625,45.536366666667,45.536616666667,45.536933333333,45.537233333333,45.5375,45.537683333333,45.5379,45.538183333333,45.538583333333,45.539033333333,45.539516666667,45.540016666667,45.540516666667,45.540966666667,45.541466666667,45.541916666667,45.542383333333,45.542866666667,45.543333333333,45.543783333333,45.544233333333,45.544666666667,45.5451,45.545483333333,45.545933333333,45.546366666667,45.546833333333,45.547283333333,45.547716666667,45.5482,45.548683333333,45.549183333333,45.5496,45.549983333333,45.550333333333,45.550683333333,45.5509,45.551133333333,45.551466666667,45.55175,45.55215,45.552533333333,45.552766666667,45.553033333333,45.55325,45.553483333333,45.55315,45.552533333333,45.552533333333,45.5528,45.5531,45.553,45.552416666667,45.55235,45.552566666667,45.552766666667,45.55225,45.551866666667,45.551933333333,45.552266666667,45.552616666667,45.553016666667,45.553483333333,45.553933333333,45.554366666667,45.554783333333,45.555133333333,45.555383333333,45.55495,45.554933333333,45.555233333333,45.55565,45.556116666667,45.556583333333,45.556966666667,45.557366666667,45.5578,45.558266666667,45.55875,45.559216666667,45.559683333333,45.560116666667,45.560583333333,45.5611,45.5616,45.56215,45.562616666667,45.5631,45.563566666667,45.56405,45.564566666667,45.565066666667,45.565533333333,45.56595,45.566216666667,45.565866666667,45.565383333333,45.56485,45.564583333333,45.564883333333,45.565033333333,45.564666666667,45.564616666667,45.564916666667,45.5653,45.5657,45.56615,45.56605,45.5655,45.564883333333,45.5645,45.564633333333,45.565066666667,45.565433333333,45.5656,45.565033333333,45.564783333333,45.565116666667,45.565466666667,45.565516666667,45.564933333333,45.564583333333,45.564816666667,45.565033333333,45.56485,45.564283333333,45.5645,45.564883333333,45.565283333333,45.565633333333,45.566,45.56645,45.5669,45.567316666667,45.567783333333,45.568166666667,45.568566666667,45.569016666667,45.569516666667,45.570066666667,45.5707,45.571333333333,45.571916666667,45.572466666667,45.572966666667,45.573433333333,45.573616666667,45.573666666667,45.57375,45.5739,45.57395,45.574,45.574016666667,45.574016666667,45.574016666667,45.57405,45.574083333333,45.574183333333,45.574333333333,45.574416666667,45.5745,45.574566666667,45.574633333333,45.574666666667,45.574633333333,45.5746,45.574533333333,45.574433333333,45.574433333333,45.574433333333,45.574516666667,45.574916666667,45.5751,45.574616666667,45.574466666667,45.574916666667,45.5749,45.57435,45.5743,45.574716666667,45.574883333333,45.574383333333,45.574166666667,45.57455,45.57475,45.574883333333,45.574966666667,45.575066666667,45.575233333333,45.57535,45.575616666667,45.575533333333,45.5751,45.575083333333,45.575383333333,45.575,45.574683333333,45.57495,45.575233333333,45.575333333333,45.575133333333,45.57465,45.5744,45.574583333333,45.574933333333,45.575183333333,45.5754,45.575633333333,45.5758,45.5762,45.5766,45.576366666667,45.575833333333,45.575733333333,45.57605,45.5765,45.576833333333,45.577233333333,45.5776,45.577933333333,45.578133333333,45.578466666667,45.578433333333,45.577933333333,45.577616666667,45.577816666667,45.5783,45.578666666667,45.57905,45.57935,45.57965,45.58005,45.580333333333,45.58055,45.5808,45.58105,45.581333333333,45.581583333333,45.581866666667,45.582166666667,45.582433333333,45.582716666667,45.583016666667,45.583316666667,45.583566666667,45.5838,45.58405,45.58435,45.584566666667,45.584766666667,45.584983333333,45.585183333333,45.5854,45.585683333333,45.585883333333,45.586083333333,45.586266666667,45.586516666667,45.5868,45.58705,45.5873,45.58765,45.587966666667,45.588333333333,45.588616666667,45.588883333333,45.589166666667,45.589466666667,45.589733333333,45.58995,45.590233333333,45.590566666667,45.590916666667,45.591283333333,45.591616666667,45.591933333333,45.59225,45.592516666667,45.59275,45.592966666667,45.5932,45.593416666667,45.593566666667,45.593666666667,45.59375,45.593683333333,45.593633333333,45.593766666667,45.593733333333,45.593333333333,45.592716666667,45.59245,45.592433333333,45.5925,45.592583333333,45.592016666667,45.591366666667,45.59125,45.5914,45.591583333333,45.591833333333,45.591883333333,45.59135,45.590783333333,45.59065,45.590866666667,45.591,45.59045,45.590216666667,45.590416666667,45.5907,45.591,45.591316666667,45.59165,45.591933333333,45.592166666667,45.5925,45.5928,45.5931,45.593383333333,45.593566666667,45.593866666667,45.59405,45.594166666667,45.594366666667,45.594516666667,45.594683333333,45.594566666667,45.594033333333,45.593316666667,45.59295,45.593066666667,45.59325,45.593383333333,45.59345,45.5934,45.593283333333,45.59335,45.593483333333,45.59365,45.593833333333,45.594016666667,45.59425,45.594383333333,45.59455,45.5947,45.594866666667,45.595066666667,45.595266666667,45.595533333333,45.595733333333,45.595916666667,45.5961,45.5962,45.596333333333,45.596483333333,45.596733333333,45.59705,45.597333333333,45.597616666667,45.597966666667,45.5983,45.59865,45.599,45.599366666667,45.599683333333,45.600033333333,45.600383333333,45.600733333333,45.6011,45.601416666667,45.601733333333,45.601966666667,45.6022,45.602516666667,45.6028,45.603066666667,45.60335,45.60335,45.6027,45.6026,45.602966666667,45.603116666667,45.603216666667,45.6034,45.602833333333,45.60275,45.603033333333,45.602716666667,45.602216666667,45.602383333333,45.602683333333,45.6025,45.601933333333,45.60195,45.602216666667,45.6018,45.60135,45.601416666667,45.601683333333,45.60185,45.601466666667,45.600983333333,45.601166666667,45.601483333333,45.601266666667,45.6007,45.6006,45.600916666667,45.6009,45.600566666667,45.600016666667,45.600133333333,45.600383333333,45.600683333333,45.601033333333,45.601483333333,45.601916666667,45.602283333333,45.602566666667,45.60285,45.603183333333,45.603466666667,45.6038,45.604183333333,45.604483333333,45.6048,45.605133333333,45.605583333333,45.606,45.606416666667,45.606766666667,45.607116666667,45.607516666667,45.60805,45.608533333333,45.608983333333,45.60955,45.610066666667,45.610616666667,45.611116666667,45.611616666667,45.612133333333,45.612666666667,45.61325,45.61385,45.6145,45.61515,45.615766666667,45.616383333333,45.617,45.617633333333,45.6184,45.619,45.6196,45.62005,45.6205,45.620983333333,45.621433333333,45.621883333333,45.622183333333,45.62245,45.622783333333,45.623116666667,45.6235,45.623883333333,45.624366666667,45.624866666667,45.625433333333,45.625983333333,45.626533333333,45.626933333333,45.626616666667,45.626316666667,45.6261,45.626483333333,45.627016666667,45.627566666667,45.62775,45.627383333333,45.627483333333,45.628,45.628066666667,45.627716666667,45.62795,45.62835,45.628066666667,45.627716666667,45.62785,45.628266666667,45.628333333333,45.627933333333,45.627933333333,45.628333333333,45.62825,45.62785,45.62775,45.628233333333,45.62845,45.628466666667,45.62805,45.628016666667,45.628466666667,45.628766666667,45.628583333333,45.628166666667,45.628166666667,45.628616666667,45.6288,45.628816666667,45.6288,45.628816666667,45.628833333333,45.628816666667,45.6292,45.62955,45.629983333333,45.630416666667,45.630866666667,45.631266666667,45.63175,45.632166666667,45.632516666667,45.633016666667,45.633516666667,45.634,45.634633333333,45.635183333333,45.635666666667,45.63615,45.636666666667,45.637183333333,45.637716666667,45.638283333333,45.6388,45.6393,45.639733333333,45.640183333333,45.640633333333,45.641116666667,45.641633333333,45.642166666667,45.642666666667,45.6432,45.643683333333,45.6442,45.644583333333,45.645133333333,45.645666666667,45.646183333333,45.646666666667,45.647283333333,45.647833333333,45.648366666667,45.6489,45.649383333333,45.649916666667,45.65045,45.650966666667,45.651466666667,45.651966666667,45.652466666667,45.6529,45.653366666667,45.6538,45.65425,45.6547,45.65515,45.655616666667,45.656066666667,45.65655,45.657016666667,45.657533333333,45.658066666667,45.658583333333,45.65915,45.659633333333,45.660133333333,45.660633333333,45.661133333333,45.6617,45.662283333333,45.662833333333,45.6634,45.663983333333,45.664616666667,45.665233333333,45.665733333333,45.666233333333,45.66675,45.6673,45.667916666667,45.668533333333,45.669083333333,45.669633333333,45.6702,45.670766666667,45.671333333333,45.671816666667,45.672266666667,45.67285,45.6733,45.6738,45.674266666667,45.6747,45.675083333333,45.67495,45.674533333333,45.674633333333,45.675133333333,45.675466666667,45.675483333333,45.67505,45.675,45.675466666667,45.67555,45.67505,45.6748,45.675216666667,45.67555,45.675266666667,45.674766666667,45.674966666667,45.6752,45.67485,45.674383333333,45.67445,45.674883333333,45.674933333333,45.67445,45.674083333333,45.674216666667,45.6747,45.67515,45.675516666667,45.675883333333,45.676316666667,45.6767,45.677083333333,45.6776,45.678116666667,45.678633333333,45.679166666667,45.679666666667,45.680133333333,45.6806,45.681066666667,45.681533333333,45.68195,45.6824,45.682883333333,45.683316666667,45.683766666667,45.684133333333,45.684583333333,45.685,45.68535,45.68585,45.686316666667,45.686783333333,45.6873,45.6878,45.6883,45.6888,45.689283333333,45.68975,45.69025,45.690716666667,45.69115,45.69155,45.6919,45.692333333333,45.692766666667,45.693183333333,45.693583333333,45.694083333333,45.694483333333,45.694883333333,45.695316666667,45.69575,45.696183333333,45.696666666667,45.697116666667,45.69755,45.698,45.6984,45.698766666667,45.699083333333,45.699433333333,45.699783333333,45.700133333333,45.700583333333,45.701066666667,45.701566666667,45.702,45.702433333333,45.702866666667,45.703316666667,45.703766666667,45.704233333333,45.704816666667,45.705316666667,45.705766666667,45.70625,45.70675,45.707233333333,45.707716666667,45.708183333333,45.70865,45.709083333333,45.7095,45.709916666667,45.710383333333,45.710783333333,45.7112,45.711616666667,45.712083333333,45.712616666667,45.713083333333,45.713566666667,45.714033333333,45.714483333333,45.714916666667,45.71535,45.715866666667,45.716316666667,45.716766666667,45.7172,45.717616666667,45.718033333333,45.718466666667,45.7188,45.719133333333,45.719466666667,45.7198,45.720133333333,45.720466666667,45.7208,45.72115,45.7215,45.72185,45.722216666667,45.722583333333,45.722933333333,45.7233,45.723683333333,45.72405,45.7244,45.72475,45.7252,45.725583333333,45.726016666667,45.726466666667,45.726916666667,45.727283333333,45.7276,45.728,45.728466666667,45.728783333333,45.728583333333,45.728183333333,45.728283333333,45.728766666667,45.729033333333,45.7288,45.728483333333,45.728733333333,45.72925,45.729583333333,45.7295,45.729133333333,45.7292,45.729716666667,45.73,45.72975,45.7293,45.728883333333,45.728733333333,45.729016666667,45.729483333333,45.729833333333,45.7302,45.73065,45.731083333333,45.73155,45.732116666667,45.732583333333,45.732666666667,45.732383333333,45.732283333333,45.73265,45.733183333333,45.73365,45.733833333333,45.733683333333,45.733683333333,45.734116666667,45.73455,45.734866666667,45.73455,45.7342,45.733933333333,45.7337,45.7336,45.7339,45.734416666667,45.7344,45.734066666667,45.7338,45.733683333333,45.733916666667,45.734466666667,45.735066666667,45.735666666667,45.73625,45.7368,45.737366666667,45.73795,45.738583333333,45.739166666667,45.739816666667,45.7405,45.741133333333,45.7419,45.742533333333,45.7432,45.7438,45.7444,45.74495,45.74555,45.7461,45.7468,45.747416666667,45.747983333333,45.74855,45.749066666667,45.749583333333,45.750016666667,45.750433333333,45.750883333333,45.751416666667,45.751933333333,45.752433333333,45.753083333333,45.753716666667,45.754416666667,45.755083333333,45.756083333333,45.75695,45.7578,45.758616666667,45.75945,45.760283333333,45.7611,45.761883333333,45.7625,45.763183333333,45.7639,45.764616666667,45.7654,45.7662,45.766883333333,45.767633333333,45.768333333333,45.769083333333,45.769866666667,45.770516666667,45.771066666667,45.771666666667,45.772266666667,45.772866666667,45.77355,45.774116666667,45.7747,45.775283333333,45.775866666667,45.776416666667,45.776916666667,45.7774,45.777916666667,45.778033333333,45.777816666667,45.778033333333,45.778516666667,45.77865,45.778316666667,45.778016666667,45.777916666667,45.778183333333,45.77865,45.778716666667,45.77835,45.7781,45.778233333333,45.778766666667,45.778933333333,45.778533333333,45.778483333333,45.77865,45.778983333333,45.779483333333,45.78,45.78025,45.780033333333,45.779933333333,45.780483333333,45.780983333333,45.781116666667,45.780833333333,45.78095,45.781516666667,45.781766666667,45.78165,45.781316666667,45.781483333333,45.782016666667,45.7823,45.782316666667,45.781983333333,45.78205,45.78255,45.782866666667,45.7829,45.78265,45.78225,45.7825,45.783,45.783366666667,45.7835,45.783166666667,45.782933333333,45.78335,45.7837,45.783766666667,45.783516666667,45.783033333333,45.783133333333,45.783533333333,45.783683333333,45.783416666667,45.782916666667,45.783066666667,45.7834,45.783533333333,45.783166666667,45.782783333333,45.783116666667,45.783283333333,45.783383333333,45.783216666667,45.782516666667,45.7824,45.782683333333,45.782883333333,45.782983333333,45.782633333333,45.78195,45.781916666667,45.78215,45.782383333333,45.78255,45.782616666667,45.782383333333,45.7817,45.781466666667,45.781633333333,45.781783333333,45.781966666667,45.7822,45.782466666667,45.782733333333,45.7831,45.783316666667,45.783616666667,45.78395,45.784333333333,45.784733333333,45.785133333333,45.7855,45.785883333333,45.786233333333,45.786583333333,45.786933333333,45.7873,45.787716666667,45.788,45.788266666667,45.78855,45.78885,45.789116666667,45.789366666667,45.789566666667,45.78975,45.789983333333,45.790216666667,45.790516666667,45.790766666667,45.791,45.791283333333,45.79155,45.791866666667,45.792083333333,45.792366666667,45.792683333333,45.792916666667,45.7932,45.793416666667,45.793583333333,45.793783333333,45.793783333333,45.79315,45.79245,45.7921,45.79235,45.792666666667,45.792983333333,45.79325,45.793483333333,45.793666666667,45.793866666667,45.793466666667,45.793016666667,45.79305,45.793233333333,45.793433333333,45.793333333333,45.792666666667,45.792616666667,45.792816666667,45.793066666667,45.793283333333,45.793533333333,45.793766666667,45.793983333333,45.794166666667,45.794366666667,45.7946,45.794916666667,45.795216666667,45.795533333333,45.795833333333,45.79615,45.796516666667,45.796883333333,45.797283333333,45.79765,45.798,45.798266666667,45.798583333333,45.798933333333,45.799266666667,45.7996,45.799966666667,45.80035,45.800783333333,45.801183333333,45.801583333333,45.802016666667,45.802433333333,45.802883333333,45.803433333333,45.803966666667,45.80445,45.804883333333,45.805316666667,45.8057,45.806083333333,45.8065,45.806916666667,45.807466666667,45.807933333333,45.808366666667,45.80875,45.809083333333,45.809416666667,45.809733333333,45.81005,45.810383333333,45.810716666667,45.810966666667,45.811283333333,45.81165,45.811966666667,45.81225,45.8125,45.812816666667,45.81305,45.813366666667,45.813666666667,45.81395,45.814183333333,45.8144,45.814716666667,45.814983333333,45.815233333333,45.815433333333,45.815666666667,45.81585,45.816216666667,45.816633333333,45.8171,45.817516666667,45.817766666667,45.817383333333,45.8169,45.81695,45.8173,45.81765,45.817366666667,45.816933333333,45.816766666667,45.817,45.817233333333,45.817133333333,45.81665,45.8163,45.816383333333,45.816616666667,45.816283333333,45.815883333333,45.81605,45.8163,45.816283333333,45.81585,45.815483333333,45.8154,45.815583333333,45.815666666667,45.815216666667,45.81455,45.814133333333,45.814183333333,45.81435,45.81425,45.813783333333,45.813216666667,45.813016666667,45.813216666667,45.813516666667,45.81375,45.813916666667,45.81385,45.813466666667,45.812933333333,45.81285,45.813166666667,45.813333333333,45.813183333333,45.812716666667,45.81245,45.81235,45.812316666667,45.812583333333,45.812816666667,45.812883333333,45.813,45.81315,45.812983333333,45.81235,45.811816666667,45.811783333333,45.8121,45.812266666667,45.8119,45.811366666667,45.811433333333,45.811716666667,45.811916666667,45.81205,45.8121,45.8117,45.811083333333,45.810816666667,45.81105,45.81135,45.811483333333,45.8114,45.810883333333,45.810316666667,45.810283333333,45.8106,45.810916666667,45.810816666667,45.810283333333,45.8102,45.810533333333,45.810816666667,45.810616666667,45.810116666667,45.809783333333,45.809716666667,45.810016666667,45.81035,45.810733333333,45.811183333333,45.811516666667,45.81185,45.81225,45.812633333333,45.813,45.813416666667,45.8139,45.814366666667,45.814816666667,45.81525,45.815716666667,45.816216666667,45.81665,45.817066666667,45.817483333333,45.817883333333,45.818233333333,45.818566666667,45.818966666667,45.81935,45.819716666667,45.82015,45.8206,45.821016666667,45.821483333333,45.822,45.82255,45.8231,45.823533333333,45.8241,45.824566666667,45.8251,45.825566666667,45.826066666667,45.826583333333,45.82705,45.827566666667,45.828066666667,45.8286,45.829133333333,45.829683333333,45.830166666667,45.830666666667,45.831216666667,45.831633333333,45.832083333333,45.832583333333,45.833083333333,45.8335,45.833883333333,45.834033333333,45.833716666667,45.833433333333,45.833716666667,45.834183333333,45.83465,45.8351,45.835483333333,45.835716666667,45.836016666667,45.836366666667,45.8367,45.837016666667,45.837416666667,45.837783333333,45.83815,45.838466666667,45.838783333333,45.8391,45.839383333333,45.839666666667,45.83995,45.840283333333,45.840616666667,45.840916666667,45.841233333333,45.84155,45.841883333333,45.842216666667,45.8426,45.8429,45.8432,45.843466666667,45.843783333333,45.844133333333,45.844483333333,45.844816666667,45.845166666667,45.84555,45.845933333333,45.846316666667,45.846716666667,45.847166666667,45.847583333333,45.847983333333,45.84825,45.8486,45.848966666667,45.849333333333,45.8497,45.850016666667,45.850333333333,45.850666666667,45.851016666667,45.851333333333,45.851583333333,45.851883333333,45.8522,45.852566666667,45.85295,45.85345,45.854,45.85435,45.854683333333,45.85495,45.855266666667,45.85565,45.8559,45.856033333333,45.856166666667,45.856383333333,45.856583333333,45.8568,45.856883333333,45.85695,45.85695,45.857016666667,45.857133333333,45.857316666667,45.8575,45.8577,45.857916666667,45.8582,45.85845,45.858566666667,45.8586,45.858733333333,45.858833333333,45.858983333333,45.8593,45.859583333333,45.859883333333,45.8602,45.860533333333,45.860883333333,45.861266666667,45.861616666667,45.861983333333,45.862333333333,45.862683333333,45.863066666667,45.86345,45.863883333333,45.864183333333,45.864483333333,45.86485,45.865216666667,45.865583333333,45.86595,45.866366666667,45.866766666667,45.8672,45.867616666667,45.867966666667,45.868366666667,45.868766666667,45.8692,45.8696,45.869983333333,45.870316666667,45.870666666667,45.871016666667,45.8714,45.87175,45.872116666667,45.872483333333,45.87285,45.873316666667,45.8737,45.87405,45.874416666667,45.874766666667,45.875166666667,45.8755,45.875816666667,45.876166666667,45.876583333333,45.877,45.87745,45.8777,45.877983333333,45.878316666667,45.87825,45.8777,45.877333333333,45.877383333333,45.8776,45.877833333333,45.878016666667,45.878283333333,45.878333333333,45.8781,45.878283333333,45.878433333333,45.878683333333,45.878866666667,45.878683333333,45.878116666667,45.8777,45.877766666667,45.878133333333,45.87845,45.87875,45.87905,45.87935,45.879666666667,45.880016666667,45.8804,45.8808,45.881183333333,45.881616666667,45.88205,45.882466666667,45.8829,45.883333333333,45.8838,45.884166666667,45.88465,45.885083333333,45.88555,45.886016666667,45.886483333333,45.886983333333,45.887483333333,45.88795,45.8884,45.888733333333,45.88905,45.8894,45.889716666667,45.890016666667,45.89035,45.890633333333,45.890933333333,45.8912,45.891516666667,45.891866666667,45.892216666667,45.89255,45.89285,45.893133333333,45.89345,45.893716666667,45.894016666667,45.894333333333,45.8946,45.894816666667,45.89505,45.895283333333,45.895516666667,45.8955,45.895216666667,45.895,45.89515,45.895333333333,45.895416666667,45.895616666667,45.8958,45.8957,45.895116666667,45.89455,45.894633333333,45.894883333333,45.895116666667,45.895333333333,45.895583333333,45.895816666667,45.896033333333,45.896283333333,45.896583333333,45.896816666667,45.897066666667,45.897333333333,45.89765,45.897833333333,45.898083333333,45.898283333333,45.89845,45.898583333333,45.898833333333,45.8986,45.8981,45.898266666667,45.898633333333,45.898833333333,45.89835,45.898016666667,45.898116666667,45.898466666667,45.8985,45.897983333333,45.89755,45.897666666667,45.897933333333,45.897716666667,45.8972,45.89695,45.896816666667,45.896783333333,45.896733333333,45.89675,45.896816666667,45.896933333333,45.897166666667,45.897483333333,45.897816666667,45.897666666667,45.897133333333,45.8967,45.896883333333,45.8973,45.897733333333,45.898116666667,45.89845,45.8988,45.898466666667,45.898166666667,45.898466666667,45.898733333333,45.898533333333,45.898133333333,45.898166666667,45.8985,45.898633333333,45.898633333333,45.898766666667,45.8989,45.899066666667,45.899266666667,45.899466666667,45.89975,45.900116666667,45.900416666667,45.900633333333,45.900866666667,45.901083333333,45.90145,45.901583333333,45.901133333333,45.90095,45.90125,45.90175,45.901983333333,45.90165,45.9013,45.901433333333,45.901733333333,45.90205,45.902383333333,45.90265,45.902883333333,45.903183333333,45.9035,45.9038,45.90415,45.9044,45.9046,45.904783333333,45.905083333333,45.905383333333,45.905783333333,45.9062,45.906633333333,45.907083333333,45.907533333333,45.907966666667,45.90845,45.90885,45.909283333333,45.90975,45.91025,45.910716666667,45.911233333333,45.911766666667,45.91225,45.912633333333,45.91305,45.913516666667,45.914016666667,45.914516666667,45.915,45.915466666667,45.91595,45.916466666667,45.916983333333,45.917483333333,45.918,45.91855,45.919083333333,45.919583333333,45.9201,45.920733333333,45.921316666667,45.921933333333,45.922516666667,45.92305,45.923666666667,45.92425,45.92485,45.92545,45.926,45.926466666667,45.926816666667,45.926566666667,45.926333333333,45.92655,45.92695,45.92745,45.9279,45.928366666667,45.9288,45.929233333333,45.929733333333,45.93025,45.930833333333,45.931366666667,45.93195,45.93245,45.932966666667,45.93345,45.93375,45.93355,45.93325,45.93345,45.9338,45.933916666667,45.933533333333,45.933533333333,45.933866666667,45.934033333333,45.934,45.934233333333,45.934716666667,45.935233333333,45.935633333333,45.93605,45.936483333333,45.9369,45.937333333333,45.93775,45.938266666667,45.938666666667,45.938866666667,45.938516666667,45.93855,45.938916666667,45.939266666667,45.939583333333,45.939733333333,45.939916666667,45.940133333333,45.940466666667,45.94075,45.941033333333,45.941283333333,45.941533333333,45.941766666667,45.942016666667,45.942266666667,45.942583333333,45.942916666667,45.94325,45.9436,45.94395,45.944283333333,45.944683333333,45.945016666667,45.945316666667,45.9457,45.9461,45.9465,45.946833333333,45.9472,45.947566666667,45.947916666667,45.94825,45.9486,45.948983333333,45.949116666667,45.9488,45.948283333333,45.947816666667,45.947333333333,45.94685,45.946433333333,45.945983333333,45.94555,45.945133333333,45.944733333333,45.944383333333,45.944,45.94365,45.943333333333,45.943033333333,45.942683333333,45.942383333333,45.942083333333,45.941766666667,45.94145,45.941116666667,45.940833333333,45.94055,45.9403,45.94005,45.9398,45.9396,45.939383333333,45.939166666667,45.938916666667,45.938733333333,45.9386,45.938533333333,45.938466666667,45.938333333333,45.938166666667,45.938,45.937733333333,45.937533333333,45.937316666667,45.937116666667,45.936933333333,45.936733333333,45.93655,45.936366666667,45.936166666667,45.936,45.935866666667,45.93565,45.93545,45.935333333333,45.9352,45.935066666667,45.934916666667,45.934733333333,45.934683333333,45.934633333333,45.934483333333,45.9343,45.9341,45.933883333333,45.933783333333,45.933633333333,45.933483333333,45.9334,45.93335,45.9333,45.933283333333,45.933133333333,45.932983333333,45.933,45.933016666667,45.933,45.933016666667,45.932983333333,45.932916666667,45.93285,45.932833333333,45.932866666667,45.93285,45.932866666667,45.932916666667,45.933,45.933033333333,45.933033333333,45.933083333333,45.93305,45.93315,45.933233333333,45.93355,45.93405,45.934433333333,45.9347,45.93495,45.935216666667,45.9356,45.935683333333,45.935433333333,45.935183333333,45.935066666667,45.935,45.9352,45.935583333333,45.936083333333,45.935933333333,45.935733333333,45.9355,45.935333333333,45.9352,45.935,45.93485,45.934816666667,45.934716666667,45.934566666667,45.934516666667,45.934533333333,45.934516666667,45.934516666667,45.934516666667,45.934533333333,45.93455,45.934566666667,45.934566666667],"lon":[6.5828333333333,6.58285,6.5828666666667,6.5828833333333,6.58295,6.58295,6.5829333333333,6.5829333333333,6.5829666666667,6.5829666666667,6.583,6.5833833333333,6.5838,6.58425,6.5847,6.5853666666667,6.5853333333333,6.5858666666667,6.5856833333333,6.5850666666667,6.5844166666667,6.5844333333333,6.5848,6.5845333333333,6.5838833333333,6.58335,6.58365,6.5839666666667,6.5838166666667,6.5837,6.5841666666667,6.5847333333333,6.5846166666667,6.5843833333333,6.5842833333333,6.58475,6.5847666666667,6.5846333333333,6.5843,6.5840333333333,6.584,6.5838333333333,6.5836333333333,6.5837833333333,6.5841666666667,6.5840333333333,6.58415,6.5843166666667,6.58485,6.5853,6.58485,6.5842333333333,6.58445,6.58495,6.5848333333333,6.5844333333333,6.58405,6.5840833333333,6.5846833333333,6.5848833333333,6.5846333333333,6.5847833333333,6.5850166666667,6.5847,6.58435,6.5841666666667,6.584,6.5844666666667,6.5843833333333,6.5845833333333,6.5847666666667,6.5841333333333,6.5835,6.5836666666667,6.5841833333333,6.5835833333333,6.5831,6.5834,6.5836666666667,6.5833,6.5827333333333,6.58305,6.5834666666667,6.58335,6.5829666666667,6.5823166666667,6.5819333333333,6.58225,6.5827833333333,6.5832666666667,6.5828,6.58235,6.5817833333333,6.5812333333333,6.5805666666667,6.5807,6.58105,6.58055,6.58025,6.58075,6.5805166666667,6.5800166666667,6.5801666666667,6.5807666666667,6.5804666666667,6.5797833333333,6.5802333333333,6.5806333333333,6.58005,6.5794166666667,6.5791833333333,6.5792,6.5794,6.5797333333333,6.5799166666667,6.5800666666667,6.5803166666667,6.5805833333333,6.5808166666667,6.5811,6.5814833333333,6.5819333333333,6.5825666666667,6.5832166666667,6.5837666666667,6.58435,6.5848,6.5850666666667,6.58545,6.58595,6.5862166666667,6.58645,6.5868,6.5871333333333,6.5873833333333,6.5876833333333,6.588,6.5884,6.5887666666667,6.58925,6.5896333333333,6.5899166666667,6.5901666666667,6.5903833333333,6.5906,6.59085,6.59105,6.5912333333333,6.5915666666667,6.5919833333333,6.5923666666667,6.5927166666667,6.59295,6.5927666666667,6.5924666666667,6.5922166666667,6.5918166666667,6.5911,6.5902833333333,6.5894833333333,6.5887166666667,6.5878666666667,6.5871166666667,6.5864666666667,6.5859333333333,6.58535,6.5847666666667,6.5840833333333,6.5833166666667,6.5823666666667,6.5815,6.5806166666667,6.5801166666667,6.5796833333333,6.5793,6.5792333333333,6.5796166666667,6.5797666666667,6.5800666666667,6.5806666666667,6.5812833333333,6.5818666666667,6.5824,6.58295,6.5834833333333,6.584,6.5845666666667,6.5850833333333,6.58575,6.58625,6.5867,6.5873666666667,6.5879833333333,6.5885666666667,6.5892166666667,6.5898166666667,6.5902166666667,6.5902,6.5895,6.5890666666667,6.5896,6.5898833333333,6.5894,6.5886333333333,6.58865,6.5891833333333,6.589,6.5881666666667,6.58775,6.5881333333333,6.5884666666667,6.5877333333333,6.5877,6.5883833333333,6.5880833333333,6.5873333333333,6.5870833333333,6.5877333333333,6.58755,6.58695,6.5867333333333,6.58745,6.5871333333333,6.5864333333333,6.5861,6.58665,6.5867333333333,6.5861,6.58595,6.5858166666667,6.5857333333333,6.5857,6.5856166666667,6.5855166666667,6.58545,6.58535,6.5852333333333,6.58505,6.5848833333333,6.5847166666667,6.5845666666667,6.5844166666667,6.5842666666667,6.5840833333333,6.5838833333333,6.58355,6.5831666666667,6.5827666666667,6.58265,6.5826,6.5823833333333,6.5821,6.5823833333333,6.5827166666667,6.5822,6.5817666666667,6.5813,6.5808833333333,6.5804,6.5800166666667,6.57985,6.5797666666667,6.5796666666667,6.5796666666667,6.5798,6.5799,6.5799166666667,6.5798833333333,6.57995,6.5797666666667,6.5794,6.5792,6.5789166666667,6.5785333333333,6.5782666666667,6.57805,6.57735,6.5767,6.57605,6.5755166666667,6.575,6.5744,6.5742833333333,6.5748166666667,6.5746,6.5740166666667,6.5735166666667,6.5740333333333,6.5739,6.5732166666667,6.573,6.5736,6.57335,6.5725,6.5720833333333,6.5726333333333,6.57325,6.5728333333333,6.5720333333333,6.5714166666667,6.57165,6.57215,6.5715166666667,6.5707666666667,6.5708833333333,6.5712833333333,6.5707,6.5701833333333,6.5696166666667,6.56885,6.5681666666667,6.5675,6.5669166666667,6.5662333333333,6.5655666666667,6.56505,6.5645666666667,6.5641833333333,6.5638,6.5633166666667,6.5628,6.5624166666667,6.56205,6.5616666666667,6.56135,6.5610666666667,6.56085,6.5606666666667,6.56025,6.5597833333333,6.5594,6.5591333333333,6.5588833333333,6.5585333333333,6.5581666666667,6.5577833333333,6.55745,6.5570833333333,6.55665,6.55635,6.5560333333333,6.5557166666667,6.5553666666667,6.555,6.5546333333333,6.5543666666667,6.5541166666667,6.5539833333333,6.5536833333333,6.5533166666667,6.553,6.55275,6.5524166666667,6.5520166666667,6.5514333333333,6.5509166666667,6.5504666666667,6.5509333333333,6.5514166666667,6.5510166666667,6.5503833333333,6.5504833333333,6.5501666666667,6.5498333333333,6.5494166666667,6.549,6.5485833333333,6.5480666666667,6.5477666666667,6.5473666666667,6.5471,6.5468833333333,6.5465166666667,6.5460166666667,6.5453166666667,6.5446666666667,6.5441,6.5435666666667,6.54315,6.5429166666667,6.5433,6.5426,6.54195,6.54235,6.5421666666667,6.5411833333333,6.54105,6.5414333333333,6.54095,6.5402666666667,6.5405166666667,6.5408333333333,6.5404,6.5397333333333,6.54,6.5403166666667,6.5404833333333,6.5406666666667,6.5407,6.5406,6.5405666666667,6.5404833333333,6.5402833333333,6.5400333333333,6.5397166666667,6.5393333333333,6.5387666666667,6.53815,6.5375333333333,6.5369833333333,6.5365833333333,6.5361833333333,6.5356,6.53495,6.5342666666667,6.5343666666667,6.5346833333333,6.53395,6.5330833333333,6.53245,6.5318666666667,6.53105,6.53025,6.5294666666667,6.5286166666667,6.5278333333333,6.5273333333333,6.5266333333333,6.52595,6.5253333333333,6.5247333333333,6.5241,6.5233,6.5226333333333,6.52195,6.5212833333333,6.5206333333333,6.51995,6.5193333333333,6.51875,6.5182,6.51775,6.5172666666667,6.5168333333333,6.51635,6.51595,6.5154333333333,6.5149666666667,6.5153833333333,6.5148833333333,6.5141833333333,6.5136,6.51325,6.5131,6.5127166666667,6.5123333333333,6.5118333333333,6.5111666666667,6.51055,6.50985,6.5092,6.5092666666667,6.5098,6.5099666666667,6.5092833333333,6.5090333333333,6.50945,6.5088,6.5083833333333,6.50885,6.50855,6.5080166666667,6.5083333333333,6.5086666666667,6.5080666666667,6.5076333333333,6.5080833333333,6.50875,6.5088666666667,6.5082333333333,6.5084333333333,6.5086333333333,6.5079166666667,6.5077833333333,6.5076166666667,6.5075333333333,6.5073166666667,6.5070833333333,6.5067666666667,6.5064,6.50615,6.5059166666667,6.5057666666667,6.5055333333333,6.5052666666667,6.50525,6.5051833333333,6.5051166666667,6.5051,6.505,6.5047666666667,6.5045833333333,6.5042333333333,6.5038,6.5032833333333,6.5027666666667,6.5021166666667,6.50155,6.501,6.5005666666667,6.5001333333333,6.4997166666667,6.4994333333333,6.4992,6.4989666666667,6.4986,6.4981833333333,6.4976833333333,6.49715,6.4966666666667,6.4961,6.4956166666667,6.4952166666667,6.4949333333333,6.4946833333333,6.4943833333333,6.4940333333333,6.49375,6.4934166666667,6.4931,6.49285,6.49265,6.4923833333333,6.4921333333333,6.4919666666667,6.4917666666667,6.4914833333333,6.4912,6.4909666666667,6.4907,6.4904333333333,6.4902333333333,6.49005,6.48975,6.48945,6.4892333333333,6.4890333333333,6.4885833333333,6.4881333333333,6.4877833333333,6.4874666666667,6.48695,6.4862666666667,6.48545,6.4846833333333,6.4840333333333,6.4833333333333,6.4826333333333,6.48195,6.4812833333333,6.4806666666667,6.4799833333333,6.47925,6.4787833333333,6.4788,6.4791333333333,6.4796,6.4801666666667,6.4805833333333,6.4808833333333,6.4807666666667,6.4806166666667,6.4806,6.4812,6.4807,6.4802333333333,6.4807666666667,6.4809666666667,6.4803833333333,6.4806333333333,6.4809,6.48025,6.4798833333333,6.4802833333333,6.4806333333333,6.4807,6.4807,6.4809,6.4809666666667,6.48085,6.4809666666667,6.4809,6.4808333333333,6.4806833333333,6.4805333333333,6.4804333333333,6.4804333333333,6.4804333333333,6.4803,6.4801333333333,6.4798833333333,6.4795333333333,6.4792833333333,6.4789666666667,6.4787,6.47855,6.4784333333333,6.4782833333333,6.4783166666667,6.4780833333333,6.4777333333333,6.4775333333333,6.4771833333333,6.4767666666667,6.47635,6.4759833333333,6.4757666666667,6.47545,6.4752166666667,6.4748833333333,6.47445,6.4739833333333,6.4735333333333,6.4730333333333,6.4726166666667,6.47215,6.4716666666667,6.4712666666667,6.47075,6.4702833333333,6.4698,6.4691666666667,6.46845,6.4676666666667,6.46715,6.4665833333333,6.4659166666667,6.46535,6.4648,6.4641666666667,6.4636,6.4629,6.46215,6.4616333333333,6.4609666666667,6.4603833333333,6.45975,6.4593,6.4588333333333,6.4585,6.4583,6.4580833333333,6.4578666666667,6.4578,6.4576333333333,6.4573,6.4570166666667,6.4566833333333,6.45635,6.4559333333333,6.4554666666667,6.4551666666667,6.4547833333333,6.4541166666667,6.4535,6.4529166666667,6.4524666666667,6.45205,6.4516,6.4510333333333,6.4505333333333,6.4497833333333,6.4493,6.4489166666667,6.44845,6.4478166666667,6.4473,6.4467833333333,6.4460666666667,6.4453,6.4445,6.44375,6.4429666666667,6.4421333333333,6.4413,6.4404333333333,6.4395333333333,6.43865,6.4377666666667,6.43685,6.43595,6.4351333333333,6.43435,6.4335333333333,6.43285,6.43215,6.43145,6.4307666666667,6.4300833333333,6.42945,6.4288166666667,6.4282,6.4276166666667,6.427,6.4264166666667,6.4258166666667,6.4253166666667,6.4247833333333,6.42425,6.42365,6.4231166666667,6.4227,6.4220833333333,6.4215166666667,6.4209333333333,6.42035,6.4198833333333,6.4193666666667,6.4189,6.4185166666667,6.41805,6.4176333333333,6.41725,6.4169,6.4165166666667,6.41615,6.4158666666667,6.4155833333333,6.4152666666667,6.4149666666667,6.4146,6.4142,6.4137666666667,6.4132666666667,6.4126666666667,6.4122,6.4121333333333,6.4129166666667,6.4130333333333,6.41255,6.4120166666667,6.4113333333333,6.4108,6.4102166666667,6.4096166666667,6.4091166666667,6.409,6.4095333333333,6.4103,6.41,6.4094833333333,6.4094666666667,6.4103166666667,6.4107666666667,6.4103666666667,6.4098833333333,6.4097666666667,6.4106666666667,6.4107166666667,6.4102,6.4099666666667,6.4105666666667,6.4104166666667,6.41045,6.4110666666667,6.4106833333333,6.41065,6.4115166666667,6.41145,6.4110333333333,6.4105166666667,6.4101666666667,6.4099666666667,6.4107333333333,6.4112333333333,6.4107,6.4103166666667,6.41095,6.4113333333333,6.4109333333333,6.41055,6.4101166666667,6.4097833333333,6.4095,6.4089833333333,6.4084,6.4077166666667,6.4071166666667,6.4064833333333,6.4058833333333,6.4050833333333,6.4044833333333,6.4039166666667,6.4035666666667,6.4042,6.4040666666667,6.4035666666667,6.40345,6.4040666666667,6.4038,6.4032333333333,6.40315,6.4037333333333,6.4035333333333,6.4028333333333,6.4025166666667,6.403,6.4031833333333,6.4024166666667,6.4023833333333,6.4029833333333,6.4027333333333,6.4021,6.40215,6.40275,6.4023833333333,6.4016333333333,6.4013666666667,6.40195,6.4016166666667,6.4011666666667,6.40165,6.4011333333333,6.4010666666667,6.4010666666667,6.4003666666667,6.4000666666667,6.4005333333333,6.40035,6.3996,6.3992166666667,6.39895,6.3987666666667,6.3985333333333,6.39825,6.3978833333333,6.3975666666667,6.3973333333333,6.39715,6.3971666666667,6.3969666666667,6.3966166666667,6.3961833333333,6.3957833333333,6.3953666666667,6.3950833333333,6.3948833333333,6.3947166666667,6.3946,6.3944,6.3941166666667,6.3937666666667,6.3935166666667,6.39325,6.3928833333333,6.39235,6.3919166666667,6.3915,6.39105,6.39055,6.39005,6.3895166666667,6.3889,6.3884,6.3879333333333,6.3875,6.3870333333333,6.3866166666667,6.3862166666667,6.3858,6.3853666666667,6.3848666666667,6.3845166666667,6.3841,6.38365,6.3832166666667,6.3828166666667,6.3823833333333,6.3819833333333,6.38155,6.3810666666667,6.3806333333333,6.3802666666667,6.3799333333333,6.3796333333333,6.37925,6.3788666666667,6.3783666666667,6.37795,6.37755,6.3771666666667,6.3767833333333,6.3763666666667,6.3759166666667,6.37545,6.375,6.3746,6.3742,6.3737,6.37315,6.3726,6.3721666666667,6.3717333333333,6.3712333333333,6.37065,6.3702166666667,6.3696333333333,6.3690166666667,6.3685166666667,6.3678,6.36725,6.3666666666667,6.36625,6.3668,6.3669,6.3663333333333,6.3664166666667,6.3669666666667,6.36675,6.3662333333333,6.3657,6.36495,6.36435,6.3639333333333,6.36355,6.3632666666667,6.3628,6.36225,6.3617,6.3610833333333,6.36045,6.35985,6.3591666666667,6.3584666666667,6.3578333333333,6.3572,6.3567666666667,6.3561666666667,6.35575,6.3552833333333,6.3548666666667,6.35445,6.3541,6.3538666666667,6.35365,6.3535333333333,6.3533333333333,6.35305,6.35275,6.35245,6.352,6.3516333333333,6.3510833333333,6.3504833333333,6.3499666666667,6.3499833333333,6.3505,6.34995,6.3493166666667,6.3489166666667,6.34835,6.34775,6.3472166666667,6.3468166666667,6.3464333333333,6.3459833333333,6.3455833333333,6.34525,6.3449166666667,6.3446666666667,6.3444666666667,6.3444,6.3442166666667,6.3438833333333,6.3436166666667,6.3435666666667,6.3433333333333,6.3430666666667,6.3427833333333,6.3425166666667,6.34225,6.342,6.34175,6.34135,6.3410333333333,6.3407166666667,6.3404666666667,6.3402666666667,6.3398666666667,6.3394166666667,6.3391,6.3387,6.33825,6.3378333333333,6.3374,6.3370166666667,6.3366333333333,6.3362666666667,6.3359666666667,6.3355833333333,6.3351333333333,6.3348,6.3345,6.33425,6.334,6.3337833333333,6.3334,6.3330666666667,6.3326,6.3324,6.3322333333333,6.3320166666667,6.3318,6.3316,6.3314166666667,6.3312333333333,6.3311333333333,6.3311166666667,6.3311,6.3310166666667,6.3309,6.33145,6.3314166666667,6.33075,6.33015,6.3300833333333,6.3307166666667,6.3312333333333,6.3307333333333,6.3307,6.3313,6.3309166666667,6.3304,6.3298833333333,6.3293666666667,6.3288666666667,6.3283833333333,6.32775,6.3269833333333,6.3262666666667,6.32565,6.3250333333333,6.3242666666667,6.3234666666667,6.3227166666667,6.3218166666667,6.3209166666667,6.3200333333333,6.3191333333333,6.3183,6.3174666666667,6.3166,6.31565,6.3148166666667,6.314,6.3131833333333,6.3123666666667,6.3115666666667,6.3108,6.3100666666667,6.3093833333333,6.3087166666667,6.3081,6.3072833333333,6.3064166666667,6.3055166666667,6.30445,6.3035,6.3025666666667,6.3016333333333,6.3007166666667,6.2997666666667,6.2988333333333,6.2979,6.2969,6.2958666666667,6.2948333333333,6.2938333333333,6.2927666666667,6.2917333333333,6.2907166666667,6.2897833333333,6.2887833333333,6.2874833333333,6.2864,6.28525,6.2841666666667,6.2831833333333,6.2821666666667,6.2812666666667,6.2803666666667,6.2796,6.2788,6.2779333333333,6.2771,6.27625,6.27535,6.2744833333333,6.27355,6.2728333333333,6.2723833333333,6.27195,6.2716333333333,6.27135,6.2711833333333,6.2711166666667,6.2713333333333,6.27135,6.2713666666667,6.27135,6.2714833333333,6.2714666666667,6.2713,6.2710166666667,6.2707166666667,6.2707,6.27045,6.2700666666667,6.2698333333333,6.2695666666667,6.2692666666667,6.2690833333333,6.2688333333333,6.26845,6.2683,6.2682,6.2681,6.2678333333333,6.2676333333333,6.2674666666667,6.26715,6.2668,6.2662166666667,6.2656,6.2656666666667,6.2661333333333,6.2655333333333,6.2651,6.26565,6.2656333333333,6.26495,6.2646666666667,6.2653,6.2648666666667,6.2647,6.2653,6.2648833333333,6.2643,6.2637,6.2641666666667,6.2646166666667,6.2640666666667,6.26395,6.2645666666667,6.2642166666667,6.2636333333333,6.2630166666667,6.26235,6.2618333333333,6.26145,6.2612333333333,6.2608166666667,6.2602666666667,6.25975,6.2593166666667,6.2590166666667,6.2588,6.2587333333333,6.2585166666667,6.2582666666667,6.2579666666667,6.2576666666667,6.2573333333333,6.2571333333333,6.2569,6.2567166666667,6.2572,6.25705,6.2562833333333,6.2559833333333,6.2557333333333,6.2556333333333,6.2555833333333,6.2554,6.2552833333333,6.2553333333333,6.2553833333333,6.2554666666667,6.2555666666667,6.2557833333333,6.2559,6.2561,6.2563,6.2564,6.2563833333333,6.2562666666667,6.2560166666667,6.2556666666667,6.2551,6.2545,6.2540833333333,6.2535833333333,6.2532833333333,6.25305,6.2528,6.25245,6.2518666666667,6.2512666666667,6.2506833333333,6.2501,6.2494,6.2488,6.2482333333333,6.24755,6.247,6.2463833333333,6.2457333333333,6.24515,6.2447166666667,6.2443333333333,6.2438666666667,6.2433833333333,6.2429,6.24235,6.2417833333333,6.2412333333333,6.24075,6.2403333333333,6.2398666666667,6.2392666666667,6.2387166666667,6.2381,6.23765,6.2373166666667,6.2368833333333,6.2367,6.2374333333333,6.2377833333333,6.2371666666667,6.2365833333333,6.2360333333333,6.2355833333333,6.2361333333333,6.2361833333333,6.2355166666667,6.2348,6.2345166666667,6.2339666666667,6.23315,6.2324333333333,6.2317,6.2309333333333,6.2304166666667,6.2299666666667,6.22965,6.2291666666667,6.2286833333333,6.2281,6.2276,6.2269833333333,6.22645,6.2258166666667,6.2252,6.2245833333333,6.2239333333333,6.2231833333333,6.2225833333333,6.2220333333333,6.2213666666667,6.2208,6.22025,6.2196666666667,6.2191166666667,6.2184833333333,6.2178166666667,6.2171,6.2164166666667,6.2158166666667,6.2153,6.2147333333333,6.2143333333333,6.2139833333333,6.2135666666667,6.2129666666667,6.21245,6.2119666666667,6.2114833333333,6.2109333333333,6.2103166666667,6.2096833333333,6.2090166666667,6.2082666666667,6.2075666666667,6.2070166666667,6.20655,6.2059666666667,6.20595,6.2066,6.2063666666667,6.2056166666667,6.20595,6.20595,6.20535,6.2047166666667,6.2041333333333,6.2036666666667,6.2032,6.2026833333333,6.2020833333333,6.2015166666667,6.2009,6.2003,6.1997166666667,6.1992666666667,6.1988,6.1983666666667,6.1978333333333,6.1970666666667,6.1966833333333,6.1961833333333,6.1959,6.1964,6.1962833333333,6.1956333333333,6.1958333333333,6.1959333333333,6.19535,6.1947833333333,6.1940833333333,6.1935833333333,6.1931166666667,6.1926666666667,6.1921833333333,6.1916666666667,6.19105,6.19045,6.1899166666667,6.1894166666667,6.1889166666667,6.1884666666667,6.1879333333333,6.1875666666667,6.1871333333333,6.1867166666667,6.1860333333333,6.1850666666667,6.1840833333333,6.1833,6.1825833333333,6.18195,6.1813833333333,6.1807666666667,6.1799833333333,6.1791833333333,6.1784,6.17755,6.1767166666667,6.1758666666667,6.175,6.1741,6.1732833333333,6.1723666666667,6.1715666666667,6.17075,6.1699333333333,6.1691,6.1682833333333,6.16755,6.1667833333333,6.1661333333333,6.1655166666667,6.1649,6.1643166666667,6.1636666666667,6.1629833333333,6.16225,6.1616166666667,6.16095,6.1602666666667,6.1595833333333,6.1589,6.1582,6.1574666666667,6.15695,6.1564,6.15585,6.1552666666667,6.1547,6.1541333333333,6.15355,6.1528333333333,6.152,6.1511833333333,6.1503666666667,6.1496,6.14875,6.1478666666667,6.1468166666667,6.14595,6.1450666666667,6.1441666666667,6.1432166666667,6.1423,6.1414,6.14045,6.1395,6.13855,6.1376166666667,6.1366833333333,6.1357333333333,6.1347666666667,6.1338,6.13285,6.1319333333333,6.1310166666667,6.13005,6.1289166666667,6.12795,6.127,6.1260833333333,6.1251833333333,6.1242833333333,6.1234333333333,6.12255,6.1216,6.1206666666667,6.1197333333333,6.1188333333333,6.1178833333333,6.117,6.11615,6.1153333333333,6.1144833333333,6.1133666666667,6.1125333333333,6.1115833333333,6.1107333333333,6.1098333333333,6.1089166666667,6.1079833333333,6.1071166666667,6.1062333333333,6.10535,6.1046333333333,6.1040333333333,6.1034666666667,6.1030833333333,6.1027333333333,6.1023666666667,6.1026333333333,6.1023333333333,6.1015333333333,6.10135,6.1017166666667,6.10135,6.1005666666667,6.1001,6.0997333333333,6.0994,6.0989666666667,6.0991,6.0990333333333,6.0981333333333,6.0981166666667,6.0984166666667,6.0977666666667,6.0974166666667,6.0977333333333,6.09705,6.0967666666667,6.0973166666667,6.0971,6.0963833333333,6.0965,6.0968333333333,6.0962,6.0956333333333,6.0959833333333,6.0957666666667,6.0950666666667,6.0946166666667,6.0951333333333,6.09555,6.0955,6.0957,6.0959166666667,6.09545,6.0949833333333,6.0953666666667,6.0958,6.0955833333333,6.0949333333333,6.0945333333333,6.0946,6.0951,6.0951666666667,6.0949166666667,6.0943,6.0938333333333,6.09375,6.0942666666667,6.0949,6.0950166666667,6.0944833333333,6.0940666666667,6.0942333333333,6.0949166666667,6.09525,6.0949333333333,6.0942666666667,6.0937,6.0932166666667,6.0926333333333,6.09215,6.0924666666667,6.0929833333333,6.0924833333333,6.0916333333333,6.0912,6.09155,6.0920166666667,6.0916833333333,6.0909,6.0903666666667,6.0905666666667,6.0911,6.0913166666667,6.0914333333333,6.0917333333333,6.09115,6.0902666666667,6.0895333333333,6.0887666666667,6.0880333333333,6.0872833333333,6.08645,6.0856,6.08475,6.0839333333333,6.0830166666667,6.0821333333333,6.0813333333333,6.08055,6.0797833333333,6.0790333333333,6.0783,6.0775333333333,6.0767166666667,6.0759,6.0749833333333,6.0742166666667,6.0736,6.0730166666667,6.07235,6.0717333333333,6.07125,6.0707666666667,6.0704166666667,6.0698,6.0691833333333,6.0684666666667,6.0677833333333,6.0670166666667,6.06625,6.06545,6.0645666666667,6.06395,6.0632666666667,6.0626166666667,6.0624,6.0629166666667,6.0624166666667,6.06175,6.06225,6.06235,6.0616333333333,6.0616,6.0617,6.0609,6.0608833333333,6.0611166666667,6.0603833333333,6.0597166666667,6.0589833333333,6.05845,6.0588666666667,6.0587166666667,6.05805,6.05835,6.0586,6.0579166666667,6.0578166666667,6.0581333333333,6.0576,6.0570833333333,6.0576,6.0577666666667,6.0571166666667,6.0565166666667,6.0563666666667,6.0568833333333,6.0572,6.0564166666667,6.0557,6.0549,6.0541666666667,6.0533666666667,6.0526666666667,6.05195,6.0512,6.0505,6.0498166666667,6.04905,6.0483333333333,6.0476333333333,6.0469833333333,6.0463833333333,6.0458,6.0452166666667,6.0446333333333,6.0440833333333,6.0435833333333,6.04295,6.04225,6.0415333333333,6.0408666666667,6.0403666666667,6.0396166666667,6.0390666666667,6.0385,6.0379166666667,6.0373166666667,6.0367166666667,6.0361166666667,6.0355333333333,6.0349166666667,6.0342833333333,6.0336833333333,6.0331833333333,6.0326,6.0319333333333,6.0312,6.0305,6.0296166666667,6.0289833333333,6.0283833333333,6.0276833333333,6.0268833333333,6.0261,6.0253333333333,6.0246166666667,6.0238666666667,6.0231333333333,6.0224333333333,6.0217166666667,6.0209666666667,6.02015,6.0193,6.0184333333333,6.0174333333333,6.0165833333333,6.0157666666667,6.0148666666667,6.0139,6.01295,6.0120166666667,6.0111,6.0102,6.0093,6.0084166666667,6.00755,6.0067,6.00585,6.005,6.0041333333333,6.0031666666667,6.0024166666667,6.0018,6.0012166666667,6.0006333333333,6.0001333333333,5.9997166666667,5.9993166666667,5.9989666666667,5.9986833333333,5.9984,5.9980666666667,5.9977166666667,5.9974,5.99705,5.9967166666667,5.9964,5.9961166666667,5.9958166666667,5.99545,5.99515,5.9948666666667,5.9946166666667,5.9943666666667,5.99415,5.9939833333333,5.9938333333333,5.9936833333333,5.9935333333333,5.9933833333333,5.9932166666667,5.9931,5.993,5.99295,5.9928833333333,5.9928666666667,5.9928666666667,5.9928833333333,5.99285,5.9927833333333,5.9926666666667,5.9925333333333,5.9923833333333,5.99215,5.9918833333333,5.9915333333333,5.9911,5.9906666666667,5.9901833333333,5.9896833333333,5.9892333333333,5.9888833333333,5.9884833333333,5.9879666666667,5.98745,5.9870166666667,5.9866166666667,5.9863333333333,5.9861833333333,5.9858333333333,5.9855666666667,5.9853833333333,5.9851333333333,5.98485,5.9845,5.9841833333333,5.9838833333333,5.9837,5.9834166666667,5.9830666666667,5.9827,5.9822833333333,5.9818,5.98145,5.9809333333333,5.9803666666667,5.9798,5.9791833333333,5.97845,5.9777666666667,5.9769166666667,5.9760333333333,5.9752333333333,5.9744333333333,5.9738666666667,5.9732166666667,5.9725833333333,5.9721,5.9719833333333,5.9726666666667,5.9733166666667,5.97365,5.9735833333333,5.97305,5.9726,5.9726166666667,5.9732,5.9736833333333,5.9735166666667,5.9729833333333,5.9727,5.9726166666667,5.9728333333333,5.9734833333333,5.9734166666667,5.97285,5.9724,5.9726166666667,5.9731166666667,5.9733666666667,5.9732166666667,5.9728,5.9729833333333,5.9735666666667,5.9732333333333,5.9729,5.9734,5.9739333333333,5.9736,5.9731166666667,5.9734833333333,5.9741,5.9738333333333,5.97355,5.9740833333333,5.9741833333333,5.9737166666667,5.9741,5.9745666666667,5.9741833333333,5.9739833333333,5.9746166666667,5.9748166666667,5.9743333333333,5.9742666666667,5.9743,5.9741666666667,5.9739666666667,5.9737666666667,5.9736166666667,5.9734833333333,5.9733166666667,5.97325,5.97325,5.9731,5.9728,5.9724833333333,5.9721333333333,5.9718666666667,5.9716333333333,5.9713666666667,5.9710666666667,5.9706833333333,5.9703166666667,5.9699,5.9694833333333,5.9690333333333,5.9687333333333,5.9682833333333,5.96775,5.967,5.9669333333333,5.9673833333333,5.9676666666667,5.9671833333333,5.9665166666667,5.9667833333333,5.9674666666667,5.96765,5.9671333333333,5.9666166666667,5.9662,5.9659,5.9655166666667,5.9652166666667,5.9651,5.9649333333333,5.9646833333333,5.9645166666667,5.9644666666667,5.9646166666667,5.9649666666667,5.96555,5.9653166666667,5.9648,5.9649666666667,5.9652,5.9647166666667,5.9640666666667,5.9641833333333,5.9644,5.9637166666667,5.9632833333333,5.9635333333333,5.9633,5.9626333333333,5.96265,5.9629333333333,5.9622833333333,5.9621333333333,5.9622,5.9624333333333,5.9625833333333,5.9626666666667,5.9626666666667,5.9625833333333,5.96245,5.9623,5.9621666666667,5.9620666666667,5.96195,5.9618333333333,5.9617166666667,5.9615,5.9613,5.9611333333333,5.96095,5.9609166666667,5.9608,5.9608333333333,5.9609333333333,5.9609833333333,5.9609333333333,5.96075,5.9605333333333,5.9605,5.9603166666667,5.9598833333333,5.9594,5.9590666666667,5.9588166666667,5.9586333333333,5.95835,5.9580833333333,5.9578,5.9575166666667,5.9572,5.9569166666667,5.9566333333333,5.9562833333333,5.9559833333333,5.95575,5.9554333333333,5.95505,5.9546833333333,5.9543333333333,5.9540833333333,5.9538666666667,5.9535666666667,5.9531,5.9526666666667,5.9522833333333,5.95185,5.9511666666667,5.95055,5.94995,5.9494166666667,5.94885,5.9484666666667,5.9480666666667,5.9475666666667,5.9469666666667,5.9464166666667,5.94585,5.9453,5.9448,5.9444333333333,5.9441166666667,5.9438166666667,5.9435166666667,5.9432666666667,5.9430166666667,5.9427833333333,5.9425666666667,5.9423833333333,5.9421166666667,5.9419666666667,5.9422333333333,5.9415666666667,5.9413166666667,5.9415833333333,5.9409333333333,5.94035,5.9405666666667,5.9407333333333,5.9399666666667,5.93945,5.9392666666667,5.9390666666667,5.9388833333333,5.9388,5.9389333333333,5.93895,5.9381833333333,5.93785,5.9377333333333,5.9379,5.9371333333333,5.93665,5.9365,5.9363,5.9362166666667,5.9360833333333,5.9359166666667,5.9357833333333,5.9357,5.9356,5.93555,5.9354833333333,5.9354333333333,5.9354166666667,5.93545,5.9355666666667,5.9357166666667,5.9357666666667,5.9357333333333,5.9357,5.9361666666667,5.9363,5.9361,5.9357333333333,5.93535,5.9349166666667,5.9344333333333,5.9339833333333,5.93355,5.9329666666667,5.93225,5.9316,5.93105,5.9304166666667,5.92975,5.929,5.9283666666667,5.92785,5.9275333333333,5.9273666666667,5.9272833333333,5.9273333333333,5.92735,5.9273333333333,5.9272833333333,5.9273333333333,5.9272666666667,5.9270833333333,5.9268666666667,5.92655,5.9262666666667,5.9259166666667,5.9254833333333,5.9250333333333,5.9249,5.92475,5.92445,5.92425,5.9239833333333,5.92355,5.9232333333333,5.9229833333333,5.9228833333333,5.9228333333333,5.9228666666667,5.92285,5.9228166666667,5.9228666666667,5.92285,5.9228333333333,5.92275,5.9226333333333,5.9225833333333,5.9225,5.9224166666667,5.9223666666667,5.92225,5.9221666666667,5.9220666666667,5.9219666666667,5.92185,5.9215,5.92095,5.9203666666667,5.9197,5.9199333333333,5.9204,5.9203833333333,5.9196666666667,5.9197333333333,5.9198,5.9190333333333,5.9185,5.9188,5.9185166666667,5.9177166666667,5.9177166666667,5.9178166666667,5.91705,5.91675,5.9168333333333,5.9160833333333,5.9158666666667,5.91605,5.9155833333333,5.9146,5.9144666666667,5.9145166666667,5.9137,5.9130166666667,5.91255,5.9119833333333,5.9115333333333,5.91115,5.9106666666667,5.9103,5.90995,5.9095833333333,5.9092333333333,5.9089,5.9085333333333,5.90805,5.9074166666667,5.9067833333333,5.9061166666667,5.9054333333333,5.9047833333333,5.90415,5.9035333333333,5.9028,5.9021166666667,5.9016333333333,5.9013333333333,5.9010833333333,5.9007333333333,5.9003833333333,5.8999833333333,5.8994333333333,5.8988166666667,5.8981833333333,5.8976166666667,5.8971166666667,5.8967666666667,5.8963,5.8956833333333,5.8950666666667,5.8943833333333,5.8938333333333,5.8932833333333,5.8928166666667,5.8921833333333,5.8916333333333,5.89115,5.8906333333333,5.8902333333333,5.8898166666667,5.8891166666667,5.8884,5.8877333333333,5.88715,5.8866666666667,5.8863666666667,5.8860833333333,5.8857666666667,5.8856333333333,5.8854666666667,5.8852166666667,5.8850333333333,5.8848833333333,5.8845,5.8843,5.8841333333333,5.8838666666667,5.8836333333333,5.8833666666667,5.88295,5.8826166666667,5.8822166666667,5.8818,5.8814666666667,5.8815333333333,5.8819333333333,5.8813166666667,5.8806333333333,5.88085,5.8809666666667,5.8802,5.88,5.8803,5.8796333333333,5.8792166666667,5.87955,5.87915,5.8783833333333,5.8776166666667,5.8768833333333,5.8763,5.8758166666667,5.8753833333333,5.8756666666667,5.8760333333333,5.8757,5.8750833333333,5.87455,5.8739166666667,5.87335,5.8726,5.87165,5.8707666666667,5.8697666666667,5.8687833333333,5.8677166666667,5.86665,5.8655833333333,5.86455,5.8635333333333,5.8626833333333,5.86175,5.86075,5.8599333333333,5.8590833333333,5.8582833333333,5.8577,5.857,5.8562666666667,5.8555333333333,5.8547166666667,5.8539166666667,5.8530666666667,5.8521666666667,5.8514666666667,5.8508166666667,5.85045,5.8506,5.8509333333333,5.8507,5.8498833333333,5.8492,5.8486166666667,5.8479666666667,5.84735,5.8468166666667,5.84625,5.84545,5.84465,5.8439,5.8431166666667,5.8423833333333,5.8417333333333,5.8411333333333,5.8406333333333,5.8402833333333,5.8397833333333,5.8393666666667,5.8389333333333,5.8386,5.8382333333333,5.8378,5.8374166666667,5.8370666666667,5.8367833333333,5.8364833333333,5.8360666666667,5.8356833333333,5.8352,5.8347,5.83405,5.8335666666667,5.83315,5.83265,5.8321166666667,5.8315166666667,5.8308666666667,5.83025,5.8296833333333,5.8291,5.82855,5.8280833333333,5.8276833333333,5.8272666666667,5.8269,5.8264666666667,5.8260833333333,5.8256666666667,5.8252,5.8247,5.8244166666667,5.8240833333333,5.8237666666667,5.8234,5.8229,5.82255,5.8221,5.8218166666667,5.8217166666667,5.8214166666667,5.8210166666667,5.82055,5.8200666666667,5.8196333333333,5.8193166666667,5.8191166666667,5.8189166666667,5.8185833333333,5.8181833333333,5.8177666666667,5.8172333333333,5.8169,5.81655,5.8161666666667,5.8158166666667,5.8151666666667,5.8144666666667,5.8138166666667,5.8131,5.8123666666667,5.8118333333333,5.8113333333333,5.81095,5.8104333333333,5.8098166666667,5.8091666666667,5.8085333333333,5.8080666666667,5.8075333333333,5.8070166666667,5.8065,5.80605,5.8056166666667,5.8051,5.8045666666667,5.8039,5.8033166666667,5.8026833333333,5.8020333333333,5.8014333333333,5.8007833333333,5.8001666666667,5.7995166666667,5.7987666666667,5.7982833333333,5.7979,5.7974666666667,5.7971,5.79675,5.7962833333333,5.7958333333333,5.7954,5.7949166666667,5.7943,5.79375,5.7933,5.7928,5.7922833333333,5.7916833333333,5.7910666666667,5.79055,5.7901833333333,5.7898833333333,5.7896,5.7893333333333,5.7887666666667,5.7883333333333,5.7879333333333,5.7874666666667,5.7868666666667,5.78645,5.7859666666667,5.7855166666667,5.7850666666667,5.7844666666667,5.7839833333333,5.7834,5.78285,5.7822333333333,5.78165,5.7810833333333,5.7804166666667,5.7797666666667,5.7790666666667,5.7784166666667,5.7777833333333,5.7771833333333,5.7766333333333,5.77605,5.7753666666667,5.7745666666667,5.7739833333333,5.7736833333333,5.7732333333333,5.7727333333333,5.7722,5.7716,5.7710333333333,5.7704,5.7696166666667,5.7691833333333,5.7685833333333,5.7678833333333,5.7673,5.7666333333333,5.7658,5.7648833333333,5.7641,5.7647833333333,5.7653333333333,5.7658166666667,5.7663333333333,5.7669833333333,5.7676666666667,5.76855,5.7694166666667,5.77005,5.7705833333333,5.7713666666667,5.7722333333333,5.7730666666667,5.7737333333333,5.7744833333333,5.7753,5.7760166666667,5.7766333333333,5.7773666666667,5.7781333333333,5.7788833333333,5.7796,5.78035,5.7811333333333,5.7818666666667,5.7826666666667,5.7836,5.7841833333333,5.7848666666667,5.78555,5.7860833333333,5.7867833333333,5.7874,5.7879666666667,5.7887333333333,5.7894,5.7901166666667,5.79075,5.79115,5.7916333333333,5.79215,5.7925666666667,5.7928333333333,5.7932666666667,5.7938,5.7943,5.7948166666667,5.7954166666667,5.79615,5.7968666666667,5.7973833333333,5.7979,5.79845,5.7991666666667,5.79975,5.8002166666667,5.8006,5.8011333333333,5.8017166666667,5.8021666666667,5.80275,5.8033,5.8040333333333,5.8047166666667,5.8052833333333,5.8058333333333,5.8064166666667,5.8069166666667,5.8073833333333,5.8078833333333,5.8083333333333,5.8088166666667,5.8092333333333,5.80965,5.8100333333333,5.8105,5.8108833333333,5.81125,5.8116333333333,5.8119,5.8119333333333,5.81215,5.8124666666667,5.8126166666667,5.81285,5.8133666666667,5.8139333333333,5.8143833333333,5.8147166666667,5.81505,5.81535,5.8155666666667,5.8158333333333,5.8161833333333,5.8165,5.8168833333333,5.8173333333333,5.81775,5.8181333333333,5.81845,5.8188333333333,5.8192666666667,5.81975,5.82015,5.8204833333333,5.8208,5.8211,5.82135,5.8216,5.8218833333333,5.8216,5.8210666666667,5.8215666666667,5.8219166666667,5.8213,5.8208666666667,5.82135,5.8217833333333,5.82115,5.8212333333333,5.8218166666667,5.8214833333333,5.8211833333333,5.8218,5.82225,5.8225166666667,5.8228666666667,5.8232833333333,5.8229666666667,5.8224333333333,5.8231166666667,5.8235166666667,5.82315,5.8237666666667,5.8241333333333,5.8237166666667,5.8242,5.8248666666667,5.8253166666667,5.82575,5.8261666666667,5.8265333333333,5.8269333333333,5.8274666666667,5.8278833333333,5.82825,5.8285333333333,5.8287833333333,5.8290833333333,5.8294666666667,5.8297166666667,5.8300666666667,5.8304,5.8306833333333,5.8309666666667,5.8312666666667,5.8316,5.83175,5.8318833333333,5.8321333333333,5.8323166666667,5.83245,5.8326166666667,5.8328333333333,5.8330666666667,5.8333,5.8335166666667,5.8338833333333,5.8339666666667,5.8341,5.8341833333333,5.83435,5.8344666666667,5.83465,5.83475,5.8347666666667,5.83485,5.83505,5.83515,5.8352166666667,5.8352666666667,5.8353666666667,5.8357,5.8361166666667,5.8363833333333,5.8366,5.8368333333333,5.8371,5.83735,5.83765,5.8378666666667,5.8379833333333,5.8379666666667,5.8378833333333,5.8380833333333,5.83835,5.8386666666667,5.8389166666667,5.8391,5.8392833333333,5.8395333333333,5.8397333333333,5.8399833333333,5.8403666666667,5.8407333333333,5.84115,5.8415333333333,5.8418833333333,5.84215,5.8423666666667,5.8424,5.8426166666667,5.84305,5.8433666666667,5.8437166666667,5.8440833333333,5.8443166666667,5.8444833333333,5.8445833333333,5.84475,5.8448666666667,5.8449333333333,5.84505,5.8453166666667,5.8458166666667,5.8462666666667,5.8466666666667,5.8471833333333,5.8476333333333,5.8480166666667,5.84815,5.8476333333333,5.8479333333333,5.8488166666667,5.8491,5.8486166666667,5.84905,5.84965,5.84925,5.8488166666667,5.8492833333333,5.8496666666667,5.8491333333333,5.8484833333333,5.8485833333333,5.8493166666667,5.8498,5.8502166666667,5.85055,5.8508333333333,5.8511333333333,5.8516166666667,5.8522,5.8528833333333,5.8535,5.8540833333333,5.8546333333333,5.8552333333333,5.8556666666667,5.8562666666667,5.8567833333333,5.8572833333333,5.8578333333333,5.8585666666667,5.8592666666667,5.8598333333333,5.8604666666667,5.8612,5.86195,5.86265,5.8632166666667,5.8636166666667,5.86385,5.8640166666667,5.8642166666667,5.8646166666667,5.8650333333333,5.8654333333333,5.8659666666667,5.8666166666667,5.8672833333333,5.8679333333333,5.8684333333333,5.8688833333333,5.86945,5.8699666666667,5.8704666666667,5.87095,5.87135,5.87185,5.8723666666667,5.8728333333333,5.8734666666667,5.8740666666667,5.8745166666667,5.8748,5.8752,5.8755333333333,5.8758666666667,5.8762166666667,5.8766,5.8769833333333,5.8771833333333,5.87725,5.87745,5.8777666666667,5.8780833333333,5.8784833333333,5.8787666666667,5.87895,5.8791666666667,5.8793666666667,5.8796333333333,5.8798666666667,5.8800666666667,5.8802333333333,5.8804166666667,5.8806333333333,5.8808166666667,5.881,5.8812166666667,5.8815,5.8818333333333,5.8822333333333,5.8826833333333,5.88315,5.8834833333333,5.8837,5.8839,5.8841166666667,5.8843166666667,5.8844166666667,5.8846166666667,5.8846666666667,5.88465,5.8846666666667,5.8847333333333,5.8847166666667,5.8847166666667,5.88485,5.885,5.8852,5.8855333333333,5.8858,5.8861,5.8864166666667,5.8868,5.88715,5.8875166666667,5.8878666666667,5.8882,5.8884833333333,5.8887666666667,5.8890666666667,5.8893666666667,5.8897166666667,5.8901833333333,5.8906166666667,5.8910833333333,5.8915666666667,5.892,5.8924333333333,5.8928333333333,5.8932333333333,5.8938333333333,5.8943666666667,5.8949333333333,5.8954833333333,5.8960166666667,5.8965833333333,5.8971666666667,5.8977,5.8982166666667,5.8987166666667,5.8991166666667,5.8995166666667,5.90005,5.9005333333333,5.9011166666667,5.9012833333333,5.9008,5.901,5.9018333333333,5.90235,5.9019166666667,5.90215,5.9028833333333,5.9032166666667,5.9027333333333,5.9025666666667,5.90325,5.9038833333333,5.90385,5.9035833333333,5.9042166666667,5.90485,5.9045,5.9040166666667,5.9036666666667,5.9034,5.9028,5.9026833333333,5.90305,5.90355,5.904,5.90425,5.9043833333333,5.9040166666667,5.9038333333333,5.9045833333333,5.9047,5.90425,5.9039166666667,5.9044833333333,5.9049666666667,5.9046333333333,5.9042166666667,5.9048166666667,5.9053166666667,5.9048666666667,5.9051,5.9059,5.9060333333333,5.9055,5.90605,5.9064333333333,5.9066,5.9067,5.9068,5.9068666666667,5.9070166666667,5.9072166666667,5.9077166666667,5.9083,5.9088833333333,5.9092333333333,5.9098333333333,5.9106,5.9112833333333,5.9119833333333,5.9126833333333,5.9134333333333,5.9141833333333,5.915,5.9158833333333,5.9167833333333,5.9175,5.9181333333333,5.9187,5.91915,5.9193333333333,5.9195333333333,5.9196,5.9196166666667,5.91965,5.9197,5.91975,5.9197166666667,5.9197333333333,5.9198,5.91975,5.9196,5.9196333333333,5.9196833333333,5.9198,5.9202333333333,5.9205833333333,5.9207333333333,5.9209833333333,5.9217666666667,5.9217,5.9212833333333,5.9213666666667,5.9219666666667,5.9222,5.9216666666667,5.9210166666667,5.921,5.9215833333333,5.9212666666667,5.92065,5.9206833333333,5.9207166666667,5.9207666666667,5.9207333333333,5.9205,5.92025,5.9200666666667,5.9197833333333,5.9195,5.9192166666667,5.9191833333333,5.9191666666667,5.9191166666667,5.919,5.9189166666667,5.91875,5.9188666666667,5.9192166666667,5.9196,5.9198333333333,5.9199666666667,5.9202833333333,5.9206333333333,5.9209666666667,5.9214333333333,5.9218833333333,5.9223666666667,5.92295,5.9236333333333,5.92425,5.9248333333333,5.9254333333333,5.9260166666667,5.926,5.9259833333333,5.9259666666667,5.9263166666667,5.9265666666667,5.9267666666667,5.927,5.9272166666667,5.9276,5.928,5.9284333333333,5.9292833333333,5.9301166666667,5.9308666666667,5.93155,5.9319333333333,5.9324333333333,5.9329333333333,5.9332,5.9334833333333,5.9338833333333,5.9342833333333,5.9345333333333,5.9348833333333,5.9352,5.9354333333333,5.93565,5.9359333333333,5.9362333333333,5.93655,5.9368666666667,5.93715,5.9375166666667,5.938,5.9385166666667,5.9391333333333,5.93975,5.9403166666667,5.94075,5.94125,5.9418,5.9423333333333,5.94285,5.9434,5.9439333333333,5.9443333333333,5.9446833333333,5.9451166666667,5.9456333333333,5.9461833333333,5.9467666666667,5.9473166666667,5.94785,5.9483333333333,5.9488666666667,5.9494333333333,5.9499666666667,5.9505,5.9510833333333,5.95165,5.9522333333333,5.9527833333333,5.9533833333333,5.9540333333333,5.95475,5.9555,5.9561333333333,5.95675,5.9573666666667,5.9580166666667,5.9586333333333,5.9592333333333,5.9598166666667,5.9603833333333,5.9609166666667,5.9615166666667,5.9620333333333,5.96255,5.963,5.96345,5.96395,5.9644333333333,5.9649,5.9653833333333,5.9659166666667,5.9664666666667,5.9670166666667,5.9676166666667,5.9682,5.9687833333333,5.9693333333333,5.9698666666667,5.97035,5.9707833333333,5.9712333333333,5.9716666666667,5.9721,5.9725333333333,5.9729333333333,5.9733333333333,5.97385,5.9743166666667,5.97475,5.97515,5.9755166666667,5.9758833333333,5.9763,5.9767666666667,5.9772333333333,5.9778,5.9783333333333,5.9789166666667,5.9794666666667,5.9799666666667,5.9804333333333,5.9807833333333,5.9811666666667,5.98165,5.9821166666667,5.9825333333333,5.9829166666667,5.9832666666667,5.98365,5.984,5.9843833333333,5.9849,5.98535,5.9857833333333,5.9862333333333,5.9867166666667,5.9871666666667,5.9877,5.9881666666667,5.9886333333333,5.9891666666667,5.9897166666667,5.9902666666667,5.9908833333333,5.9914833333333,5.9919666666667,5.9924833333333,5.9930166666667,5.99355,5.9940666666667,5.9946166666667,5.99515,5.99575,5.9963666666667,5.9969333333333,5.9976333333333,5.9982,5.99875,5.9992833333333,5.9997833333333,6.0002666666667,6.00075,6.0012333333333,6.0017166666667,6.0023333333333,6.0028666666667,6.0034,6.0039333333333,6.00445,6.0049666666667,6.00545,6.0059666666667,6.0065,6.0070333333333,6.0076166666667,6.0082666666667,6.0089666666667,6.0097333333333,6.01055,6.0113,6.01205,6.0126833333333,6.0134166666667,6.0140833333333,6.0148166666667,6.0155833333333,6.0163333333333,6.0170333333333,6.01765,6.01825,6.0188833333333,6.0194833333333,6.0199166666667,6.0205666666667,6.0213333333333,6.0220333333333,6.0226333333333,6.0232333333333,6.02385,6.0244833333333,6.0251,6.02565,6.0259333333333,6.0262,6.0265166666667,6.0265166666667,6.0261666666667,6.0256166666667,6.0249666666667,6.0243666666667,6.024,6.0238666666667,6.0237,6.0234,6.0231333333333,6.02315,6.0236166666667,6.02445,6.0245833333333,6.02425,6.0240166666667,6.0247666666667,6.02515,6.0254,6.0254333333333,6.02515,6.0249,6.0245166666667,6.0246666666667,6.0255833333333,6.02595,6.02565,6.02585,6.0267,6.0267333333333,6.0262666666667,6.02625,6.0270833333333,6.0281333333333,6.0284666666667,6.0283166666667,6.0283333333333,6.0290333333333,6.0297166666667,6.03055,6.0307333333333,6.0304,6.0303166666667,6.0311666666667,6.0316,6.0312833333333,6.0307666666667,6.0303666666667,6.0304166666667,6.0311333333333,6.0321333333333,6.03275,6.0327,6.03245,6.0328166666667,6.0337,6.0343166666667,6.0341333333333,6.0339833333333,6.0344166666667,6.0348,6.0351666666667,6.0355166666667,6.036,6.0365666666667,6.03705,6.03765,6.0381833333333,6.0386166666667,6.03905,6.0394833333333,6.04,6.0406166666667,6.0411666666667,6.04165,6.0420666666667,6.0424833333333,6.04295,6.0435166666667,6.0440666666667,6.04455,6.0451,6.0457166666667,6.0462833333333,6.0469333333333,6.04755,6.04815,6.0487166666667,6.0492333333333,6.0497666666667,6.05025,6.0505166666667,6.0507666666667,6.0509,6.0508833333333,6.05085,6.0511333333333,6.0516833333333,6.052,6.0522666666667,6.0525833333333,6.0527166666667,6.0530833333333,6.0532166666667,6.0528333333333,6.0532,6.05385,6.0541333333333,6.0540833333333,6.0536333333333,6.05385,6.0546833333333,6.0551333333333,6.0549333333333,6.0547333333333,6.0554166666667,6.05595,6.0561333333333,6.0561166666667,6.05635,6.05685,6.0572166666667,6.0574833333333,6.0579833333333,6.0582,6.058,6.0580166666667,6.0589,6.0595,6.06,6.0603666666667,6.0606666666667,6.0608333333333,6.0610166666667,6.0611833333333,6.06135,6.0615833333333,6.0618333333333,6.0621,6.0622666666667,6.0623666666667,6.06255,6.0628333333333,6.0631166666667,6.0632833333333,6.0633666666667,6.06355,6.0636,6.0636833333333,6.0639833333333,6.0642833333333,6.0643,6.0639833333333,6.0638333333333,6.06425,6.0645833333333,6.0644166666667,6.0644,6.0653333333333,6.0658166666667,6.0655333333333,6.0653,6.0655166666667,6.06595,6.0662666666667,6.0659833333333,6.0661833333333,6.06645,6.0663166666667,6.0660666666667,6.06635,6.06665,6.06635,6.0661666666667,6.0669333333333,6.0676,6.0677166666667,6.0675,6.0673333333333,6.0682,6.0686333333333,6.0685166666667,6.0680833333333,6.06855,6.0693,6.0694333333333,6.0694666666667,6.0694666666667,6.0696,6.0698666666667,6.0701833333333,6.07045,6.0704833333333,6.07045,6.0704833333333,6.0704333333333,6.0704,6.0706166666667,6.0709166666667,6.07125,6.0715833333333,6.0719333333333,6.0722,6.0726166666667,6.0734833333333,6.0744333333333,6.0753166666667,6.0762666666667,6.0772666666667,6.0783,6.0792833333333,6.0802333333333,6.0811666666667,6.0821,6.08295,6.0839333333333,6.0848666666667,6.0859333333333,6.08715,6.0882333333333,6.0893166666667,6.0904,6.0915,6.0926666666667,6.0938166666667,6.0950833333333,6.0963833333333,6.0975333333333,6.0986,6.0992,6.0990166666667,6.0992166666667,6.1002666666667,6.1007,6.10035,6.10075,6.1017,6.10195,6.10155,6.1015833333333,6.1024,6.10305,6.1039666666667,6.1049,6.10585,6.10675,6.1076666666667,6.1083833333333,6.1090333333333,6.10965,6.10955,6.1090666666667,6.1092833333333,6.10975,6.1093333333333,6.1091,6.1095833333333,6.1102333333333,6.11075,6.1106166666667,6.11005,6.1096666666667,6.1099166666667,6.11055,6.1112666666667,6.1121166666667,6.1127833333333,6.1132666666667,6.1129333333333,6.1125,6.1124,6.1129666666667,6.1134833333333,6.114,6.11465,6.1152666666667,6.1158666666667,6.1164833333333,6.11715,6.1177166666667,6.11835,6.11845,6.11785,6.11735,6.1172666666667,6.1176,6.1180166666667,6.1185,6.1190333333333,6.1196666666667,6.1201833333333,6.1206666666667,6.1212,6.12175,6.1223666666667,6.12305,6.12365,6.1242833333333,6.1249666666667,6.12565,6.12635,6.1269833333333,6.1276166666667,6.1282333333333,6.1288,6.12965,6.1305666666667,6.1314666666667,6.1324166666667,6.13335,6.1342166666667,6.13505,6.1359333333333,6.1368666666667,6.1379166666667,6.13875,6.1396166666667,6.1405,6.1414166666667,6.1422,6.1429833333333,6.1438166666667,6.1446166666667,6.1453666666667,6.1461333333333,6.1469333333333,6.1478166666667,6.1487833333333,6.1496833333333,6.1505333333333,6.1514166666667,6.15225,6.15305,6.15385,6.1546833333333,6.1554333333333,6.1561833333333,6.1569333333333,6.1579,6.1587333333333,6.1593,6.1597666666667,6.1602833333333,6.1607666666667,6.1611833333333,6.1613166666667,6.1609333333333,6.1606,6.1610666666667,6.1617333333333,6.1622833333333,6.16255,6.1623166666667,6.16205,6.1626166666667,6.1632,6.1634666666667,6.16345,6.1634833333333,6.1628666666667,6.1624833333333,6.16285,6.1635333333333,6.1638166666667,6.1633,6.1630333333333,6.1636333333333,6.1642166666667,6.1645333333333,6.1647833333333,6.16505,6.1653166666667,6.1656166666667,6.1660666666667,6.1664333333333,6.16675,6.1671666666667,6.1677333333333,6.1682166666667,6.16875,6.16915,6.1694666666667,6.1697166666667,6.1699333333333,6.1702166666667,6.1708833333333,6.17145,6.1710166666667,6.1703666666667,6.1700166666667,6.1703,6.1706666666667,6.1713333333333,6.172,6.1728,6.17365,6.1745,6.17535,6.1762666666667,6.1771,6.1778666666667,6.1785,6.1791833333333,6.1800333333333,6.1809166666667,6.18175,6.1825,6.18325,6.18395,6.1846666666667,6.1854,6.1862,6.18715,6.1879166666667,6.1884333333333,6.1888666666667,6.1893333333333,6.1898166666667,6.19045,6.1911,6.1916833333333,6.1923,6.1929166666667,6.19355,6.1941333333333,6.1947166666667,6.1952333333333,6.1957666666667,6.1962666666667,6.1967666666667,6.1971666666667,6.1975666666667,6.1979666666667,6.1984333333333,6.1989166666667,6.1994333333333,6.2000666666667,6.2001333333333,6.1995,6.1994,6.2000666666667,6.2007,6.2003666666667,6.2001833333333,6.20085,6.2006666666667,6.2001166666667,6.2005,6.20105,6.2007666666667,6.2001333333333,6.2002166666667,6.2009,6.2007833333333,6.2003,6.20085,6.20145,6.2017166666667,6.20135,6.2009,6.2014,6.2020666666667,6.2021833333333,6.2015833333333,6.2017833333333,6.2025833333333,6.2027666666667,6.20215,6.2016666666667,6.2020833333333,6.2027666666667,6.20335,6.2038666666667,6.2044833333333,6.2050333333333,6.20565,6.20615,6.2067166666667,6.2073,6.2078166666667,6.2083333333333,6.2087833333333,6.20935,6.2098,6.2102833333333,6.2106,6.2108833333333,6.2109666666667,6.2111833333333,6.2114666666667,6.2118333333333,6.21235,6.2128833333333,6.2134333333333,6.2139166666667,6.2144166666667,6.2148166666667,6.21525,6.2158,6.21635,6.2169,6.2173833333333,6.2178833333333,6.21845,6.21895,6.2194333333333,6.2198666666667,6.22035,6.22085,6.2213333333333,6.22195,6.2225666666667,6.2232166666667,6.2241333333333,6.2251333333333,6.2262,6.2273166666667,6.2284,6.2292666666667,6.23015,6.2309833333333,6.2318333333333,6.2326333333333,6.2333666666667,6.23405,6.2346333333333,6.2351,6.2354833333333,6.23585,6.2356666666667,6.2357166666667,6.23635,6.2361666666667,6.2359666666667,6.2361666666667,6.2361166666667,6.2357,6.2357666666667,6.2366,6.23665,6.2363,6.2366833333333,6.2375666666667,6.23745,6.2372666666667,6.2376166666667,6.2383333333333,6.2384333333333,6.2380666666667,6.2381666666667,6.2390666666667,6.2392666666667,6.2388333333333,6.2388166666667,6.23965,6.23985,6.2394833333333,6.2390166666667,6.2390333333333,6.2399833333333,6.2403333333333,6.2400333333333,6.2396666666667,6.23995,6.2408166666667,6.24105,6.2406333333333,6.24015,6.2396166666667,6.2390333333333,6.2385166666667,6.238,6.2378,6.2382666666667,6.2387166666667,6.2392666666667,6.2397833333333,6.2403333333333,6.2409666666667,6.2417833333333,6.24255,6.24325,6.2439833333333,6.2445833333333,6.24525,6.2458666666667,6.2464,6.247,6.2475166666667,6.248,6.2485,6.2489833333333,6.2495166666667,6.2500833333333,6.25065,6.2512333333333,6.25175,6.2521333333333,6.2524833333333,6.2529166666667,6.2533,6.2537666666667,6.2542166666667,6.2546,6.2549333333333,6.2553166666667,6.2557333333333,6.2561166666667,6.2565,6.2568333333333,6.25715,6.25745,6.2577833333333,6.2581666666667,6.2585666666667,6.2589166666667,6.2593833333333,6.2598166666667,6.2602666666667,6.2607,6.261,6.2611666666667,6.2613,6.2614833333333,6.2617333333333,6.26195,6.2621833333333,6.2625,6.2628,6.2630833333333,6.2633666666667,6.2636166666667,6.26395,6.2643333333333,6.2646666666667,6.2649666666667,6.2652666666667,6.2655833333333,6.266,6.2663666666667,6.2666666666667,6.2669333333333,6.2672833333333,6.2676,6.2679166666667,6.2682333333333,6.2684833333333,6.2686666666667,6.26895,6.26925,6.2695333333333,6.2697833333333,6.27015,6.2705166666667,6.2709333333333,6.2712833333333,6.2715666666667,6.27185,6.27215,6.27255,6.2729,6.2733,6.2734666666667,6.2739,6.27445,6.2743333333333,6.2737,6.2738,6.2743,6.2749833333333,6.2750166666667,6.2743666666667,6.27435,6.2750666666667,6.2754,6.2748333333333,6.2745,6.2750166666667,6.2757333333333,6.2755666666667,6.2751333333333,6.27565,6.2762833333333,6.2760166666667,6.2753166666667,6.2754833333333,6.2762666666667,6.2767166666667,6.27625,6.2756666666667,6.2755333333333,6.2759666666667,6.2765166666667,6.2769,6.2773666666667,6.2778333333333,6.27825,6.2786,6.2788666666667,6.27915,6.2794333333333,6.2798,6.2803,6.2808,6.28125,6.28175,6.2822333333333,6.2826166666667,6.2830666666667,6.2835333333333,6.2840166666667,6.2844833333333,6.2849666666667,6.28545,6.2859833333333,6.2866333333333,6.2872833333333,6.28795,6.2885333333333,6.28915,6.2897666666667,6.2904333333333,6.2910333333333,6.2916166666667,6.29225,6.2929,6.2936166666667,6.2943333333333,6.29505,6.2957,6.2963833333333,6.2970666666667,6.2977833333333,6.2986166666667,6.2993166666667,6.2999833333333,6.3005666666667,6.3011166666667,6.3016833333333,6.3022,6.3027833333333,6.30335,6.30395,6.3045333333333,6.3051333333333,6.3056666666667,6.3061333333333,6.30665,6.3071333333333,6.30765,6.3082,6.3087,6.3092166666667,6.3098,6.3103333333333,6.3108,6.3112666666667,6.3116833333333,6.3120833333333,6.3125,6.3129,6.3133333333333,6.3137666666667,6.31415,6.3146,6.3150666666667,6.3155666666667,6.31605,6.3166,6.3171333333333,6.31765,6.3182333333333,6.3189166666667,6.3196,6.3201833333333,6.32075,6.3213333333333,6.3219333333333,6.3224833333333,6.3230833333333,6.3236666666667,6.3242333333333,6.3248333333333,6.3254166666667,6.3259666666667,6.3264833333333,6.3269833333333,6.3275,6.32805,6.3286333333333,6.3291833333333,6.3297333333333,6.3303,6.33085,6.3314166666667,6.332,6.3326,6.3332166666667,6.3338,6.33445,6.3351333333333,6.3357666666667,6.33645,6.3371833333333,6.3378666666667,6.3385333333333,6.3391166666667,6.3397833333333,6.34035,6.3409,6.3414166666667,6.3419333333333,6.3424666666667,6.3430666666667,6.3435666666667,6.34385,6.3435333333333,6.3430833333333,6.3434333333333,6.3442333333333,6.3445333333333,6.3441833333333,6.34385,6.3443833333333,6.3451333333333,6.3452666666667,6.3449,6.3444666666667,6.3446333333333,6.3454333333333,6.34565,6.3452166666667,6.3448,6.34495,6.34495,6.34455,6.3442333333333,6.3445666666667,6.3452833333333,6.3460166666667,6.3467333333333,6.3475166666667,6.3482833333333,6.34865,6.3486333333333,6.3483166666667,6.3483333333333,6.3492166666667,6.3500666666667,6.3506166666667,6.3507333333333,6.3505,6.3502833333333,6.35005,6.3502333333333,6.35095,6.3509166666667,6.3507333333333,6.3507166666667,6.35065,6.3505333333333,6.3502666666667,6.3499833333333,6.3504,6.35135,6.3517333333333,6.3516833333333,6.3514833333333,6.3512333333333,6.3512833333333,6.3515833333333,6.3518833333333,6.3520833333333,6.35235,6.3525333333333,6.3527166666667,6.3529666666667,6.3533833333333,6.3538666666667,6.3544,6.3549333333333,6.3554166666667,6.3558666666667,6.3562333333333,6.3566166666667,6.3570833333333,6.35745,6.35795,6.3582833333333,6.3585666666667,6.3588333333333,6.3591,6.3593666666667,6.3598,6.3601,6.3603,6.3606,6.3608,6.3612166666667,6.36175,6.3623,6.3626666666667,6.3625666666667,6.3625,6.3626833333333,6.3632,6.3637333333333,6.3642333333333,6.3647833333333,6.3653166666667,6.3657833333333,6.36625,6.3667833333333,6.3674166666667,6.3679666666667,6.3682166666667,6.3683166666667,6.3685666666667,6.3688666666667,6.3692,6.3695666666667,6.3699333333333,6.3703166666667,6.3707166666667,6.3711,6.3713833333333,6.3716833333333,6.3719833333333,6.3723333333333,6.3728166666667,6.37325,6.3737833333333,6.3743333333333,6.3749,6.37555,6.3762,6.3768333333333,6.3770833333333,6.3768166666667,6.3765666666667,6.3763166666667,6.3766666666667,6.3776666666667,6.3783,6.37835,6.3781,6.3778666666667,6.37835,6.3793333333333,6.3798166666667,6.3797666666667,6.3795,6.3797666666667,6.3807166666667,6.38125,6.3810166666667,6.3807833333333,6.3806833333333,6.38125,6.3814,6.3811166666667,6.3811166666667,6.3819833333333,6.3825333333333,6.38245,6.3821166666667,6.3822166666667,6.3831666666667,6.3834166666667,6.3831666666667,6.3829833333333,6.3834166666667,6.3844,6.3847,6.3844666666667,6.3841666666667,6.3843166666667,6.3852666666667,6.3856,6.3853833333333,6.3851,6.3849166666667,6.38535,6.3862833333333,6.3866333333333,6.38645,6.3861166666667,6.3859666666667,6.3868,6.3874666666667,6.38735,6.38695,6.3864833333333,6.3868166666667,6.3877333333333,6.3879333333333,6.3876833333333,6.3873333333333,6.3877333333333,6.3885166666667,6.3887166666667,6.3884166666667,6.3880833333333,6.38885,6.38915,6.3887833333333,6.38825,6.3877666666667,6.3879166666667,6.3888,6.3890166666667,6.3889833333333,6.3887833333333,6.3883333333333,6.38885,6.3895833333333,6.3897,6.3896833333333,6.3895833333333,6.3893666666667,6.38885,6.3889333333333,6.3898,6.3900333333333,6.3899333333333,6.3897833333333,6.38985,6.38995,6.3899833333333,6.39005,6.3901166666667,6.3902333333333,6.3904,6.3906166666667,6.3908166666667,6.3910333333333,6.39135,6.3916666666667,6.3920333333333,6.3924,6.3927833333333,6.3931333333333,6.3935,6.3937666666667,6.3941,6.3943666666667,6.3946666666667,6.3949833333333,6.3953333333333,6.3957,6.3961,6.3964833333333,6.3969,6.3974166666667,6.3978166666667,6.39815,6.3984666666667,6.3986,6.3987166666667,6.3987333333333,6.39875,6.3989666666667,6.3992,6.3994,6.3997166666667,6.4,6.4001833333333,6.3996666666667,6.39925,6.3989666666667,6.3983166666667,6.3980666666667,6.3982,6.3984166666667,6.3987,6.3990333333333,6.3994166666667,6.3994666666667,6.3988166666667,6.3993166666667,6.3998833333333,6.4001166666667,6.40005,6.39945,6.39945,6.3999833333333,6.40015,6.4003333333333,6.4006333333333,6.4009333333333,6.40125,6.4016,6.4019666666667,6.40235,6.40275,6.40315,6.4036166666667,6.4040166666667,6.4043666666667,6.40475,6.4050333333333,6.4053,6.4055666666667,6.4059,6.4063,6.4066666666667,6.4067666666667,6.4068833333333,6.40705,6.4073,6.4075333333333,6.4077666666667,6.40795,6.4080166666667,6.4079833333333,6.4079,6.40775,6.4076166666667,6.4075166666667,6.4074166666667,6.4073333333333,6.4072,6.4070833333333,6.40695,6.4067166666667,6.4065166666667,6.4063833333333,6.4064666666667,6.4066,6.40655,6.4064,6.4061333333333,6.40595,6.4057666666667,6.4055166666667,6.4052666666667,6.40505,6.4045833333333,6.40425,6.4039833333333,6.4038166666667,6.4037,6.4036666666667,6.4036833333333,6.4037666666667,6.4038166666667,6.4039833333333,6.4041333333333,6.40425,6.40435,6.4046666666667,6.40495,6.4051333333333,6.4054,6.4057666666667,6.4061,6.40615,6.4060833333333,6.4060166666667,6.406,6.4063666666667,6.4067833333333,6.40635,6.4056333333333,6.4052333333333,6.40535,6.4057333333333,6.4051833333333,6.4044833333333,6.40415,6.4046,6.4051333333333,6.40525,6.4046,6.4040833333333,6.4043833333333,6.40485,6.4043666666667,6.4038833333333,6.4042,6.4048,6.4049833333333,6.4043666666667,6.40365,6.4032666666667,6.4036333333333,6.4040333333333,6.40385,6.4031333333333,6.40255,6.4028333333333,6.4034666666667,6.4038833333333,6.4034333333333,6.4027666666667,6.40255,6.4027833333333,6.4031833333333,6.4036333333333,6.4042666666667,6.40475,6.4043166666667,6.4036666666667,6.40355,6.404,6.4046,6.4046666666667,6.4038666666667,6.4031833333333,6.4025,6.4023333333333,6.4026666666667,6.4031833333333,6.4037333333333,6.4042,6.4048833333333,6.4052333333333,6.40495,6.40435,6.4041833333333,6.40465,6.4052666666667,6.4050333333333,6.4043166666667,6.40415,6.4043833333333,6.4048666666667,6.4053333333333,6.4058666666667,6.4058,6.4052333333333,6.4048166666667,6.40495,6.4054,6.40605,6.4063833333333,6.4061166666667,6.4054833333333,6.4052166666667,6.4054833333333,6.4061166666667,6.4060833333333,6.4053666666667,6.4050833333333,6.4054166666667,6.40595,6.4058333333333,6.4051333333333,6.4043666666667,6.4038333333333,6.40385,6.4040333333333,6.40425,6.4046,6.4049666666667,6.40525,6.4054833333333,6.4058166666667,6.4060666666667,6.40625,6.4064666666667,6.4067666666667,6.4071333333333,6.4074666666667,6.4078166666667,6.40805,6.4083833333333,6.4087333333333,6.4090166666667,6.40915,6.4092333333333,6.4092333333333,6.4090833333333,6.4089166666667,6.40895,6.4091833333333,6.4094166666667,6.4096833333333,6.4099833333333,6.41025,6.41045,6.4107666666667,6.4109833333333,6.4111166666667,6.4113833333333,6.4117333333333,6.412,6.4122666666667,6.4125,6.41275,6.4130333333333,6.41335,6.4135666666667,6.4138166666667,6.4140666666667,6.41435,6.4146166666667,6.4149,6.4152166666667,6.4155,6.4158333333333,6.4162833333333,6.4167833333333,6.4174833333333,6.4179666666667,6.4175833333333,6.4172333333333,6.4173833333333,6.41775,6.4181666666667,6.4186333333333,6.4192166666667,6.4197666666667,6.4203333333333,6.42085,6.42135,6.4221,6.42275,6.42325,6.4238833333333,6.4243666666667,6.42485,6.4252833333333,6.4257666666667,6.4263,6.4267166666667,6.4270666666667,6.4274333333333,6.4278166666667,6.4282,6.4286,6.42895,6.4293333333333,6.4297333333333,6.4301,6.43045,6.4308,6.4311166666667,6.4313166666667,6.4315166666667,6.43175,6.4320166666667,6.4323666666667,6.4327333333333,6.4330166666667,6.4332833333333,6.4335,6.4336666666667,6.4340166666667,6.4343333333333,6.4346166666667,6.43485,6.4350666666667,6.4353333333333,6.4355666666667,6.4357833333333,6.43605,6.4365833333333,6.4371166666667,6.4376333333333,6.4380666666667,6.4385,6.4389666666667,6.4392833333333,6.4392333333333,6.4388,6.4382,6.4376166666667,6.437,6.4364166666667,6.4359,6.4353666666667,6.4348333333333,6.4342333333333,6.4336833333333,6.43315,6.4326666666667,6.4321166666667,6.43155,6.43095,6.4303833333333,6.4296666666667,6.4290333333333,6.4283666666667,6.4277333333333,6.4270333333333,6.4263333333333,6.4257,6.4250833333333,6.4245666666667,6.424,6.4235333333333,6.4233,6.4232833333333,6.4234666666667,6.4236666666667,6.4237666666667,6.4237333333333,6.4237,6.4237166666667,6.4237833333333,6.4239166666667,6.42405,6.4241166666667,6.4241833333333,6.4243833333333,6.4245166666667,6.4247166666667,6.4249,6.4251,6.4253666666667,6.4256166666667,6.4258,6.4259333333333,6.42605,6.4261166666667,6.4262,6.4262166666667,6.42625,6.4262666666667,6.42625,6.4262,6.4260833333333,6.4260666666667,6.4260833333333,6.4260833333333,6.4261,6.42605,6.4259333333333,6.4258833333333,6.4259166666667,6.4260166666667,6.4261666666667,6.4263833333333,6.4266,6.42685,6.4272333333333,6.4276666666667,6.4279833333333,6.4281166666667,6.4282833333333,6.42845,6.4289166666667,6.4292833333333,6.42925,6.4286833333333,6.42855,6.4291,6.4297833333333,6.4302666666667,6.4307833333333,6.4313,6.4315666666667,6.4310833333333,6.43055,6.4303,6.4309,6.4313333333333,6.4311333333333,6.4306166666667,6.4305333333333,6.4311833333333,6.4318666666667,6.4319,6.4316666666667,6.4314666666667,6.43135,6.4312666666667,6.43125,6.4312333333333,6.43125,6.4312833333333,6.4313166666667,6.4314,6.43145,6.4315333333333,6.4316333333333,6.4317333333333,6.43185,6.4320166666667,6.43215,6.4322333333333,6.4324,6.4326,6.4327833333333,6.4329333333333,6.4331333333333,6.4333166666667,6.4333833333333,6.4334666666667,6.43355,6.4336833333333,6.43385,6.4339333333333,6.4340166666667,6.43415,6.4342,6.4341833333333,6.4342666666667,6.4344666666667,6.4346333333333,6.4348333333333,6.4350833333333,6.43535,6.4355666666667,6.4358333333333,6.43615,6.4364,6.4366166666667,6.4367,6.4367833333333,6.43695,6.4371,6.4368333333333,6.4364333333333,6.4360333333333,6.436,6.4364333333333,6.4371,6.4373666666667,6.4373833333333,6.437,6.4368,6.4374666666667,6.43815,6.4383833333333,6.43845,6.4385166666667,6.4387333333333,6.43915,6.4393,6.4393333333333,6.4395666666667,6.4400666666667,6.4408,6.4414833333333,6.4415,6.4412666666667,6.4418,6.4427333333333,6.4437,6.4444,6.4443,6.444,6.4445333333333,6.4451666666667,6.4453666666667,6.4451,6.4448666666667,6.4456333333333,6.4465166666667,6.4468,6.44645,6.4464166666667,6.4474166666667,6.44815,6.4481833333333,6.44785,6.4483,6.4492,6.4501333333333,6.4510833333333,6.452,6.4529166666667,6.4538,6.4547,6.4554166666667,6.4559166666667,6.4559166666667,6.4554666666667,6.45565,6.4555166666667,6.4552833333333,6.4554166666667,6.45575,6.4563333333333,6.4569666666667,6.4569666666667,6.45665,6.4575166666667,6.4580666666667,6.4579333333333,6.4575666666667,6.45725,6.45685,6.45705,6.4577833333333,6.4586833333333,6.45945,6.4603666666667,6.4612166666667,6.4620333333333,6.4628,6.4635333333333,6.4641833333333,6.4649,6.4656833333333,6.4664666666667,6.4671833333333,6.4676166666667,6.46725,6.4673,6.4680833333333,6.4686166666667,6.4686666666667,6.4683333333333,6.4680833333333,6.4688,6.46965,6.4704,6.4711333333333,6.4718333333333,6.4726166666667,6.4734,6.4741666666667,6.4748833333333,6.4756,6.4763666666667,6.47715,6.4780333333333,6.4788666666667,6.4795833333333,6.4802,6.4806333333333,6.4809166666667,6.48105,6.48115,6.4812166666667,6.48115,6.48105,6.4809,6.4806333333333,6.4803833333333,6.4802333333333,6.4802166666667,6.4801833333333,6.4804166666667,6.4810166666667,6.4816666666667,6.4822,6.4826833333333,6.4830666666667,6.4834666666667,6.4838833333333,6.4842833333333,6.4846833333333,6.4850833333333,6.48555,6.4860166666667,6.4865166666667,6.4870333333333,6.4875,6.4881333333333,6.4887666666667,6.4893,6.4896333333333,6.4898833333333,6.4900166666667,6.4901,6.4900333333333,6.49015,6.4903333333333,6.4905833333333,6.49095,6.4912,6.4909,6.4905833333333,6.4902333333333,6.4897166666667,6.4894666666667,6.4898833333333,6.4905333333333,6.4911333333333,6.4918166666667,6.4925333333333,6.4931166666667,6.4936333333333,6.49405,6.4945166666667,6.49495,6.4953166666667,6.4956333333333,6.49585,6.4957333333333,6.4956,6.4962833333333,6.49705,6.4973666666667,6.4970666666667,6.49715,6.4978666666667,6.4980666666667,6.4977666666667,6.4973666666667,6.497,6.49695,6.4973333333333,6.4980666666667,6.4987666666667,6.4994333333333,6.5001166666667,6.50075,6.50145,6.5022666666667,6.50275,6.5024,6.5024333333333,6.5032333333333,6.5038166666667,6.5044166666667,6.505,6.5056833333333,6.5063666666667,6.507,6.5075166666667,6.5080166666667,6.5085666666667,6.5091666666667,6.5098,6.5104333333333,6.5110666666667,6.5117,6.5122333333333,6.51275,6.5132333333333,6.5136666666667,6.5141833333333,6.51455,6.5149833333333,6.5153666666667,6.5157666666667,6.51615,6.51645,6.5167166666667,6.5169666666667,6.5172166666667,6.5174166666667,6.5175833333333,6.5176833333333,6.5177666666667,6.5175333333333,6.51685,6.5162333333333,6.5157666666667,6.5152666666667,6.5147166666667,6.5142,6.5136666666667,6.51315,6.5126166666667,6.5120666666667,6.5115,6.5109166666667,6.51025,6.5096833333333,6.5091,6.5084666666667,6.5078,6.5071166666667,6.5064666666667,6.5058333333333,6.5052,6.5046,6.50395,6.50335,6.50285,6.5023833333333,6.50205,6.50165,6.5011666666667,6.5008333333333,6.50045,6.5001333333333,6.4998,6.4994166666667,6.4990333333333,6.4987833333333,6.4984666666667,6.4981333333333,6.49785,6.4975,6.4971833333333,6.4968833333333,6.49655,6.4962666666667,6.4959333333333,6.49565,6.4952833333333,6.4949166666667,6.4945666666667,6.4942666666667,6.4940166666667,6.4937166666667,6.49335,6.4929833333333,6.4926666666667,6.4923666666667,6.4920166666667,6.4917333333333,6.4914,6.4910666666667,6.49075,6.4904,6.4901333333333,6.4898166666667,6.4894,6.4890833333333,6.48865,6.4882333333333,6.48785,6.4874666666667,6.4871,6.48675,6.4864,6.48605,6.4856833333333,6.4853,6.4849,6.48455,6.4841666666667,6.4836833333333,6.4832666666667,6.4828,6.4823333333333,6.4819166666667,6.4816,6.4812333333333,6.4809166666667,6.48055,6.4802333333333,6.4799,6.47985,6.4804333333333,6.4813833333333,6.4824166666667,6.4835,6.4844166666667,6.4849,6.48455,6.4843333333333,6.4850666666667,6.4860833333333,6.48705,6.488,6.4888666666667,6.48895,6.4887166666667,6.4885,6.4882666666667,6.488,6.4876666666667,6.4873666666667,6.48685,6.4863,6.48585,6.4856166666667,6.4856166666667,6.4856333333333,6.4855833333333,6.4855833333333,6.4856166666667,6.4856333333333,6.4856333333333,6.4856166666667,6.4856],"elevGnd":[1980,1980,1880,1740,1880,1880,1820,1880,1740,1820,1860,1880,1940,2000,2000,1980,1920,1920,1880,1760,1940,1840,1780,1860,1900,1900,2040,1980,1920,2000,1880,1800,1800,1760,1800,1780,1820,1780,1620,1540,1680,1840,1900,1920,1980,1960,1980,1920,2020,2040,2020,1920,1800,1700,1560,1740,1760,1940,2100,2120,2120,2060,2080,2080,2060,1960,2100,2140,2060,1820,1860,1920,1940,2040,2100,2180,2240,2120,2240,2200,2120,2120,2220,2040,1860,1680,1460,1340,1260,1180,1300,1400,1440,1500,1520,1640,1480,1380,1660,1820,1660,1520,1560,1780,1740,1720,1460,1260,1240,1440,1420,1520,1620,1740,1740,1660,1740,1720,1660,1600,1760,1760,1760,1820,1800,1800,1860,1880,1860,1940,2000,2060,2060,1980,1900,1960,1720,1500,1020,680,500,460,620,920,1080,1200,1420,1520,1480,1520,1520,1800,1880,1900,1940,1980,1900,1900,1860,1820,1700,1640,1620,1720,1660,1560,1540,1520,1380,1180,1040,920,960,980,960,980,1160,1300,1420,1460,1480,1480,1500,1380,1520,1520,1520,1640,1520,1540,1580,1720,1740,1700,1740,1800,1680,1740,1640,1720,1760,1840,1820,1900,1860,1880,1860,1880,1960,1980,1980,1960,1960,1960,1900,1880,1720,1440,1260,1220,1100,1000,700,620,580,560,500,520,580,600,640,720,920,1100,1180,1280,1340,1420,1420,1520,1540,1580,1580,1580,1480,1380,1360,1360,1280,1100,1140,1180,1340,1520,1520,1540,1600,1520,1540,1400,1160,980,860,800,900,1100,1220,820,440,380,360,320,320,360,340,340,320,320,320,320,300,300,300,380,460,460,460,500,540,540,560,540,540,540,600,580,680,760,860,740,720,800,920,900,960,960,940,940,840,820,920,960,880,660,660,800,900,920,960,960,660,580,720,900,940,860,880,900,900,900,920,900,880,1000,960,900,820,820,900,880,840,880,960,960,980,960,1020,1080,1080,1060,1040,1040,1080,1220,1320,1360,1340,1300,1300,1300,1360,1340,1040,1020,1020,1100,1140,1280,1300,1440,1340,1360,1200,1380,1340,1300,1360,1240,1220,1280,1300,1140,1160,1240,1260,1320,1340,1340,1340,1360,1340,1340,1260,1160,1300,1420,1440,1420,1440,1420,1440,1520,1460,1480,1580,1520,1380,1560,1560,1400,1560,1720,1720,1760,1680,1440,1120,1000,1180,1460,1680,1740,1680,1640,1700,1600,1440,1280,1280,1340,1400,1540,1700,1640,1640,1480,1360,1140,1040,920,880,940,1100,1340,1540,1860,1840,1820,1840,1840,1840,1840,1820,1820,1780,1680,1580,1540,1620,1900,1760,1920,1920,1820,1720,1800,1880,1920,1860,1360,1040,900,840,740,640,580,540,460,420,380,360,360,340,340,340,340,320,320,340,340,400,440,480,460,500,820,1020,1140,1180,1180,1180,1280,1280,1300,1180,1060,1060,980,860,800,820,920,1100,1160,1240,1380,1440,1500,1420,1480,1360,1320,1500,1580,1640,1600,1680,1660,1620,1640,1580,1460,1340,1140,1140,1280,1380,1420,1240,1180,1080,1020,960,900,940,1060,1280,1120,1020,960,1060,1080,920,1040,1160,1080,1040,1040,1120,1320,1500,1460,1560,1720,1780,1780,1860,1920,1960,1920,1940,1920,1760,1760,1560,1680,1720,1900,1880,1820,1760,1800,1700,2000,2120,2120,2100,2160,1960,1960,1960,1960,1700,1560,1740,1720,1720,1700,1740,1720,1760,1720,1660,1560,1640,1760,1820,1840,1800,1800,1840,1760,1600,1480,1240,1220,1180,1100,920,820,820,860,880,900,1080,1240,1400,1520,1460,1520,1580,1640,1700,1700,1720,1740,1700,1740,1780,1660,1540,1480,1480,1280,1120,800,460,500,840,1200,1200,1280,1340,1420,1420,1460,1560,1600,1640,1620,1660,1680,1700,1700,1740,1760,1800,1800,1860,1880,1920,1840,1900,1920,1940,1860,1760,1780,1840,1840,1840,1760,1780,1840,1800,1760,1720,1680,1680,1720,1780,1800,1860,1860,1840,1820,1820,1800,1780,1780,1760,1860,1880,1640,1540,1540,1400,1280,1180,1160,1260,1400,1560,1840,1960,1860,1880,1980,1960,1760,1620,1580,1660,1720,1680,1640,1640,1600,1560,1540,1520,1440,1480,1460,1460,1400,1340,1240,1240,1320,1320,1420,1420,1400,1460,1480,1500,1460,1460,1560,1540,1620,1620,1640,1640,1580,1600,1660,1620,1600,1640,1700,1680,1480,1500,1560,1480,1440,1400,1400,1340,1420,1300,1340,1400,1420,1400,1460,1400,1320,1240,1180,1240,1240,1260,1220,1180,1200,1160,1180,1140,1080,1080,1080,1080,1100,1080,1080,1080,1080],"speed":[0,1,4,23,28,27,30,25,28,29,28,30,29,28,26,29,31,28,32,38,41,44,40,44,44,39,38,36,35,29,27,29,30,29,30,32,30,30,34,37,41,34,32,35,33,36,34,30,33,32,31,33,34,34,34,32,31,31,32,31,32,35,33,29,27,29,34,34,35,41,41,43,37,31,35,33,28,28,28,35,37,30,34,37,40,42,45,44,44,43,38,36,41,36,30,33,36,35,41,40,41,46,45,44,43,43,39,36,40,37,36,44,41,33,30,27,27,24,20,23,25,28,30,25,26,28,27,25,28,26,27,30,29,28,31,32,37,42,49,52,50,50,50,50,50,47,44,41,32,30,35,37,35,33,35,33,38,38,36,36,40,51,47,37,39,33,32,30,39,50,55,53,53,52,50,51,50,46,37,29,31,31,32,30,30,29,27,29,34,35,35,31,30,33,31,29,35,32,32,33,30,31,37,33,32,32,30,29,28,32,30,28,30,32,30,34,39,41,41,41,44,43,37,34,33,40,49,47,46,47,45,44,43,43,32,29,32,30,28,27,29,29,31,33,33,36,33,32,41,46,46,42,37,38,30,28,31,28,30,35,44,43,44,43,43,42,46,50,49,48,46,43,37,36,37,40,41,40,39,41,42,41,37,39,40,32,32,29,29,31,28,28,30,37,43,48,47,33,39,49,40,27,31,40,49,48,49,45,46,53,54,48,46,47,46,36,29,31,30,35,45,42,28,33,38,39,34,34,34,38,37,34,32,30,28,28,33,45,48,51,47,43,40,37,39,39,33,30,28,27,31,30,38,48,41,35,33,31,38,35,32,31,33,40,40,38,35,33,30,32,36,36,40,43,34,36,39,38,38,40,40,37,32,35,36,40,47,52,50,44,44,38,36,39,41,44,44,46,45,40,40,37,30,29,31,32,31,36,35,40,45,38,31,42,47,46,46,47,34,39,42,34,30,31,34,42,46,47,39,46,55,48,41,38,36,35,35,35,37,38,39,39,38,37,36,35,31,30,27,32,30,29,31,38,38,44,49,49,44,37,32,30,30,32,27,31,36,37,41,44,41,36,40,42,42,42,43,44,43,41,40,40,39,38,35,33,30,29,30,31,31,31,30,31,33,37,37,33,33,27,30,32,24,29,31,36,31,30,31,27,36,38,38,39,26,23,24,29,30,31,31,31,32,30,30,26,28,26,30,28,29,36,41,44,47,53,45,32,38,34,27,29,32,34,34,31,31,34,38,44,43,43,44,41,27,24,28,25,27,25,25,27,31,37,39,37,34,35,31,29,30,29,31,29,31,33,34,30,33,41,44,48,53,47,38,27,30,27,28,29,28,27,36,44,42,40,38,37,39,35,32,36,38,39,40,37,32,30,32,32,33,33,36,36,38,42,43,42,40,36,36,37,37,38,41,39,36,35,37,38,35,30,29,28,34,37,27,21,25,32,41,47,44,39,39,54,57,51,48,44,36,26,27,26,28,30,29,27,31,29,29,28,28,22,21,19,25,27,23,23,20,27,28,23,23,21,26,26,26,30,30,28,25,22,19,21,28,30,28,27,31,33,29,28,28,28,30,27,31,30,31,28,30,32,28,32,35,36,35,32,30,34,33,28,26,26,28,26,27,33,31,27,31,30,23,24,25,27,26,24,26,28,29,28,26,26,23,27,30,28,21,22,20,18,25,25,23,31,31,32,33,40,32,29,26,33,39,34,32,39,39,34,30,35,38,40,41,38,32,40,34,28,25,36,35,33,32,32,29,26,32,38,36,35,27,20,18,19,18,18,18,18,17,19,23,35,37,27,16,2],"vario":[0,-0.1,-0.1,-0.1,0.3,0.6,-0.3,-0.2,-0.4,0.2,-0.1,0.1,0.8,1.2,0.5,0.3,0.9,0.9,0.5,0.2,-1.1,-0.6,-0.6,-1.2,-0.8,-0.7,-0.4,0.1,-0.4,-0.3,-0.5,-0.5,0.3,2,2.2,1.9,0.9,0.2,-0.4,-1,-1.2,-0.2,-0.3,-0.9,-0.1,-0.2,0.4,1.2,1.1,1.2,1.7,0.2,-0.4,-0.6,-0.5,-0.7,-0.6,-0.7,0.3,0.5,-0,-0.3,0.7,1.3,0.7,-0.2,-0.1,-0.1,0.5,-1.1,-1.3,-1.1,-0.3,0.5,0.3,0.9,1.8,1.5,1.1,0.5,1,2.6,1.4,-0.2,-1,-0.9,-1.3,-1.5,-1.6,-1.8,-1.4,-2,-1.4,1.2,2.1,1.5,1.6,1.1,1.1,1.1,1.3,-0.5,-1.6,-0.9,-0.6,-1.4,-0.8,-0.6,-1.2,-1,-1.1,-1.2,-1.6,-1.5,-1.1,-0.6,-1.1,-0.3,-0.9,-0.3,-0.3,1.2,1.3,1.1,1.7,1.2,0.7,-0.4,-0.2,0.5,1,1.9,1.7,2.2,2.4,1.3,-0.2,-0.5,-1.9,-1.8,-1.7,-1.5,-1.7,-1.7,-1.9,-1.7,-1.3,-0.2,1.4,2,0.9,0.4,0.5,-0.3,0.1,1.3,0.4,0,0.7,1,-0.1,-1.3,-1.3,-0.1,0.2,1.1,2.2,1.6,-0.4,-1.1,-1.9,-1.4,-1.5,-1.9,-2.7,-3,-2.2,-1.6,-0.4,-0,0.6,0.3,0.2,0.5,1.1,1.6,1.3,1,-0.3,-0.3,0.1,0.6,-0.4,-0.7,0.9,1.1,0.6,0.3,-0.1,0.6,1.2,1,-0.6,0.1,0,0.5,1.1,0.2,-0.2,-0.2,1.2,1.1,0.7,0.6,0.9,1,0,-1.6,-1.9,-1.7,-1.1,-1,-1.4,-1.2,-1.1,-1.5,-1.6,-1.6,-1.9,-1.6,-1.6,-1.9,-1.2,-0.9,0.2,1,1.2,2.6,2.7,1.8,1.7,2.5,2.5,1.2,0.6,1.2,1.8,1.1,-0.6,-0.9,-1.1,-1.2,-1,-0.4,1.1,1.6,1.2,1.7,0.8,-1.2,-1,-0.8,-0.9,-1,-1,-1.5,-2.4,-2.6,-2.1,-2.1,-2,-1.3,-1,-1,-0.7,-0.8,-1.1,-1.3,-1.7,-1.7,-1.2,-0.7,-0.6,-1.7,-2.1,-0.4,1,1.6,1.2,1.5,1.6,1.7,1.2,0,-1.1,-2,-1.1,0.9,1.2,-0.2,0.5,2,2,0.3,-0.8,-1.1,-0.6,-0.7,-1.8,-1.3,-1.1,-0.2,-0.4,-1.1,-1.5,-0.1,1.3,1.2,0.9,0.3,-1.3,-1.7,0,0.2,-0.3,0,0.3,0.6,1.2,-1,-0.1,0.1,1.8,2.5,3.2,2.7,1.8,-0.8,-1.2,-0.6,-0.7,-1.3,-0.4,0.9,-0.3,-1,-1,0.5,1.6,2,2.3,1.6,0.4,-0.2,-0.2,0.4,0.7,0.7,-0.8,-0.1,-0.5,0.7,0.5,-1.7,-1.2,-0.8,0.5,-0.2,1.3,1.6,1.1,-0.5,-0.3,0.4,2.2,1.8,1.6,2.1,2,0.4,-0.3,0.4,-0.6,-0.5,0.5,0.7,-1.3,-1.1,-0.3,0.9,1.9,2.6,0,0.7,-1,-1,-1.4,-0.4,1.3,-0.2,-1.6,-0.4,2.1,2.5,1.5,3.4,2.5,2.2,1,-0.1,-0.4,0.5,1.2,0.2,-1.2,-1.4,-1.6,-0.9,-1.8,-1.5,-1.1,1.3,2.6,3.4,2.6,2.6,-0.4,-1.4,-1.6,-1.5,-1.2,-1.7,-1.2,-0.5,0.2,-0.5,-1,-1.5,-1.2,-1.1,-1.2,-0.8,-0.8,-1.3,-1.7,1.3,2.4,2.4,1.7,1.9,2.4,2.6,2,-0.2,-1.4,-1.2,-0.6,-1.6,-1.3,0.2,3.3,4.3,3.7,-0.1,-0.6,-0.4,-0.6,-1,-0.4,-0.2,-1.4,-0.7,-1,-1.1,-1,-1.3,-1.4,-1.5,-1.2,-1.2,-1.2,-0.9,-0.8,-1.2,-1.3,-1.2,-1,-1.2,-1.5,-1.4,-1.1,-0.8,-0.6,-1.1,-0.7,-1,-1.2,-0.9,-0.5,-1.3,-0.5,0.2,0.7,1.8,1.3,1.4,1.4,1.2,0.9,-0.2,-1.6,-2.2,-2.2,-1.1,0.5,1.4,1.4,1.1,0.8,1,0.5,-0.4,-0.2,0.5,0.9,1.2,1,1.4,1.2,1,0.7,-0.1,-0.9,-2.2,-2.7,-2.1,0.9,1.4,0.7,1,1.8,1.4,1.1,0.7,0.8,0.9,1.1,0.4,-1.1,-1,-0.7,-1.1,-0.8,-0.9,0.3,1.5,2.1,1.8,1.3,0.1,0.3,1,0.9,1,-0.5,-1.1,-0.3,-0.7,-1.2,0.1,0.8,2,2.1,1.9,1.6,0.6,0.1,0.4,-0.9,-1.6,-1.5,-1.3,-1.4,-1.5,-0.1,0.6,1.1,1.9,1.6,1.1,0.6,-0.2,-0.6,-1.6,-1.2,-0.3,-1,-1.5,-1,-0.3,-0.1,-0.7,-1,-0.7,-1.4,-0.4,0.6,1.1,1.4,1.6,1.3,0.3,-0.4,-0.4,-1,-1.2,-1.8,-1.9,-1.2,-0.3,-0.6,-0.6,-0.6,-1,-1.3,-0.6,-0.1,0.4,0.3,0.2,0.4,0.6,0.6,0.5,0.1,0.2,0.6,0.3,0.6,0.4,-0.6,-0.6,-1,-1.1,-2.5,-2.1,-2.1,-3.1,-1.9,0.1,0.6,0.6,0.8,0.7,0.8,1,1.2,1.2,1.3,1.2,1.6,1.9,1.7,1,0.2,-0.3,-0.1,0.1,0.4,0,0.2,-0.2,-0.1,0.9,0.7,0.3,0.2,-0.3,-0.6,-1,-0.7,-0.6,-0.6,0,0.4,0.6,0.2,1,1.2,1.4,1.2,1.2,1.1,1.6,0.9,1,1.2,1.3,0.9,1.1,0.7,-0.6,-0.8,-0.7,-0.9,-1.7,-2,-2.3,-1.3,0.4,0.5,-0.1,-0.6,-0.6,-0.8,-0.8,-0.5,-0.3,0.2,-0.9,-2.1,-1.8,-1.7,-1.7,-0.9,-0.9,-0.7,-0.7,-0.7,-0.6,-0.6,-0.5,-0.1,0,0.1,0,-0.3,-0.3,-0.6,-0.4,-0.3,-0.1,0.4,0.7,0.6,0.6,0.4,0.1,0.8,0.9,0.7,0.2,0.2,0.1,0.5,-0,-0.3,0.5,0.5,0.1,-0.3,-0.3,-0.3,-0.6,-1.1,-1.1,-1.3,-0.9,-0.5,-0.9,-0.4,0.3,0.3,-0.1,0.2,0.3,-0.1,-0.5,-0.4,-0.2,-1.3,-0.7,-0.7,-0.8,-0.2,-0.2,-0.2,-0.2,-0.1,-0.2,-0.2,-0.1,-0.4,-0.7,-1.1,-0.4,-0.7,-1,-0.8,-0.5],"nbTrackPt":4954,"nbChartPt":800,"nbChartLbl":5,"date":{"day":16,"month":4,"year":2011},"pilot":"Tom"}