Skip to content

Instantly share code, notes, and snippets.

@alanmclean
Created June 24, 2013 19:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alanmclean/5852612 to your computer and use it in GitHub Desktop.
Save alanmclean/5852612 to your computer and use it in GitHub Desktop.
run pace viz experiment #10
<html>
<body>
<link rel="stylesheet" type="text/css" href="normalize.css">
<style type="text/css">
.avgPaceLabel,
.avgPaceLabel2,
.runTimeLabel,
.runTimeLabel2{
font-family:arial,sans-serif;
font-size:11px;
fill:#666;
/*font-weight:bold;*/
}
.avgPaceLabel2,.runTimeLabel2{
font-weight:bold;
font-size:13px;
fill:rgb(60,146,186);
}
.paceBar{
stroke:rgba(0,0,0,.2);
stroke-width:1px;
shape-rendering:crispEdges;
stroke-dashArray: 2,4;
display:none;
}
.paceLabel{
font-family:arial,sans-serif;
font-size:11px;
fill:#aaa;
}
.mileMarkerText{
/*font-weight:bold;*/
font-family:arial,sans-serif;
font-size:11px;
fill:#777;
/*font-weight:bold;*/
}
.mileMarker{
stroke:rgba(0,0,0,.3);
stroke-width:1px;
shape-rendering:crispEdges;
stroke-dashArray: 2,4;
}
.block{
/*fill:#fff;*/
}
.positionCircle{
fill:#999;
}
#container{
width:1000px;
margin: 20px auto;
position:relative;
/*height:500px;*/
}
.paceline{
stroke:rgba(0,0,100,0);
stroke-width:1.5px;
/*fill:none;*/
/*opacity:0;*/
/*stroke:#000;*/
}
.avg{
stroke: rgb(163,210,225);
opacity:.9;
/*stroke-dashArray: 2,4;*/
shape-rendering:crispEdges;
/*fill:none;*/
stroke-width:1px;
fill:none;
}
.goal{
stroke:#f9a7a8;
opacity:1;
/*stroke-dashArray: 2,4;*/
shape-rendering:crispEdges;
/*fill:none;*/
stroke-width:1px;
fill:none;
}
.area.above {
fill: rgb(163,210,225);
fill-opacity:.7;
}
.area.below {
fill: #f9a7a8;
fill-opacity:.8;
}
.elevationGraph{
fill: #ccc;
fill-opacity:.3;
}
.paceline-above{
stroke:#900;
}
.hed{
font-size:25px;
text-align:center;
margin-left:-85px;
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-weight: 300;
}
#faster{
font-size: 11px;
color: #999;
width: 50px;
height: 38px;
position: absolute;
z-index: 100;
background: url(arrowbottom.gif) no-repeat 20px top;
left: 53px;
top: 269px;
padding-top: 21px;
text-align: center;
text-transform:uppercase;
display:none;
}
#slower{
font-size: 11px;
color: #999;
width: 50px;
height: 38px;
position: absolute;
z-index: 100;
background: url(arrowtop.gif) no-repeat 20px bottom;
left: 53px;
top: 210px;
padding-top: 21px;
text-align: center;
text-transform:uppercase;
display:none;
}
.boxRight{
height:40px;
width:4px;
border:1px solid #ddd;
border-right:none;
position:absolute;
}
.boxLeft{
height:50px;
width:10px;
border:1px solid #ddd;
border-left:none;
position:absolute;
}
.altitude{
fill:#999;
fill-opacity:.7;
}
</style>
<div id="container">
<h3 class="hed">Race Pace Analysis</h3>
<div id="chart"></div>
<div id="faster">Faster</div>
<div id="slower">Slower</div>
</div>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script type="text/javascript" src="streams.js"></script>
<script>
// fastestPaceDataMetersPerSec = d3.max(paceData, function(d){ return d.y })
// slowestPaceDataMetersPerSec = d3.min(paceData, function(d){ return d.y })
var margin = {top: 20, right: 156, bottom: 150, left: 100 },
width = 900 - margin.left - margin.right,
height = 400 - margin.top - margin.bottom;
var chart = d3.select("#container").append("svg")
.attr('xml:space', "preserve")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
var x = d3.scale.linear().range([0, width]).domain(d3.extent(desiredStream, function(d){ return d.x }))
var y = d3.scale.linear().range([height, 40]).domain(d3.extent(desiredStream, function(d){ return d.y }))
var xDistance = d3.scale.linear().range([0, width]).domain(d3.extent(distanceStream, function(d){ return d }))
var avg = d3.mean(desiredStream, function(d){ return d.y });
var goal = 480;
var altX = d3.scale.linear().range([0, width]).domain(d3.extent(elevationStream, function(d){ return d.x }))
var altY = d3.scale.linear().range([height, 70]).domain(d3.extent(elevationStream, function(d){ return d.y }))
// chart.append('text')
chart.selectAll('.mileMarker')
.data([1,2,3,4,5,6,7,8]).enter()
.append('line')
.attr('class', 'mileMarker')
.style('opacity',0)
.attr('x1', function(d){ return xDistance(d) })
.attr('x2', function(d){ return xDistance(d) })
.attr('y1', 0)
.attr('y2', height)
.attr('clip-path', 'url(#clip-above)')
.transition()
.delay(function(d, i) { return i / 8 * 700; })
.style('opacity',1)
chart.selectAll('.mileMarkerText')
.data([1,2,3,4,5,6,7,8]).enter()
.append('text')
.attr('class', 'mileMarkerText')
.style('opacity',0)
.attr('x', function(d){ return xDistance(d) })
.attr('dx', -3)
.attr('dy', -6)
.attr('y', 0)
.text(function(d){ if(d !== 1){ return d+'mi.' }else{ return d+'mile'} })
.transition()
.delay(function(d, i) { return i / 8 * 700; })
.style('opacity',1)
var desiredPaces = [8,10,12,14],
maxln = d3.max(desiredPaces),
paddingDesiredPaces = desiredPaces.map(function(d){ return (" " + d).slice((-2)) })
chart.selectAll('.avgPaceLabel')
.data([avg])
.enter()
.append('text')
.attr('class','avgPaceLabel')
.attr('text-anchor','start')
.attr('x',width+11)
.attr('dy',-16)
.attr('y',function(d){ return y(d) })
.text('AVG. PACE')
chart.selectAll('.avgPaceLabel2')
.data([avg])
.enter()
.append('text')
.attr('class','avgPaceLabel2')
.attr('text-anchor','start')
.attr('x',width+11)
.attr('y',function(d){ return y(d) })
.attr('dy',1)
.text('9:07min/mile')
chart.selectAll('.runTimeLabel')
.data([goal])
.enter()
.append('text')
.attr('class','avgPaceLabel')
.attr('text-anchor','end')
.attr('x',0)
.attr('dx',-10)
.attr('y',function(d){ return y(d) })
.attr('dy',19)
.text('GOAL PACE')
chart.selectAll('.runTimeLabel2')
.data([goal])
.enter()
.append('text')
.attr('class','avgPaceLabel2')
.attr('text-anchor','end')
.attr('x',0)
.attr('dx',-10)
.attr('y',function(d){ return y(d) })
.attr('dy',5)
.text('8:15min/mi')
// chart.selectAll('.paceLabel')
// .data(desiredPaces).enter()
// .append('text')
// .attr('class', 'paceLabel')
// .style('opacity',0)
// .attr('x', 0)
// .attr('dx',-10)
// .attr('text-anchor','end')
// .attr('y', function(d){ return y(d * 60) })
// .text(function(d,i){ return (paddingDesiredPaces[i])+' min/mi' })
// .transition()
// .delay(function(d, i) { return i / 8 * 700; })
// .style('opacity',1)
chart.selectAll('.paceBar')
.data(desiredPaces).enter()
.append('line')
.attr('class', 'paceBar')
// .style('opacity',0)
.attr('x1', 0)
.attr('x2', width)
.attr('y1', function(d){ return y(d * 60) })
.attr('y2', function(d){ return y(d * 60) })
// .text(function(d,i){ return (paddingDesiredPaces[i])+' min/mi' })
// .transition()
// .delay(function(d, i) { return i / 8 * 700; })
// .style('opacity',1)
// initalT = chart.transition().duration(700);
var line = d3.svg.area()
.interpolate("basis")
.x(function(d) { return x(d.x); })
.y(function(d) { return y(d.y); });
var area = d3.svg.area()
.interpolate("basis")
.x(function(d) { return x(d.x); })
.y1(function(d) { return y(goal); });
var altLine = d3.svg.area()
.interpolate("basis")
.x(function(d) { return altX(d.x); })
.y(function(d) { return altY(d.y); });
var altArea = d3.svg.area()
.interpolate("basis")
.x(function(d) { return altX(d.x); })
.y0(function(d) { return y(goal); })
.y1(function(d) { return altY(d.y); });
// var tempArea = d3.svg.area()
// .interpolate("basis")
// .x(function(d) { return x(d.x); })
// .y0(function(d) { return y(goal); });
var meanData = desiredStream.map(function(d){ return { x: d.x, y: goal }; })
var startData = desiredStream.map(function(d){ return { x: paceData[0].x, y: goal }; })
// startData[startData.length-1].x = paceData[startData.length-1].x
// chart.datum(meanData)
var t0 = chart.transition().duration(600)
var pline = chart.append("path")
.datum(startData)
.attr("class", "paceline animateMe")
.attr("d", line)
.style('opacity',0)
var avgLine = d3.select('svg').append("svg:line")
.attr("x1", margin.left)
.attr("x2", 0)
.attr('class', 'avg animateMe')
.attr("y1", y(avg)+margin.top + 1)
.attr("y2", y(avg)+margin.top + 1)
.style('opacity',0)
.transition()
.duration(600)
.style('opacity',1)
.attr('x2',width + margin.left)
var avgLine = d3.select('svg').append("svg:line")
.attr("x1", margin.left)
.attr("x2", 0)
.attr('class', 'goal animateMe')
.attr("y1", y(goal)+margin.top)
.attr("y2", y(goal)+margin.top)
.style('opacity',0)
.transition()
.duration(600)
.style('opacity',1)
.attr('x2',width + margin.left)
// var l = pline.node().getTotalLength();
// pline.attr("stroke-dasharray", l + " " + l);
// t0.selectAll('.startPaceline').attr("stroke-dashoffset", 0);
pline.datum(meanData);
var t1 = chart.transition().duration(900).delay(200)
t1.selectAll('.paceline').attr('d',line).style('opacity',1)
var altGraph = chart.append("path")
.datum(elevationStream)
.attr("id", "elevationGraph")
.attr("class", "elevationGraph")
.attr("d", altArea);
var c1_clip = chart.append("clipPath")
.datum(meanData)
.attr("id", "clip-above")
.append("path")
.attr("d", area.y0(0));
var c1_clip2 = chart.append("path")
.datum(meanData)
.attr("id", "area-above")
.attr("class", "area above")
.attr("clip-path", "url(#clip-above)")
.attr("d", area.y0(function(d) { return y(d.y); }));
var c3 = chart.append("path")
.datum(meanData)
.attr("class", "area below")
.attr("clip-path", "url(#clip-below)")
.attr("d", area);
var c4 = chart.append("clipPath")
.datum(meanData)
.attr("id", "clip-below")
.append("path")
.attr("d", area.y1(height))
pline.datum(desiredStream);
c1_clip.datum(desiredStream);
c1_clip2.datum(desiredStream);
var t2 = t1.transition()
t2.selectAll('.paceline').attr('d',line);
t2.selectAll('#clip-above').attr("d", area.y0(0));
t2.selectAll('#area-above').attr("d", area.y0(function(d) { return y(d.y); }));
c3.datum(desiredStream);
c4.datum(desiredStream);
t2.selectAll('#clip-below').attr("d", area.y1(height - margin.top - margin.bottom));
t2.selectAll('.area.below').attr("d", area);
d3.select('#container').append('div')
.attr('class','boxRight')
.attr('style','left:'+(margin.left + width + 3)+'px; top: '+(margin.top+y(avg) + 21)+'px;')
// pline.datum(paceData)
// .transition()
// .duration(1000)
// .attr('d',line)
// pline
// .attr("d", line)
// chart.datum(paceData)
// pline.datum(paceData)
// pline.attr('d', line)
// d3.select('.area.below').transition().attr('d',area)
// d3.select('#clip-below').attr('d',area.y1(height - margin.top - margin.bottom))
// chart.append("path")
// .attr("class", "area below")
// .attr("clip-path", "url(#clip-below)")
// .attr("d", area);
// var pline = chart.append('svg:path').attr([0,0]).enter()
// var line = "M"+paceData[0].x + " " + paceData[0].y
// var avgLine = chart.append("svg:line")
// .attr("x1", 0)
// .attr("x2", 0)
// .attr('class', 'avg animateMe')
// .attr("y1", y(avg))
// .attr("y2", y(avg))
// avgLine.attr('x2', width)
// pline.attr("stroke-dashoffset", 0);
// var gradient = chart.append("svg:defs")
// .append("svg:linearGradient")
// .attr("id", "gradient")
// .attr("x1", "0%")
// .attr("y1", "0%")
// .attr("x2", "100%")
// .attr("y2", "0%")
// .attr("spreadMethod", "pad");
// gradient.append("svg:stop")
// .attr("offset", "10")
// .attr("stop-color", "rgb(255,255,255)")
// .attr("stop-opacity", .7);
// gradient.append("svg:stop")
// .attr("offset", "100%")
// .attr("stop-color", "rgba(255,255,255,1)")
// .attr("stop-opacity", 1);
// var circle = chart.append("circle")
// .attr('class','positionCircle')
// .attr("r", 5)
// .attr("transform", "translate(" + x(paceData[0].x) + "," + y(paceData[0].y) + ")");
// // circle.transition()
// // .duration(4000)
// // .each("end", function(d,i){ if(d.y !== paceData[paceData.length-1].y) { transition() })
// var block= chart.append('svg:rect').style('fill','url(#gradient)').attr('class','block').attr('x',0).attr('y',0).attr('height',height).attr('width',width);
// transition()
// // block.transition().ease('linear').duration(4000).attr('x',width)
// function transition() {
// circle.transition()
// .duration(10010)
// .ease('linear')
// .delay(function(d){ return d })
// .attrTween("transform", translateAlong(pline.node()))
// block.transition()
// .duration(10000)
// .ease('linear')
// .attrTween("transform", translateAlong2(pline.node()))
// // .each("end", function(d,i){ console.log('d'); })
// }
// // Returns an attrTween for translating along the specified path element.
// function translateAlong(path) {
// var pl = path.getTotalLength();
// return function(d, i, a) {
// return function(t) {
// if(t >= 0.5) {
// circle.remove()
// // return "translate(" + p.x + "," + p.y + ")";
// }else{
// var p = path.getPointAtLength(t * pl);
// return "translate(" + p.x + "," + p.y + ")";
// }
// };
// };
// }
// function translateAlong2(path) {
// var pl = path.getTotalLength();
// return function(d, i, a) {
// return function(t) {
// if(t >= 0.5) {
// block.remove()
// }else{
// var p = path.getPointAtLength(t * pl);
// return "translate(" + (p.x) + ",0)";
// }
// };
// };
// }
// var transitionMe = function(transition){
// if(this.attr('class','avg') === true){
// transition
// .duration(4000)
// .ease("linear")
// .attr('x2', width);
// }else{
// transition
// .duration(4000)
// .ease("linear")
// .attr("stroke-dashoffset", 0);
// }
// };
// d3.selectAll('.animateMe').transition().call(transitionMe);
// var pline2 = chart.append("path")
// // .attr("class", "paceline-above")
// .attr("d", line)
// .attr("clip-path", "url(#clip-below)")
// fastestPaceDataMetersPerSec = d3.max([fast.y, fastestPaceDataMetersPerSec])
// slowestPaceDataMetersPerSec = d3.min([slow.y, slowestPaceDataMetersPerSec])
</script>
</body>
</html>
// meters p/sec for pacestream
// want => sec/mi
var paceStream = [561.943588963423,561.9435889634232,561.9435889634232,561.9435889634232,560.0930522284436,560.347218499981,560.4519596333381,555.520288006085,551.4705027966908,548.0787451460783,543.9952091185278,541.0275298897726,538.530065112643,534.7017979276644,531.2303675182394,525.3669461091662,520.0628952398735,515.9403501213193,511.82060557413877,508.0415763261489,504.16671975451794,499.23033932219096,492.97366707071194,489.08467589950357,484.71771834699393,481.4485409826237,479.3157805888685,478.8137598201351,479.0699081827772,479.16996846082094,478.8829964218932,478.52035404935674,477.5540122444954,476.14015549819595,474.0681503745882,471.85858838926026,469.44306704256064,467.4486678284441,464.3793670891854,462.86475263281795,461.84982443687346,459.5730450649209,458.0312726244881,455.98670468121736,454.52584179543055,453.66480611948697,453.3612617140982,453.40859127521867,453.049401700638,452.39542588078086,450.9067195997772,450.1064699948746,449.83936176286284,450.7420482875042,452.11624823807176,453.1855481432558,452.9742328032924,452.3361127893327,451.1922745716847,449.885203191652,448.80351207608555,448.7840026281841,449.2183397636546,449.0811295081777,447.97223173650303,446.28956382195577,444.7608548751514,444.65021770912307,450.42787193749444,465.49737483957756,486.64163644643753,514.5398980394798,551.477119606465,588.9381042100672,650.5527455858773,711.0722252433667,764.1034914206903,806.6443896930263,862.9977416485286,904.7947590843795,927.6385608022401,929.9953139572417,914.294748856702,885.0380807248746,826.5428716253188,763.5522597522677,694.9551928259575,656.8444446376113,618.082990365998,585.1055983949564,546.1731833051541,514.3993775901909,485.3933945345249,474.49008871968834,468.7920940440255,466.309706746314,466.7394145266149,470.5561686680733,473.14766571700005,475.22669089609076,477.2338621780801,478.3658456438517,480.3717611321928,482.55441827937346,484.4988656593748,482.8253809884936,478.8999541912154,473.5301796992074,468.42568729449397,464.3396089734344,462.20242187000974,461.1443998729842,461.2536444089881,461.1414783192702,461.8045886081965,463.71199321392646,466.3374106540178,465.70558696697293,464.1019487132678,463.5636970486064,469.6665743296931,478.63878711686544,487.86601124722364,497.6893477422018,508.9022824384451,520.0761024247582,524.7060296140903,527.2600134333015,526.4082601543716,529.5556138748549,533.2624378489479,533.4743599543133,527.9461427910837,525.3068958867929,528.3319320500667,537.8837612016791,553.8771267015566,569.4786533986612,585.5741335769718,600.7147943277581,610.4939633446522,610.203342880996,600.3677616407105,592.2409242259577,584.8193147558535,569.0721327494684,552.1309080889646,533.6013986659586,518.8609216524942,503.2062395429451,489.2705376601637,485.59554700030577,486.2939525712911,488.2106506086608,486.2856933061885,482.03161613165963,477.77316152278337,471.92349093772776,464.24610729131876,456.4133563444975,450.7843900455244,449.13095000741663,445.67271630142517,443.64081492026105,442.9622784335654,442.7978177651773,443.68948292270244,443.8056891300282,443.61839745715736,444.01429159441216,446.32190793455607,449.1826464542795,450.20694698039637,450.9722248990273,452.933476346787,454.03614732356385,454.83247855438964,456.59245501065175,458.58040911337145,460.13186799363245,460.17109028832294,458.5113468908362,455.8136859722968,452.04717459059646,449.45205442701,450.06451606656515,452.1364772562543,456.43544046781216,461.3726531229347,467.0505457835766,471.18024434318284,474.37830912026743,475.90947972245385,477.36535275535743,479.08472961986973,481.79642463977035,483.01756675824004,483.65922057082315,483.1614014109459,483.9007150860666,486.4886354964563,491.6438834074967,498.7573195759121,507.20895901326895,518.8341115529536,532.1413228686907,543.9271978298557,555.9602538191489,571.3532314502703,589.9294900794738,610.0320953833901,632.6165974522673,647.6370515162439,658.0486863913438,662.7410138940961,661.9557331202367,651.4988683339499,636.4309826869022,618.8147374223281,597.4406644988525,572.7809702598514,545.3223724103894,522.5363695037689,490.4173500293615,463.7365866360162,445.0438590068677,432.66630846312046,428.41006772014947,428.00299575518,429.14527615020154,430.97178413888327,433.0183135769337,434.0723965185758,435.3497420631058,436.5121963526259,438.2300487989116,441.17604461465385,443.4661458359345,445.79369215462765,448.3429247099993,451.17860647618573,452.2834150620941,453.95092086328117,454.4570053024729,454.62867976277835,454.7504144195612,454.37623363108827,454.2245312577837,453.93917805750493,453.34416035732784,452.5525423595197,450.6998458119992,449.70164079956487,449.34832394669274,449.7321075461514,450.564431389846,452.3995013027158,454.21299391899214,457.1002825623702,461.01780144818576,466.3020414812572,472.09732243467107,479.25633207122405,485.0031577807291,490.0319990313164,494.6463307918097,496.2262859660153,494.900473794732,494.6853053219278,493.24428197782566,490.9598910295714,485.00083910610067,480.38210693574393,477.01876463603554,473.8891523990948,471.82257226435775,469.86812283679205,465.83109198148117,465.24959294366363,466.70113629375004,465.4425011417634,467.9195603828918,471.81607902436,479.2331083845243,490.18077545584845,499.1308143282499,505.24045601205336,509.6749929344724,511.5582730174758,511.4521740773305,509.6630653117932,507.3445417833829,506.75639366895376,504.3847117157461,499.09916422599184,492.139072213773,486.5268462086239,483.50636487274704,479.1390136655177,476.4109797832999,474.9399603516041,474.82929079124926,474.3953491511971,472.97387279784704,471.73023026005745,470.71661805848055,470.00859584604274,468.6979980872605,467.2218811716535,465.12152480577885,460.4548630234866,459.53370826959735,458.96064430843165,458.1090059920719,458.16377810255636,459.0960294816718,461.17895482185776,464.8997864734913,469.3078267581618,473.44219691026456,476.634705181085,478.08670445719184,478.92493192369,479.23620872919753,479.3930113728346,477.8028225434884,474.78668113492597,471.29436060612727,469.41241947107704,466.77514129520404,465.01529907971053,463.51104248472535,461.24186115682596,461.27283247950623,467.94149148089707,470.3969635633211,472.8446237127797,475.0529830203877,476.5661251072495,475.84395420865866,475.27108459715464,475.2034266372453,475.38345845419695,475.6641254060586,476.13975433768456,477.90715769164325,481.15299850991204,486.00288552924883,492.86184445211615,498.19063736669443,501.7102209234455,503.30914677953893,504.04052371872916,503.78917406210405,501.6823699143464,499.21348845146827,497.16015584997933,481.08583508854315,467.5105983271421,463.80513840091317,461.5846827017393,460.7722821335654,465.9986304529774,466.07325251324744,466.6260558573783,467.0460789606322,468.0327272626169,468.3297524998854,468.17971171598003,468.4079560961922,468.0896845851792,467.33447421790373,466.87864585417,466.3458130225312,465.9852256338245,465.70297361886344,465.19925394541883,465.24123386987293,465.50200131286584,466.40364660134543,467.86210424057043,467.9410235931217,466.6853449657897,465.55727791931497,463.38781467064643,460.27865522564196,458.3225536817006,454.5499998271083,450.7964189908031,448.94175560471643,446.3949323827997,445.2741366668158,445.4149548080138,445.6620416621684,445.7132259258632,446.11119894542634,446.1199386957314,446.0102583044441,445.8405464013295,445.78411786448396,445.87600729451054,446.061278813628,447.1715214235781,448.00512505761293,448.650174740226,449.15156781379994,450.2897962911999,451.27753809371984,449.8900761323207,448.6759583359751,447.1240258644817,446.1718982419763,444.2991699149723,442.41137293419314,440.9405613122331,440.46645699269084,441.2042686870744,442.2854162677441,443.3018244650009,444.0348856451135,443.82259730756135,441.56188071013037,439.3497452638121,439.8074620189103,439.49841786701006,439.6638800510779,440.43273760145007,437.47306687571023,435.40457060832375,435.933339771339,441.77165428238385,443.44411759417045,445.0056769905811,449.51565264402547,455.74754005364383,462.20394308945623,467.520406383997,477.1461447727772,483.3479201989261,489.94661398971954,490.75047738239107,496.6119291399631,504.9123635705574,512.8905073340117,520.0124713820026,526.6019403120907,533.8878763620271,539.034804848723,540.5569969227677,545.1747719379333,550.7705654688981,561.3165413196758,562.9453896238508,564.9224907647509,576.8550358391793,590.6920580141814,612.8620505795457,637.5649857548245,649.6920704672546,644.2125669777263,638.1656588180388,631.3800380185028,600.9535292264529,575.6161980046079,568.2865482483428,539.734002648397,512.5011558713813,514.5020101860678,516.1596386616784,527.2415291509216,544.9907000401777,577.0030430160404,614.9125867662146,646.7581492402334,675.2234090682203,699.3385718129119,722.6637004237051,763.2849070914931,794.3329611515502,784.2025478484088,760.0426358646685,715.922958614928,681.7056085546957,648.2854874457311,607.6511954920301,587.7205155090863,565.9778300842131,552.2340840536934,540.4858699476653,541.2891530894626,552.2355972130069,566.168949094541,588.6855301713589,616.4309539054109,649.5764084644402,669.9666023264816,696.8631836843724,714.6714463740987,732.0145344289425,720.8171394602567,693.9884488008041,657.7494970162684,618.5408327684906,577.1619883266567,524.4375256047875,509.85618404665377,500.08803574192325,495.05250615375434,495.8374112642192,491.92846731685404,488.40846404461564,482.8619938142042,485.02941034717895,485.12793036574493,492.86828999941696,537.334338115684,598.4271455367019,730.9048931887271,902.9269350227132,978.4431167050175,951.4950271968095,862.8082942429372,799.2539979595383,756.9610066415296,709.2110596126818,684.8246827352676,649.0069851649052,621.4342094543297,581.0918189283594,552.6841834101963,561.7353374753934,579.2157551822843,604.0599704045871,629.218227917072,647.5961001493932,701.7088220958047,724.8564046706479,748.2875148913071,780.701990452843,815.7065909326798,862.3848297590355,896.2951604140031,928.6192558149806,965.6534852772802,990.0270582334978,991.4614567247814,994.3408142282058,989.5243590674265,975.859737155001,952.1226796075867,920.1205407914933,884.5181785577513,835.5056458325537,784.7972976289767,731.4863500632239,637.3031707371335,610.4875784907364,566.835232780334,581.4084822526845,624.4292401627341,722.7385402996986,832.3986912885416,899.9197290619325,966.4783093280839,1062.9612815620906,1104.6150687321058,1139.5641808693804,1158.4425316003299,1199.865518365392,1194.7249523445998,1182.402924795076,1161.9856548297776,1133.3435445978575,1085.3661082440963,1021.1591415327212,928.6955671813572,862.3977052324922,829.8388310669924,752.350031482164,734.3003543957483,733.7891020660935,777.691352675844,844.0243712780507,885.8169447731381,890.5455685111057,894.6140656185307,905.8586814270046,909.9259096668576,908.0455572032675,903.8571120760209,909.2040271955614,918.4137811097719,924.0273879691579,926.3649689196797,929.5154541973807,942.658343342107,951.3358460603346,961.5093447649879,952.0967042341413,927.7389196948825,888.781365408552,851.5838699732021,807.357008817189,775.6787576371343,763.1624631807904,740.7582159042081,707.9901629689303,680.7561445466146,638.7658849847307,624.398190906631,609.638758427007,607.4717959090998,619.4085302936095,626.8875209819772,624.6508178158417,621.6150564402406,627.0631372163573,627.6949584997778,615.2473147650169,597.6892198477709,579.3678075884706,546.1778143140726,511.037462692751,509.60858294095976,517.8371643357646,540.9291593277985,565.1004906088862,598.416079781169,605.7933082250329,604.1990492597989,605.7305362385517,595.8690994850824,585.9339642009654,585.5265179987384,589.5218112554642,586.4263703751866,578.2855373227139,587.1580742381581,584.0115169449654,582.5514000404917,585.5624544128333,571.6715345002871,560.0307378342799,556.0714702763233,549.7357698864826,537.206071340648,519.2269659990139,512.5457558217347,503.0658350277581,491.24587978614693,488.5049612812873,488.3509465357617,484.09262150084953,478.4144807896332,472.7162319869892,476.9796329242469,484.12990600103103,505.03966688850187,550.9217432286961,624.7180974421332,658.8658435889238,671.7636097409568,665.2383882676,656.2186726364737,648.5596537871581,627.4162184234754,629.6289446597644,636.0862310134337,642.5165781702178,624.6173986309407,634.3992417308181,638.9739894148556,641.9329401148401,639.9839238650484,634.9873276307624,625.9289621269091,611.174852036974,592.9742636540989,583.4925422440346,582.6389370143869,598.0188705786716,612.88660826961,633.6372084368036,656.2683531175959,683.0864422655978,731.8041114585911,766.3721673706024,781.9698823914238,789.9899879088139,791.441473645109,790.8927099187243,788.5765180579265,789.322901970721,790.2619971956346,802.1728878287544,816.3953311156652,830.5670825303223,862.4185868644851,886.3005630291868,901.4193828463135,892.787710699118,875.7756605770549,864.1912831724586,850.1422482184317,832.8929386895184,798.1775275109636,755.3911510216695,727.5892264589864,705.9862936828164,681.6673822930937,656.3616267752462,639.5589292127688,615.7874288942027,606.5512178922487,605.0336286953178,593.9504383747199,592.6895438826342,600.1439365491947];
var distanceStream = [0.0014912908608,0.010749721621600001,0.0225557742696,0.0323734391032,0.040886224433599995,0.0519466316512,0.0613914737696,0.0712091386032,0.08649486992639999,0.1058195139976,0.1169420583344,0.1266975860488,0.13657738800160002,0.146332915716,0.15764187141039998,0.17000715813120001,0.180508331276,0.190760955944,0.202877694188,0.2157400778624,0.23264137428479997,0.24308041031039998,0.2555078341504,0.2656983216992,0.2804869560688,0.2909259920944,0.3058389007024,0.3180177760656,0.33864729964,0.34964556973840005,0.36797601990240003,0.3784771930472,0.3957513121848,0.406376759568,0.41737502966640005,0.42855971112240004,0.443659031088,0.45906903664959997,0.47671597850240005,0.48777638572,0.49852610734159997,0.5108913940624,0.5243130118096,0.5404065256824,0.551777618496,0.5628380257136,0.5804228304472,0.591234689188,0.6020465479288,0.6131690922656,0.6293868803768,0.6405094247136,0.6515698319312,0.668906088188,0.6800286325248001,0.6905298056696,0.7010931159336,0.7123399345088001,0.7243945356336,0.7361384511624001,0.74719885838,0.7606826132464001,0.7739799567551999,0.7890171396016,0.7998911354616,0.8119457365864,0.8236896521152,0.84195796516,0.8592942214168,0.8745178156208001,0.8791780995608001,0.8841490690968,0.8898656840632,0.8942774195264,0.9013610511151999,0.9063941577704,0.9110544417104001,0.9158389998888,0.9245381965768,0.9335480788608,0.9399482021384,0.9452298572704,0.9502629639256,0.9561659902496,0.9778518448504,0.9912113254784001,1.0043222576296,1.0166875443504,1.027747951568,1.0388083587856,1.0504901371952,1.0614884072936,1.0766498643784,1.0877724087151999,1.0990192272904,1.1097068117928,1.122196372752,1.1366121844064,1.1450628326176,1.1558125542392,1.1662515902648,1.1766906262904,1.1932190999976,1.207324226056,1.2214293521144,1.2355344781728002,1.2512551693304,1.2671622718456,1.2849334879368,1.3072407137296,1.3218429367416,1.3370043938263998,1.3514202054808,1.3622942013408001,1.3745352138231999,1.3843528786568,1.4003221182912,1.4113203883896002,1.4221322471303999,1.4340625740168,1.4446258842808,1.4546920975911999,1.462397100372,1.4649447222592,1.472960410636,1.4843936405688,1.4946462652368,1.507135826196,1.5181962334136,1.5318663996376,1.5411248303984,1.5561620132448,1.5669117348664,1.5761701656272,1.5868577501296002,1.5959297695328,1.6017085216184,1.6048153775784,1.6091649759223998,1.6128932030743999,1.6254449011528,1.6391150673768,1.65129394274,1.6628514469112,1.6737254427712,1.6942306921072,1.7038619455832,1.7138038846552,1.722130258628,1.7327557060112,1.7499055509103998,1.7595989415056001,1.7704729373656,1.7824654013712,1.7940850426616002,1.8053939983560001,1.816267994216,1.8306216687512,1.8452860288823998,1.8553522421928001,1.8662262380528,1.8795857186808,1.8904597145408,1.9004016536128001,1.912580528976,1.9247594043392,1.9410393295696,1.9529075193368,1.9639057894351999,1.9743448254608,1.985591644036,1.9988889875448002,2.009514434928,2.0198291967152,2.0323808947936,2.0434413020112,2.0545017092288003,2.0725214737968,2.0833954696568,2.0938345056823997,2.1047085015424,2.1203049184616,2.137206214884,2.1528026318032,2.166721346504,2.178527399152,2.1905820002768,2.1991569227264,2.2118328950432,2.2246331415984,2.234450806432,2.244392745504,2.2560745239136,2.2665135599392,2.2778846527528,2.2914926818576,2.304355065532,2.3140484561272,2.323617572484,2.3331245517216,2.343190765032,2.3536298010576,2.3620183121496003,2.3710903315528,2.3787953343336,2.3868110227104,2.396318001948,2.4042094160864,2.4119765559863997,2.421483535224,2.4275729729056,2.4368935407856003,2.442920841348,2.4465869313808,2.454726893996,2.4654144784984,2.475232143332,2.4871624702184,2.4990306599856003,2.5113959467063998,2.5236369591888,2.535505148956,2.5468762417696,2.5698669758736,2.5835992792168,2.59577815458,2.607273521632,2.6186446144456,2.630264255736,2.6412625258344,2.65325498984,2.675935038348,2.6874925425192004,2.7005413375512,2.7118502932456003,2.7230349747016,2.745839297448,2.7568375675464,2.7674630149296,2.777839913836,2.7884653612192003,2.8019491160856003,2.8150600482368,2.8261825925736,2.8374294111487997,2.848365544128,2.8596744998224,2.873220391808,2.8839701134296,2.8950305206472002,2.9060287907456,2.9217494819032,2.9329963004784,2.9441809819344,2.9553656633904,2.97015429776,2.998737372592,3.0097356426904,3.0199882673584,3.0297437950728,3.0390022258336002,3.0490063020247997,3.0586375555007996,3.0688280430496,3.0784592965256,3.0938693020872003,3.1061103145696003,3.1167357619527998,3.1274233464552004,3.1389808506264,3.149730572248,3.1730941290672003,3.183905987808,3.1945314351912004,3.204411237144,3.2150366845272003,3.2257242690296,3.2437440335976,3.2614531125696002,3.2933915918384,3.3230309976968,3.3334078966032004,3.3437226583904,3.3550316140847998,3.36472500468,3.3725542816992005,3.384298197228,3.3941158620616,3.4048655836832,3.4154288939472,3.425619381496,3.4359962804024,3.45327039954,3.4679347596712002,3.4785602070543997,3.4892477915568,3.4997489647016002,3.5104986863232,3.521310545064,3.5316874439704,3.54336922238,3.5536839841672,3.568845441252,3.5805272196616,3.590904118568,3.6084889233016,3.6189279593272,3.6295534067104,3.6408002252856,3.6519227696224,3.6841719344872,3.695294478824,3.7059820633264,3.7171046076632,3.7290349345496003,3.7399710675287996,3.7505343777927997,3.7657579719967997,3.7753270883536003,3.7855175759024,3.7957080634512,3.8061470994768,3.816151175668,3.8264659374552004,3.839763280964,3.8518178820888,3.8638724832136,3.879841722848,3.8907778558272,3.9002848350647996,3.9104131854944,3.9212871813544,3.9337767423136003,3.9648453019136003,3.9867797049912004,3.9974672894936,4.007284954327201,4.0179104017104,4.028660123332,4.0412118214104,4.051029486244,4.0614063851504,4.072156106772,4.0835271995856,4.094214784088,4.103846037564,4.114098662232,4.12279785892,4.131807741204,4.1415011317992,4.1500139171296,4.1561654919304,4.1682200930552,4.1806475168952,4.197051716364,4.2079878493432,4.222900757951201,4.2596859325176,4.2785756167544,4.2892632012568,4.299826511520799,4.310700507380799,4.3518352802912,4.3646355268464,4.3748881515144,4.3855135988976,4.3963254576384,4.4073237277368,4.4165821584976,4.4342912374696,4.4445438621376,4.4585868510768,4.470392903724799,4.4802727056776,4.497236139219201,4.5082965464367994,4.5190462680584,4.530106675276,4.5483128512016,4.5585033387504,4.5754046351727995,4.5867135908672,4.5975875867272,4.6086479939448,4.6492235327824,4.659662568808,4.6712200729792,4.6828397142696,4.6942729442024,4.7061411339696,4.7167665813527995,4.732052312676,4.7459088902576,4.7574663944288,4.770328778103201,4.7813270482016,4.7925117296576,4.8033857255176,4.8147568183312,4.8291726299856,4.840792271276,4.8868980137224,4.89795842094,4.908521731204,4.9193335899448,4.9326930705728,4.9508371093792,4.9732064722912,4.9848261135816,4.9962593435144,5.0076925734472,5.0190636662607995,5.0306833075512,5.0441049252984,5.055538155231201,5.066971385164,5.0776589696664,5.0890921995992,5.0991584129096,5.112828579133599,5.1242618090664,5.135322216284,5.1525963354216,5.1904999781336,5.198391392272,5.211253775946401,5.222314183164,5.2343066471696,5.2480389505128,5.266431537796,5.284575576602401,5.295698120939201,5.3064478425608,5.3168868785864,5.328382245638401,5.3352794658696,5.344537896630401,5.357897377258401,5.3680878648072,5.384616338514401,5.3948068260632,5.4055565476847995,5.4156227609952,5.4246326432792005,5.4336425255632,5.4447650699,5.454707008972,5.46340620566,5.4711733455600005,5.4803075020824,5.4937912569488,5.5117488843975995,5.5226850173768,5.5400212736336,5.5487826074408,5.5577924897247994,5.5692257196576,5.583206571477599,5.593148510549599,5.6032768609792,5.6155178734616,5.6348425175328,5.650128248856,5.6612507931928,5.6713791436224,5.700459315408,5.722269444247201,5.7322113833192,5.7410969913648,5.7516603016287995,5.761167280866401,5.774837447090401,5.780616199176,5.7850279346392,5.790371726890401,5.7957776562608,5.8018670939424,5.8109391133456,5.8325628308272,5.846481545528,5.855491427812,5.867359617579201,5.8774879680088,5.8874920442,5.9069409625096,5.9199276204224,5.93564831158,5.9452174279368,5.9560914237968,5.9712528808815994,5.980573448761599,5.99467857482,5.99933885876,6.0033156343888,6.012698339388,6.0203412050496,6.0274869737576,6.0333278629624,6.0516583131264,6.0750218699456,6.0920474406064,6.102610750870401,6.1116827702736,6.123116000206401,6.1530039545415995,6.163505127686401,6.1733849296392,6.183016183115201,6.1923988881144005,6.2025272385440005,6.2108536125168,6.2238402704296,6.2460853591032,6.25565447546,6.2701324242336,6.28516960708,6.301138846714401,6.3062340904887995,6.3159896182032,6.3279199450896,6.3374269243272,6.3489844284984,6.3596098758816,6.3722858481984,6.3888764590248,6.398756260977599,6.4088846114072,6.4223683662735995,6.434920064352,6.442687204252,6.4490251904104,6.4555495879264,6.4640002361376,6.4739421752096,6.4807151212024,6.4957523040488,6.501406781896,6.50730980822,6.513274971663201,6.5181216669608,6.5247703387152,6.52905779994,6.534028769476,6.538689053416,6.543349337356,6.5481960326536,6.5549689786464,6.559194302752,6.5625497071888,6.569384790300799,6.581252980068,6.5928104842392,6.6011368582120005,6.6119487169528,6.621331421952,6.6479261089696,6.658613693472,6.678808257212,6.688750196284,6.692664834793599,6.6942803998928,6.700866934528,6.704719435918401,6.7088204857855995,6.7112438334344,6.713480769725599,6.7185760135,6.723049886082401,6.738584165882401,6.7427473528688,6.7470348140936,6.753062114656,6.75896514098,6.7643089332312005,6.7676022005488,6.7754314775680005,6.791090031606401,6.8188653238888,6.829117948556799,6.8306092394175995,6.832908312828,6.8457706965024006,6.860745742229599,6.8660273973615995,6.87236538352,6.8821830483536,6.8880239375584,6.8918143018296,6.903744628716,6.9072243073912,6.910890397424,6.920832336496,6.926424677224,6.9311470982832,6.9353724223888,6.941648271428,6.9484212174208,6.9623399321215995,6.9730896537432,6.979241228544,6.9940920000328,7.0076378920184,7.0181390651632,7.0260926164208,7.0318713685064,7.0406948394328,7.0493318990016,7.059398112312,7.087981187144,7.0956240528056,7.101029982176,7.1071815569767995,7.113022446181599,7.116750673333599,7.123710030684,7.129923742604,7.1394928589608,7.166646780051201,7.19081811942,7.200946469849599,7.2090242953456,7.217847766272,7.233817005906401,7.253079512858401,7.2656312109367995,7.2743304076248,7.284645169412,7.2965754962984,7.3112398564296,7.3244129257,7.3356597442752,7.3451667235128,7.35082120136,7.3596446722864,7.3782236709272,7.389470489502401,7.405315454898401,7.418115701453599,7.432220827512,7.449805632245599,7.4622330560856,7.475716810952,7.497091979956799,7.5059775880024,7.5159195270744,7.528719773629599,7.5407122376352005,7.5705380548512,7.5817227363072,7.5929074177632,7.6029736310736,7.612729158788,7.6208691214032,7.6300654150447995,7.6460346546792,7.6892199525232,7.718859358381599,7.7284906118576,7.735884929042401,7.740545212982401,7.747256021856,7.7598698570536,7.7875830122168,7.800072573176,7.810200923605599,7.8182787491016,7.8254245178096,7.8300226646304,7.8427607740664005,7.854442552476,7.857922231151201,7.8644466286672,7.875569173004,7.8883072824400005,7.9002997464456,7.9116708392592,7.922669109357599,7.929442055350401,7.938203389157599,7.9438578670048,7.9537376689576,7.9631203739568,7.966910738228,7.9693340858768,7.9730001759096,7.9789032022335995,7.9878509473984005,8.000837605311201,8.0126436579592,8.0237040651768,8.0333353186528,8.0361314890168,8.0383062881888,8.0425316122944,8.0491181469296,8.050485163552,8.0622912162,8.07316521206,8.0845984419928,8.0971501400712,8.1006919558656,8.102183246726401,8.1139271622552,8.1310148700352,8.1403975750344,8.1469841096696,8.155931854834401,8.1646310515224,8.1734545224488,8.1799167828456,8.187621785626401,8.1975015875792,8.209369777346401,8.2223564352592,8.232857608404,8.240065514231201,8.2433587815488,8.2450364837672];
var timeStream = [0,5,11,16,23,29,34,39,47,57,63,68,73,79,85,91,96,101,107,113,121,126,132,137,144,149,156,162,172,177,186,191,199,204,209,214,221,228,236,241,246,252,258,265,270,275,283,288,293,298,305,310,315,323,328,333,338,343,348,353,358,364,370,377,382,387,392,400,408,416,421,426,432,437,444,449,454,459,468,477,483,488,493,498,508,514,520,526,531,536,542,547,554,559,564,569,575,582,587,592,597,602,610,617,624,630,637,644,652,662,670,677,683,688,694,699,706,711,716,721,726,731,736,741,746,752,757,763,768,774,779,786,793,798,803,809,814,819,824,829,835,840,845,850,855,865,870,875,880,886,894,899,904,909,914,919,924,930,936,941,946,951,956,961,967,972,979,984,989,994,999,1005,1010,1015,1021,1026,1031,1039,1044,1049,1054,1061,1068,1075,1081,1086,1092,1097,1103,1110,1115,1120,1125,1130,1135,1141,1147,1152,1157,1162,1167,1172,1177,1183,1188,1193,1198,1203,1208,1213,1218,1226,1232,1237,1242,1247,1252,1257,1262,1267,1272,1277,1282,1292,1298,1303,1308,1313,1318,1323,1328,1338,1343,1349,1354,1359,1369,1374,1379,1384,1389,1395,1401,1406,1411,1416,1421,1427,1432,1437,1442,1449,1454,1459,1464,1471,1484,1489,1494,1499,1504,1509,1514,1519,1524,1532,1538,1543,1548,1553,1558,1569,1574,1579,1584,1589,1594,1602,1610,1625,1639,1644,1650,1655,1660,1665,1672,1677,1682,1687,1692,1697,1705,1712,1717,1722,1727,1732,1737,1742,1748,1753,1760,1765,1770,1778,1783,1788,1793,1798,1813,1818,1823,1828,1833,1838,1843,1851,1856,1861,1866,1871,1876,1881,1887,1892,1897,1904,1909,1914,1919,1924,1930,1945,1955,1960,1965,1970,1975,1981,1986,1991,1996,2001,2006,2011,2016,2021,2026,2031,2036,2041,2046,2051,2058,2063,2070,2087,2096,2101,2106,2111,2130,2136,2141,2146,2151,2156,2161,2169,2174,2180,2185,2190,2198,2203,2208,2213,2222,2227,2235,2240,2245,2250,2268,2273,2278,2283,2288,2293,2298,2305,2311,2316,2322,2327,2332,2337,2342,2348,2353,2374,2379,2384,2389,2395,2403,2413,2418,2423,2428,2433,2438,2444,2449,2454,2459,2464,2469,2475,2480,2485,2492,2507,2513,2518,2523,2528,2534,2542,2550,2555,2560,2565,2570,2575,2580,2587,2592,2600,2605,2610,2615,2620,2627,2633,2638,2643,2648,2653,2660,2670,2676,2686,2691,2696,2709,2720,2725,2730,2736,2746,2754,2760,2765,2780,2791,2796,2801,2807,2812,2822,2828,2833,2839,2845,2851,2860,2872,2880,2887,2895,2900,2905,2915,2922,2930,2935,2940,2947,2952,2965,2970,2975,2982,2987,2993,2998,3010,3024,3033,3038,3043,3048,3061,3066,3071,3076,3081,3086,3091,3097,3107,3112,3119,3126,3136,3160,3173,3179,3184,3191,3196,3202,3210,3215,3220,3227,3236,3242,3247,3252,3257,3263,3268,3281,3286,3291,3297,3303,3311,3316,3321,3326,3331,3336,3343,3348,3354,3359,3364,3370,3375,3380,3385,3398,3404,3416,3424,3429,3440,3450,3455,3460,3465,3470,3475,3480,3494,3499,3504,3509,3514,3519,3524,3532,3540,3551,3563,3568,3573,3586,3599,3604,3609,3614,3619,3625,3634,3639,3645,3651,3656,3661,3666,3674,3681,3694,3704,3709,3718,3725,3738,3743,3748,3753,3758,3764,3775,3780,3785,3790,3795,3800,3806,3813,3820,3831,3841,3846,3851,3857,3866,3873,3881,3892,3897,3907,3914,3920,3925,3930,3935,3941,3948,3955,3970,3978,3983,3990,3998,4006,4019,4024,4029,4034,4040,4053,4058,4063,4068,4073,4078,4083,4091,4110,4124,4129,4139,4153,4158,4164,4177,4183,4188,4193,4198,4203,4211,4222,4227,4232,4237,4242,4247,4252,4258,4263,4268,4274,4279,4284,4289,4294,4300,4309,4317,4323,4328,4333,4338,4343,4348,4358,4364,4373,4380,4385,4390,4398,4403,4413,4423,4432,4437,4442,4447,4452,4457,4462,4467,4472,4477,4482,4487,4493,4500,4505];
var paceData = [{"x":2.4,"y":2.863888888888889},{"x":17.3,"y":2.863888888888888},{"x":36.3,"y":2.863888888888888},{"x":52.1,"y":2.863888888888888},{"x":65.8,"y":2.873351123017133},{"x":83.6,"y":2.87204780800522},{"x":98.8,"y":2.8715110598731175},{"x":114.6,"y":2.897003107467182},{"x":139.2,"y":2.9182775732394974},{"x":170.3,"y":2.9363371867043613},{"x":188.2,"y":2.958378996062155},{"x":203.89999999999998,"y":2.974606488033197},{"x":219.80000000000004,"y":2.988401400167082},{"x":235.49999999999997,"y":3.0097972493303784},{"x":253.69999999999996,"y":3.029465367601442},{"x":273.6,"y":3.063276082618806},{"x":290.5,"y":3.094518019541462},{"x":307,"y":3.1192443084481907},{"x":326.5,"y":3.144351718331852},{"x":347.2,"y":3.167740743292114},{"x":374.4,"y":3.1920869378254326},{"x":391.2,"y":3.223650234878977},{"x":411.20000000000005,"y":3.264563825848021},{"x":427.59999999999997,"y":3.2905222345289302},{"x":451.4,"y":3.320167470054425},{"x":468.2,"y":3.342712384858543},{"x":492.2,"y":3.357586096242263},{"x":511.8,"y":3.3611064168649567},{"x":545,"y":3.3593093056487424},{"x":562.7,"y":3.358607814642873},{"x":592.2,"y":3.360620470217884},{"x":609.1,"y":3.363167286398641},{"x":636.9,"y":3.3699727347086954},{"x":654,"y":3.379979575406321},{"x":671.7,"y":3.3947524197587584},{"x":689.7,"y":3.4106489533407878},{"x":714,"y":3.4281984623894464},{"x":738.8,"y":3.442825087278522},{"x":767.2,"y":3.465580330802279},{"x":785,"y":3.4769206154942522},{"x":802.3,"y":3.4845612479704653},{"x":822.2,"y":3.5018241776720185},{"x":843.8,"y":3.513611617375513},{"x":869.7,"y":3.5293660628543826},{"x":888.0000000000001,"y":3.5407095760663334},{"x":905.8,"y":3.5474296857641203},{"x":934.1,"y":3.5498048389268595},{"x":951.5000000000001,"y":3.5494342885925194},{"x":968.9,"y":3.5522483741808366},{"x":986.8000000000001,"y":3.5573834494047256},{"x":1012.9,"y":3.5691284486581587},{"x":1030.8,"y":3.5754740442478377},{"x":1048.6,"y":3.577597110016961},{"x":1076.5,"y":3.570432371972046},{"x":1094.4,"y":3.55958010110545},{"x":1111.3,"y":3.5511812042734534},{"x":1128.3,"y":3.5528378527296103},{"x":1146.4,"y":3.557849915388504},{"x":1165.8,"y":3.566869583798696},{"x":1184.7,"y":3.5772325677693124},{"x":1202.5,"y":3.585854293274471},{"x":1224.2,"y":3.5860101768111097},{"x":1245.6,"y":3.58254295998113},{"x":1269.8,"y":3.5836375542593046},{"x":1287.3,"y":3.592508389138966},{"x":1306.7,"y":3.6060534036075493},{"x":1325.6,"y":3.618447943370489},{"x":1355,"y":3.619348279882047},{"x":1382.9,"y":3.572922771613076},{"x":1407.4,"y":3.457256877483603},{"x":1414.9,"y":3.30704132175469},{"x":1422.9,"y":3.1277341305245288},{"x":1432.1,"y":2.9182425587540655},{"x":1439.2,"y":2.7326199291745237},{"x":1450.6,"y":2.473810173785898},{"x":1458.7,"y":2.2632637634860355},{"x":1466.2,"y":2.106185901104122},{"x":1473.9,"y":1.9951096433301152},{"x":1487.9,"y":1.8648299096825753},{"x":1502.4,"y":1.7786840434877096},{"x":1512.7,"y":1.7348826025762663},{"x":1521.2,"y":1.7304861395126176},{"x":1529.3,"y":1.7602026071210934},{"x":1538.8,"y":1.818389553697608},{"x":1573.7,"y":1.9470786765725396},{"x":1595.2,"y":2.10770642095518},{"x":1616.3,"y":2.3157521768712526},{"x":1636.2,"y":2.4501143516599058},{"x":1653.9999999999998,"y":2.603766849596878},{"x":1671.8000000000002,"y":2.750518889290061},{"x":1690.6,"y":2.946581871478539},{"x":1708.3,"y":3.128588545643258},{"x":1732.6999999999998,"y":3.315545738231556},{"x":1750.5999999999997,"y":3.391733650237391},{"x":1768.7,"y":3.4329589194470387},{"x":1785.8999999999999,"y":3.45123418477373},{"x":1805.9999999999998,"y":3.448056775421358},{"x":1829.2000000000003,"y":3.4200890515791134},{"x":1842.8,"y":3.401356737491073},{"x":1860.1,"y":3.3864764573305046},{"x":1876.9,"y":3.3722334648880476},{"x":1893.7,"y":3.364253562978795},{"x":1920.3,"y":3.3502052594049534},{"x":1943,"y":3.3350518400661855},{"x":1965.6999999999998,"y":3.3216672208808338},{"x":1988.4000000000003,"y":3.333180201338763},{"x":2013.6999999999998,"y":3.3605014711947807},{"x":2039.3,"y":3.3986091480736635},{"x":2067.9,"y":3.4356442105253624},{"x":2103.8,"y":3.4658770639287964},{"x":2127.3,"y":3.481903002808812},{"x":2151.7,"y":3.489891671801639},{"x":2174.9,"y":3.489065116605791},{"x":2192.4,"y":3.4899137819488586},{"x":2212.1,"y":3.4849025763580905},{"x":2227.9,"y":3.4705679908353066},{"x":2253.6,"y":3.4510291558158666},{"x":2271.3,"y":3.455711173868361},{"x":2288.7,"y":3.467651892168588},{"x":2307.9,"y":3.471678241546914},{"x":2324.9,"y":3.4265670340955037},{"x":2341.1,"y":3.362335113517976},{"x":2353.5,"y":3.298741792855017},{"x":2357.6,"y":3.233631597532838},{"x":2370.5,"y":3.1623831453523734},{"x":2388.9,"y":3.0944394351354054},{"x":2405.4,"y":3.067134566374869},{"x":2425.5,"y":3.0522777370036125},{"x":2443.3,"y":3.0572164656814933},{"x":2465.3,"y":3.0390462464156105},{"x":2480.2,"y":3.017921170496084},{"x":2504.4,"y":3.01672230461557},{"x":2521.7,"y":3.048310935859103},{"x":2536.6,"y":3.0636262596513038},{"x":2553.8,"y":3.0460850518158433},{"x":2568.4,"y":2.991992167637256},{"x":2577.7,"y":2.9055975107667678},{"x":2582.7,"y":2.825995304670494},{"x":2589.7,"y":2.7483181177830307},{"x":2595.7,"y":2.679048386706808},{"x":2615.9,"y":2.6361341753450604},{"x":2637.9,"y":2.637389682292435},{"x":2657.5,"y":2.680596966460372},{"x":2676.1,"y":2.7173806043850477},{"x":2693.6,"y":2.7518653368802473},{"x":2726.6,"y":2.8280140741370636},{"x":2742.1,"y":2.9147870134366385},{"x":2758.1,"y":3.016004089641006},{"x":2771.5,"y":3.1016866629484694},{"x":2788.6,"y":3.198179740530316},{"x":2816.2,"y":3.2892722466205524},{"x":2831.8,"y":3.3141654830983835},{"x":2849.3,"y":3.309405745445212},{"x":2868.6,"y":3.2964131335690747},{"x":2887.3,"y":3.309461953677862},{"x":2905.5,"y":3.3386689726491388},{"x":2923,"y":3.3684269653935934},{"x":2946.1,"y":3.4101798946623143},{"x":2969.7,"y":3.466575110353728},{"x":2985.9,"y":3.526066838850287},{"x":3003.4,"y":3.5700970045838667},{"x":3024.9,"y":3.5832400340883135},{"x":3042.4,"y":3.6110444766967342},{"x":3058.4,"y":3.627583275682044},{"x":3078,"y":3.633140063993188},{"x":3097.6,"y":3.6344894578232827},{"x":3123.8,"y":3.6271853685003053},{"x":3142.9,"y":3.6262356252562125},{"x":3160.6,"y":3.627766589121488},{"x":3177.4,"y":3.62453198259834},{"x":3195.5,"y":3.6057920796723906},{"x":3216.9,"y":3.582827638864497},{"x":3234,"y":3.574676071546201},{"x":3250.5999999999995,"y":3.5686100202180393},{"x":3270.7999999999997,"y":3.5531575488637612},{"x":3288.6000000000004,"y":3.5445283599145045},{"x":3306.4000000000005,"y":3.538322517621714},{"x":3335.4,"y":3.5246837370038193},{"x":3352.9,"y":3.5094041712907664},{"x":3369.6999999999994,"y":3.497571267193697},{"x":3387.2000000000003,"y":3.4972731546572122},{"x":3412.3,"y":3.5099327672644263},{"x":3439.4999999999995,"y":3.530705746980366},{"x":3464.6,"y":3.5601240115530413},{"x":3487,"y":3.580680040869734},{"x":3506.0000000000005,"y":3.5758073413116356},{"x":3525.4,"y":3.55942084208918},{"x":3539.2000000000003,"y":3.525896234011178},{"x":3559.5999999999995,"y":3.4881651301206955},{"x":3580.2,"y":3.445759811531053},{"x":3596,"y":3.415559162201484},{"x":3611.9999999999995,"y":3.3925328575819873},{"x":3630.7999999999997,"y":3.381617868913322},{"x":3647.6000000000004,"y":3.371304581125427},{"x":3665.9,"y":3.3592053787471534},{"x":3687.8,"y":3.3402987616978828},{"x":3708.5,"y":3.3318539766902537},{"x":3724.1000000000004,"y":3.327433722271057},{"x":3739.4999999999995,"y":3.3308621009770767},{"x":3754.8,"y":3.325773139906301},{"x":3770.9999999999995,"y":3.3080813881137723},{"x":3787.8,"y":3.2733937203908936},{"x":3801.3000000000006,"y":3.2267075338024105},{"x":3815.9,"y":3.1729408008595343},{"x":3828.3,"y":3.101846938701983},{"x":3841.2,"y":3.0242793247834427},{"x":3856.5,"y":2.9587489043305877},{"x":3869.2,"y":2.8947105293217663},{"x":3881.6999999999994,"y":2.816723371861715},{"x":3897,"y":2.728027718020819},{"x":3906.8,"y":2.6381300472449065},{"x":3921.8000000000006,"y":2.543948431160347},{"x":3931.5,"y":2.484947389663556},{"x":3937.4,"y":2.4456305952681587},{"x":3950.4999999999995,"y":2.4283150836834433},{"x":3967.7,"y":2.4311958037266113},{"x":3983.5,"y":2.4702176455504805},{"x":4002.7,"y":2.528701531500428},{"x":4021.8,"y":2.6006879010645614},{"x":4041.7,"y":2.6937302668619796},{"x":4061.4,"y":2.809702284425733},{"x":4080.5,"y":2.951179122729187},{"x":4098.8,"y":3.079869832109522},{"x":4135.8,"y":3.2815804753203373},{"x":4157.9,"y":3.47038393560665},{"x":4177.5,"y":3.6161469662922765},{"x":4196,"y":3.7195963012032616},{"x":4214.3,"y":3.7565503751559004},{"x":4233,"y":3.7601232154347946},{"x":4250.7,"y":3.7501146815639634},{"x":4270,"y":3.734221264230308},{"x":4306.5,"y":3.716572602485928},{"x":4325.1,"y":3.7075474356863913},{"x":4346.1,"y":3.6966692411211097},{"x":4364.3,"y":3.6868248219910496},{"x":4382.3,"y":3.6723725473082833},{"x":4419,"y":3.6478499235387476},{"x":4436.7,"y":3.6290120806878634},{"x":4453.8,"y":3.610064540923285},{"x":4470.5,"y":3.589538078816925},{"x":4487.6,"y":3.5669776392636585},{"x":4509.3,"y":3.5582644576824576},{"x":4530.4,"y":3.5451938230551288},{"x":4548.3,"y":3.541245886491641},{"x":4566.4,"y":3.5399086600837304},{"x":4584,"y":3.5389610423309725},{"x":4602.2,"y":3.5418753920156205},{"x":4624,"y":3.5430583111799163},{"x":4641.3,"y":3.545285532527489},{"x":4659.1,"y":3.5499387470794823},{"x":4676.8,"y":3.556148402622798},{"x":4702.1,"y":3.570766698877459},{"x":4720.2,"y":3.5786927478256363},{"x":4738.2,"y":3.5815066282646524},{"x":4756.2,"y":3.5784503121106193},{"x":4780,"y":3.5718398712707633},{"x":4826,"y":3.55735140286511},{"x":4843.7,"y":3.543148307425381},{"x":4860.2,"y":3.5207678971301033},{"x":4875.9,"y":3.4908500182840942},{"x":4890.8,"y":3.451290917583038},{"x":4906.9,"y":3.4089242284092673},{"x":4922.4,"y":3.358002582166242},{"x":4938.8,"y":3.31821344829734},{"x":4954.3,"y":3.2841610421278715},{"x":4979.1,"y":3.2535245900611853},{"x":4998.8,"y":3.243165560006046},{"x":5015.9,"y":3.2518538288613428},{"x":5033.1,"y":3.2532682562045676},{"x":5051.7,"y":3.26277274652125},{"x":5069,"y":3.277954126231787},{"x":5106.6,"y":3.318229311893264},{"x":5124,"y":3.3501331073306577},{"x":5141.1,"y":3.373754074103602},{"x":5157,"y":3.3960346896891034},{"x":5174.1,"y":3.410909301967418},{"x":5191.3,"y":3.4250972185523114},{"x":5220.3,"y":3.4547801302165344},{"x":5248.8,"y":3.459098137909742},{"x":5300.2,"y":3.448339580647051},{"x":5347.9,"y":3.4576644734137028},{"x":5364.6,"y":3.43936038770807},{"x":5381.2,"y":3.4109562436756233},{"x":5399.4,"y":3.358165311323599},{"x":5415,"y":3.2831642553057425},{"x":5427.6,"y":3.2242930198180835},{"x":5446.5,"y":3.1853031194641677},{"x":5462.3,"y":3.157588704418938},{"x":5479.6,"y":3.145964175541178},{"x":5496.6,"y":3.1466167946552956},{"x":5513,"y":3.15766260133085},{"x":5529.7,"y":3.172092864067554},{"x":5557.5,"y":3.175774436633986},{"x":5581.1,"y":3.190707337540522},{"x":5598.2,"y":3.2244974866076554},{"x":5615.4,"y":3.2701000417939445},{"x":5632.3,"y":3.307821578923934},{"x":5649.6,"y":3.328485657139698},{"x":5667,"y":3.3588247976362022},{"x":5683.7,"y":3.378058165969889},{"x":5702.5,"y":3.3885209394115297},{"x":5719.1,"y":3.389310709819317},{"x":5743.5,"y":3.392410999589647},{"x":5762.3,"y":3.4026065564567434},{"x":5779,"y":3.4115769933325795},{"x":5807.3,"y":3.4189232733116546},{"x":5824.1,"y":3.424073548522617},{"x":5841.2,"y":3.4336481213539773},{"x":5859.3,"y":3.4444962136168282},{"x":5877.2,"y":3.4600505777209674},{"x":5929.1,"y":3.495117827722027},{"x":5947,"y":3.5021239392313066},{"x":5964.2,"y":3.506496734681193},{"x":5982.1,"y":3.5130154167773413},{"x":6001.3,"y":3.512595446282646},{"x":6018.9,"y":3.5054626859475837},{"x":6035.9,"y":3.4896301832253873},{"x":6060.4,"y":3.4617008814359984},{"x":6075.8,"y":3.429186365229746},{"x":6092.2,"y":3.3992407333301653},{"x":6108.6,"y":3.37647255460188},{"x":6125.4,"y":3.3662178546502415},{"x":6141.5,"y":3.360326208432011},{"x":6158.1,"y":3.3581435861915137},{"x":6179.5,"y":3.35704518513114},{"x":6198.9,"y":3.368217860345967},{"x":6218.3,"y":3.389614882978036},{"x":6244,"y":3.4147321401107575},{"x":6261.6,"y":3.428422286798597},{"x":6276.9,"y":3.447792862638522},{"x":6293.2,"y":3.4608409740489563},{"x":6310.7,"y":3.472072622018982},{"x":6330.8,"y":3.4891542510437974},{"x":6380.8,"y":3.488919978148059},{"x":6416.1,"y":3.4391991945864686},{"x":6433.3,"y":3.4212465752833356},{"x":6449.100000000001,"y":3.40353663742248},{"x":6466.2,"y":3.387714756325663},{"x":6483.5,"y":3.3769584446492393},{"x":6503.7,"y":3.382083530494939},{"x":6519.500000000001,"y":3.3861601363331224},{"x":6536.200000000001,"y":3.386642247096447},{"x":6553.5,"y":3.3853596964601826},{"x":6571.799999999999,"y":3.383362155472307},{"x":6589,"y":3.3799824231297526},{"x":6604.5,"y":3.367482521894092},{"x":6621,"y":3.3447656059479773},{"x":6635,"y":3.3113877479598584},{"x":6649.5,"y":3.2653045041530855},{"x":6665.099999999999,"y":3.230377851180151},{"x":6678.8,"y":3.207716194524682},{"x":6688.7,"y":3.1975258365801604},{"x":6708.099999999999,"y":3.1928861368947348},{"x":6728.1,"y":3.1944791263345054},{"x":6754.5,"y":3.207894271607471},{"x":6772.1,"y":3.223759048672313},{"x":6796.100000000001,"y":3.2370735701119218},{"x":6855.3,"y":3.3452325619158887},{"x":6885.699999999999,"y":3.4423690208805673},{"x":6902.9,"y":3.469871002644165},{"x":6919.899999999999,"y":3.4865628365198518},{"x":6937.399999999999,"y":3.4927100935038164},{"x":7003.6,"y":3.453538048063183},{"x":7024.2,"y":3.4529851089640653},{"x":7040.699999999999,"y":3.4488944207320036},{"x":7057.8,"y":3.445792766735433},{"x":7075.2,"y":3.438528775599225},{"x":7092.9,"y":3.436347983497132},{"x":7107.8,"y":3.437449253655392},{"x":7136.3,"y":3.4357742640139897},{"x":7152.8,"y":3.4381103741709063},{"x":7175.4,"y":3.4436663447693876},{"x":7194.399999999999,"y":3.4470285049562372},{"x":7210.3,"y":3.450966977025132},{"x":7237.600000000001,"y":3.453637394674246},{"x":7255.399999999999,"y":3.4557305660062148},{"x":7272.7,"y":3.4594724453352503},{"x":7290.500000000001,"y":3.4591602881545587},{"x":7319.8,"y":3.4572225169297295},{"x":7336.2,"y":3.450539060622451},{"x":7363.399999999999,"y":3.4397827608349796},{"x":7381.6,"y":3.439202633394308},{"x":7399.1,"y":3.4484562628223627},{"x":7416.9,"y":3.456812033542316},{"x":7482.2,"y":3.4729959434918154},{"x":7499,"y":3.496455858518456},{"x":7517.6,"y":3.5113785862965887},{"x":7536.3,"y":3.5405213974850263},{"x":7554.699999999999,"y":3.5700017409577627},{"x":7573.800000000001,"y":3.584750094022631},{"x":7590.899999999999,"y":3.6052022186367965},{"x":7615.5,"y":3.614276842265627},{"x":7637.8,"y":3.6131341869928097},{"x":7656.4,"y":3.611130969584899},{"x":7677.100000000001,"y":3.610716278996798},{"x":7694.8,"y":3.6074951815131775},{"x":7712.8,"y":3.607424508574404},{"x":7730.3,"y":3.608311626581833},{"x":7748.6,"y":3.609685152247277},{"x":7771.8,"y":3.610142075774723},{"x":7790.500000000001,"y":3.609398070956723},{"x":7864.699999999999,"y":3.6078989077352834},{"x":7882.5,"y":3.598941174722662},{"x":7899.5,"y":3.592244620879577},{"x":7916.9,"y":3.587079848005235},{"x":7938.4,"y":3.5830755494142257},{"x":7967.599999999999,"y":3.574018362996479},{"x":8003.6,"y":3.5661956662254015},{"x":8022.3,"y":3.577193821322157},{"x":8040.700000000001,"y":3.586873713009583},{"x":8059.1,"y":3.599323470715184},{"x":8077.399999999999,"y":3.607004401119594},{"x":8096.1,"y":3.6222079841442874},{"x":8117.699999999999,"y":3.637664172015025},{"x":8136.100000000001,"y":3.649798049481559},{"x":8154.5,"y":3.6537265779614128},{"x":8171.7,"y":3.6476165686332576},{"x":8190.1,"y":3.6387001276127355},{"x":8206.3,"y":3.630357268565114},{"x":8228.3,"y":3.6243638791500943},{"x":8246.7,"y":3.6260974776357426},{"x":8264.5,"y":3.6446624378592345},{"x":8292.3,"y":3.663013391866985},{"x":8353.3,"y":3.6592012177944713},{"x":8366,"y":3.661774275377873},{"x":8386.7,"y":3.660396210913953},{"x":8404.5,"y":3.654006306113866},{"x":8423.8,"y":3.6787270405195485},{"x":8445.9,"y":3.6962037361394793},{"x":8475.5,"y":3.6917203934409897},{"x":8504.7,"y":3.6429317839075},{"x":8522.6,"y":3.629192353133266},{"x":8539.9,"y":3.6164572360023066},{"x":8556.7,"y":3.580173440343228},{"x":8575.2,"y":3.5312181837015824},{"x":8586.3,"y":3.4818915430654713},{"x":8601.2,"y":3.442296803816646},{"x":8622.7,"y":3.3728534082174786},{"x":8639.1,"y":3.3295767569504644},{"x":8665.7,"y":3.2847333865817077},{"x":8682.1,"y":3.279352898847405},{"x":8699.4,"y":3.2406470851430575},{"x":8715.6,"y":3.1873729318767205},{"x":8730.1,"y":3.137792526089068},{"x":8744.6,"y":3.0948180845310223},{"x":8762.5,"y":3.056092044896215},{"x":8778.5,"y":3.014385738782731},{"x":8792.5,"y":2.985603130147311},{"x":8805,"y":2.9771957624750307},{"x":8819.7,"y":2.951978124178335},{"x":8841.4,"y":2.921986216247011},{"x":8870.3,"y":2.8670881439393634},{"x":8887.9,"y":2.85879239847763},{"x":8915.8,"y":2.8487872706857176},{"x":8929.9,"y":2.789858631074444},{"x":8944.4,"y":2.7245059058777032},{"x":8962.8,"y":2.6259482033401076},{"x":8985.3,"y":2.5242038640333444},{"x":9001.3,"y":2.477087336862926},{"x":9017.6,"y":2.4981567934397892},{"x":9037.3,"y":2.5218279585827212},{"x":9068.4,"y":2.5489307607275506},{"x":9093,"y":2.677984107500357},{"x":9110.9,"y":2.7958629485993183},{"x":9127.2,"y":2.8319234470272985},{"x":9174,"y":2.9817354339690905},{"x":9209.1,"y":3.1401763336092405},{"x":9225.1,"y":3.127964456412286},{"x":9239.4,"y":3.11791910887777},{"x":9256.4,"y":3.0523847451971515},{"x":9271.7,"y":2.9529751617707394},{"x":9293.7,"y":2.7891430038263305},{"x":9303,"y":2.6171915085982023},{"x":9310.1,"y":2.4883242716079232},{"x":9318.7,"y":2.383424476997204},{"x":9327.4,"y":2.3012372911775074},{"x":9337.2,"y":2.2269611711105974},{"x":9351.8,"y":2.108444678602539},{"x":9386.6,"y":2.0260320033574013},{"x":9409,"y":2.0522045038366645},{"x":9423.5,"y":2.1174391075887598},{"x":9442.6,"y":2.2479290281851494},{"x":9458.9,"y":2.360760980134387},{"x":9475,"y":2.4824618656135087},{"x":9506.3,"y":2.648466772638482},{"x":9527.2,"y":2.7382811355847783},{"x":9552.5,"y":2.8434753360838076},{"x":9567.9,"y":2.9142424328488508},{"x":9585.4,"y":2.9775875561196883},{"x":9609.8,"y":2.973168760964816},{"x":9624.8,"y":2.914234447646337},{"x":9647.5,"y":2.8425154773826318},{"x":9655,"y":2.733792352847933},{"x":9661.4,"y":2.6107449511071117},{"x":9676.5,"y":2.4775284010376626},{"x":9688.8,"y":2.4021257104849565},{"x":9700.3,"y":2.309411715662692},{"x":9709.7,"y":2.2518655373454957},{"x":9739.2,"y":2.1985137246901387},{"x":9776.8,"y":2.232666112545213},{"x":9804.2,"y":2.318978080104361},{"x":9821.2,"y":2.446743035023389},{"x":9835.8,"y":2.601839547781387},{"x":9854.2,"y":2.7883748984935766},{"x":9902.3,"y":3.0687048924631735},{"x":9919.2,"y":3.1564665703209966},{"x":9935.1,"y":3.2181213818224883},{"x":9950.6,"y":3.250855173157853},{"x":9965.7,"y":3.2457091055541865},{"x":9982,"y":3.2715000402245558},{"x":9995.4,"y":3.295078032201506},{"x":10016.3,"y":3.3329274642268407},{"x":10052.1,"y":3.3180338476026447},{"x":10067.5,"y":3.3173600196578756},{"x":10090.8,"y":3.265261801721097},{"x":10115,"y":2.995051472530707},{"x":10140.7,"y":2.6892897700543736},{"x":10148.9,"y":2.201851452373768},{"x":10164.6,"y":1.7823634872230374},{"x":10183.8,"y":1.644800779052217},{"x":10199.1,"y":1.6913845628347268},{"x":10217.7,"y":1.8652393716576352},{"x":10234.8,"y":2.013557648411243},{"x":10255.2,"y":2.1260593167870026},{"x":10281.9,"y":2.2692031924792544},{"x":10297.8,"y":2.3500087557983296},{"x":10314.1,"y":2.479702125556902},{"x":10335.8,"y":2.5897254707426365},{"x":10356,"y":2.769517567090549},{"x":10368.5,"y":2.911869108836527},{"x":10378.7,"y":2.864950615084259},{"x":10389.2,"y":2.7784879575801895},{"x":10402.8,"y":2.6642122959029813},{"x":10418.8,"y":2.557688142541853},{"x":10429.7,"y":2.4851045277194137},{"x":10453.9,"y":2.29346411209145},{"x":10463,"y":2.220224571714901},{"x":10472.5,"y":2.1507027293492373},{"x":10482.1,"y":2.0614062988121735},{"x":10489.9,"y":1.9729447064716816},{"x":10500.6,"y":1.866155276716045},{"x":10507.5,"y":1.7955513671091656},{"x":10515.5,"y":1.7330504300196636},{"x":10523,"y":1.666585400613535},{"x":10530.5,"y":1.6255555716691619},{"x":10538.3,"y":1.6232037964753963},{"x":10549.2,"y":1.6185034120960262},{"x":10556,"y":1.6263813880553808},{"x":10561.4,"y":1.649155036672111},{"x":10572.4,"y":1.6902695787878683},{"x":10591.5,"y":1.749057791091507},{"x":10610.1,"y":1.819458366857766},{"x":10623.5,"y":1.9261916524945013},{"x":10640.9,"y":2.0506492637994924},{"x":10656,"y":2.200101205546205},{"x":10698.8,"y":2.525240850054539},{"x":10716,"y":2.6361617456547686},{"x":10748.5,"y":2.8391742565486613},{"x":10764.5,"y":2.768009153184764},{"x":10770.8,"y":2.5773040355946124},{"x":10773.4,"y":2.226730568356496},{"x":10784,"y":1.9333812239942976},{"x":10790.2,"y":1.7883195007762043},{"x":10796.8,"y":1.665163082380547},{"x":10800.7,"y":1.5140193989471158},{"x":10804.3,"y":1.456927436687897},{"x":10812.5,"y":1.412245161467706},{"x":10819.7,"y":1.389230761746519},{"x":10844.7,"y":1.3412703140324786},{"x":10851.4,"y":1.3470414235983095},{"x":10858.3,"y":1.3610791777207503},{"x":10868,"y":1.384994723407708},{"x":10877.5,"y":1.4199966182237647},{"x":10886.1,"y":1.482766034788286},{"x":10891.4,"y":1.5759972517105687},{"x":10904,"y":1.7329080244230528},{"x":10929.2,"y":1.8661274152867},{"x":10973.9,"y":1.9393452564101221},{"x":10990.4,"y":2.139089430812159},{"x":10992.8,"y":2.1916699222336784},{"x":10996.5,"y":2.1931969227716004},{"x":11017.2,"y":2.0693865182856115},{"x":11041.3,"y":1.9067506287499356},{"x":11049.8,"y":1.8167907151819642},{"x":11060,"y":1.8071439098903592},{"x":11075.8,"y":1.7989254388729081},{"x":11085.2,"y":1.7765949961195746},{"x":11091.3,"y":1.7686538909567988},{"x":11110.5,"y":1.7723163643588398},{"x":11116.1,"y":1.7805292220562123},{"x":11122,"y":1.7700581524904941},{"x":11138,"y":1.7523082010703603},{"x":11147,"y":1.7416626623500133},{"x":11154.6,"y":1.73726776660337},{"x":11161.4,"y":1.7313794981540473},{"x":11171.5,"y":1.7072399687344977},{"x":11182.4,"y":1.6916675717406175},{"x":11204.8,"y":1.6737684447653995},{"x":11222.1,"y":1.6903156932039116},{"x":11232,"y":1.7346949302762655},{"x":11255.9,"y":1.8107310338070761},{"x":11277.7,"y":1.8898244287615915},{"x":11294.6,"y":1.9933486463100714},{"x":11307.4,"y":2.074755799059216},{"x":11316.7,"y":2.108782963337971},{"x":11330.9,"y":2.1725631468700524},{"x":11344.8,"y":2.2731163295630665},{"x":11361,"y":2.3640535799886457},{"x":11407,"y":2.5194582842400273},{"x":11419.3,"y":2.577432196396841},{"x":11428,"y":2.6398321602240804},{"x":11437.9,"y":2.649248922258622},{"x":11447.3,"y":2.598194764692436},{"x":11453.3,"y":2.5671973787159823},{"x":11464.5,"y":2.5763898080561796},{"x":11474.5,"y":2.5889720397552947},{"x":11489.9,"y":2.566478405601788},{"x":11533.6,"y":2.563895055746671},{"x":11572.5,"y":2.6157676140843513},{"x":11588.8,"y":2.6926100507962745},{"x":11601.8,"y":2.7777587562438777},{"x":11616,"y":2.946556887587637},{"x":11641.7,"y":3.149170301791107},{"x":11672.7,"y":3.158000187765953},{"x":11692.9,"y":3.1078186570077784},{"x":11706.9,"y":2.975147434489556},{"x":11723.5,"y":2.8478899370281052},{"x":11742.7,"y":2.6893394997059623},{"x":11766.3,"y":2.656589266939991},{"x":11787.5,"y":2.663599028476279},{"x":11805.6,"y":2.6568645698603057},{"x":11820.9,"y":2.7008348008067538},{"x":11830,"y":2.746630335398537},{"x":11844.2,"y":2.748541613649272},{"x":11874.1,"y":2.7299142625230144},{"x":11892.2,"y":2.744324065074118},{"x":11917.7,"y":2.7829573744234817},{"x":11938.3,"y":2.740904146984316},{"x":11961,"y":2.755671684410206},{"x":11989.3,"y":2.762578547580232},{"x":12009.3,"y":2.74837293355573},{"x":12031,"y":2.815155038323644},{"x":12065.4,"y":2.873670839636872},{"x":12079.7,"y":2.894131575955472},{"x":12095.7,"y":2.927486419424759},{"x":12116.3,"y":2.9957665902740516},{"x":12135.6,"y":3.099500037557272},{"x":12183.6,"y":3.1399030863781614},{"x":12201.6,"y":3.1990723451253493},{"x":12219.6,"y":3.27604579872565},{"x":12235.8,"y":3.2944271362026383},{"x":12251.5,"y":3.2954661233503737},{"x":12264.6,"y":3.3244547203078323},{"x":12279.4,"y":3.363911556269024},{"x":12305.1,"y":3.404461052352835},{"x":12374.6,"y":3.3740308590289123},{"x":12422.3,"y":3.324198692677467},{"x":12437.8,"y":3.1865695035989887},{"x":12449.7,"y":2.921184397593523},{"x":12457.2,"y":2.576112341236863},{"x":12468,"y":2.4425974062464615},{"x":12488.3,"y":2.3956998820392816},{"x":12532.9,"y":2.4191989352955297},{"x":12553,"y":2.4524507877059794},{"x":12569.3,"y":2.481412451757045},{"x":12582.3,"y":2.565034108711011},{"x":12593.8,"y":2.5560197228295167},{"x":12601.2,"y":2.5300720596492585},{"x":12621.7,"y":2.5047509360736506},{"x":12640.5,"y":2.576527653795926},{"x":12646.1,"y":2.536800006607752},{"x":12656.6,"y":2.5186377337338235},{"x":12674.5,"y":2.5070282268530804},{"x":12695,"y":2.5146631666861214},{"x":12714.3,"y":2.534450579698036},{"x":12732.6,"y":2.5711288308918228},{"x":12750.3,"y":2.633197349745229},{"x":12761.2,"y":2.714019982414405},{"x":12775.3,"y":2.758122656418829},{"x":12784.4,"y":2.7621634916153113},{"x":12800.3,"y":2.691125781795839},{"x":12815.4,"y":2.625842984493371},{"x":12821.5,"y":2.5398508471195655},{"x":12825.4,"y":2.452265133568487},{"x":12831.3,"y":2.3559887900526455},{"x":12840.8,"y":2.199145885375032},{"x":12855.2,"y":2.099951001791073},{"x":12876.100000000002,"y":2.0580639188979877},{"x":12895.1,"y":2.037170122718636},{"x":12912.9,"y":2.033433998856041},{"x":12928.4,"y":2.0348449042855328},{"x":12932.9,"y":2.0408216118051774},{"x":12936.4,"y":2.038891810432214},{"x":12943.2,"y":2.0364689259077307},{"x":12953.8,"y":2.0062308575034393},{"x":12956,"y":1.9712802600370134},{"x":12975,"y":1.937644814566725},{"x":12992.499999999998,"y":1.8660822309799943},{"x":13010.9,"y":1.8157993662040524},{"x":13031.1,"y":1.7853443483021658},{"x":13036.8,"y":1.8026054585299547},{"x":13039.200000000003,"y":1.83762129168363},{"x":13058.1,"y":1.8622543781126408},{"x":13085.6,"y":1.893029083059044},{"x":13100.7,"y":1.9322339353084794},{"x":13111.3,"y":2.0162732539379675},{"x":13125.700000000003,"y":2.1304776981277156},{"x":13139.7,"y":2.211885418434531},{"x":13153.9,"y":2.279568335837599},{"x":13164.300000000001,"y":2.360893365912481},{"x":13176.700000000003,"y":2.4519166492433744},{"x":13192.6,"y":2.5163341908080756},{"x":13211.700000000003,"y":2.6134732946800554},{"x":13232.6,"y":2.653269753883481},{"x":13249.5,"y":2.6599248773742525},{"x":13261.100000000002,"y":2.7095594120925064},{"x":13266.4,"y":2.7153237596737125},{"x":13269.099999999999,"y":2.6815967013986017}];
var elevationStream = [{"x":0.0014912908608,"y":175.19472000000002},{"x":0.0023612105296,"y":175.19472000000002},{"x":0.0038525013904,"y":175.19472000000002},{"x":0.005778752085600001,"y":175.19472000000002},{"x":0.007642865661600001,"y":175.19472000000002},{"x":0.010749721621600001,"y":175.19472000000002},{"x":0.012800246555200002,"y":175.19472000000002},{"x":0.0148507714888,"y":175.19472000000002},{"x":0.016839159303200003,"y":175.19472000000002},{"x":0.020691660693599997,"y":175.19472000000002},{"x":0.0225557742696,"y":175.85088000000002},{"x":0.024979121918400002,"y":177.81936000000002},{"x":0.026905372613599998,"y":178.47552000000002},{"x":0.028893760428,"y":180.44400000000002},{"x":0.0306957368848,"y":181.75632000000002},{"x":0.0323734391032,"y":181.75632000000002},{"x":0.0339268670832,"y":181.75632000000002},{"x":0.035542432182400004,"y":181.75632000000002},{"x":0.038525013904,"y":182.41248000000002},{"x":0.039829893407199994,"y":181.75632000000002},{"x":0.040886224433599995,"y":181.75632000000002},{"x":0.042563926652,"y":181.75632000000002},{"x":0.046292153804,"y":181.75632000000002},{"x":0.0480319931416,"y":181.75632000000002},{"x":0.049958243836800004,"y":181.75632000000002},{"x":0.0519466316512,"y":181.75632000000002},{"x":0.0536243338696,"y":181.75632000000002},{"x":0.0558612701608,"y":181.75632000000002},{"x":0.05747683526,"y":181.75632000000002},{"x":0.0592788117168,"y":181.75632000000002},{"x":0.0613914737696,"y":181.75632000000002},{"x":0.0634419987032,"y":181.75632000000002},{"x":0.065554660756,"y":181.75632000000002},{"x":0.06723236297440001,"y":181.75632000000002},{"x":0.0691586136696,"y":181.75632000000002},{"x":0.0712091386032,"y":181.75632000000002},{"x":0.0729489779408,"y":181.75632000000002},{"x":0.07493736575519999,"y":181.75632000000002},{"x":0.0769878906888,"y":181.75632000000002},{"x":0.08500357906560001,"y":181.75632000000002},{"x":0.08649486992639999,"y":181.75632000000002},{"x":0.0942620098264,"y":181.75632000000002},{"x":0.09593971204480001,"y":181.75632000000002},{"x":0.09811451121680001,"y":181.75632000000002},{"x":0.10395540042160001,"y":181.75632000000002},{"x":0.1058195139976,"y":181.75632000000002},{"x":0.107807901812,"y":181.75632000000002},{"x":0.1092991926728,"y":181.75632000000002},{"x":0.1131516940632,"y":181.75632000000002},{"x":0.1150158076392,"y":181.75632000000002},{"x":0.1169420583344,"y":181.75632000000002},{"x":0.1188061719104,"y":180.44400000000002},{"x":0.120856696844,"y":178.47552000000002},{"x":0.1227829475392,"y":177.81936000000002},{"x":0.12470919823439999,"y":175.85088000000002},{"x":0.1266975860488,"y":177.81936000000002},{"x":0.1288723852208,"y":178.47552000000002},{"x":0.1309850472736,"y":179.13168000000002},{"x":0.1327248866112,"y":181.10016000000002},{"x":0.134837548664,"y":181.75632000000002},{"x":0.13657738800160002,"y":181.75632000000002},{"x":0.1381308159816,"y":181.75632000000002},{"x":0.1398085182,"y":181.75632000000002},{"x":0.1414240832992,"y":181.75632000000002},{"x":0.1445309392592,"y":181.75632000000002},{"x":0.146332915716,"y":181.75632000000002},{"x":0.1496261830336,"y":181.75632000000002},{"x":0.1518009822056,"y":182.41248000000002},{"x":0.1537272329008,"y":181.75632000000002},{"x":0.1557156207152,"y":181.75632000000002},{"x":0.15764187141039998,"y":180.44400000000002},{"x":0.1595681221056,"y":179.13168000000002},{"x":0.16155650992,"y":177.81936000000002},{"x":0.163420623496,"y":177.16320000000002},{"x":0.16571969690639998,"y":175.19472000000002},{"x":0.17000715813120001,"y":175.19472000000002},{"x":0.17218195730320002,"y":177.16320000000002},{"x":0.1742324822368,"y":178.47552000000002},{"x":0.1762830071704,"y":179.13168000000002},{"x":0.17839566922320002,"y":181.75632000000002},{"x":0.180508331276,"y":181.75632000000002},{"x":0.18243458197120002,"y":182.41248000000002},{"x":0.1844851069048,"y":182.41248000000002},{"x":0.1868463174344,"y":182.41248000000002},{"x":0.1888347052488,"y":182.41248000000002},{"x":0.190760955944,"y":182.41248000000002},{"x":0.1929978922352,"y":182.41248000000002},{"x":0.1970989421024,"y":181.75632000000002},{"x":0.1992116041552,"y":182.41248000000002},{"x":0.20126212908879998,"y":182.41248000000002},{"x":0.202877694188,"y":182.41248000000002},{"x":0.20530104183679998,"y":182.41248000000002},{"x":0.207227292532,"y":182.41248000000002},{"x":0.2094642288232,"y":182.41248000000002},{"x":0.213441004452,"y":182.41248000000002},{"x":0.2157400778624,"y":182.41248000000002},{"x":0.221829515544,"y":182.41248000000002},{"x":0.22406645183520002,"y":182.41248000000002},{"x":0.226179113888,"y":182.41248000000002},{"x":0.22835391306,"y":182.41248000000002},{"x":0.23264137428479997,"y":181.75632000000002},{"x":0.2350025848144,"y":181.75632000000002},{"x":0.2369288355096,"y":182.41248000000002},{"x":0.2390414975624,"y":181.75632000000002},{"x":0.24102988537679998,"y":182.41248000000002},{"x":0.24308041031039998,"y":181.75632000000002},{"x":0.2453173466016,"y":181.75632000000002},{"x":0.24749214577360001,"y":182.41248000000002},{"x":0.2514689214024,"y":182.41248000000002},{"x":0.2535815834552,"y":181.75632000000002},{"x":0.2555078341504,"y":181.75632000000002},{"x":0.2577447704416,"y":180.44400000000002},{"x":0.2597952953752,"y":178.47552000000002},{"x":0.2618458203088,"y":178.47552000000002},{"x":0.2639584823616,"y":177.16320000000002},{"x":0.2656983216992,"y":175.85088000000002},{"x":0.26793525799039997,"y":175.85088000000002},{"x":0.2701721942816,"y":175.85088000000002},{"x":0.27601308348639997,"y":175.85088000000002},{"x":0.2784364311352,"y":175.85088000000002},{"x":0.2804869560688,"y":175.85088000000002},{"x":0.2826617552408,"y":178.47552000000002},{"x":0.2848365544128,"y":178.47552000000002},{"x":0.286762805108,"y":181.10016000000002},{"x":0.28893760428,"y":180.44400000000002},{"x":0.2909259920944,"y":179.13168000000002},{"x":0.2931007912664,"y":178.47552000000002},{"x":0.2951513162,"y":178.47552000000002},{"x":0.2972018411336,"y":177.16320000000002},{"x":0.299500914544,"y":177.81936000000002},{"x":0.3058389007024,"y":177.81936000000002},{"x":0.30801369987439997,"y":177.81936000000002},{"x":0.311928338384,"y":177.81936000000002},{"x":0.3139167261984,"y":178.47552000000002},{"x":0.315967251132,"y":177.81936000000002},{"x":0.3180177760656,"y":177.81936000000002},{"x":0.32640628715759995,"y":177.81936000000002},{"x":0.3282704007336,"y":177.81936000000002},{"x":0.3345462497728,"y":177.16320000000002},{"x":0.33690746030240004,"y":177.81936000000002},{"x":0.33864729964,"y":177.81936000000002},{"x":0.3411949215272,"y":178.47552000000002},{"x":0.3433697206992,"y":180.44400000000002},{"x":0.34560665699040005,"y":181.75632000000002},{"x":0.3474707705664,"y":181.75632000000002},{"x":0.34964556973840005,"y":183.72480000000002},{"x":0.35163395755279997,"y":184.38096000000002},{"x":0.357599120996,"y":184.38096000000002},{"x":0.3639992442736,"y":183.72480000000002},{"x":0.36617404344559995,"y":181.75632000000002},{"x":0.36797601990240003,"y":181.10016000000002},{"x":0.37052364178959996,"y":179.13168000000002},{"x":0.37263630384240004,"y":178.47552000000002},{"x":0.374686828776,"y":177.16320000000002},{"x":0.37667521659040004,"y":177.16320000000002},{"x":0.3784771930472,"y":177.16320000000002},{"x":0.3808384035768,"y":177.16320000000002},{"x":0.38295106562959996,"y":177.16320000000002},{"x":0.3892269146688,"y":177.16320000000002},{"x":0.39140171384079997,"y":177.16320000000002},{"x":0.3957513121848,"y":175.85088000000002},{"x":0.397988248476,"y":175.19472000000002},{"x":0.400163047648,"y":173.88240000000002},{"x":0.40190288698559995,"y":171.91392},{"x":0.40432623463440004,"y":171.91392},{"x":0.406376759568,"y":171.25776000000002},{"x":0.4087379700976,"y":171.91392},{"x":0.41091276926959996,"y":173.88240000000002},{"x":0.412901157084,"y":175.19472000000002},{"x":0.4152002304944,"y":175.19472000000002},{"x":0.41737502966640005,"y":177.16320000000002},{"x":0.4196119659576,"y":177.16320000000002},{"x":0.4217246280104,"y":177.16320000000002},{"x":0.4240237014208,"y":177.16320000000002},{"x":0.426260637712,"y":177.16320000000002},{"x":0.42855971112240004,"y":177.16320000000002},{"x":0.43029955046,"y":177.16320000000002},{"x":0.432163664036,"y":177.16320000000002},{"x":0.43489769728079997,"y":177.16320000000002},{"x":0.441484231916,"y":177.16320000000002},{"x":0.443659031088,"y":177.16320000000002},{"x":0.44570955602159995,"y":177.16320000000002},{"x":0.44807076655120004,"y":177.16320000000002},{"x":0.4543466155904,"y":177.16320000000002},{"x":0.4564592776432,"y":175.85088000000002},{"x":0.45906903664959997,"y":177.16320000000002},{"x":0.4656555712848,"y":177.16320000000002},{"x":0.46801678181440004,"y":177.16320000000002},{"x":0.47025371810559996,"y":177.16320000000002},{"x":0.4744790422112,"y":177.81936000000002},{"x":0.47671597850240005,"y":178.47552000000002},{"x":0.47870436631679997,"y":180.44400000000002},{"x":0.4805684798928,"y":181.10016000000002},{"x":0.48299182754159997,"y":181.75632000000002},{"x":0.4855394494288,"y":183.72480000000002},{"x":0.48777638572,"y":183.72480000000002},{"x":0.48982691065359996,"y":183.72480000000002},{"x":0.49162888711040004,"y":183.72480000000002},{"x":0.4941143718784,"y":183.72480000000002},{"x":0.4960406225736,"y":183.72480000000002},{"x":0.49852610734159997,"y":183.72480000000002},{"x":0.5003902209176,"y":183.72480000000002},{"x":0.5028757056856,"y":183.72480000000002},{"x":0.5071631669104,"y":183.72480000000002},{"x":0.508903006248,"y":183.72480000000002},{"x":0.5108913940624,"y":183.72480000000002},{"x":0.5134390159496,"y":183.72480000000002},{"x":0.5177886142936,"y":183.72480000000002},{"x":0.519777002108,"y":183.72480000000002},{"x":0.5220139383992,"y":184.38096000000002},{"x":0.5243130118096,"y":183.72480000000002},{"x":0.53127236916,"y":182.41248000000002},{"x":0.5332607569744,"y":181.75632000000002},{"x":0.5357462417424,"y":180.44400000000002},{"x":0.5380453151528,"y":178.47552000000002},{"x":0.5404065256824,"y":177.81936000000002},{"x":0.5426434619736,"y":177.16320000000002},{"x":0.5448182611456,"y":177.81936000000002},{"x":0.5472416087944,"y":178.47552000000002},{"x":0.5494785450856,"y":179.13168000000002},{"x":0.551777618496,"y":181.10016000000002},{"x":0.553952417668,"y":180.44400000000002},{"x":0.5563136281976,"y":179.13168000000002},{"x":0.5584884273696,"y":178.47552000000002},{"x":0.5606010894224001,"y":178.47552000000002},{"x":0.5628380257136,"y":177.16320000000002},{"x":0.565137099124,"y":175.85088000000002},{"x":0.5739605700504,"y":175.85088000000002},{"x":0.5761353692224,"y":177.16320000000002},{"x":0.5779373456792,"y":178.47552000000002},{"x":0.5804228304472,"y":180.44400000000002},{"x":0.5824733553808,"y":181.75632000000002},{"x":0.5845860174336,"y":182.41248000000002},{"x":0.5867608166056,"y":181.75632000000002},{"x":0.5886249301816,"y":180.44400000000002},{"x":0.591234689188,"y":179.13168000000002},{"x":0.5933473512408,"y":181.10016000000002},{"x":0.5955221504128,"y":181.75632000000002},{"x":0.5976348124656,"y":181.75632000000002},{"x":0.5995610631607999,"y":181.10016000000002},{"x":0.6020465479288,"y":179.13168000000002},{"x":0.60428348422,"y":178.47552000000002},{"x":0.6065204205112,"y":177.81936000000002},{"x":0.6086952196832001,"y":177.16320000000002},{"x":0.610807881736,"y":177.16320000000002},{"x":0.6131690922656,"y":177.16320000000002},{"x":0.6155924399144,"y":177.16320000000002},{"x":0.6200663124968,"y":175.85088000000002},{"x":0.6224275230264,"y":177.16320000000002},{"x":0.6271499440856,"y":177.16320000000002},{"x":0.6293868803768,"y":177.81936000000002},{"x":0.6317480909064,"y":178.47552000000002},{"x":0.6336743416016,"y":180.44400000000002},{"x":0.6361598263696,"y":181.75632000000002},{"x":0.638148214184,"y":182.41248000000002},{"x":0.6405094247136,"y":181.75632000000002},{"x":0.6424356754088001,"y":181.10016000000002},{"x":0.6448590230576,"y":180.44400000000002},{"x":0.6470959593488,"y":178.47552000000002},{"x":0.64933289564,"y":177.81936000000002},{"x":0.6515698319312,"y":177.81936000000002},{"x":0.6534960826264,"y":178.47552000000002},{"x":0.660517577096,"y":178.47552000000002},{"x":0.6625681020295999,"y":178.47552000000002},{"x":0.6666691518968001,"y":178.47552000000002},{"x":0.668906088188,"y":178.47552000000002},{"x":0.6711430244791999,"y":178.47552000000002},{"x":0.6734420978896,"y":178.47552000000002},{"x":0.6758033084192,"y":178.47552000000002},{"x":0.6777916962336,"y":177.81936000000002},{"x":0.6800286325248001,"y":177.81936000000002},{"x":0.6822034316968001,"y":179.13168000000002},{"x":0.6843782308688,"y":181.10016000000002},{"x":0.6864908929215999,"y":181.75632000000002},{"x":0.6885414178552,"y":183.72480000000002},{"x":0.6905298056696,"y":182.41248000000002},{"x":0.6923317821264,"y":181.75632000000002},{"x":0.6944444441791999,"y":180.44400000000002},{"x":0.6964328319936,"y":179.13168000000002},{"x":0.6988561796424,"y":181.75632000000002},{"x":0.7010931159336,"y":180.44400000000002},{"x":0.7032679151055999,"y":179.13168000000002},{"x":0.7054427142776,"y":178.47552000000002},{"x":0.7072446907344,"y":177.81936000000002},{"x":0.7100408610984,"y":175.85088000000002},{"x":0.7123399345088001,"y":177.16320000000002},{"x":0.7146390079192,"y":178.47552000000002},{"x":0.7169380813296,"y":179.13168000000002},{"x":0.7193614289784,"y":181.10016000000002},{"x":0.7218469137464,"y":182.41248000000002},{"x":0.7243945356336,"y":182.41248000000002},{"x":0.7267557461631999,"y":182.41248000000002},{"x":0.7290548195736,"y":182.41248000000002},{"x":0.7315403043416,"y":183.72480000000002},{"x":0.733528692156,"y":183.72480000000002},{"x":0.7361384511624001,"y":182.41248000000002},{"x":0.7384375245728001,"y":182.41248000000002},{"x":0.7406123237448,"y":182.41248000000002},{"x":0.7427249857975999,"y":183.72480000000002},{"x":0.7448376478504001,"y":183.72480000000002},{"x":0.74719885838,"y":183.72480000000002},{"x":0.7496222060288,"y":182.41248000000002},{"x":0.7539718043728001,"y":182.41248000000002},{"x":0.7562708777831999,"y":182.41248000000002},{"x":0.7582592655975999,"y":181.75632000000002},{"x":0.7606826132464001,"y":182.41248000000002},{"x":0.7651564858288,"y":182.41248000000002},{"x":0.7673934221200001,"y":184.38096000000002},{"x":0.7696303584112,"y":185.03712000000002},{"x":0.7718672947024,"y":185.03712000000002},{"x":0.7739799567551999,"y":184.38096000000002},{"x":0.7762168930464001,"y":183.72480000000002},{"x":0.778578103576,"y":182.41248000000002},{"x":0.7806907656288,"y":181.75632000000002},{"x":0.786966614668,"y":181.75632000000002},{"x":0.7890171396016,"y":181.75632000000002},{"x":0.7917511728464001,"y":181.75632000000002},{"x":0.7939259720184,"y":181.75632000000002},{"x":0.795976496952,"y":181.75632000000002},{"x":0.7979648847664,"y":181.75632000000002},{"x":0.7998911354616,"y":181.75632000000002},{"x":0.8023766202296,"y":181.75632000000002},{"x":0.80467569364,"y":181.75632000000002},{"x":0.8070990412888001,"y":181.75632000000002},{"x":0.8095845260568001,"y":181.75632000000002},{"x":0.8119457365864,"y":181.75632000000002},{"x":0.8142448099968,"y":181.75632000000002},{"x":0.8168545690032,"y":181.75632000000002},{"x":0.8192157795328001,"y":181.75632000000002},{"x":0.8215769900624,"y":181.75632000000002},{"x":0.8236896521152,"y":182.41248000000002},{"x":0.826112999764,"y":181.75632000000002},{"x":0.8306490094655999,"y":181.75632000000002},{"x":0.8346879222136,"y":181.75632000000002},{"x":0.83729768122,"y":181.75632000000002},{"x":0.84195796516,"y":181.75632000000002},{"x":0.8439463529744,"y":181.75632000000002},{"x":0.8459347407888,"y":181.75632000000002},{"x":0.8482959513184001,"y":181.75632000000002},{"x":0.8567465995296,"y":181.75632000000002},{"x":0.8592942214168,"y":181.75632000000002},{"x":0.8657564818136,"y":181.75632000000002},{"x":0.8674963211511999,"y":181.75632000000002},{"x":0.8714109596608001,"y":181.75632000000002},{"x":0.8729643876408001,"y":181.75632000000002},{"x":0.8745178156208001,"y":181.75632000000002},{"x":0.8753877352896,"y":181.75632000000002},{"x":0.8763197920776,"y":181.75632000000002},{"x":0.8773139859848,"y":181.75632000000002},{"x":0.8782460427728,"y":181.75632000000002},{"x":0.8791780995608001,"y":181.75632000000002},{"x":0.8802965677064001,"y":181.75632000000002},{"x":0.8812286244944,"y":181.75632000000002},{"x":0.8820985441632,"y":181.75632000000002},{"x":0.8831548751896,"y":181.75632000000002},{"x":0.8841490690968,"y":181.75632000000002},{"x":0.8848947145271999,"y":182.41248000000002},{"x":0.8860131826728,"y":181.75632000000002},{"x":0.8881879818448001,"y":181.75632000000002},{"x":0.8889957643944,"y":181.75632000000002},{"x":0.8898656840632,"y":181.75632000000002},{"x":0.8909841522088,"y":181.75632000000002},{"x":0.89166766052,"y":181.75632000000002},{"x":0.8924133059504,"y":181.75632000000002},{"x":0.8932210885,"y":181.75632000000002},{"x":0.8942774195264,"y":181.75632000000002},{"x":0.895085202076,"y":181.75632000000002},{"x":0.89788137244,"y":182.41248000000002},{"x":0.8990619777048,"y":181.75632000000002},{"x":0.9002425829696,"y":180.44400000000002},{"x":0.9013610511151999,"y":178.47552000000002},{"x":0.9024173821415999,"y":178.47552000000002},{"x":0.9032873018104001,"y":178.47552000000002},{"x":0.9042814957176,"y":179.13168000000002},{"x":0.905337826744,"y":180.44400000000002},{"x":0.9063941577704,"y":181.75632000000002},{"x":0.9074504887968,"y":181.75632000000002},{"x":0.908444682704,"y":181.75632000000002},{"x":0.9094388766111999,"y":181.75632000000002},{"x":0.9102466591608,"y":181.75632000000002},{"x":0.9110544417104001,"y":180.44400000000002},{"x":0.9120486356176,"y":178.47552000000002},{"x":0.9129806924056,"y":177.16320000000002},{"x":0.9139748863128001,"y":175.85088000000002},{"x":0.9149069431008,"y":175.19472000000002},{"x":0.9158389998888,"y":175.19472000000002},{"x":0.9167089195575999,"y":175.19472000000002},{"x":0.9176409763455999,"y":175.19472000000002},{"x":0.92273622012,"y":175.19472000000002},{"x":0.9236061397888,"y":175.19472000000002},{"x":0.9245381965768,"y":175.19472000000002},{"x":0.92739650406,"y":175.19472000000002},{"x":0.9282664237288001,"y":175.19472000000002},{"x":0.9294470289936,"y":175.19472000000002},{"x":0.9324917478344,"y":175.19472000000002},{"x":0.9335480788608,"y":175.19472000000002},{"x":0.9344801356488001,"y":175.19472000000002},{"x":0.9355986037944001,"y":175.19472000000002},{"x":0.9377112658472,"y":175.19472000000002},{"x":0.9387054597544,"y":175.19472000000002},{"x":0.9399482021384,"y":175.19472000000002},{"x":0.9409423960455999,"y":175.19472000000002},{"x":0.9420608641911999,"y":175.19472000000002},{"x":0.9429929209792,"y":175.19472000000002},{"x":0.944173526244,"y":175.19472000000002},{"x":0.9452298572704,"y":175.19472000000002},{"x":0.946348325416,"y":175.19472000000002},{"x":0.9474667935616,"y":175.19472000000002},{"x":0.9481503018728,"y":175.19472000000002},{"x":0.9492066328991999,"y":175.19472000000002},{"x":0.9502629639256,"y":175.85088000000002},{"x":0.9515057063096,"y":178.47552000000002},{"x":0.9526863115744,"y":180.44400000000002},{"x":0.9536805054816,"y":181.75632000000002},{"x":0.9549232478656,"y":182.41248000000002},{"x":0.9561659902496,"y":183.72480000000002},{"x":0.961261234024,"y":183.72480000000002},{"x":0.9638088559111999,"y":183.72480000000002},{"x":0.9684691398512,"y":183.72480000000002},{"x":0.9731294237911999,"y":183.72480000000002},{"x":0.9778518448504,"y":183.72480000000002},{"x":0.9800887811416,"y":183.72480000000002},{"x":0.9824499916712,"y":183.72480000000002},{"x":0.9846869279624,"y":183.72480000000002},{"x":0.9869238642536,"y":183.72480000000002},{"x":0.9912113254784001,"y":183.72480000000002},{"x":0.995436649584,"y":183.72480000000002},{"x":0.9977978601135999,"y":183.72480000000002},{"x":0.9999726592856,"y":183.72480000000002},{"x":1.0022095955768,"y":183.72480000000002},{"x":1.0043222576296,"y":183.72480000000002},{"x":1.0065591939208,"y":183.72480000000002},{"x":1.0086718559735999,"y":183.72480000000002},{"x":1.012524357364,"y":183.72480000000002},{"x":1.0145748822976,"y":183.72480000000002},{"x":1.0166875443504,"y":183.72480000000002},{"x":1.0186759321648,"y":182.41248000000002},{"x":1.0211614169328,"y":183.72480000000002},{"x":1.023398353224,"y":181.75632000000002},{"x":1.025573152396,"y":181.10016000000002},{"x":1.027747951568,"y":180.44400000000002},{"x":1.0299848878592,"y":178.47552000000002},{"x":1.0323460983888,"y":175.85088000000002},{"x":1.0346451717992,"y":175.19472000000002},{"x":1.0366956967328,"y":173.88240000000002},{"x":1.0388083587856,"y":171.91392},{"x":1.0409210208384,"y":171.25776000000002},{"x":1.0429094086528001,"y":169.28928000000002},{"x":1.0450220707056,"y":168.63312},{"x":1.0489367092152,"y":168.63312},{"x":1.0504901371952,"y":167.97696000000002},{"x":1.0530377590824,"y":165.35232},{"x":1.0552125582544,"y":165.35232},{"x":1.0575737687840001,"y":162.72768000000002},{"x":1.0596864308368001,"y":162.07152},{"x":1.0614884072936,"y":161.41536000000002},{"x":1.0657758685184,"y":155.50992},{"x":1.0699390555048,"y":156.16608000000002},{"x":1.072175991796,"y":155.50992},{"x":1.0742886538488001,"y":156.16608000000002},{"x":1.0766498643784,"y":157.47840000000002},{"x":1.0788246635504,"y":158.79072},{"x":1.0810615998416,"y":159.44688000000002},{"x":1.0832985361328,"y":162.07152},{"x":1.0854733353048,"y":164.04000000000002},{"x":1.0877724087151999,"y":164.04000000000002},{"x":1.0900714821256,"y":164.04000000000002},{"x":1.0922462812976,"y":162.72768000000002},{"x":1.094234669112,"y":162.72768000000002},{"x":1.0968444281184,"y":164.04000000000002},{"x":1.0990192272904,"y":165.35232},{"x":1.1011940264624,"y":166.00848000000002},{"x":1.1033066885151999,"y":167.97696000000002},{"x":1.1051708020911999,"y":168.63312},{"x":1.1074698755016,"y":170.60160000000002},{"x":1.1097068117928,"y":170.60160000000002},{"x":1.1139942730176,"y":171.91392},{"x":1.1161069350704,"y":172.57008000000002},{"x":1.1180331857656,"y":174.53856000000002},{"x":1.1201458478184,"y":175.19472000000002},{"x":1.122196372752,"y":177.81936000000002},{"x":1.1243090348048002,"y":178.47552000000002},{"x":1.1266081082152,"y":177.81936000000002},{"x":1.1328839572544,"y":178.47552000000002},{"x":1.134623796592,"y":177.81936000000002},{"x":1.1366121844064,"y":177.81936000000002},{"x":1.1378549267904001,"y":177.81936000000002},{"x":1.1394083547704,"y":177.81936000000002},{"x":1.141148194108,"y":177.81936000000002},{"x":1.1431365819224,"y":177.81936000000002},{"x":1.1450628326176,"y":177.81936000000002},{"x":1.1472997689088,"y":177.81936000000002},{"x":1.1493502938424,"y":177.81936000000002},{"x":1.1515872301335999,"y":177.81936000000002},{"x":1.1538241664248001,"y":177.81936000000002},{"x":1.1558125542392,"y":177.81936000000002},{"x":1.1578009420536,"y":177.81936000000002},{"x":1.1599136041064,"y":177.81936000000002},{"x":1.16196412904,"y":180.44400000000002},{"x":1.1642010653312,"y":181.75632000000002},{"x":1.1662515902648,"y":182.41248000000002},{"x":1.1683642523175999,"y":184.38096000000002},{"x":1.1704147772512,"y":185.03712000000002},{"x":1.1724031650656,"y":185.69328000000002},{"x":1.174702238476,"y":185.03712000000002},{"x":1.1766906262904,"y":185.69328000000002},{"x":1.1810402246344,"y":185.69328000000002},{"x":1.183401435164,"y":185.69328000000002},{"x":1.1853898229784001,"y":185.69328000000002},{"x":1.1872539365544,"y":185.69328000000002},{"x":1.1932190999976,"y":185.69328000000002},{"x":1.1950210764544,"y":185.69328000000002},{"x":1.1968851900304,"y":185.69328000000002},{"x":1.2033474504272,"y":185.69328000000002},{"x":1.2055843867184,"y":185.69328000000002},{"x":1.207324226056,"y":185.69328000000002},{"x":1.2097475737048,"y":185.69328000000002},{"x":1.2160855598631999,"y":185.69328000000002},{"x":1.2171418908896,"y":185.69328000000002},{"x":1.2194409643,"y":185.69328000000002},{"x":1.2214293521144,"y":185.69328000000002},{"x":1.2258410875776,"y":185.69328000000002},{"x":1.2279537496304,"y":185.69328000000002},{"x":1.2306877828751999,"y":187.00560000000002},{"x":1.2332354047624001,"y":188.31792000000002},{"x":1.2355344781728002,"y":190.28640000000001},{"x":1.237460728868,"y":191.59872000000001},{"x":1.2395733909208,"y":192.25488},{"x":1.2421831499272,"y":192.25488},{"x":1.24895609592,"y":192.25488},{"x":1.2512551693304,"y":192.25488},{"x":1.253927065456,"y":192.25488},{"x":1.2608242856871998,"y":192.25488},{"x":1.2628126735015999,"y":192.25488},{"x":1.2650496097928001,"y":192.25488},{"x":1.2671622718456,"y":192.25488},{"x":1.2692127967792,"y":192.25488},{"x":1.2732517095272,"y":192.25488},{"x":1.2760478798912,"y":192.25488},{"x":1.2825722774072,"y":192.25488},{"x":1.2849334879368,"y":192.25488},{"x":1.2877296583008,"y":192.25488},{"x":1.3009648646904,"y":192.25488},{"x":1.3029532525048,"y":192.25488},{"x":1.3049416403192,"y":192.25488},{"x":1.3072407137296,"y":192.25488},{"x":1.3091669644248,"y":192.25488},{"x":1.3158777732984,"y":192.25488},{"x":1.3178661611128,"y":192.25488},{"x":1.3199788231656002,"y":192.25488},{"x":1.3218429367416,"y":192.25488},{"x":1.3237691874368,"y":192.25488},{"x":1.3260682608471999,"y":192.25488},{"x":1.3283051971384,"y":192.25488},{"x":1.3305421334296001,"y":192.25488},{"x":1.3370043938263998,"y":192.25488},{"x":1.3399248384288,"y":192.25488},{"x":1.3447715337264,"y":187.66176000000002},{"x":1.347132744256,"y":187.66176000000002},{"x":1.3489347207128,"y":187.66176000000002},{"x":1.3514202054808,"y":185.03712000000002},{"x":1.3535950046528,"y":184.38096000000002},{"x":1.3559562151823998,"y":182.41248000000002},{"x":1.3581931514736,"y":181.75632000000002},{"x":1.3602436764072,"y":180.44400000000002},{"x":1.3622942013408001,"y":180.44400000000002},{"x":1.3642825891552,"y":180.44400000000002},{"x":1.3684457761416,"y":180.44400000000002},{"x":1.3704963010752,"y":180.44400000000002},{"x":1.3725468260088,"y":180.44400000000002},{"x":1.3745352138231999,"y":180.44400000000002},{"x":1.3765236016376001,"y":179.13168000000002},{"x":1.3781391667368001,"y":180.44400000000002},{"x":1.379754731836,"y":180.44400000000002},{"x":1.3832344105112,"y":180.44400000000002},{"x":1.3843528786568,"y":180.44400000000002},{"x":1.3876461459743998,"y":180.44400000000002},{"x":1.3895102595503999,"y":180.44400000000002},{"x":1.3918093329608001,"y":180.44400000000002},{"x":1.3938598578944,"y":180.44400000000002},{"x":1.4003221182912,"y":181.10016000000002},{"x":1.4019998205096,"y":181.75632000000002},{"x":1.404609579516,"y":185.03712000000002},{"x":1.4066601044496,"y":185.69328000000002},{"x":1.4090834520984,"y":185.69328000000002},{"x":1.4113203883896002,"y":185.03712000000002},{"x":1.413308776204,"y":183.72480000000002},{"x":1.4158563980912,"y":181.75632000000002},{"x":1.4181554715016,"y":181.75632000000002},{"x":1.4202059964351998,"y":181.75632000000002},{"x":1.4221322471303999,"y":181.10016000000002},{"x":1.4245555947792,"y":181.10016000000002},{"x":1.4269168053088002,"y":181.75632000000002},{"x":1.4294022900768,"y":181.75632000000002},{"x":1.4317635006063998,"y":181.75632000000002},{"x":1.4340625740168,"y":181.75632000000002},{"x":1.4359266875928,"y":180.44400000000002},{"x":1.4382878981223999,"y":181.75632000000002},{"x":1.440338423056,"y":181.10016000000002},{"x":1.4424510851088002,"y":181.10016000000002},{"x":1.4446258842808,"y":181.10016000000002},{"x":1.4463035864992,"y":181.10016000000002},{"x":1.4490997568632,"y":181.75632000000002},{"x":1.4510260075583998,"y":181.75632000000002},{"x":1.4530143953728,"y":181.75632000000002},{"x":1.4546920975911999,"y":181.75632000000002},{"x":1.4567426225248001,"y":181.10016000000002},{"x":1.4589174216968002,"y":181.75632000000002},{"x":1.4604708496768,"y":181.10016000000002},{"x":1.4616514549416002,"y":180.44400000000002},{"x":1.462397100372,"y":181.75632000000002},{"x":1.4625835117296002,"y":181.10016000000002},{"x":1.4627699230872,"y":181.75632000000002},{"x":1.4632670200408,"y":181.75632000000002},{"x":1.4640126654712,"y":181.75632000000002},{"x":1.4649447222592,"y":181.75632000000002},{"x":1.4660631904048,"y":181.10016000000002},{"x":1.4676166183848,"y":181.75632000000002},{"x":1.4692943206031999,"y":181.75632000000002},{"x":1.4710341599408001,"y":181.10016000000002},{"x":1.472960410636,"y":181.75632000000002},{"x":1.474824524212,"y":181.75632000000002},{"x":1.4768129120264,"y":181.10016000000002},{"x":1.4789877111984,"y":181.75632000000002},{"x":1.4827159383503998,"y":181.75632000000002},{"x":1.4843936405688,"y":181.75632000000002},{"x":1.4865684397408,"y":181.75632000000002},{"x":1.4885568275552,"y":181.10016000000002},{"x":1.490669489608,"y":181.75632000000002},{"x":1.4927200145416002,"y":181.75632000000002},{"x":1.4946462652368,"y":181.10016000000002},{"x":1.4968210644088,"y":181.75632000000002},{"x":1.5007357029183999,"y":181.10016000000002},{"x":1.5027240907328,"y":181.10016000000002},{"x":1.504961027024,"y":181.75632000000002},{"x":1.507135826196,"y":181.10016000000002},{"x":1.5090620768912,"y":181.75632000000002},{"x":1.5112990131823998,"y":181.75632000000002},{"x":1.5129767154008,"y":181.75632000000002},{"x":1.5152757888111998,"y":181.75632000000002},{"x":1.5181962334136,"y":181.75632000000002},{"x":1.5206195810624,"y":181.75632000000002},{"x":1.5250313165256002,"y":180.44400000000002},{"x":1.5272061156976002,"y":180.44400000000002},{"x":1.5297537375848,"y":181.75632000000002},{"x":1.5318663996376,"y":181.75632000000002},{"x":1.5336062389751999,"y":181.75632000000002},{"x":1.5348489813592,"y":181.10016000000002},{"x":1.536029586624,"y":181.75632000000002},{"x":1.539136442584,"y":181.10016000000002},{"x":1.5411248303984,"y":181.10016000000002},{"x":1.5430510810936002,"y":181.10016000000002},{"x":1.5459093885768,"y":181.75632000000002},{"x":1.5480841877488,"y":181.75632000000002},{"x":1.5503832611591999,"y":181.75632000000002},{"x":1.5561620132448,"y":181.75632000000002},{"x":1.5582746752976002,"y":181.75632000000002},{"x":1.5601387888736,"y":181.75632000000002},{"x":1.5635563304296,"y":181.75632000000002},{"x":1.5651718955288,"y":181.75632000000002},{"x":1.5669117348664,"y":181.75632000000002},{"x":1.5691486711576002,"y":181.75632000000002},{"x":1.570205002184,"y":181.75632000000002},{"x":1.5716962930448,"y":181.75632000000002},{"x":1.5735604066208,"y":181.75632000000002},{"x":1.5761701656272,"y":181.75632000000002},{"x":1.5783449647992,"y":181.75632000000002},{"x":1.5803954897328,"y":181.75632000000002},{"x":1.5828809745008001,"y":181.75632000000002},{"x":1.5846829509576001,"y":181.75632000000002},{"x":1.5868577501296002,"y":181.75632000000002},{"x":1.588846137944,"y":181.75632000000002},{"x":1.5905238401624,"y":181.75632000000002},{"x":1.5926365022152,"y":181.75632000000002},{"x":1.5949355756256,"y":181.75632000000002},{"x":1.5959297695328,"y":183.72480000000002},{"x":1.5972967861551999,"y":185.03712000000002},{"x":1.5984152543008001,"y":185.69328000000002},{"x":1.5993473110888001,"y":187.66176000000002},{"x":1.6004036421152,"y":188.31792000000002},{"x":1.6017085216184,"y":188.97408000000001},{"x":1.602205618572,"y":190.94256000000001},{"x":1.6031998124792,"y":192.25488},{"x":1.6044425548632,"y":194.22336},{"x":1.60469110334,"y":195.53568},{"x":1.6048153775784,"y":196.848},{"x":1.6053746116512,"y":197.50416},{"x":1.606555216916,"y":198.16032},{"x":1.6076115479423998,"y":200.1288},{"x":1.6084814676112,"y":201.44112},{"x":1.6091649759223998,"y":203.4096},{"x":1.6099106213528,"y":204.06576},{"x":1.6107184039023998,"y":204.06576},{"x":1.6112776379751999,"y":204.06576},{"x":1.6123339690016,"y":204.06576},{"x":1.6128932030743999,"y":204.06576},{"x":1.6144466310544,"y":204.06576},{"x":1.6179263097296002,"y":203.4096},{"x":1.62022538314,"y":201.44112},{"x":1.6228351421463998,"y":200.78496},{"x":1.6254449011528,"y":200.1288},{"x":1.6281789343976,"y":198.16032},{"x":1.6313479274768001,"y":196.848},{"x":1.63420623496,"y":194.87952},{"x":1.6365674454896002,"y":194.22336},{"x":1.6391150673768,"y":192.25488},{"x":1.6415384150256,"y":191.59872000000001},{"x":1.6442103111511999,"y":190.28640000000001},{"x":1.6466336588,"y":188.97408000000001},{"x":1.6495541034024,"y":188.31792000000002},{"x":1.65129394274,"y":188.31792000000002},{"x":1.6539037017464,"y":187.00560000000002},{"x":1.6558920895608,"y":185.69328000000002},{"x":1.6585639856863998,"y":185.03712000000002},{"x":1.6606766477391999,"y":184.38096000000002},{"x":1.6628514469112,"y":183.72480000000002},{"x":1.6653369316792,"y":183.72480000000002},{"x":1.6673253194936002,"y":182.41248000000002},{"x":1.6696865300232,"y":181.75632000000002},{"x":1.6719856034336,"y":180.44400000000002},{"x":1.6737254427712,"y":178.47552000000002},{"x":1.6755895563471999,"y":177.16320000000002},{"x":1.6772051214463999,"y":175.85088000000002},{"x":1.683294559128,"y":175.85088000000002},{"x":1.6918694815776,"y":175.85088000000002},{"x":1.6942306921072,"y":175.85088000000002},{"x":1.6962812170408001,"y":175.85088000000002},{"x":1.698207467736,"y":175.85088000000002},{"x":1.7001337184312,"y":175.85088000000002},{"x":1.7019978320072,"y":175.85088000000002},{"x":1.7038619455832,"y":175.85088000000002},{"x":1.7058503333976,"y":175.85088000000002},{"x":1.7085222295231999,"y":175.85088000000002},{"x":1.7102620688608001,"y":175.85088000000002},{"x":1.7122504566752,"y":175.85088000000002},{"x":1.7138038846552,"y":175.85088000000002},{"x":1.7155437239928,"y":177.16320000000002},{"x":1.7182156201183998,"y":177.16320000000002},{"x":1.7192098140256,"y":177.16320000000002},{"x":1.720576830648,"y":178.47552000000002},{"x":1.722130258628,"y":179.13168000000002},{"x":1.7237458237271999,"y":181.10016000000002},{"x":1.7257963486608001,"y":182.41248000000002},{"x":1.72741191376,"y":183.72480000000002},{"x":1.7287789303824,"y":183.72480000000002},{"x":1.7327557060112,"y":183.72480000000002},{"x":1.7394665148848,"y":183.72480000000002},{"x":1.7439403874672,"y":183.72480000000002},{"x":1.7461773237584,"y":183.72480000000002},{"x":1.7482899858112,"y":185.03712000000002},{"x":1.7499055509103998,"y":185.69328000000002},{"x":1.7520182129632,"y":188.31792000000002},{"x":1.7539444636583998,"y":188.31792000000002},{"x":1.7560571257111999,"y":190.28640000000001},{"x":1.7573620052144,"y":190.28640000000001},{"x":1.7595989415056001,"y":190.28640000000001},{"x":1.7617737406776002,"y":191.59872000000001},{"x":1.7640106769688,"y":192.25488},{"x":1.7666204359752,"y":194.87952},{"x":1.769043783624,"y":195.53568},{"x":1.7704729373656,"y":196.848},{"x":1.7726477365376,"y":196.848},{"x":1.7757545924976001,"y":196.848},{"x":1.778364351504,"y":196.848},{"x":1.7806012877952,"y":198.16032},{"x":1.7824654013712,"y":200.1288},{"x":1.7848266119008,"y":200.78496},{"x":1.7876227822648,"y":201.44112},{"x":1.7896111700792,"y":203.4096},{"x":1.7919723806088002,"y":204.72192},{"x":1.7940850426616002,"y":204.72192},{"x":1.7966326645488,"y":204.72192},{"x":1.7989938750783998,"y":204.72192},{"x":1.8016036340848,"y":204.72192},{"x":1.8035920218991999,"y":204.72192},{"x":1.8053939983560001,"y":204.72192},{"x":1.8075066604088001,"y":204.72192},{"x":1.8099300080576002,"y":204.72192},{"x":1.81129702468,"y":204.72192},{"x":1.8143417435208,"y":204.72192},{"x":1.816267994216,"y":204.72192},{"x":1.8186913418648,"y":204.72192},{"x":1.8213011008712,"y":204.72192},{"x":1.8239108598776002,"y":204.72192},{"x":1.8264584817648,"y":204.72192},{"x":1.8306216687512,"y":204.72192},{"x":1.8331692906383998,"y":204.72192},{"x":1.8355926382871999,"y":204.72192},{"x":1.8402529222272,"y":204.72192},{"x":1.8423034471608,"y":204.06576},{"x":1.8452860288823998,"y":202.09728},{"x":1.8475851022928,"y":201.44112},{"x":1.8496977643456,"y":200.1288},{"x":1.8514376036831999,"y":198.16032},{"x":1.8528046203056001,"y":198.16032},{"x":1.8553522421928001,"y":198.16032},{"x":1.8575270413648,"y":198.16032},{"x":1.8598261147752,"y":198.16032},{"x":1.8616902283512,"y":198.16032},{"x":1.863802890404,"y":198.16032},{"x":1.8662262380528,"y":198.16032},{"x":1.8696437796088001,"y":198.16032},{"x":1.8718807159,"y":198.16032},{"x":1.8738069665952,"y":198.16032},{"x":1.8764788627208,"y":197.50416},{"x":1.8795857186808,"y":194.87952},{"x":1.881511969376,"y":192.25488},{"x":1.8837489056671999,"y":190.28640000000001},{"x":1.8860479790776001,"y":188.31792000000002},{"x":1.888347052488,"y":185.03712000000002},{"x":1.8904597145408,"y":184.38096000000002},{"x":1.89207527964,"y":184.38096000000002},{"x":1.8941879416928,"y":184.38096000000002},{"x":1.8961763295072,"y":184.38096000000002},{"x":1.8983511286791999,"y":184.38096000000002},{"x":1.9004016536128001,"y":183.72480000000002},{"x":1.9018929444736001,"y":184.38096000000002},{"x":1.9041298807648002,"y":184.38096000000002},{"x":1.9075474223208,"y":184.38096000000002},{"x":1.910405729804,"y":184.38096000000002},{"x":1.912580528976,"y":184.38096000000002},{"x":1.9146310539096,"y":184.38096000000002},{"x":1.9168679902008001,"y":184.38096000000002},{"x":1.9191670636112,"y":182.41248000000002},{"x":1.9216525483792,"y":181.75632000000002},{"x":1.9247594043392,"y":180.44400000000002},{"x":1.926872066392,"y":178.47552000000002},{"x":1.9295439625176,"y":178.47552000000002},{"x":1.9320294472856,"y":177.81936000000002},{"x":1.9390509417552,"y":177.16320000000002},{"x":1.9410393295696,"y":177.16320000000002},{"x":1.9435248143376,"y":175.85088000000002},{"x":1.9462588475823999,"y":177.81936000000002},{"x":1.9484336467544,"y":177.81936000000002},{"x":1.9507327201648001,"y":177.81936000000002},{"x":1.9529075193368,"y":177.81936000000002},{"x":1.954833770032,"y":177.81936000000002},{"x":1.9575056661576,"y":179.13168000000002},{"x":1.9596804653296,"y":181.10016000000002},{"x":1.961668853144,"y":180.44400000000002},{"x":1.9639057894351999,"y":179.13168000000002},{"x":1.9659563143688001,"y":178.47552000000002},{"x":1.9683796620176002,"y":178.47552000000002},{"x":1.970368049832,"y":178.47552000000002},{"x":1.9724807118848,"y":181.10016000000002},{"x":1.9743448254608,"y":181.75632000000002},{"x":1.9763953503943998,"y":181.10016000000002},{"x":1.9790051094008,"y":181.10016000000002},{"x":1.9811799085728001,"y":180.44400000000002},{"x":1.983416844864,"y":180.44400000000002},{"x":1.985591644036,"y":179.13168000000002},{"x":1.9879528545656002,"y":178.47552000000002},{"x":1.9905004764528,"y":179.13168000000002},{"x":1.99460152632,"y":180.44400000000002},{"x":1.9970248739688001,"y":179.13168000000002},{"x":1.9988889875448002,"y":179.13168000000002},{"x":2.0013744723128,"y":179.13168000000002},{"x":2.0032385858888,"y":178.47552000000002},{"x":2.0057240706568003,"y":178.47552000000002},{"x":2.0077124584712,"y":179.13168000000002},{"x":2.009514434928,"y":179.13168000000002},{"x":2.0118756454576,"y":178.47552000000002},{"x":2.0136776219144,"y":179.13168000000002},{"x":2.0159145582056,"y":179.13168000000002},{"x":2.0177786717816,"y":179.13168000000002},{"x":2.0198291967152,"y":179.13168000000002},{"x":2.0216933102912,"y":179.13168000000002},{"x":2.0239302465824,"y":179.13168000000002},{"x":2.0262293199928,"y":179.13168000000002},{"x":2.0280934335688,"y":179.13168000000002},{"x":2.0323808947936,"y":177.81936000000002},{"x":2.0350527909191998,"y":175.85088000000002},{"x":2.0370411787336002,"y":174.53856000000002},{"x":2.0392159779056,"y":172.57008000000002},{"x":2.0407694058856003,"y":173.88240000000002},{"x":2.0434413020112,"y":175.19472000000002},{"x":2.045553964064,"y":175.85088000000002},{"x":2.0477909003552,"y":177.81936000000002},{"x":2.0500278366463998,"y":178.47552000000002},{"x":2.0521404986992,"y":178.47552000000002},{"x":2.0545017092288003,"y":178.47552000000002},{"x":2.060777558268,"y":178.47552000000002},{"x":2.0637601399896,"y":178.47552000000002},{"x":2.0659970762808,"y":178.47552000000002},{"x":2.0680476012144,"y":178.47552000000002},{"x":2.0725214737968,"y":178.47552000000002},{"x":2.0748205472072,"y":178.47552000000002},{"x":2.0768710721408,"y":178.47552000000002},{"x":2.0789215970744,"y":178.47552000000002},{"x":2.0811585333656,"y":178.47552000000002},{"x":2.0833954696568,"y":178.47552000000002},{"x":2.0853838574712,"y":178.47552000000002},{"x":2.0876207937624,"y":178.47552000000002},{"x":2.089671318696,"y":178.47552000000002},{"x":2.0915975693912,"y":178.47552000000002},{"x":2.0938345056823997,"y":177.81936000000002},{"x":2.096195716212,"y":178.47552000000002},{"x":2.0985569267416,"y":178.47552000000002},{"x":2.1006074516752,"y":178.47552000000002},{"x":2.102720113728,"y":178.47552000000002},{"x":2.1047085015424,"y":178.47552000000002},{"x":2.10644834088,"y":178.47552000000002},{"x":2.1089959627672,"y":178.47552000000002},{"x":2.1155203602832,"y":178.47552000000002},{"x":2.1177572965744,"y":178.47552000000002},{"x":2.1203049184616,"y":178.47552000000002},{"x":2.127264275812,"y":178.47552000000002},{"x":2.129128389388,"y":178.47552000000002},{"x":2.1320488339904,"y":178.47552000000002},{"x":2.1347828672352,"y":178.47552000000002},{"x":2.137206214884,"y":178.47552000000002},{"x":2.1392567398176,"y":178.47552000000002},{"x":2.1437306124,"y":178.47552000000002},{"x":2.1460296858104,"y":178.47552000000002},{"x":2.1505035583928,"y":178.47552000000002},{"x":2.1528026318032,"y":178.47552000000002},{"x":2.1554745279288,"y":178.47552000000002},{"x":2.1575871899816,"y":178.47552000000002},{"x":2.1598241262728,"y":178.47552000000002},{"x":2.1622474739216,"y":178.47552000000002},{"x":2.166721346504,"y":178.47552000000002},{"x":2.1689582827952,"y":178.47552000000002},{"x":2.1712573562056003,"y":178.47552000000002},{"x":2.173556429616,"y":178.47552000000002},{"x":2.1755448174303997,"y":178.47552000000002},{"x":2.178527399152,"y":178.47552000000002},{"x":2.1808264725624,"y":178.47552000000002},{"x":2.1848032481912,"y":179.13168000000002},{"x":2.1871023216016003,"y":178.47552000000002},{"x":2.1890285722968,"y":178.47552000000002},{"x":2.1905820002768,"y":178.47552000000002},{"x":2.1920732911376,"y":178.47552000000002},{"x":2.1936267191176,"y":178.47552000000002},{"x":2.1953665584552,"y":178.47552000000002},{"x":2.1971063977928003,"y":178.47552000000002},{"x":2.1991569227264,"y":178.47552000000002},{"x":2.2026366014016,"y":179.13168000000002},{"x":2.2054327717656,"y":179.13168000000002},{"x":2.2077939822952,"y":178.47552000000002},{"x":2.2098445072288,"y":178.47552000000002},{"x":2.2118328950432,"y":178.47552000000002},{"x":2.2134484601424,"y":178.47552000000002},{"x":2.2151261623608,"y":178.47552000000002},{"x":2.2188543895128,"y":178.47552000000002},{"x":2.2222097939496,"y":178.47552000000002},{"x":2.2246331415984,"y":178.47552000000002},{"x":2.2265593922936002,"y":178.47552000000002},{"x":2.2286099172272,"y":178.47552000000002},{"x":2.2305983050416,"y":178.47552000000002},{"x":2.2324624186176,"y":178.47552000000002},{"x":2.234450806432,"y":178.47552000000002},{"x":2.2371227025576,"y":178.47552000000002},{"x":2.2393596388488,"y":178.47552000000002},{"x":2.241285889544,"y":178.47552000000002},{"x":2.2430257288816002,"y":178.47552000000002},{"x":2.244392745504,"y":178.47552000000002},{"x":2.2473753272256003,"y":178.47552000000002},{"x":2.2497365377552,"y":178.47552000000002},{"x":2.2519734740464,"y":178.47552000000002},{"x":2.25402399898,"y":178.47552000000002},{"x":2.2560745239136,"y":178.47552000000002},{"x":2.2584357344432,"y":178.47552000000002},{"x":2.2607348078536003,"y":178.47552000000002},{"x":2.2627853327872,"y":178.47552000000002},{"x":2.2648358577208,"y":178.47552000000002},{"x":2.2665135599392,"y":178.47552000000002},{"x":2.2689990447072,"y":178.47552000000002},{"x":2.2709874325216,"y":178.47552000000002},{"x":2.273286505932,"y":178.47552000000002},{"x":2.2752127566272,"y":178.47552000000002},{"x":2.2778846527528,"y":178.47552000000002},{"x":2.2800594519248,"y":178.47552000000002},{"x":2.2849682843416,"y":178.47552000000002},{"x":2.2867081236791997,"y":178.47552000000002},{"x":2.2889450599703998,"y":178.47552000000002},{"x":2.2914926818576,"y":178.47552000000002},{"x":2.2935432067912,"y":178.47552000000002},{"x":2.2975821195392,"y":178.47552000000002},{"x":2.3001297414264,"y":178.47552000000002},{"x":2.3023045405983997,"y":178.47552000000002},{"x":2.304355065532,"y":178.47552000000002},{"x":2.3062813162272,"y":178.47552000000002},{"x":2.3078347442072,"y":178.47552000000002},{"x":2.3104445032136,"y":178.47552000000002},{"x":2.3120600683128,"y":178.47552000000002},{"x":2.3140484561272,"y":178.47552000000002},{"x":2.3159125697032,"y":180.44400000000002},{"x":2.317403860564,"y":181.75632000000002},{"x":2.3198272082128,"y":183.72480000000002},{"x":2.3215049104311998,"y":185.03712000000002},{"x":2.323617572484,"y":185.69328000000002},{"x":2.3255438231792,"y":187.66176000000002},{"x":2.3274079367552,"y":188.31792000000002},{"x":2.3293963245696,"y":190.94256000000001},{"x":2.3313225752648,"y":191.59872000000001},{"x":2.3331245517216,"y":193.5672},{"x":2.33480225394,"y":192.25488},{"x":2.3359828592048,"y":193.5672},{"x":2.3390275780456,"y":194.87952},{"x":2.3414509256944,"y":197.50416},{"x":2.343190765032,"y":198.16032},{"x":2.3454277013232,"y":200.78496},{"x":2.3477889118528,"y":203.4096},{"x":2.3495908883096,"y":202.09728},{"x":2.35188996172,"y":202.09728},{"x":2.3536298010576,"y":202.09728},{"x":2.3554317775144,"y":204.06576},{"x":2.357482302448,"y":204.72192},{"x":2.3588493190704,"y":206.6904},{"x":2.3603406099312,"y":208.00272},{"x":2.3620183121496003,"y":209.9712},{"x":2.3632610545336,"y":209.9712},{"x":2.3651251681096,"y":208.65888},{"x":2.3676727899968,"y":209.9712},{"x":2.3694747664536,"y":209.9712},{"x":2.3710903315528,"y":211.28352000000004},{"x":2.3724573481752,"y":212.59584},{"x":2.3741350503936003,"y":213.252},{"x":2.3754399298968,"y":214.56432000000004},{"x":2.3768069465192,"y":215.87664},{"x":2.3787953343336,"y":217.84512000000004},{"x":2.37985166536,"y":217.84512000000004},{"x":2.3817779160552,"y":217.84512000000004},{"x":2.3833313440352,"y":219.15744},{"x":2.3850090462536,"y":219.8136},{"x":2.3868110227104,"y":221.12592000000004},{"x":2.3891100961208003,"y":221.12592000000004},{"x":2.3902907013856,"y":223.0944},{"x":2.3917198551272,"y":223.0944},{"x":2.3935839687032,"y":224.40672000000004},{"x":2.396318001948,"y":223.0944},{"x":2.3979335670472,"y":224.40672000000004},{"x":2.398803486716,"y":224.40672000000004},{"x":2.400978285888,"y":224.40672000000004},{"x":2.4027181252256002,"y":224.40672000000004},{"x":2.4042094160864,"y":226.3752},{"x":2.405327884232,"y":227.68752000000003},{"x":2.4064463523776003,"y":228.99984},{"x":2.4078755061192,"y":230.96832000000003},{"x":2.4101124424103997,"y":230.96832000000003},{"x":2.4119765559863997,"y":230.96832000000003},{"x":2.4139649438008,"y":230.96832000000003},{"x":2.4150834119463997,"y":230.96832000000003},{"x":2.41713393688,"y":230.96832000000003},{"x":2.4196815587672,"y":232.9368},{"x":2.421483535224,"y":234.24912000000003},{"x":2.4224777291312,"y":236.2176},{"x":2.4240311571112,"y":237.52992000000003},{"x":2.425211762376,"y":238.84224},{"x":2.4260816820448,"y":238.84224},{"x":2.4275729729056,"y":238.84224},{"x":2.4286914410512,"y":238.84224},{"x":2.4316118856536,"y":238.84224},{"x":2.4327924909183998,"y":238.84224},{"x":2.4338488219448,"y":238.84224},{"x":2.4368935407856003,"y":237.52992000000003},{"x":2.4378255975736,"y":237.52992000000003},{"x":2.4390062028384,"y":237.52992000000003},{"x":2.440124670984,"y":238.84224},{"x":2.4421751959176,"y":238.84224},{"x":2.442920841348,"y":238.84224},{"x":2.4437286238976,"y":238.84224},{"x":2.444474269328,"y":238.84224},{"x":2.4452820518776,"y":238.84224},{"x":2.4458412859504,"y":238.84224},{"x":2.4465869313808,"y":238.84224},{"x":2.4481403593608,"y":238.84224},{"x":2.4489481419104,"y":238.84224},{"x":2.4510608039632,"y":238.84224},{"x":2.452552094824,"y":238.84224},{"x":2.454726893996,"y":238.84224},{"x":2.4571502416448,"y":238.84224},{"x":2.4593250408168,"y":239.4984},{"x":2.4611891543928,"y":242.12304},{"x":2.4633639535648,"y":242.7792},{"x":2.4654144784984,"y":244.09152000000003},{"x":2.4667814951208,"y":246.06},{"x":2.4688320200544,"y":245.40384},{"x":2.4700747624384,"y":244.09152000000003},{"x":2.4728087956832,"y":244.09152000000003},{"x":2.475232143332,"y":246.06},{"x":2.4774690796231997,"y":245.40384},{"x":2.4802652499872,"y":245.40384},{"x":2.4827507347552,"y":246.06},{"x":2.485174082404,"y":245.40384},{"x":2.4871624702184,"y":244.09152000000003},{"x":2.4894615436288,"y":242.7792},{"x":2.4920713026352,"y":240.81072000000003},{"x":2.4945567874031997,"y":239.4984},{"x":2.4969179979328002,"y":237.52992000000003},{"x":2.4990306599856003,"y":237.52992000000003},{"x":2.5015161447536003,"y":238.84224},{"x":2.5042501779984,"y":237.52992000000003},{"x":2.5066735256472,"y":237.52992000000003},{"x":2.5090347361768,"y":237.52992000000003},{"x":2.5113959467063998,"y":237.52992000000003},{"x":2.5138814314744,"y":237.52992000000003},{"x":2.5164290533616,"y":236.2176},{"x":2.5186659896528,"y":234.24912000000003},{"x":2.520902925944,"y":232.9368},{"x":2.5236369591888,"y":232.28064},{"x":2.52587389548,"y":230.96832000000003},{"x":2.5282972431288,"y":230.96832000000003},{"x":2.5309691392544,"y":230.96832000000003},{"x":2.5333924869032,"y":230.96832000000003},{"x":2.535505148956,"y":230.96832000000003},{"x":2.5375556738896,"y":230.96832000000003},{"x":2.540165432896,"y":230.96832000000003},{"x":2.542340232068,"y":230.96832000000003},{"x":2.5448878539552,"y":230.96832000000003},{"x":2.5468762417696,"y":230.96832000000003},{"x":2.5492374522992,"y":230.96832000000003},{"x":2.5514743885904,"y":230.96832000000003},{"x":2.5604221337552002,"y":230.96832000000003},{"x":2.562534795808,"y":230.96832000000003},{"x":2.5698669758736,"y":230.96832000000003},{"x":2.571855363688,"y":230.96832000000003},{"x":2.5745272598136,"y":230.96832000000003},{"x":2.5791254066344,"y":229.656},{"x":2.5813623429256003,"y":227.68752000000003},{"x":2.5835992792168,"y":226.3752},{"x":2.5862711753423997,"y":224.40672000000004},{"x":2.5886945229912004,"y":224.40672000000004},{"x":2.5912421448783998,"y":223.0944},{"x":2.5931683955736,"y":224.40672000000004},{"x":2.59577815458,"y":224.40672000000004},{"x":2.5980150908712,"y":223.0944},{"x":2.6008733983543997,"y":223.0944},{"x":2.6031103346456,"y":223.0944},{"x":2.6052851338176,"y":221.12592000000004},{"x":2.607273521632,"y":219.8136},{"x":2.6096968692808,"y":219.15744},{"x":2.6121202169296,"y":217.84512000000004},{"x":2.6142328789824,"y":216.5328},{"x":2.6165319523928,"y":216.5328},{"x":2.6186446144456,"y":216.5328},{"x":2.6207572764984,"y":216.5328},{"x":2.6233670355048,"y":216.5328},{"x":2.625914657392,"y":216.5328},{"x":2.628089456564,"y":216.5328},{"x":2.630264255736,"y":216.5328},{"x":2.6325011920272003,"y":216.5328},{"x":2.6344895798416,"y":216.5328},{"x":2.6371614759672,"y":216.5328},{"x":2.6390255895432,"y":216.5328},{"x":2.6412625258344,"y":216.5328},{"x":2.64393442196,"y":214.56432000000004},{"x":2.6460470840127996,"y":213.252},{"x":2.6487811172576,"y":211.28352000000004},{"x":2.6510180535487997,"y":209.9712},{"x":2.65325498984,"y":209.9712},{"x":2.6558647488464,"y":208.00272},{"x":2.6666766075872004,"y":208.00272},{"x":2.6715233028848,"y":208.00272},{"x":2.6739466505336003,"y":208.00272},{"x":2.675935038348,"y":208.00272},{"x":2.678420523116,"y":207.34656},{"x":2.6804710480496,"y":205.37808},{"x":2.6829565328176,"y":204.72192},{"x":2.6853177433472,"y":203.4096},{"x":2.6874925425192004,"y":201.44112},{"x":2.689915890168,"y":201.44112},{"x":2.692401374936,"y":201.44112},{"x":2.6947004483464,"y":201.44112},{"x":2.696440287684,"y":201.44112},{"x":2.7005413375512,"y":201.44112},{"x":2.7022190397696,"y":201.44112},{"x":2.7055123070872003,"y":201.44112},{"x":2.70762496914,"y":200.78496},{"x":2.7096133569544,"y":198.81648},{"x":2.7118502932456003,"y":198.16032},{"x":2.7140872295368,"y":196.848},{"x":2.7161998915896,"y":194.87952},{"x":2.7185611021192004,"y":194.87952},{"x":2.7206116270528,"y":194.87952},{"x":2.7230349747016,"y":194.87952},{"x":2.7254583223504,"y":194.87952},{"x":2.7277573957607997,"y":194.87952},{"x":2.7301186062903997,"y":194.87952},{"x":2.7322312683432,"y":194.87952},{"x":2.745839297448,"y":194.87952},{"x":2.7481383708584,"y":194.87952},{"x":2.7503753071496,"y":194.87952},{"x":2.7524879692024,"y":187.66176000000002},{"x":2.7546006312552,"y":187.66176000000002},{"x":2.7568375675464,"y":187.66176000000002},{"x":2.758266721288,"y":187.66176000000002},{"x":2.7597580121488,"y":187.66176000000002},{"x":2.7631755537047997,"y":187.66176000000002},{"x":2.7656610384727998,"y":187.66176000000002},{"x":2.7674630149296,"y":187.66176000000002},{"x":2.7693892656248,"y":187.66176000000002},{"x":2.7715640647967996,"y":187.66176000000002},{"x":2.7735524526112,"y":187.66176000000002},{"x":2.7756029775448,"y":187.66176000000002},{"x":2.777839913836,"y":187.66176000000002},{"x":2.7797661645312,"y":187.66176000000002},{"x":2.7821273750607998,"y":185.03712000000002},{"x":2.7841157628752002,"y":185.03712000000002},{"x":2.7863526991664,"y":182.41248000000002},{"x":2.7884653612192003,"y":181.75632000000002},{"x":2.7910129831064,"y":181.10016000000002},{"x":2.7931877822784,"y":181.10016000000002},{"x":2.7949897587352,"y":181.10016000000002},{"x":2.7996500426752005,"y":181.10016000000002},{"x":2.8019491160856003,"y":181.10016000000002},{"x":2.8039375039,"y":181.10016000000002},{"x":2.806112303072,"y":181.10016000000002},{"x":2.8079142795288,"y":181.10016000000002},{"x":2.8105240385352004,"y":181.10016000000002},{"x":2.8150600482368,"y":181.10016000000002},{"x":2.8172348474087996,"y":181.10016000000002},{"x":2.8190989609847996,"y":181.75632000000002},{"x":2.8213980343952003,"y":181.75632000000002},{"x":2.8236349706864,"y":181.75632000000002},{"x":2.8261825925736,"y":181.75632000000002},{"x":2.8282331175072004,"y":181.10016000000002},{"x":2.8304079166792,"y":181.10016000000002},{"x":2.8325827158512,"y":181.10016000000002},{"x":2.8348817892616003,"y":181.10016000000002},{"x":2.8374294111487997,"y":180.44400000000002},{"x":2.8395420732016,"y":181.10016000000002},{"x":2.8416547352543997,"y":181.10016000000002},{"x":2.8437673973072,"y":181.10016000000002},{"x":2.8462528820752,"y":181.10016000000002},{"x":2.848365544128,"y":181.10016000000002},{"x":2.8507267546576003,"y":181.10016000000002},{"x":2.8529636909488,"y":181.75632000000002},{"x":2.8551384901207997,"y":181.75632000000002},{"x":2.8576239748887997,"y":181.75632000000002},{"x":2.8596744998224,"y":181.75632000000002},{"x":2.8619735732327998,"y":181.10016000000002},{"x":2.8665095829344,"y":181.10016000000002},{"x":2.8689329305832003,"y":181.10016000000002},{"x":2.8711077297552,"y":181.10016000000002},{"x":2.873220391808,"y":181.10016000000002},{"x":2.875084505384,"y":181.10016000000002},{"x":2.877569990152,"y":181.10016000000002},{"x":2.8796826522048,"y":181.10016000000002},{"x":2.8819817256152,"y":181.10016000000002},{"x":2.8839701134296,"y":181.10016000000002},{"x":2.8861449126016003,"y":181.10016000000002},{"x":2.888133300416,"y":181.10016000000002},{"x":2.8904323738263997,"y":178.47552000000002},{"x":2.8919858018064,"y":178.47552000000002},{"x":2.8950305206472002,"y":177.16320000000002},{"x":2.8973917311768,"y":175.19472000000002},{"x":2.8992558447528,"y":174.53856000000002},{"x":2.9014306439247997,"y":173.88240000000002},{"x":2.9037297173352004,"y":173.88240000000002},{"x":2.9060287907456,"y":173.88240000000002},{"x":2.9082035899176,"y":173.88240000000002},{"x":2.914852261672,"y":175.19472000000002},{"x":2.91733774644,"y":175.85088000000002},{"x":2.9191397228967997,"y":177.81936000000002},{"x":2.9217494819032,"y":178.47552000000002},{"x":2.9241106924327998,"y":179.13168000000002},{"x":2.9264097658432005,"y":181.10016000000002},{"x":2.9285845650152003,"y":181.10016000000002},{"x":2.9306350899487996,"y":181.10016000000002},{"x":2.9329963004784,"y":181.10016000000002},{"x":2.9352953738888,"y":175.85088000000002},{"x":2.9375944472992,"y":175.85088000000002},{"x":2.939707109352,"y":175.85088000000002},{"x":2.9420061827624,"y":175.85088000000002},{"x":2.9441809819344,"y":175.85088000000002},{"x":2.9466664667024,"y":175.85088000000002},{"x":2.949027677232,"y":175.85088000000002},{"x":2.9511403392848,"y":175.85088000000002},{"x":2.953377275576,"y":175.85088000000002},{"x":2.9553656633904,"y":175.85088000000002},{"x":2.95772687392,"y":175.85088000000002},{"x":2.9597773988536002,"y":175.85088000000002},{"x":2.9657425622968,"y":177.16320000000002},{"x":2.9681659099456,"y":178.47552000000002},{"x":2.97015429776,"y":179.13168000000002},{"x":2.9723912340512,"y":181.10016000000002},{"x":2.9745038961040002,"y":181.75632000000002},{"x":2.9765544210376,"y":182.41248000000002},{"x":2.9856264404407997,"y":182.41248000000002},{"x":2.998737372592,"y":181.75632000000002},{"x":3.000912171764,"y":181.10016000000002},{"x":3.0033355194127997,"y":179.13168000000002},{"x":3.0055103185848,"y":178.47552000000002},{"x":3.00743656928,"y":177.16320000000002},{"x":3.0097356426904,"y":175.19472000000002},{"x":3.0118483047432,"y":175.19472000000002},{"x":3.014271652392,"y":175.19472000000002},{"x":3.0158872174912004,"y":175.19472000000002},{"x":3.0178756053056,"y":175.19472000000002},{"x":3.0199882673584,"y":175.19472000000002},{"x":3.0219766551728,"y":175.19472000000002},{"x":3.0240271801064,"y":174.53856000000002},{"x":3.02607770504,"y":173.88240000000002},{"x":3.0278796814968,"y":171.91392},{"x":3.0297437950728,"y":171.25776000000002},{"x":3.0314836344104,"y":170.60160000000002},{"x":3.0332856108672,"y":168.63312},{"x":3.0352118615624,"y":168.63312},{"x":3.0367652895423998,"y":168.63312},{"x":3.0390022258336002,"y":168.63312},{"x":3.0410527507672,"y":168.63312},{"x":3.0429790014624,"y":168.63312},{"x":3.045340211992,"y":167.32080000000002},{"x":3.0470179142103997,"y":166.00848000000002},{"x":3.0490063020247997,"y":165.35232},{"x":3.05093255272,"y":164.69616000000002},{"x":3.0527345291767998,"y":162.72768000000002},{"x":3.0547229169912002,"y":162.07152},{"x":3.056524893448,"y":160.75920000000002},{"x":3.0586375555007996,"y":158.79072},{"x":3.0603773948384,"y":158.13456000000002},{"x":3.0626143311296,"y":156.16608000000002},{"x":3.064602718944,"y":155.50992},{"x":3.0665289696392004,"y":155.50992},{"x":3.0688280430496,"y":154.1976},{"x":3.0708785679832,"y":152.22912},{"x":3.0731776413936003,"y":151.57296000000002},{"x":3.075166029208,"y":148.94832},{"x":3.077030142784,"y":148.94832},{"x":3.0784592965256,"y":148.94832},{"x":3.08044768434,"y":148.94832},{"x":3.0838030887767998,"y":148.94832},{"x":3.0874691788096,"y":148.94832},{"x":3.0895197037432003,"y":148.94832},{"x":3.0938693020872003,"y":148.94832},{"x":3.0961683754976,"y":148.94832},{"x":3.0998344655304,"y":148.94832},{"x":3.101884990464,"y":148.94832},{"x":3.1039976525168,"y":148.94832},{"x":3.1061103145696003,"y":148.94832},{"x":3.1082229766224,"y":142.38672},{"x":3.1104599129136,"y":142.38672},{"x":3.1126347120856,"y":142.38672},{"x":3.1143745514232,"y":142.38672},{"x":3.1167357619527998,"y":142.38672},{"x":3.1189105611247996,"y":142.38672},{"x":3.1213339087736003,"y":142.38672},{"x":3.1233844337072,"y":142.38672},{"x":3.1253728215216,"y":142.38672},{"x":3.1274233464552004,"y":143.04288000000003},{"x":3.1295981456272,"y":144.3552},{"x":3.1322700417528,"y":145.01136000000002},{"x":3.134506978044,"y":145.66752},{"x":3.1368060514544,"y":146.32368000000002},{"x":3.1389808506264,"y":148.29216000000002},{"x":3.1412799240368,"y":148.94832},{"x":3.143206174732,"y":148.94832},{"x":3.1452566996656,"y":148.94832},{"x":3.1476800473143998,"y":148.94832},{"x":3.149730572248,"y":148.94832},{"x":3.1629657786376,"y":148.94832},{"x":3.1648920293328,"y":148.94832},{"x":3.1670668285047996,"y":148.94832},{"x":3.1710436041336,"y":149.60448000000002},{"x":3.1730941290672003,"y":151.57296000000002},{"x":3.1754553395968,"y":152.88528000000002},{"x":3.177692275888,"y":154.85376000000002},{"x":3.1796185265832,"y":155.50992},{"x":3.1819797371128,"y":156.16608000000002},{"x":3.183905987808,"y":156.16608000000002},{"x":3.1862671983376,"y":156.16608000000002},{"x":3.188255586152,"y":156.16608000000002},{"x":3.1906167966816,"y":157.47840000000002},{"x":3.1924187731384,"y":157.47840000000002},{"x":3.1945314351912004,"y":157.47840000000002},{"x":3.1970169199592005,"y":157.47840000000002},{"x":3.1987567592967996,"y":157.47840000000002},{"x":3.2009315584688,"y":158.79072},{"x":3.202547123568,"y":158.79072},{"x":3.204411237144,"y":159.44688000000002},{"x":3.2066481734352004,"y":161.41536000000002},{"x":3.208760835488,"y":162.07152},{"x":3.2108113604216,"y":164.69616000000002},{"x":3.21248906264,"y":164.69616000000002},{"x":3.2150366845272003,"y":164.69616000000002},{"x":3.2169629352224,"y":164.04000000000002},{"x":3.2191377343944,"y":164.04000000000002},{"x":3.2213746706856,"y":164.04000000000002},{"x":3.2234251956192,"y":164.04000000000002},{"x":3.2257242690296,"y":164.04000000000002},{"x":3.2279612053208,"y":164.04000000000002},{"x":3.2302602787312003,"y":164.04000000000002},{"x":3.2324350779032,"y":164.04000000000002},{"x":3.2367846762472,"y":164.04000000000002},{"x":3.2437440335976,"y":164.04000000000002},{"x":3.246043107008,"y":164.04000000000002},{"x":3.2481557690607996,"y":164.04000000000002},{"x":3.2549287150536,"y":164.04000000000002},{"x":3.2592161762783998,"y":164.04000000000002},{"x":3.2614531125696002,"y":164.04000000000002},{"x":3.267480413132,"y":164.04000000000002},{"x":3.2767388438927996,"y":164.04000000000002},{"x":3.2787272317072,"y":164.04000000000002},{"x":3.2812127164752,"y":164.04000000000002},{"x":3.2933915918384,"y":164.04000000000002},{"x":3.2955042538912003,"y":164.04000000000002},{"x":3.3056326043207998,"y":164.04000000000002},{"x":3.3074345807776,"y":164.04000000000002},{"x":3.3185571251144,"y":164.04000000000002},{"x":3.3230309976968,"y":164.04000000000002},{"x":3.3254543453456002,"y":164.04000000000002},{"x":3.3273805960407996,"y":164.04000000000002},{"x":3.329617532332,"y":164.04000000000002},{"x":3.331481645908,"y":162.07152},{"x":3.3334078966032004,"y":162.07152},{"x":3.3357691071328,"y":162.07152},{"x":3.3375710835896,"y":162.07152},{"x":3.3393109229272,"y":162.07152},{"x":3.3418585448144,"y":162.07152},{"x":3.3437226583904,"y":162.07152},{"x":3.3462702802776003,"y":162.72768000000002},{"x":3.3484450794496,"y":164.04000000000002},{"x":3.350433467264,"y":165.35232},{"x":3.352608266436,"y":166.00848000000002},{"x":3.3550316140847998,"y":167.97696000000002},{"x":3.3571442761376002,"y":168.63312},{"x":3.3593812124288,"y":168.63312},{"x":3.3610589146472,"y":168.63312},{"x":3.3629851653424,"y":168.63312},{"x":3.36472500468,"y":168.63312},{"x":3.3660298841832,"y":168.63312},{"x":3.3673347636864,"y":168.63312},{"x":3.3687017803088,"y":168.63312},{"x":3.3703794825272,"y":168.63312},{"x":3.3725542816992005,"y":168.63312},{"x":3.3746048066328,"y":168.63312},{"x":3.3762825088512,"y":168.63312},{"x":3.3772767027584,"y":168.63312},{"x":3.3798864617647997,"y":175.19472000000002},{"x":3.384298197228,"y":175.19472000000002},{"x":3.3860380365656,"y":175.19472000000002},{"x":3.3880885614992002,"y":175.19472000000002},{"x":3.3900148121944,"y":175.19472000000002},{"x":3.391754651532,"y":175.19472000000002},{"x":3.3941158620616,"y":175.19472000000002},{"x":3.396104249876,"y":175.19472000000002},{"x":3.3983411861672,"y":175.19472000000002},{"x":3.4005159853392004,"y":175.19472000000002},{"x":3.4025665102727998,"y":175.19472000000002},{"x":3.4048655836832,"y":175.19472000000002},{"x":3.4069161086168,"y":175.19472000000002},{"x":3.4090909077887996,"y":175.19472000000002},{"x":3.41132784408,"y":175.19472000000002},{"x":3.4135647803712,"y":175.19472000000002},{"x":3.4154288939472,"y":177.16320000000002},{"x":3.4173551446424,"y":178.47552000000002},{"x":3.4195920809336,"y":178.47552000000002},{"x":3.421580468748,"y":180.44400000000002},{"x":3.4236931308007996,"y":181.75632000000002},{"x":3.425619381496,"y":181.75632000000002},{"x":3.4276699064296,"y":181.75632000000002},{"x":3.429658294244,"y":181.75632000000002},{"x":3.4316466820583997,"y":181.75632000000002},{"x":3.433697206992,"y":180.44400000000002},{"x":3.4359962804024,"y":178.47552000000002},{"x":3.438046805336,"y":178.47552000000002},{"x":3.4403458787464,"y":177.16320000000002},{"x":3.4425828150376003,"y":175.19472000000002},{"x":3.4446333399712,"y":175.19472000000002},{"x":3.45327039954,"y":175.19472000000002},{"x":3.4592355629832,"y":175.19472000000002},{"x":3.4614103621552004,"y":175.19472000000002},{"x":3.4636472984464,"y":175.19472000000002},{"x":3.4658842347376,"y":175.19472000000002},{"x":3.4679347596712002,"y":175.19472000000002},{"x":3.4699231474856003,"y":175.19472000000002},{"x":3.4720358095384,"y":175.19472000000002},{"x":3.474397020068,"y":175.19472000000002},{"x":3.4764475450016,"y":175.19472000000002},{"x":3.4785602070543997,"y":175.19472000000002},{"x":3.4806728691072,"y":175.19472000000002},{"x":3.4827233940408,"y":175.19472000000002},{"x":3.484960330332,"y":175.19472000000002},{"x":3.487135129504,"y":175.19472000000002},{"x":3.4892477915568,"y":175.19472000000002},{"x":3.4912361793712003,"y":175.19472000000002},{"x":3.493348841424,"y":175.19472000000002},{"x":3.495523640596,"y":175.19472000000002},{"x":3.4974498912912004,"y":175.19472000000002},{"x":3.4997489647016002,"y":175.19472000000002},{"x":3.5016752153967996,"y":175.19472000000002},{"x":3.5039742888072003,"y":175.19472000000002},{"x":3.50608695086,"y":175.19472000000002},{"x":3.5084481613896,"y":175.19472000000002},{"x":3.5104986863232,"y":175.19472000000002},{"x":3.5128598968527998,"y":175.19472000000002},{"x":3.5150346960248,"y":175.19472000000002},{"x":3.5172094951968,"y":175.19472000000002},{"x":3.5193842943687996,"y":175.19472000000002},{"x":3.521310545064,"y":175.19472000000002},{"x":3.52317465864,"y":175.19472000000002},{"x":3.5252251835736,"y":175.19472000000002},{"x":3.5273999827456,"y":175.19472000000002},{"x":3.5295747819176,"y":175.19472000000002},{"x":3.5316874439704,"y":175.19472000000002},{"x":3.535291396884,"y":175.19472000000002},{"x":3.5373419218176,"y":175.19472000000002},{"x":3.539330309632,"y":175.19472000000002},{"x":3.5413808345656,"y":175.19472000000002},{"x":3.54336922238,"y":175.19472000000002},{"x":3.54492265036,"y":175.19472000000002},{"x":3.547408135128,"y":175.19472000000002},{"x":3.5495207971808,"y":175.19472000000002},{"x":3.551757733472,"y":175.19472000000002},{"x":3.5536839841672,"y":175.19472000000002},{"x":3.55579664622,"y":175.19472000000002},{"x":3.5579093082727997,"y":175.19472000000002},{"x":3.5597112847296,"y":175.19472000000002},{"x":3.5619482210208,"y":175.19472000000002},{"x":3.568845441252,"y":175.19472000000002},{"x":3.5712066517816003,"y":175.19472000000002},{"x":3.5734435880728,"y":175.19472000000002},{"x":3.575680524364,"y":175.19472000000002},{"x":3.578166009132,"y":175.19472000000002},{"x":3.5805272196616,"y":175.19472000000002},{"x":3.5826398817144,"y":175.19472000000002},{"x":3.584690406648,"y":175.19472000000002},{"x":3.5864923831047997,"y":175.19472000000002},{"x":3.588729319396,"y":175.19472000000002},{"x":3.590904118568,"y":175.19472000000002},{"x":3.5932031919783998,"y":175.19472000000002},{"x":3.5972421047264,"y":175.19472000000002},{"x":3.59929262966,"y":175.19472000000002},{"x":3.6065005354872004,"y":175.19472000000002},{"x":3.6084889233016,"y":175.19472000000002},{"x":3.6106637224736002,"y":175.19472000000002},{"x":3.6127763845264,"y":175.19472000000002},{"x":3.61482690946,"y":175.19472000000002},{"x":3.617001708632,"y":175.19472000000002},{"x":3.6189279593272,"y":175.19472000000002},{"x":3.62104062138,"y":175.19472000000002},{"x":3.6232775576712,"y":175.19472000000002},{"x":3.6253280826048,"y":175.19472000000002},{"x":3.6276271560152002,"y":175.19472000000002},{"x":3.6295534067104,"y":175.19472000000002},{"x":3.6316660687632,"y":175.19472000000002},{"x":3.6339030050544,"y":177.16320000000002},{"x":3.6363884898223997,"y":179.13168000000002},{"x":3.6385011518752,"y":180.44400000000002},{"x":3.6408002252856,"y":179.13168000000002},{"x":3.643099298696,"y":178.47552000000002},{"x":3.645584783464,"y":178.47552000000002},{"x":3.6478217197552003,"y":177.16320000000002},{"x":3.649934381808,"y":175.85088000000002},{"x":3.6519227696224,"y":175.19472000000002},{"x":3.6586957156152002,"y":175.19472000000002},{"x":3.6675191865416,"y":175.19472000000002},{"x":3.6695697114752,"y":175.19472000000002},{"x":3.6734843499848,"y":175.19472000000002},{"x":3.6841719344872,"y":175.19472000000002},{"x":3.6864088707783997,"y":175.19472000000002},{"x":3.6887079441888,"y":175.19472000000002},{"x":3.6908827433608,"y":175.19472000000002},{"x":3.6931818167712,"y":175.19472000000002},{"x":3.695294478824,"y":175.19472000000002},{"x":3.6975935522344,"y":175.19472000000002},{"x":3.6995819400488,"y":175.19472000000002},{"x":3.70181887634,"y":175.85088000000002},{"x":3.7038694012736,"y":177.81936000000002},{"x":3.7059820633264,"y":178.47552000000002},{"x":3.7080947253792003,"y":180.44400000000002},{"x":3.710518073028,"y":181.75632000000002},{"x":3.7128792835576,"y":181.75632000000002},{"x":3.7151162198487997,"y":181.75632000000002},{"x":3.7171046076632,"y":181.75632000000002},{"x":3.7196522295504,"y":181.75632000000002},{"x":3.7220755771992002,"y":181.75632000000002},{"x":3.7244367877288,"y":181.75632000000002},{"x":3.7267358611392,"y":181.75632000000002},{"x":3.7290349345496003,"y":180.44400000000002},{"x":3.73133400796,"y":178.47552000000002},{"x":3.7335709442512,"y":177.81936000000002},{"x":3.7358700176616,"y":175.85088000000002},{"x":3.7380448168336002,"y":175.19472000000002},{"x":3.7399710675287996,"y":177.16320000000002},{"x":3.7420837295816,"y":177.81936000000002},{"x":3.7441963916344,"y":178.47552000000002},{"x":3.7464333279256,"y":180.44400000000002},{"x":3.7479867559056,"y":181.10016000000002},{"x":3.7505343777927997,"y":181.75632000000002},{"x":3.7525227656072,"y":181.75632000000002},{"x":3.760538453984,"y":181.75632000000002},{"x":3.7622161562024,"y":181.75632000000002},{"x":3.7638938584207997,"y":181.75632000000002},{"x":3.7657579719967997,"y":178.47552000000002},{"x":3.767684222692,"y":178.47552000000002},{"x":3.7697347476256002,"y":178.47552000000002},{"x":3.77172313544,"y":178.47552000000002},{"x":3.7735251118967996,"y":178.47552000000002},{"x":3.7753270883536003,"y":178.47552000000002},{"x":3.7772533390487997,"y":178.47552000000002},{"x":3.7789310412672004,"y":178.47552000000002},{"x":3.7809815662007997,"y":178.47552000000002},{"x":3.783218502492,"y":178.47552000000002},{"x":3.7855175759024,"y":178.47552000000002},{"x":3.7876302379552,"y":178.47552000000002},{"x":3.7896807628888,"y":178.47552000000002},{"x":3.79191769918,"y":178.47552000000002},{"x":3.7939060869944,"y":178.47552000000002},{"x":3.7957080634512,"y":178.47552000000002},{"x":3.7973857656696,"y":178.47552000000002},{"x":3.799374153484,"y":178.47552000000002},{"x":3.8017975011328,"y":178.47552000000002},{"x":3.8041587116624,"y":178.47552000000002},{"x":3.8061470994768,"y":178.47552000000002},{"x":3.8080112130528,"y":179.13168000000002},{"x":3.8098131895096,"y":181.10016000000002},{"x":3.8117394402048,"y":181.75632000000002},{"x":3.8141006507344,"y":183.72480000000002},{"x":3.816151175668,"y":185.03712000000002},{"x":3.8182638377208,"y":185.03712000000002},{"x":3.8200036770584,"y":185.03712000000002},{"x":3.822054201992,"y":185.03712000000002},{"x":3.8244775496408,"y":185.03712000000002},{"x":3.8264659374552004,"y":185.03712000000002},{"x":3.828578599508,"y":185.03712000000002},{"x":3.8302563017263997,"y":185.03712000000002},{"x":3.8349165856664,"y":185.03712000000002},{"x":3.8374020704344,"y":185.03712000000002},{"x":3.839763280964,"y":185.03712000000002},{"x":3.8418138058976,"y":185.03712000000002},{"x":3.8442371535463997,"y":185.03712000000002},{"x":3.8467847754336,"y":185.03712000000002},{"x":3.8493323973208,"y":185.03712000000002},{"x":3.8518178820888,"y":185.03712000000002},{"x":3.8539926812607996,"y":185.03712000000002},{"x":3.8564160289096003,"y":185.03712000000002},{"x":3.8589636507967997,"y":185.03712000000002},{"x":3.8614491355647997,"y":185.03712000000002},{"x":3.8638724832136,"y":184.38096000000002},{"x":3.8660472823856002,"y":184.38096000000002},{"x":3.8731930510936,"y":184.38096000000002},{"x":3.8754299873847997,"y":184.38096000000002},{"x":3.8775426494376,"y":184.38096000000002},{"x":3.879841722848,"y":184.38096000000002},{"x":3.8820786591392,"y":184.38096000000002},{"x":3.8843155954304,"y":184.38096000000002},{"x":3.8866146688408,"y":184.38096000000002},{"x":3.8886030566552003,"y":181.75632000000002},{"x":3.8907778558272,"y":181.10016000000002},{"x":3.8927041065224,"y":179.13168000000002},{"x":3.8946303572176,"y":177.81936000000002},{"x":3.8963701965552002,"y":175.85088000000002},{"x":3.8982343101312003,"y":175.85088000000002},{"x":3.9002848350647996,"y":177.81936000000002},{"x":3.90221108576,"y":178.47552000000002},{"x":3.9042616106936,"y":180.44400000000002},{"x":3.906249998508,"y":181.75632000000002},{"x":3.908114112084,"y":181.75632000000002},{"x":3.9104131854944,"y":183.72480000000002},{"x":3.9125258475472005,"y":182.41248000000002},{"x":3.9148249209576003,"y":183.72480000000002},{"x":3.9169375830104,"y":183.72480000000002},{"x":3.9190502450632003,"y":183.72480000000002},{"x":3.9212871813544,"y":182.41248000000002},{"x":3.923337706288,"y":182.41248000000002},{"x":3.9253882312216,"y":183.72480000000002},{"x":3.927376619036,"y":183.72480000000002},{"x":3.929551418208,"y":183.72480000000002},{"x":3.9337767423136003,"y":182.41248000000002},{"x":3.9356408558896003,"y":183.72480000000002},{"x":3.937629243704,"y":183.72480000000002},{"x":3.9394312201607997,"y":183.72480000000002},{"x":3.95192078112,"y":183.72480000000002},{"x":3.9648453019136003,"y":183.72480000000002},{"x":3.9782669196607996,"y":183.72480000000002},{"x":3.980503855952,"y":183.72480000000002},{"x":3.9826165180047997,"y":182.41248000000002},{"x":3.9845427687,"y":183.72480000000002},{"x":3.9867797049912004,"y":183.72480000000002},{"x":3.9888302299247997,"y":182.41248000000002},{"x":3.991067166216,"y":183.72480000000002},{"x":3.9930555540304,"y":183.72480000000002},{"x":3.9952303532024,"y":183.72480000000002},{"x":3.9974672894936,"y":182.41248000000002},{"x":3.999455677308,"y":183.72480000000002},{"x":4.001319790884,"y":182.41248000000002},{"x":4.00318390446,"y":182.41248000000002},{"x":4.0051101551552,"y":182.41248000000002},{"x":4.007284954327201,"y":183.72480000000002},{"x":4.0092733421416,"y":182.41248000000002},{"x":4.0116966897904,"y":182.41248000000002},{"x":4.0134986662472,"y":182.41248000000002},{"x":4.0156113283,"y":182.41248000000002},{"x":4.0179104017104,"y":182.41248000000002},{"x":4.019960926644,"y":181.75632000000002},{"x":4.0220114515776,"y":181.10016000000002},{"x":4.0241862507496,"y":179.13168000000002},{"x":4.0263610499216,"y":177.81936000000002},{"x":4.028660123332,"y":175.19472000000002},{"x":4.032761173199201,"y":175.85088000000002},{"x":4.0346874238943995,"y":177.81936000000002},{"x":4.0368622230664,"y":178.47552000000002},{"x":4.0392855707152,"y":178.47552000000002},{"x":4.0412118214104,"y":178.47552000000002},{"x":4.0433244834632,"y":177.81936000000002},{"x":4.045064322800799,"y":178.47552000000002},{"x":4.046990573496,"y":178.47552000000002},{"x":4.049165372668,"y":180.44400000000002},{"x":4.051029486244,"y":181.10016000000002},{"x":4.0530800111776,"y":181.75632000000002},{"x":4.055068398992,"y":181.75632000000002},{"x":4.057181061044799,"y":182.41248000000002},{"x":4.0593558602168,"y":181.75632000000002},{"x":4.0614063851504,"y":181.75632000000002},{"x":4.0635190472032,"y":181.75632000000002},{"x":4.0655074350176,"y":181.75632000000002},{"x":4.0676200970703995,"y":180.44400000000002},{"x":4.0700434447192,"y":178.47552000000002},{"x":4.072156106772,"y":177.81936000000002},{"x":4.0745794544208,"y":175.85088000000002},{"x":4.076754253592799,"y":175.19472000000002},{"x":4.079053327003201,"y":175.85088000000002},{"x":4.0814145375328,"y":175.19472000000002},{"x":4.0835271995856,"y":175.85088000000002},{"x":4.0856398616384,"y":175.19472000000002},{"x":4.0876903865720005,"y":175.85088000000002},{"x":4.089865185744,"y":175.85088000000002},{"x":4.0921642591544,"y":175.85088000000002},{"x":4.094214784088,"y":175.85088000000002},{"x":4.0962031719024,"y":175.85088000000002},{"x":4.0978808741208,"y":175.85088000000002},{"x":4.099869261935201,"y":175.85088000000002},{"x":4.101981923988,"y":175.19472000000002},{"x":4.103846037564,"y":175.19472000000002},{"x":4.1058344253784,"y":175.19472000000002},{"x":4.1076985389544,"y":175.85088000000002},{"x":4.1098112010072,"y":175.85088000000002},{"x":4.1121102744176,"y":175.19472000000002},{"x":4.114098662232,"y":175.19472000000002},{"x":4.1162113242848,"y":175.85088000000002},{"x":4.1180754378608,"y":175.85088000000002},{"x":4.120001688556,"y":175.85088000000002},{"x":4.121555116536,"y":175.85088000000002},{"x":4.12279785892,"y":175.85088000000002},{"x":4.1244755611384,"y":175.85088000000002},{"x":4.1261532633568,"y":177.16320000000002},{"x":4.1280173769327995,"y":177.81936000000002},{"x":4.1298814905088,"y":177.16320000000002},{"x":4.131807741204,"y":177.81936000000002},{"x":4.1339204032568,"y":177.16320000000002},{"x":4.1357845168328,"y":177.16320000000002},{"x":4.1377729046472,"y":177.81936000000002},{"x":4.139574881104,"y":177.16320000000002},{"x":4.1415011317992,"y":177.81936000000002},{"x":4.1431166968984,"y":178.47552000000002},{"x":4.1447322619976,"y":180.44400000000002},{"x":4.1464721013352,"y":181.10016000000002},{"x":4.1483362149112,"y":181.75632000000002},{"x":4.1500139171296,"y":182.41248000000002},{"x":4.1516294822288,"y":183.72480000000002},{"x":4.1529964988512,"y":184.38096000000002},{"x":4.1544256525928,"y":184.38096000000002},{"x":4.1554198465,"y":184.38096000000002},{"x":4.1561654919304,"y":184.38096000000002},{"x":4.159023799413601,"y":183.72480000000002},{"x":4.1612607357048,"y":183.72480000000002},{"x":4.163249123519201,"y":183.72480000000002},{"x":4.1659210196447996,"y":183.72480000000002},{"x":4.1682200930552,"y":183.72480000000002},{"x":4.1709541263,"y":184.38096000000002},{"x":4.1735017481872,"y":183.72480000000002},{"x":4.1758008215976,"y":183.72480000000002},{"x":4.178099895008,"y":183.72480000000002},{"x":4.1806475168952,"y":183.72480000000002},{"x":4.182822316067201,"y":183.72480000000002},{"x":4.1876068742456,"y":183.72480000000002},{"x":4.1900923590136,"y":183.72480000000002},{"x":4.1925778437816,"y":184.38096000000002},{"x":4.197051716364,"y":184.38096000000002},{"x":4.1994750640128,"y":184.38096000000002},{"x":4.201712000304,"y":184.38096000000002},{"x":4.203886799476,"y":184.38096000000002},{"x":4.2061237357672,"y":184.38096000000002},{"x":4.2079878493432,"y":183.72480000000002},{"x":4.2099762371576,"y":183.72480000000002},{"x":4.2121510363296,"y":183.72480000000002},{"x":4.2143879726208,"y":183.72480000000002},{"x":4.2164384975544,"y":183.72480000000002},{"x":4.222900757951201,"y":183.72480000000002},{"x":4.2254483798384,"y":183.72480000000002},{"x":4.2273746305336,"y":183.72480000000002},{"x":4.2338990280496,"y":183.72480000000002},{"x":4.2469478230816,"y":183.72480000000002},{"x":4.2596859325176,"y":184.38096000000002},{"x":4.2618607316896,"y":183.72480000000002},{"x":4.2722997677152,"y":183.72480000000002},{"x":4.2742260184104,"y":183.72480000000002},{"x":4.27658722894,"y":183.72480000000002},{"x":4.2785756167544,"y":183.72480000000002},{"x":4.2808125530456005,"y":183.72480000000002},{"x":4.28280094086,"y":183.72480000000002},{"x":4.2847893286744,"y":183.72480000000002},{"x":4.287026264965601,"y":183.72480000000002},{"x":4.2892632012568,"y":183.72480000000002},{"x":4.291500137548,"y":183.72480000000002},{"x":4.2934885253624,"y":183.72480000000002},{"x":4.295539050296,"y":183.72480000000002},{"x":4.2975274381104,"y":183.72480000000002},{"x":4.299826511520799,"y":183.72480000000002},{"x":4.3020013106928,"y":183.72480000000002},{"x":4.3040518356263995,"y":183.72480000000002},{"x":4.3061644976792,"y":183.72480000000002},{"x":4.308277159732,"y":183.72480000000002},{"x":4.310700507380799,"y":183.72480000000002},{"x":4.3127510323144,"y":183.72480000000002},{"x":4.3260483758232,"y":183.72480000000002},{"x":4.3369223716832,"y":183.72480000000002},{"x":4.3495362068808,"y":184.38096000000002},{"x":4.3518352802912,"y":183.72480000000002},{"x":4.35425862794,"y":183.72480000000002},{"x":4.3564955642312,"y":183.72480000000002},{"x":4.3584839520456,"y":183.72480000000002},{"x":4.3624607276744,"y":183.72480000000002},{"x":4.3646355268464,"y":183.72480000000002},{"x":4.366748188899201,"y":183.72480000000002},{"x":4.3687365767136,"y":183.72480000000002},{"x":4.370724964528,"y":183.72480000000002},{"x":4.3727754894616,"y":183.72480000000002},{"x":4.3748881515144,"y":183.72480000000002},{"x":4.3770008135672,"y":183.72480000000002},{"x":4.379051338500799,"y":183.72480000000002},{"x":4.3810397263152,"y":184.38096000000002},{"x":4.383152388368,"y":184.38096000000002},{"x":4.3855135988976,"y":183.72480000000002},{"x":4.387564123831201,"y":183.72480000000002},{"x":4.3896146487648,"y":183.72480000000002},{"x":4.3917273108176005,"y":183.72480000000002},{"x":4.394026384228,"y":183.72480000000002},{"x":4.3963254576384,"y":184.38096000000002},{"x":4.398686668168,"y":183.72480000000002},{"x":4.4007993302208,"y":183.72480000000002},{"x":4.4029119922736,"y":183.72480000000002},{"x":4.4050867914456004,"y":183.72480000000002},{"x":4.4073237277368,"y":183.72480000000002},{"x":4.4094363897896,"y":183.72480000000002},{"x":4.411424777604,"y":183.72480000000002},{"x":4.41328889118,"y":183.72480000000002},{"x":4.415463690352,"y":183.72480000000002},{"x":4.4165821584976,"y":183.72480000000002},{"x":4.4259648634968,"y":183.72480000000002},{"x":4.4280153884304,"y":183.72480000000002},{"x":4.429630953529601,"y":183.72480000000002},{"x":4.4323028496552,"y":183.72480000000002},{"x":4.4342912374696,"y":183.72480000000002},{"x":4.4364660366416,"y":184.38096000000002},{"x":4.438702972932799,"y":183.72480000000002},{"x":4.4406913607472,"y":184.38096000000002},{"x":4.4426797485616,"y":184.38096000000002},{"x":4.4445438621376,"y":184.38096000000002},{"x":4.4469050726672,"y":183.72480000000002},{"x":4.4498255172696,"y":183.72480000000002},{"x":4.451813905084,"y":183.72480000000002},{"x":4.454299389852,"y":183.72480000000002},{"x":4.4585868510768,"y":183.72480000000002},{"x":4.4610101987256,"y":183.72480000000002},{"x":4.4631228607784,"y":183.72480000000002},{"x":4.4658568940232,"y":183.72480000000002},{"x":4.4677831447184,"y":184.38096000000002},{"x":4.470392903724799,"y":183.72480000000002},{"x":4.47231915442,"y":183.72480000000002},{"x":4.4742454051152,"y":183.72480000000002},{"x":4.4764823414064,"y":183.72480000000002},{"x":4.4781600436248,"y":183.72480000000002},{"x":4.4802727056776,"y":183.72480000000002},{"x":4.4823232306112,"y":183.72480000000002},{"x":4.4841873441872,"y":183.72480000000002},{"x":4.4927001295176,"y":183.72480000000002},{"x":4.4948127915704,"y":183.72480000000002},{"x":4.497236139219201,"y":183.72480000000002},{"x":4.4991002527952,"y":184.38096000000002},{"x":4.5015857375632,"y":184.38096000000002},{"x":4.5037605367352,"y":183.72480000000002},{"x":4.505873198788,"y":183.72480000000002},{"x":4.5082965464367994,"y":183.72480000000002},{"x":4.5099742486552,"y":184.38096000000002},{"x":4.5123354591848,"y":184.38096000000002},{"x":4.5143859841184,"y":183.72480000000002},{"x":4.5167471946480005,"y":183.72480000000002},{"x":4.5190462680584,"y":183.72480000000002},{"x":4.521096792992,"y":184.38096000000002},{"x":4.52358227776,"y":183.72480000000002},{"x":4.5256328026936,"y":184.38096000000002},{"x":4.5281804245808,"y":183.72480000000002},{"x":4.530106675276,"y":183.72480000000002},{"x":4.5404835741824,"y":183.72480000000002},{"x":4.5424098248776,"y":184.38096000000002},{"x":4.5443360755728,"y":185.03712000000002},{"x":4.5463244633872,"y":187.00560000000002},{"x":4.5483128512016,"y":188.31792000000002},{"x":4.550301239016,"y":188.31792000000002},{"x":4.552103215472799,"y":187.66176000000002},{"x":4.5539051919296005,"y":185.69328000000002},{"x":4.555893579744,"y":185.03712000000002},{"x":4.5585033387504,"y":184.38096000000002},{"x":4.5603053152072,"y":184.38096000000002},{"x":4.5624801143792,"y":184.38096000000002},{"x":4.5711793110672,"y":184.38096000000002},{"x":4.5731676988816,"y":184.38096000000002},{"x":4.5754046351727995,"y":184.38096000000002},{"x":4.577703708583201,"y":184.38096000000002},{"x":4.5798785077552004,"y":183.72480000000002},{"x":4.5821154440464,"y":183.72480000000002},{"x":4.5845387916952,"y":184.38096000000002},{"x":4.5867135908672,"y":184.38096000000002},{"x":4.5890748013968,"y":184.38096000000002},{"x":4.591063189211201,"y":183.72480000000002},{"x":4.5933622626216,"y":183.72480000000002},{"x":4.5954127875552,"y":184.38096000000002},{"x":4.5975875867272,"y":184.38096000000002},{"x":4.5999487972568,"y":184.38096000000002},{"x":4.6019993221904,"y":184.38096000000002},{"x":4.604422669839201,"y":184.38096000000002},{"x":4.6064110576536,"y":184.38096000000002},{"x":4.6086479939448,"y":184.38096000000002},{"x":4.6110713415936,"y":184.38096000000002},{"x":4.6131840036464,"y":184.38096000000002},{"x":4.6246793706983995,"y":184.38096000000002},{"x":4.635739777916,"y":184.38096000000002},{"x":4.6492235327824,"y":184.38096000000002},{"x":4.651460469073601,"y":184.38096000000002},{"x":4.653448856888,"y":184.38096000000002},{"x":4.6558100674176,"y":183.72480000000002},{"x":4.6577363181128,"y":183.72480000000002},{"x":4.659662568808,"y":183.72480000000002},{"x":4.6617130937416,"y":183.72480000000002},{"x":4.6641364413904,"y":184.38096000000002},{"x":4.6665597890392005,"y":183.72480000000002},{"x":4.668672451092,"y":183.72480000000002},{"x":4.6712200729792,"y":183.72480000000002},{"x":4.6732705979128,"y":184.38096000000002},{"x":4.6758803569192,"y":184.38096000000002},{"x":4.6781794303296005,"y":184.38096000000002},{"x":4.6806027779784,"y":184.38096000000002},{"x":4.6828397142696,"y":184.38096000000002},{"x":4.684890239203201,"y":184.38096000000002},{"x":4.6871271754944,"y":183.72480000000002},{"x":4.689488386024,"y":183.72480000000002},{"x":4.6920360079112005,"y":183.72480000000002},{"x":4.6942729442024,"y":184.38096000000002},{"x":4.696634154732,"y":184.38096000000002},{"x":4.6989332281424,"y":184.38096000000002},{"x":4.7015429871488,"y":184.38096000000002},{"x":4.70377992344,"y":184.38096000000002},{"x":4.7061411339696,"y":184.38096000000002},{"x":4.7081295217840005,"y":184.38096000000002},{"x":4.7103664580752005,"y":183.72480000000002},{"x":4.7127276686048,"y":183.72480000000002},{"x":4.7145917821808,"y":183.72480000000002},{"x":4.7167665813527995,"y":184.38096000000002},{"x":4.7186306949288,"y":184.38096000000002},{"x":4.721178316816,"y":184.38096000000002},{"x":4.7231667046304,"y":184.38096000000002},{"x":4.7255900522792,"y":184.38096000000002},{"x":4.732052312676,"y":184.38096000000002},{"x":4.7344135232056,"y":184.38096000000002},{"x":4.736712596616,"y":184.38096000000002},{"x":4.7409379207216,"y":182.41248000000002},{"x":4.7431748570128,"y":181.75632000000002},{"x":4.7459088902576,"y":180.44400000000002},{"x":4.7483943750256,"y":178.47552000000002},{"x":4.750755585555201,"y":177.81936000000002},{"x":4.7529925218464,"y":177.81936000000002},{"x":4.7549809096608,"y":177.81936000000002},{"x":4.7574663944288,"y":177.81936000000002},{"x":4.7595169193624,"y":177.16320000000002},{"x":4.7619402670112,"y":177.16320000000002},{"x":4.7661655911168,"y":177.16320000000002},{"x":4.7682782531696,"y":177.16320000000002},{"x":4.770328778103201,"y":177.16320000000002},{"x":4.772689988632799,"y":177.16320000000002},{"x":4.774616239328,"y":177.16320000000002},{"x":4.7768531756192,"y":177.16320000000002},{"x":4.778965837672,"y":177.16320000000002},{"x":4.7813270482016,"y":177.16320000000002},{"x":4.7835018473736,"y":177.81936000000002},{"x":4.785800920784,"y":177.81936000000002},{"x":4.7880378570752,"y":177.81936000000002},{"x":4.7903369304856005,"y":177.81936000000002},{"x":4.7925117296576,"y":177.81936000000002},{"x":4.794562254591201,"y":177.16320000000002},{"x":4.796674916644,"y":177.16320000000002},{"x":4.7989739900543995,"y":177.16320000000002},{"x":4.8012109263456,"y":177.16320000000002},{"x":4.8033857255176,"y":177.16320000000002},{"x":4.805622661808799,"y":177.16320000000002},{"x":4.8077353238616,"y":177.16320000000002},{"x":4.8099101230336005,"y":177.16320000000002},{"x":4.8126441562784,"y":177.16320000000002},{"x":4.8147568183312,"y":177.16320000000002},{"x":4.8173665773376,"y":177.16320000000002},{"x":4.8195413765096005,"y":177.16320000000002},{"x":4.8243880718072,"y":177.81936000000002},{"x":4.8261279111448,"y":177.81936000000002},{"x":4.8291726299856,"y":177.81936000000002},{"x":4.8311610178,"y":178.47552000000002},{"x":4.8337707768064,"y":179.13168000000002},{"x":4.8359455759784,"y":181.10016000000002},{"x":4.8380582380312,"y":181.75632000000002},{"x":4.840792271276,"y":183.72480000000002},{"x":4.8450797325008,"y":183.72480000000002},{"x":4.858190664652,"y":183.72480000000002},{"x":4.862540262996,"y":183.72480000000002},{"x":4.8737870815712006,"y":183.72480000000002},{"x":4.8868980137224,"y":183.72480000000002},{"x":4.8894456356096,"y":184.38096000000002},{"x":4.89174470902,"y":183.72480000000002},{"x":4.8941059195496,"y":184.38096000000002},{"x":4.8961564444832,"y":184.38096000000002},{"x":4.89795842094,"y":183.72480000000002},{"x":4.9000710829928,"y":183.72480000000002},{"x":4.9021837450456,"y":183.72480000000002},{"x":4.9036128987872,"y":183.72480000000002},{"x":4.906346932032,"y":184.38096000000002},{"x":4.908521731204,"y":184.38096000000002},{"x":4.9106343932567995,"y":184.38096000000002},{"x":4.912933466667201,"y":184.38096000000002},{"x":4.9149839916008,"y":183.72480000000002},{"x":4.9170345165344,"y":184.38096000000002},{"x":4.9193335899448,"y":184.38096000000002},{"x":4.9214462519976,"y":184.38096000000002},{"x":4.924056011004,"y":184.38096000000002},{"x":4.926292947295201,"y":183.72480000000002},{"x":4.9304561342816005,"y":184.38096000000002},{"x":4.9326930705728,"y":184.38096000000002},{"x":4.9353028295792,"y":184.38096000000002},{"x":4.937415491632,"y":183.72480000000002},{"x":4.9397767021616,"y":183.72480000000002},{"x":4.9415786786183995,"y":183.72480000000002},{"x":4.9508371093792,"y":183.72480000000002},{"x":4.9636994930536,"y":184.38096000000002},{"x":4.9659364293448,"y":184.38096000000002},{"x":4.9685461883512,"y":184.38096000000002},{"x":4.970845261761601,"y":184.38096000000002},{"x":4.9732064722912,"y":184.38096000000002},{"x":4.9755676828208,"y":184.38096000000002},{"x":4.9779288933504,"y":183.72480000000002},{"x":4.9804765152376005,"y":183.72480000000002},{"x":4.982402765932799,"y":183.72480000000002},{"x":4.9848261135816,"y":183.72480000000002},{"x":4.9868766385152,"y":184.38096000000002},{"x":4.9892378490448,"y":183.72480000000002},{"x":4.9915369224552,"y":184.38096000000002},{"x":4.993960270104,"y":184.38096000000002},{"x":4.9962593435144,"y":184.38096000000002},{"x":4.9984341426864,"y":184.38096000000002},{"x":5.0011681759312,"y":184.38096000000002},{"x":5.0033429751032,"y":183.72480000000002},{"x":5.0057041856327995,"y":183.72480000000002},{"x":5.0076925734472,"y":183.72480000000002},{"x":5.0098673726192,"y":183.72480000000002},{"x":5.0121043089104,"y":183.72480000000002},{"x":5.0143412452016,"y":183.72480000000002},{"x":5.0168267299696,"y":183.72480000000002},{"x":5.0190636662607995,"y":183.72480000000002},{"x":5.021300602552,"y":184.38096000000002},{"x":5.0235996759624,"y":183.72480000000002},{"x":5.0261472978496,"y":184.38096000000002},{"x":5.0282599599024,"y":184.38096000000002},{"x":5.0306833075512,"y":184.38096000000002},{"x":5.0327338324848,"y":184.38096000000002},{"x":5.0351571801336,"y":183.72480000000002},{"x":5.0397553269544,"y":183.72480000000002},{"x":5.042178674603201,"y":183.72480000000002},{"x":5.0441049252984,"y":183.72480000000002},{"x":5.0465282729472,"y":183.72480000000002},{"x":5.0487030721192,"y":183.72480000000002},{"x":5.0510642826488,"y":183.72480000000002},{"x":5.0533633560592,"y":184.38096000000002},{"x":5.055538155231201,"y":184.38096000000002},{"x":5.0578993657608,"y":183.72480000000002},{"x":5.0602605762904,"y":183.72480000000002},{"x":5.0626839239392005,"y":183.72480000000002},{"x":5.0646723117536006,"y":184.38096000000002},{"x":5.066971385164,"y":184.38096000000002},{"x":5.069146184336,"y":184.38096000000002},{"x":5.0715073948656,"y":184.38096000000002},{"x":5.0736200569184,"y":184.38096000000002},{"x":5.0757327189712,"y":183.72480000000002},{"x":5.0776589696664,"y":183.72480000000002},{"x":5.0798337688384,"y":183.72480000000002},{"x":5.0824435278447995,"y":183.72480000000002},{"x":5.0846183270168,"y":183.72480000000002},{"x":5.0869174004272,"y":184.38096000000002},{"x":5.0890921995992,"y":184.38096000000002},{"x":5.091204861652,"y":184.38096000000002},{"x":5.093317523704799,"y":184.38096000000002},{"x":5.0952437744,"y":184.38096000000002},{"x":5.0972321622144,"y":184.38096000000002},{"x":5.0991584129096,"y":183.72480000000002},{"x":5.10145748632,"y":183.72480000000002},{"x":5.1038186968496,"y":183.72480000000002},{"x":5.1059313589024,"y":183.72480000000002},{"x":5.110343094365599,"y":184.38096000000002},{"x":5.112828579133599,"y":183.72480000000002},{"x":5.114941241186401,"y":183.72480000000002},{"x":5.1172403145968,"y":184.38096000000002},{"x":5.1196015251264,"y":184.38096000000002},{"x":5.1215899129408,"y":184.38096000000002},{"x":5.1242618090664,"y":184.38096000000002},{"x":5.126250196880799,"y":183.72480000000002},{"x":5.1287356816487994,"y":183.72480000000002},{"x":5.1307240694632,"y":184.38096000000002},{"x":5.1330231428736,"y":184.38096000000002},{"x":5.135322216284,"y":184.38096000000002},{"x":5.1376834268136,"y":183.72480000000002},{"x":5.1401067744624,"y":183.72480000000002},{"x":5.1471904060512,"y":184.38096000000002},{"x":5.149924439296,"y":184.38096000000002},{"x":5.1525963354216,"y":183.72480000000002},{"x":5.1634081941624,"y":183.72480000000002},{"x":5.1767676747904,"y":183.72480000000002},{"x":5.1793152966776,"y":183.72480000000002},{"x":5.189567921345599,"y":183.72480000000002},{"x":5.1904999781336,"y":183.72480000000002},{"x":5.190872800848799,"y":183.72480000000002},{"x":5.1924262288288,"y":183.72480000000002},{"x":5.1939796568088,"y":183.72480000000002},{"x":5.195905907504,"y":183.72480000000002},{"x":5.198391392272,"y":183.72480000000002},{"x":5.20087687704,"y":184.38096000000002},{"x":5.2036109102848,"y":184.38096000000002},{"x":5.2062206692912,"y":183.72480000000002},{"x":5.2085197427016,"y":184.38096000000002},{"x":5.211253775946401,"y":184.38096000000002},{"x":5.2131800266415995,"y":184.38096000000002},{"x":5.215479100052,"y":184.38096000000002},{"x":5.217716036343201,"y":184.38096000000002},{"x":5.219952972634401,"y":184.38096000000002},{"x":5.222314183164,"y":184.38096000000002},{"x":5.224488982336,"y":184.38096000000002},{"x":5.226974467104,"y":184.38096000000002},{"x":5.2293356776336,"y":184.38096000000002},{"x":5.23194543664,"y":184.38096000000002},{"x":5.2343066471696,"y":184.38096000000002},{"x":5.23660572058,"y":183.72480000000002},{"x":5.2413902787584,"y":184.38096000000002},{"x":5.2433786665727995,"y":184.38096000000002},{"x":5.245739877102401,"y":183.72480000000002},{"x":5.2480389505128,"y":184.38096000000002},{"x":5.250524435280799,"y":184.38096000000002},{"x":5.252885645810401,"y":187.66176000000002},{"x":5.2598450031608,"y":187.66176000000002},{"x":5.2620198023328,"y":187.66176000000002},{"x":5.266431537796,"y":187.66176000000002},{"x":5.2755656943184,"y":188.31792000000002},{"x":5.2778647677288,"y":190.28640000000001},{"x":5.2802881153776,"y":191.59872000000001},{"x":5.282152228953599,"y":192.25488},{"x":5.284575576602401,"y":194.22336},{"x":5.2868125128936,"y":194.22336},{"x":5.2889251749464,"y":194.22336},{"x":5.291286385476,"y":194.22336},{"x":5.293336910409599,"y":194.22336},{"x":5.295698120939201,"y":194.22336},{"x":5.297935057230401,"y":194.22336},{"x":5.299985582164,"y":194.22336},{"x":5.3020982442168,"y":194.22336},{"x":5.304086632031201,"y":194.22336},{"x":5.3064478425608,"y":194.22336},{"x":5.308374093256,"y":194.22336},{"x":5.310051795474401,"y":194.22336},{"x":5.312599417361599,"y":194.22336},{"x":5.314587805176,"y":194.22336},{"x":5.3168868785864,"y":194.87952},{"x":5.319248089116,"y":195.53568},{"x":5.3213607511687995,"y":197.50416},{"x":5.323721961698401,"y":198.81648},{"x":5.326083172228,"y":200.1288},{"x":5.328382245638401,"y":201.44112},{"x":5.330432770572,"y":201.44112},{"x":5.3319240614328,"y":201.44112},{"x":5.3328561182208,"y":201.44112},{"x":5.3337881750088,"y":201.44112},{"x":5.3352794658696,"y":201.44112},{"x":5.336770756730401,"y":201.44112},{"x":5.3386348703064,"y":201.44112},{"x":5.340996080836,"y":204.72192},{"x":5.3427980572928,"y":204.72192},{"x":5.344537896630401,"y":204.72192},{"x":5.346712695802401,"y":204.72192},{"x":5.3486389464976,"y":204.72192},{"x":5.3502545115968,"y":204.72192},{"x":5.353734190272,"y":204.72192},{"x":5.357897377258401,"y":204.72192},{"x":5.360072176430401,"y":204.72192},{"x":5.3619984271256,"y":204.72192},{"x":5.363924677820799,"y":204.72192},{"x":5.3662237512312005,"y":204.72192},{"x":5.3680878648072,"y":204.72192},{"x":5.3766627872568,"y":204.72192},{"x":5.378464763713599,"y":204.72192},{"x":5.3806395628856,"y":204.72192},{"x":5.3825658135808,"y":205.37808},{"x":5.384616338514401,"y":207.34656},{"x":5.386977549044,"y":208.00272},{"x":5.38884166262,"y":209.9712},{"x":5.390830050434401,"y":211.28352000000004},{"x":5.3926320268912,"y":211.28352000000004},{"x":5.3948068260632,"y":211.28352000000004},{"x":5.3971680365928,"y":211.28352000000004},{"x":5.399404972884,"y":211.28352000000004},{"x":5.401704046294401,"y":211.28352000000004},{"x":5.4035060227512,"y":211.28352000000004},{"x":5.4055565476847995,"y":211.28352000000004},{"x":5.407855621095201,"y":211.28352000000004},{"x":5.409657597552,"y":211.28352000000004},{"x":5.4119566709624,"y":212.59584},{"x":5.4136965103,"y":213.252},{"x":5.4156227609952,"y":214.56432000000004},{"x":5.417735423048,"y":216.5328},{"x":5.419599536624,"y":217.84512000000004},{"x":5.4214636502,"y":217.84512000000004},{"x":5.4229549410608,"y":217.84512000000004},{"x":5.4246326432792005,"y":217.84512000000004},{"x":5.429541475696,"y":217.84512000000004},{"x":5.430473532484,"y":217.84512000000004},{"x":5.431716274868,"y":217.84512000000004},{"x":5.4327726058944,"y":217.84512000000004},{"x":5.4336425255632,"y":217.84512000000004},{"x":5.435568776258401,"y":195.53568},{"x":5.4369357928808,"y":197.50416},{"x":5.438427083741599,"y":198.16032},{"x":5.440415471556,"y":198.81648},{"x":5.4447650699,"y":198.81648},{"x":5.4470020061912,"y":200.1288},{"x":5.449114668244,"y":200.78496},{"x":5.4511030560584,"y":201.44112},{"x":5.4530914438727995,"y":204.06576},{"x":5.454707008972,"y":204.72192},{"x":5.456571122548,"y":206.6904},{"x":5.4575653164552005,"y":206.6904},{"x":5.4591187444352,"y":206.6904},{"x":5.4607964466536,"y":207.34656},{"x":5.46340620566,"y":208.00272},{"x":5.465083907878401,"y":209.9712},{"x":5.46651306162,"y":211.28352000000004},{"x":5.4679422153615995,"y":212.59584},{"x":5.4692470948648,"y":213.252},{"x":5.4711733455600005,"y":213.252},{"x":5.473037459136,"y":213.252},{"x":5.474839435592799,"y":214.56432000000004},{"x":5.4767035491688,"y":215.87664},{"x":5.478443388506401,"y":216.5328},{"x":5.4803075020824,"y":217.84512000000004},{"x":5.482233752777599,"y":219.15744},{"x":5.4852784716184,"y":219.15744},{"x":5.48826105334,"y":219.8136},{"x":5.4903115782736,"y":219.8136},{"x":5.4937912569488,"y":219.8136},{"x":5.495717507644,"y":219.8136},{"x":5.4973952098624,"y":219.8136},{"x":5.5011234370144,"y":219.8136},{"x":5.5098847708216,"y":221.12592000000004},{"x":5.5117488843975995,"y":223.0944},{"x":5.5136751350928,"y":224.40672000000004},{"x":5.5153528373112,"y":224.40672000000004},{"x":5.5173412251256,"y":226.3752},{"x":5.5190810644632,"y":226.3752},{"x":5.5226850173768,"y":226.3752},{"x":5.532999779164,"y":226.3752},{"x":5.53486389274,"y":226.3752},{"x":5.5366037320776,"y":226.3752},{"x":5.5383435714152,"y":226.3752},{"x":5.5400212736336,"y":226.3752},{"x":5.5415747016136,"y":226.3752},{"x":5.5433766780704,"y":227.68752000000003},{"x":5.545240791646401,"y":228.99984},{"x":5.5470427681032,"y":229.656},{"x":5.5487826074408,"y":230.96832000000003},{"x":5.550584583897599,"y":232.9368},{"x":5.552572971712,"y":234.24912000000003},{"x":5.554312811049599,"y":234.24912000000003},{"x":5.5561147875064005,"y":234.24912000000003},{"x":5.5577924897247994,"y":234.24912000000003},{"x":5.559097369228,"y":234.24912000000003},{"x":5.5611478941616,"y":234.24912000000003},{"x":5.5621420880688,"y":234.24912000000003},{"x":5.5681693886312,"y":234.24912000000003},{"x":5.5692257196576,"y":234.24912000000003},{"x":5.5705305991608,"y":234.24912000000003},{"x":5.572270438498401,"y":234.24912000000003},{"x":5.5794783443256,"y":234.24912000000003},{"x":5.5813424579015996,"y":235.56144},{"x":5.583206571477599,"y":236.2176},{"x":5.5851328221728,"y":237.52992000000003},{"x":5.587059072868,"y":239.4984},{"x":5.5889853235632,"y":240.81072000000003},{"x":5.5911601227352,"y":240.81072000000003},{"x":5.593148510549599,"y":240.81072000000003},{"x":5.5948883498872,"y":240.81072000000003},{"x":5.5966281892248,"y":240.81072000000003},{"x":5.598865125516,"y":240.81072000000003},{"x":5.601039924688,"y":240.81072000000003},{"x":5.6032768609792,"y":240.81072000000003},{"x":5.605389523032,"y":240.81072000000003},{"x":5.6073157737272,"y":240.81072000000003},{"x":5.611603234952,"y":240.81072000000003},{"x":5.613591622766401,"y":240.81072000000003},{"x":5.6155178734616,"y":240.81072000000003},{"x":5.617319849918401,"y":240.81072000000003},{"x":5.6228500535272,"y":240.81072000000003},{"x":5.624714167103201,"y":240.81072000000003},{"x":5.6266404177984,"y":240.81072000000003},{"x":5.6348425175328,"y":240.81072000000003},{"x":5.6388192931616,"y":240.81072000000003},{"x":5.640807680976,"y":240.81072000000003},{"x":5.646400021704,"y":240.81072000000003},{"x":5.6483262723992,"y":240.81072000000003},{"x":5.650128248856,"y":240.81072000000003},{"x":5.6518059510744,"y":240.81072000000003},{"x":5.653545790412,"y":240.81072000000003},{"x":5.657274017564,"y":240.81072000000003},{"x":5.6592624053784,"y":240.81072000000003},{"x":5.6612507931928,"y":242.12304},{"x":5.6633634552456,"y":242.7792},{"x":5.665227568821599,"y":244.09152000000003},{"x":5.6671538195168,"y":245.40384},{"x":5.6692043444504,"y":246.06},{"x":5.6713791436224,"y":247.37232000000003},{"x":5.673429668556,"y":247.37232000000003},{"x":5.675293782132,"y":247.37232000000003},{"x":5.6813832198136,"y":247.37232000000003},{"x":5.692381489912,"y":247.37232000000003},{"x":5.700459315408,"y":247.37232000000003},{"x":5.7023855661032,"y":247.37232000000003},{"x":5.7163664179232,"y":249.3408},{"x":5.718292668618401,"y":250.65312000000003},{"x":5.7202189193135995,"y":250.65312000000003},{"x":5.722269444247201,"y":252.6216},{"x":5.7241335578232,"y":253.93392000000003},{"x":5.726246219876,"y":253.93392000000003},{"x":5.728296744809599,"y":253.93392000000003},{"x":5.7302229955048,"y":253.93392000000003},{"x":5.7322113833192,"y":253.93392000000003},{"x":5.7338890855376,"y":253.93392000000003},{"x":5.735691061994401,"y":253.93392000000003},{"x":5.7375551755704,"y":253.93392000000003},{"x":5.739295014908,"y":253.93392000000003},{"x":5.7410969913648,"y":253.93392000000003},{"x":5.74457667004,"y":253.93392000000003},{"x":5.7463165093776,"y":253.93392000000003},{"x":5.747994211596,"y":255.24624},{"x":5.749982599410401,"y":255.9024},{"x":5.7516603016287995,"y":257.21472000000006},{"x":5.7536486894432,"y":259.1832},{"x":5.7556992143768,"y":260.49552000000006},{"x":5.7575011908336,"y":260.49552000000006},{"x":5.7593653044096,"y":260.49552000000006},{"x":5.761167280866401,"y":260.49552000000006},{"x":5.7652061936144,"y":260.49552000000006},{"x":5.7671324443096,"y":260.49552000000006},{"x":5.769928614673599,"y":260.49552000000006},{"x":5.771109219938401,"y":260.49552000000006},{"x":5.774837447090401,"y":260.49552000000006},{"x":5.7768258349048,"y":260.49552000000006},{"x":5.7777578916928,"y":260.49552000000006},{"x":5.7787520856,"y":260.49552000000006},{"x":5.779684142388,"y":260.49552000000006},{"x":5.780616199176,"y":260.49552000000006},{"x":5.7814239817256,"y":260.49552000000006},{"x":5.7823560385135995,"y":260.49552000000006},{"x":5.783225958182401,"y":260.49552000000006},{"x":5.784033740732,"y":260.49552000000006},{"x":5.7850279346392,"y":260.49552000000006},{"x":5.7860842656655995,"y":260.49552000000006},{"x":5.786892048215201,"y":260.49552000000006},{"x":5.787761967884,"y":260.49552000000006},{"x":5.788383339076,"y":260.49552000000006},{"x":5.790371726890401,"y":260.49552000000006},{"x":5.7913037836784005,"y":260.49552000000006},{"x":5.7922358404664,"y":260.49552000000006},{"x":5.794099954042401,"y":260.49552000000006},{"x":5.7949698737112,"y":260.49552000000006},{"x":5.7957776562608,"y":260.49552000000006},{"x":5.796585438810401,"y":260.49552000000006},{"x":5.79739322136,"y":260.49552000000006},{"x":5.7994437462935995,"y":260.49552000000006},{"x":5.8006864886775995,"y":260.49552000000006},{"x":5.8018670939424,"y":260.49552000000006},{"x":5.8037933446376,"y":260.49552000000006},{"x":5.804849675664,"y":260.49552000000006},{"x":5.8090128626504,"y":260.49552000000006},{"x":5.809944919438401,"y":260.49552000000006},{"x":5.8109391133456,"y":260.49552000000006},{"x":5.814170243544,"y":260.49552000000006},{"x":5.815412985928,"y":260.49552000000006},{"x":5.82380149702,"y":260.49552000000006},{"x":5.82846178096,"y":260.49552000000006},{"x":5.8325628308272,"y":260.49552000000006},{"x":5.8367260178136,"y":260.49552000000006},{"x":5.842007672945599,"y":260.49552000000006},{"x":5.843685375164,"y":259.1832},{"x":5.8451145289056,"y":257.21472000000006},{"x":5.846481545528,"y":255.9024},{"x":5.8480971106272,"y":253.93392000000003},{"x":5.8496505386072,"y":253.93392000000003},{"x":5.8541865483088,"y":253.93392000000003},{"x":5.85487005662,"y":253.93392000000003},{"x":5.855491427812,"y":253.93392000000003},{"x":5.8599031632752006,"y":253.93392000000003},{"x":5.8615808654935995,"y":253.93392000000003},{"x":5.8633207048312,"y":253.93392000000003},{"x":5.8651848184072,"y":253.93392000000003},{"x":5.867359617579201,"y":253.93392000000003},{"x":5.869782965228,"y":253.93392000000003},{"x":5.8717713530424005,"y":253.93392000000003},{"x":5.873821877976,"y":253.93392000000003},{"x":5.875685991552,"y":253.93392000000003},{"x":5.8774879680088,"y":253.93392000000003},{"x":5.879476355823201,"y":253.93392000000003},{"x":5.881589017876,"y":253.93392000000003},{"x":5.8835152685712,"y":253.93392000000003},{"x":5.885503656385599,"y":253.93392000000003},{"x":5.8874920442,"y":253.93392000000003},{"x":5.889666843372,"y":253.93392000000003},{"x":5.8914066827096,"y":253.93392000000003},{"x":5.9009757990664005,"y":253.93392000000003},{"x":5.905076848933599,"y":253.93392000000003},{"x":5.9069409625096,"y":255.9024},{"x":5.908742938966401,"y":257.21472000000006},{"x":5.9102963669464,"y":258.52704},{"x":5.9119119320456,"y":260.49552000000006},{"x":5.914211005456,"y":260.49552000000006},{"x":5.9199276204224,"y":260.49552000000006},{"x":5.9276947603224,"y":260.49552000000006},{"x":5.92943459966,"y":260.49552000000006},{"x":5.931298713236,"y":260.49552000000006},{"x":5.933473512408,"y":260.49552000000006},{"x":5.93564831158,"y":260.49552000000006},{"x":5.937512425156,"y":260.49552000000006},{"x":5.9394386758512,"y":260.49552000000006},{"x":5.941364926546401,"y":260.49552000000006},{"x":5.9432911772415995,"y":260.49552000000006},{"x":5.9452174279368,"y":260.49552000000006},{"x":5.946708718797599,"y":260.49552000000006},{"x":5.948821380850401,"y":260.49552000000006},{"x":5.9512447284992005,"y":260.49552000000006},{"x":5.953668076148,"y":260.49552000000006},{"x":5.9560914237968,"y":260.49552000000006},{"x":5.958639045684,"y":260.49552000000006},{"x":5.9610623933328,"y":260.49552000000006},{"x":5.9678974764448,"y":260.49552000000006},{"x":5.969699452901599,"y":260.49552000000006},{"x":5.9712528808815994,"y":260.49552000000006},{"x":5.9729305831,"y":260.49552000000006},{"x":5.9747325595567995,"y":260.49552000000006},{"x":5.9765966731328,"y":260.49552000000006},{"x":5.9785850609472,"y":260.49552000000006},{"x":5.980573448761599,"y":260.49552000000006},{"x":5.985668692536,"y":260.49552000000006},{"x":5.990950347668,"y":260.49552000000006},{"x":5.9918202673367995,"y":260.49552000000006},{"x":5.993746518032,"y":260.49552000000006},{"x":5.99467857482,"y":260.49552000000006},{"x":5.995610631608,"y":260.49552000000006},{"x":5.9965426883960005,"y":260.49552000000006},{"x":5.997474745184,"y":260.49552000000006},{"x":5.9983446648528,"y":260.49552000000006},{"x":5.99933885876,"y":260.49552000000006},{"x":6.000146641309599,"y":260.49552000000006},{"x":6.0007058753824,"y":260.49552000000006},{"x":6.0017622064088,"y":260.49552000000006},{"x":6.00244571472,"y":260.49552000000006},{"x":6.0033156343888,"y":260.49552000000006},{"x":6.0043719654152,"y":260.49552000000006},{"x":6.0073545471368,"y":260.49552000000006},{"x":6.010026443262401,"y":260.49552000000006},{"x":6.011331322765599,"y":260.49552000000006},{"x":6.012698339388,"y":260.49552000000006},{"x":6.014562452964,"y":260.49552000000006},{"x":6.015991606705599,"y":260.49552000000006},{"x":6.0171100748512005,"y":260.49552000000006},{"x":6.018539228592799,"y":260.49552000000006},{"x":6.0203412050496,"y":260.49552000000006},{"x":6.021708221672,"y":260.49552000000006},{"x":6.022950964056,"y":260.49552000000006},{"x":6.0241315693208,"y":260.49552000000006},{"x":6.026368505612,"y":261.80784},{"x":6.0274869737576,"y":262.464},{"x":6.028543304784,"y":263.77632000000006},{"x":6.0297239100488,"y":265.7448},{"x":6.031028789552,"y":267.05712000000005},{"x":6.0320851205784,"y":267.05712000000005},{"x":6.0333278629624,"y":267.05712000000005},{"x":6.0352541136576,"y":267.05712000000005},{"x":6.0369939529952,"y":267.05712000000005},{"x":6.045009641372,"y":267.05712000000005},{"x":6.046438795113599,"y":267.05712000000005},{"x":6.0516583131264,"y":267.05712000000005},{"x":6.052466095676,"y":267.05712000000005},{"x":6.0578720250464,"y":267.05712000000005},{"x":6.0598604128608,"y":267.05712000000005},{"x":6.068000375476,"y":267.05712000000005},{"x":6.0750218699456,"y":267.05712000000005},{"x":6.076885983521599,"y":267.05712000000005},{"x":6.0849016718984,"y":267.05712000000005},{"x":6.0863929627592,"y":267.05712000000005},{"x":6.0896240929575995,"y":267.05712000000005},{"x":6.0920474406064,"y":269.0256},{"x":6.0944707882552,"y":269.0256},{"x":6.0972669586192,"y":270.33792000000005},{"x":6.0991310721952,"y":272.3064},{"x":6.1008709115328,"y":273.61872000000005},{"x":6.102610750870401,"y":273.61872000000005},{"x":6.1039777674927995,"y":273.61872000000005},{"x":6.1057797439496,"y":273.61872000000005},{"x":6.107519583287201,"y":273.61872000000005},{"x":6.1095079711016,"y":273.61872000000005},{"x":6.1116827702736,"y":273.61872000000005},{"x":6.1143546663992,"y":273.61872000000005},{"x":6.116778014048,"y":273.61872000000005},{"x":6.11895281322,"y":273.61872000000005},{"x":6.120879063915201,"y":273.61872000000005},{"x":6.123116000206401,"y":273.61872000000005},{"x":6.1252907993784005,"y":273.61872000000005},{"x":6.127652009908,"y":273.61872000000005},{"x":6.1303239060336,"y":273.61872000000005},{"x":6.1396444739136,"y":273.61872000000005},{"x":6.1530039545415995,"y":275.5872},{"x":6.1548680681176,"y":275.5872},{"x":6.1571050044088,"y":276.89952000000005},{"x":6.1594040778192,"y":278.868},{"x":6.1615788769912,"y":280.18032000000005},{"x":6.163505127686401,"y":280.18032000000005},{"x":6.1653692412624,"y":280.18032000000005},{"x":6.167419766196,"y":280.18032000000005},{"x":6.169283879772,"y":280.18032000000005},{"x":6.1715208160632,"y":280.18032000000005},{"x":6.1733849296392,"y":280.18032000000005},{"x":6.1748762205,"y":280.18032000000005},{"x":6.1768024711952005,"y":280.18032000000005},{"x":6.1788529961288,"y":280.18032000000005},{"x":6.18108993242,"y":280.18032000000005},{"x":6.183016183115201,"y":280.18032000000005},{"x":6.1850667080488,"y":280.18032000000005},{"x":6.1866822731480005,"y":280.18032000000005},{"x":6.188546386724,"y":280.18032000000005},{"x":6.1905347745384,"y":281.49264},{"x":6.1923988881144005,"y":282.1488},{"x":6.1943872759288,"y":283.46112000000005},{"x":6.196375663743201,"y":285.4296},{"x":6.1985504629152,"y":286.74192000000005},{"x":6.2008495363256,"y":288.05424},{"x":6.2025272385440005,"y":286.74192000000005},{"x":6.204080666524,"y":285.4296},{"x":6.2057583687424005,"y":284.77344},{"x":6.207373933841599,"y":283.46112000000005},{"x":6.2091137731792,"y":282.1488},{"x":6.2108536125168,"y":280.18032000000005},{"x":6.212344903377599,"y":280.18032000000005},{"x":6.21371192,"y":280.18032000000005},{"x":6.21526534798,"y":280.18032000000005},{"x":6.2176265585095996,"y":280.18032000000005},{"x":6.2238402704296,"y":280.18032000000005},{"x":6.238256082084,"y":278.868},{"x":6.2406794297328,"y":276.89952000000005},{"x":6.242419269070401,"y":275.5872},{"x":6.2442833826464,"y":274.93104},{"x":6.2460853591032,"y":273.61872000000005},{"x":6.2480737469175995,"y":273.61872000000005},{"x":6.2500621347320005,"y":273.61872000000005},{"x":6.251926248308,"y":273.61872000000005},{"x":6.253976773241599,"y":273.61872000000005},{"x":6.25565447546,"y":273.61872000000005},{"x":6.257332177678401,"y":273.61872000000005},{"x":6.259506976850401,"y":273.61872000000005},{"x":6.2616196389032,"y":273.61872000000005},{"x":6.2639187123135995,"y":273.61872000000005},{"x":6.2701324242336,"y":273.61872000000005},{"x":6.2718722635712005,"y":273.61872000000005},{"x":6.2737985142664,"y":273.61872000000005},{"x":6.2762218619152,"y":273.61872000000005},{"x":6.2829326707888,"y":273.61872000000005},{"x":6.28516960708,"y":273.61872000000005},{"x":6.287655091848,"y":273.61872000000005},{"x":6.2921289644304,"y":273.61872000000005},{"x":6.293993078006401,"y":273.61872000000005},{"x":6.2957950544632,"y":273.61872000000005},{"x":6.301138846714401,"y":273.61872000000005},{"x":6.3044942511512,"y":273.61872000000005},{"x":6.3056127192968,"y":273.61872000000005},{"x":6.305985542012,"y":273.61872000000005},{"x":6.3062340904887995,"y":273.61872000000005},{"x":6.3062340904887995,"y":273.61872000000005},{"x":6.3067311874424,"y":273.61872000000005},{"x":6.3067311874424,"y":273.61872000000005},{"x":6.307352558634401,"y":273.61872000000005},{"x":6.3134419963160004,"y":273.61872000000005},{"x":6.3159896182032,"y":273.61872000000005},{"x":6.318102280256,"y":273.61872000000005},{"x":6.3201528051896,"y":273.61872000000005},{"x":6.3222654672424,"y":273.61872000000005},{"x":6.3260558315135995,"y":273.61872000000005},{"x":6.3279199450896,"y":273.61872000000005},{"x":6.329597647308,"y":275.5872},{"x":6.331151075288,"y":276.89952000000005},{"x":6.332953051744799,"y":278.21184},{"x":6.3350657137976,"y":278.868},{"x":6.3374269243272,"y":280.18032000000005},{"x":6.3394153121415995,"y":280.18032000000005},{"x":6.3411551514792,"y":280.18032000000005},{"x":6.3436406362472,"y":280.18032000000005},{"x":6.3450076528696,"y":280.18032000000005},{"x":6.3489844284984,"y":280.18032000000005},{"x":6.3508485420744005,"y":282.1488},{"x":6.353209752604,"y":283.46112000000005},{"x":6.355384551776,"y":284.77344},{"x":6.357248665352,"y":286.74192000000005},{"x":6.3596098758816,"y":286.74192000000005},{"x":6.361908949292,"y":286.74192000000005},{"x":6.3664449589936,"y":286.74192000000005},{"x":6.368122661212,"y":286.74192000000005},{"x":6.370297460384,"y":286.74192000000005},{"x":6.3722858481984,"y":286.74192000000005},{"x":6.374647058728,"y":288.05424},{"x":6.382973432700799,"y":288.05424},{"x":6.385023957634401,"y":288.05424},{"x":6.3869502083295995,"y":288.05424},{"x":6.3888764590248,"y":288.05424},{"x":6.3910512581968,"y":288.05424},{"x":6.392853234653599,"y":288.05424},{"x":6.395090170944799,"y":288.05424},{"x":6.3970785587592,"y":288.05424},{"x":6.398756260977599,"y":288.05424},{"x":6.400744648792,"y":288.05424},{"x":6.402608762368,"y":288.05424},{"x":6.40478356154,"y":288.05424},{"x":6.4067719493544,"y":288.05424},{"x":6.4088846114072,"y":288.05424},{"x":6.41099727346,"y":288.05424},{"x":6.4127992499168,"y":288.05424},{"x":6.4147876377312,"y":288.05424},{"x":6.416713888426401,"y":288.05424},{"x":6.4223683662735995,"y":288.05424},{"x":6.427152924452,"y":288.05424},{"x":6.431813208392,"y":288.7104},{"x":6.433055950776,"y":290.02272000000005},{"x":6.433988007564,"y":291.9912},{"x":6.434920064352,"y":293.30352000000005},{"x":6.43585212114,"y":294.61584},{"x":6.4369084521664,"y":294.61584},{"x":6.4380890574312,"y":294.61584},{"x":6.441133776272,"y":295.272},{"x":6.442687204252,"y":296.58432000000005},{"x":6.443867809516799,"y":297.89664},{"x":6.445048414781599,"y":298.5528},{"x":6.4464775685232,"y":303.14592000000005},{"x":6.4477203109072,"y":303.14592000000005},{"x":6.4490251904104,"y":303.14592000000005},{"x":6.4503922070328,"y":303.14592000000005},{"x":6.4518213607744,"y":303.14592000000005},{"x":6.453374788754401,"y":303.14592000000005},{"x":6.4544932569,"y":303.14592000000005},{"x":6.4555495879264,"y":303.14592000000005},{"x":6.4567301931912,"y":305.1144},{"x":6.4585943067672,"y":306.42672000000005},{"x":6.4605826945816,"y":307.73904},{"x":6.462198259680799,"y":308.3952},{"x":6.4640002361376,"y":309.70752000000005},{"x":6.4671692292167995,"y":309.70752000000005},{"x":6.4689712056736,"y":309.70752000000005},{"x":6.4705867707728,"y":309.70752000000005},{"x":6.472078061633599,"y":309.70752000000005},{"x":6.4739421752096,"y":311.01984},{"x":6.4753713289512005,"y":311.676},{"x":6.476676208454401,"y":312.98832000000004},{"x":6.478105362196,"y":314.95680000000004},{"x":6.479534515937599,"y":316.26912000000004},{"x":6.4807151212024,"y":317.58144},{"x":6.4823306863016,"y":317.58144},{"x":6.4851268566656,"y":317.58144},{"x":6.49022210044,"y":317.58144},{"x":6.4940746018304,"y":317.58144},{"x":6.4957523040488,"y":317.58144},{"x":6.4965600865984,"y":317.58144},{"x":6.497554280505599,"y":317.58144},{"x":6.498610611532,"y":317.58144},{"x":6.499977628154401,"y":318.23760000000004},{"x":6.501406781896,"y":319.54992000000004},{"x":6.50264952428,"y":321.51840000000004},{"x":6.503892266664,"y":322.83072000000004},{"x":6.5051971461672,"y":324.14304},{"x":6.5063156143128,"y":324.79920000000004},{"x":6.50730980822,"y":324.79920000000004},{"x":6.508241865008,"y":324.79920000000004},{"x":6.5092981960344005,"y":324.79920000000004},{"x":6.51041666418,"y":324.79920000000004},{"x":6.5114108580872,"y":324.79920000000004},{"x":6.513274971663201,"y":324.79920000000004},{"x":6.5154497708352,"y":324.79920000000004},{"x":6.516319690504,"y":324.79920000000004},{"x":6.517065335934401,"y":324.79920000000004},{"x":6.5175002957688,"y":324.79920000000004},{"x":6.5181216669608,"y":324.79920000000004},{"x":6.5188673123912,"y":324.79920000000004},{"x":6.519488683583201,"y":324.79920000000004},{"x":6.5201100547752,"y":324.79920000000004},{"x":6.5227198137816,"y":324.79920000000004},{"x":6.5247703387152,"y":324.79920000000004},{"x":6.525640258384,"y":326.11152000000004},{"x":6.526758726529599,"y":328.08000000000004},{"x":6.5273179606024,"y":329.39232000000004},{"x":6.5280636060327994,"y":330.70464},{"x":6.52905779994,"y":331.36080000000004},{"x":6.5299277196088,"y":331.36080000000004},{"x":6.5311083248736,"y":331.36080000000004},{"x":6.5322267930192,"y":331.36080000000004},{"x":6.5332209869264,"y":331.36080000000004},{"x":6.534028769476,"y":331.36080000000004},{"x":6.53527151186,"y":331.36080000000004},{"x":6.536327842886401,"y":331.36080000000004},{"x":6.5372598996744005,"y":331.36080000000004},{"x":6.537943407985599,"y":331.36080000000004},{"x":6.538689053416,"y":331.36080000000004},{"x":6.5394346988464,"y":332.67312000000004},{"x":6.540242481396,"y":333.98544},{"x":6.5412366753032005,"y":335.95392000000004},{"x":6.5421687320912,"y":337.26624},{"x":6.543349337356,"y":337.92240000000004},{"x":6.543970708548,"y":337.92240000000004},{"x":6.544964902455201,"y":337.92240000000004},{"x":6.5463940561967995,"y":337.92240000000004},{"x":6.547512524342401,"y":337.92240000000004},{"x":6.5481960326536,"y":337.92240000000004},{"x":6.5490038152032,"y":337.92240000000004},{"x":6.5497494606336,"y":337.92240000000004},{"x":6.5531048650704005,"y":337.92240000000004},{"x":6.5540369218584,"y":339.23472000000004},{"x":6.5549689786464,"y":340.54704},{"x":6.555901035434401,"y":341.20320000000004},{"x":6.5568952293416,"y":342.51552000000004},{"x":6.5573923262952,"y":344.48400000000004},{"x":6.5583243830832005,"y":344.48400000000004},{"x":6.559194302752,"y":344.48400000000004},{"x":6.5597535368247994,"y":344.48400000000004},{"x":6.5600020853015995,"y":344.48400000000004},{"x":6.5600020853015995,"y":344.48400000000004},{"x":6.560747730732,"y":344.48400000000004},{"x":6.5625497071888,"y":344.48400000000004},{"x":6.5636681753344,"y":347.10864},{"x":6.5648487805992,"y":347.76480000000004},{"x":6.5662779343408,"y":349.07712000000004},{"x":6.567582813844,"y":351.04560000000004},{"x":6.569384790300799,"y":351.04560000000004},{"x":6.571746000830401,"y":351.04560000000004},{"x":6.574355759836799,"y":351.04560000000004},{"x":6.576282010532,"y":352.35792000000004},{"x":6.5787053581808,"y":351.04560000000004},{"x":6.581252980068,"y":351.04560000000004},{"x":6.582930682286401,"y":351.04560000000004},{"x":6.5848569329816,"y":351.04560000000004},{"x":6.5866589094384,"y":352.35792000000004},{"x":6.588398748776,"y":352.35792000000004},{"x":6.5928104842392,"y":353.67024000000004},{"x":6.5944881864576,"y":354.32640000000004},{"x":6.59585520308,"y":355.63872000000003},{"x":6.5976571795367995,"y":357.60720000000003},{"x":6.599272744636,"y":358.91952000000003},{"x":6.6011368582120005,"y":358.91952000000003},{"x":6.6031873831456,"y":358.91952000000003},{"x":6.6049893596024,"y":358.91952000000003},{"x":6.6075369814895994,"y":358.91952000000003},{"x":6.6099603291384,"y":358.91952000000003},{"x":6.6119487169528,"y":358.91952000000003},{"x":6.6137506934095995,"y":360.88800000000003},{"x":6.615428395628,"y":360.88800000000003},{"x":6.617168234965599,"y":362.20032000000003},{"x":6.6190944856608,"y":364.16880000000003},{"x":6.621331421952,"y":365.48112000000003},{"x":6.6258674316535995,"y":365.48112000000003},{"x":6.6283529164215995,"y":365.48112000000003},{"x":6.6345666283416,"y":365.48112000000003},{"x":6.6391647751624,"y":365.48112000000003},{"x":6.6479261089696,"y":365.48112000000003},{"x":6.6524621186712,"y":365.48112000000003},{"x":6.6537669981744,"y":367.44960000000003},{"x":6.6553825632736,"y":367.44960000000003},{"x":6.657060265492,"y":368.76192000000003},{"x":6.658613693472,"y":370.73040000000003},{"x":6.660477807048,"y":372.04272000000003},{"x":6.6628390175776,"y":372.04272000000003},{"x":6.6711032544312,"y":372.04272000000003},{"x":6.6778140633048,"y":372.04272000000003},{"x":6.678808257212,"y":372.04272000000003},{"x":6.680050999596,"y":372.04272000000003},{"x":6.6811694677416,"y":372.04272000000003},{"x":6.6862025743968,"y":372.04272000000003},{"x":6.687569591019201,"y":372.04272000000003},{"x":6.688750196284,"y":372.04272000000003},{"x":6.6897443901912,"y":372.04272000000003},{"x":6.6908007212176,"y":372.04272000000003},{"x":6.6916706408864,"y":372.04272000000003},{"x":6.692478423436,"y":372.04272000000003},{"x":6.692664834793599,"y":372.04272000000003},{"x":6.6932862059856,"y":372.04272000000003},{"x":6.6942182627735995,"y":372.04272000000003},{"x":6.6942182627735995,"y":372.04272000000003},{"x":6.6942803998928,"y":372.04272000000003},{"x":6.6942803998928,"y":372.04272000000003},{"x":6.6945289483696,"y":372.04272000000003},{"x":6.697138707376,"y":372.04272000000003},{"x":6.6988164095944,"y":372.04272000000003},{"x":6.700121289097599,"y":374.01120000000003},{"x":6.700866934528,"y":375.32352000000003},{"x":6.7019232655544005,"y":376.63584000000003},{"x":6.7025446367464,"y":377.29200000000003},{"x":6.7032281450576,"y":378.60432000000003},{"x":6.7039116533688,"y":378.60432000000003},{"x":6.704719435918401,"y":378.60432000000003},{"x":6.7055893555872,"y":378.60432000000003},{"x":6.7065214123752,"y":378.60432000000003},{"x":6.7076398805208,"y":378.60432000000003},{"x":6.7081991145936,"y":378.60432000000003},{"x":6.7088204857855995,"y":378.60432000000003},{"x":6.70925544562,"y":378.60432000000003},{"x":6.709628268335201,"y":378.60432000000003},{"x":6.7103739137656,"y":378.60432000000003},{"x":6.710871010719201,"y":378.60432000000003},{"x":6.7112438334344,"y":378.60432000000003},{"x":6.7116166561496,"y":378.60432000000003},{"x":6.712113753103201,"y":378.60432000000003},{"x":6.7124865758184,"y":378.60432000000003},{"x":6.7129215356528,"y":378.60432000000003},{"x":6.713480769725599,"y":378.60432000000003},{"x":6.7141021409176,"y":378.60432000000003},{"x":6.714537100752,"y":378.60432000000003},{"x":6.7159041173744,"y":378.60432000000003},{"x":6.716960448400799,"y":378.60432000000003},{"x":6.7185760135,"y":378.60432000000003},{"x":6.719383796049599,"y":378.60432000000003},{"x":6.720253715718401,"y":378.60432000000003},{"x":6.7211857725064,"y":378.60432000000003},{"x":6.7222421035328,"y":378.60432000000003},{"x":6.723049886082401,"y":378.60432000000003},{"x":6.724479039824,"y":378.60432000000003},{"x":6.7266538389960004,"y":378.60432000000003},{"x":6.7329918251544,"y":378.60432000000003},{"x":6.737652109094401,"y":378.60432000000003},{"x":6.738584165882401,"y":378.60432000000003},{"x":6.739391948432,"y":378.60432000000003},{"x":6.7402618681007995,"y":378.60432000000003},{"x":6.7411317877696,"y":378.60432000000003},{"x":6.7420638445576,"y":378.60432000000003},{"x":6.7427473528688,"y":378.60432000000003},{"x":6.7437415467760005,"y":378.60432000000003},{"x":6.7444871922064005,"y":378.60432000000003},{"x":6.74498428916,"y":378.60432000000003},{"x":6.746102757305599,"y":378.60432000000003},{"x":6.7470348140936,"y":378.60432000000003},{"x":6.7479668708816,"y":378.60432000000003},{"x":6.7487746534312,"y":378.60432000000003},{"x":6.7504523556496,"y":378.60432000000003},{"x":6.751819372272,"y":378.60432000000003},{"x":6.753062114656,"y":378.60432000000003},{"x":6.7532485260136,"y":378.60432000000003},{"x":6.7551126395895995,"y":378.60432000000003},{"x":6.7561068334967995,"y":378.60432000000003},{"x":6.7575981243575995,"y":378.60432000000003},{"x":6.75896514098,"y":378.60432000000003},{"x":6.7600214720064,"y":378.60432000000003},{"x":6.761139940152,"y":378.60432000000003},{"x":6.762258408297599,"y":378.60432000000003},{"x":6.763314739324,"y":378.60432000000003},{"x":6.7643089332312005,"y":378.60432000000003},{"x":6.7654274013768,"y":378.60432000000003},{"x":6.7659244983304,"y":378.60432000000003},{"x":6.766421595284,"y":378.60432000000003},{"x":6.7671051035952,"y":378.60432000000003},{"x":6.7676022005488,"y":378.60432000000003},{"x":6.7683478459792,"y":378.60432000000003},{"x":6.769217765648,"y":378.60432000000003},{"x":6.76983913684,"y":378.60432000000003},{"x":6.770584782270401,"y":378.60432000000003},{"x":6.7754314775680005,"y":378.60432000000003},{"x":6.7787247448856,"y":378.60432000000003},{"x":6.7821422864416,"y":378.60432000000003},{"x":6.7854976908784,"y":377.29200000000003},{"x":6.7881074498848,"y":376.63584000000003},{"x":6.791090031606401,"y":375.32352000000003},{"x":6.7935133792552005,"y":373.35504000000003},{"x":6.796123138261599,"y":372.04272000000003},{"x":6.7994164055792,"y":372.04272000000003},{"x":6.806002940214401,"y":372.04272000000003},{"x":6.8188653238888,"y":372.04272000000003},{"x":6.823090647994401,"y":372.04272000000003},{"x":6.824084841901599,"y":372.04272000000003},{"x":6.8250790358088,"y":372.04272000000003},{"x":6.8268188751464,"y":372.04272000000003},{"x":6.829117948556799,"y":372.04272000000003},{"x":6.8296771826296,"y":372.04272000000003},{"x":6.8299878682256,"y":372.04272000000003},{"x":6.8299878682256,"y":372.04272000000003},{"x":6.8299878682256,"y":372.04272000000003},{"x":6.8306092394175995,"y":372.04272000000003},{"x":6.8309199250136,"y":372.04272000000003},{"x":6.8309199250136,"y":372.04272000000003},{"x":6.831541296205599,"y":372.04272000000003},{"x":6.8322248045168,"y":372.04272000000003},{"x":6.832908312828,"y":372.04272000000003},{"x":6.833653958258401,"y":372.04272000000003},{"x":6.836450128622401,"y":372.04272000000003},{"x":6.8371957740528,"y":372.04272000000003},{"x":6.8442794056416,"y":372.04272000000003},{"x":6.8457706965024006,"y":372.04272000000003},{"x":6.8486911411047995,"y":372.04272000000003},{"x":6.852357231137599,"y":372.04272000000003},{"x":6.855588361336,"y":372.04272000000003},{"x":6.859502999845599,"y":372.04272000000003},{"x":6.860745742229599,"y":372.04272000000003},{"x":6.861802073256,"y":372.04272000000003},{"x":6.8629205414016,"y":372.04272000000003},{"x":6.8638525981896,"y":372.04272000000003},{"x":6.8649710663352,"y":370.73040000000003},{"x":6.8660273973615995,"y":368.76192000000003},{"x":6.8672080026264,"y":367.44960000000003},{"x":6.8683886078912,"y":366.79344000000003},{"x":6.8695070760367996,"y":365.48112000000003},{"x":6.8709983668976,"y":366.79344000000003},{"x":6.87236538352,"y":367.44960000000003},{"x":6.8744780455728,"y":368.76192000000003},{"x":6.8762178849104005,"y":370.73040000000003},{"x":6.8778955871287994,"y":372.04272000000003},{"x":6.8796354264664,"y":372.04272000000003},{"x":6.8821830483536,"y":372.04272000000003},{"x":6.8843578475255995,"y":372.04272000000003},{"x":6.8859734126248,"y":372.04272000000003},{"x":6.8872161550088,"y":372.04272000000003},{"x":6.8875889777240005,"y":372.04272000000003},{"x":6.8880239375584,"y":372.04272000000003},{"x":6.8880860746776,"y":372.04272000000003},{"x":6.8894530913,"y":372.04272000000003},{"x":6.8904472852072,"y":370.73040000000003},{"x":6.8915657533528,"y":368.76192000000003},{"x":6.8918143018296,"y":367.44960000000003},{"x":6.8933677298096,"y":366.79344000000003},{"x":6.894921157789599,"y":365.48112000000003},{"x":6.896288174412,"y":365.48112000000003},{"x":6.90188051514,"y":365.48112000000003},{"x":6.903744628716,"y":365.48112000000003},{"x":6.9041174514312,"y":365.48112000000003},{"x":6.904863096861599,"y":365.48112000000003},{"x":6.905795153649599,"y":365.48112000000003},{"x":6.9066029361992,"y":365.48112000000003},{"x":6.9072243073912,"y":365.48112000000003},{"x":6.9086534611328,"y":365.48112000000003},{"x":6.9089641467288,"y":365.48112000000003},{"x":6.9092126952056,"y":365.48112000000003},{"x":6.9100826148744,"y":365.48112000000003},{"x":6.910890397424,"y":365.48112000000003},{"x":6.9120710026887995,"y":365.48112000000003},{"x":6.913375882192,"y":365.48112000000003},{"x":6.9171662464632,"y":365.48112000000003},{"x":6.9187196744432,"y":365.48112000000003},{"x":6.920832336496,"y":365.48112000000003},{"x":6.9218886675224,"y":365.48112000000003},{"x":6.922944998548799,"y":365.48112000000003},{"x":6.924187740932799,"y":365.48112000000003},{"x":6.925306209078401,"y":365.48112000000003},{"x":6.926424677224,"y":365.48112000000003},{"x":6.927356734012,"y":365.48112000000003},{"x":6.9282887908,"y":365.48112000000003},{"x":6.9293451218264,"y":365.48112000000003},{"x":6.930152904376,"y":365.48112000000003},{"x":6.9311470982832,"y":365.48112000000003},{"x":6.9318306065944,"y":365.48112000000003},{"x":6.932762663382401,"y":365.48112000000003},{"x":6.9336325830512004,"y":365.48112000000003},{"x":6.9346889140776,"y":365.48112000000003},{"x":6.9353724223888,"y":365.48112000000003},{"x":6.9360559307,"y":365.48112000000003},{"x":6.9383550041104005,"y":365.48112000000003},{"x":6.9386035525872005,"y":365.48112000000003},{"x":6.939473472256,"y":365.48112000000003},{"x":6.941648271428,"y":365.48112000000003},{"x":6.942580328216,"y":365.48112000000003},{"x":6.9455629099376,"y":365.48112000000003},{"x":6.9464949667255995,"y":365.48112000000003},{"x":6.947427023513599,"y":365.48112000000003},{"x":6.9484212174208,"y":365.48112000000003},{"x":6.9500989196392,"y":365.48112000000003},{"x":6.952087307453599,"y":365.48112000000003},{"x":6.9578660595392,"y":365.48112000000003},{"x":6.959046664804,"y":365.48112000000003},{"x":6.9623399321215995,"y":365.48112000000003},{"x":6.9634584002672,"y":365.48112000000003},{"x":6.964639005532,"y":365.48112000000003},{"x":6.9707905803328,"y":365.48112000000003},{"x":6.971971185597599,"y":365.48112000000003},{"x":6.9730896537432,"y":365.48112000000003},{"x":6.974270259008,"y":365.48112000000003},{"x":6.9755751385112,"y":365.48112000000003},{"x":6.9766936066567995,"y":365.48112000000003},{"x":6.9779363490407995,"y":365.48112000000003},{"x":6.979241228544,"y":365.48112000000003},{"x":6.980483970928,"y":365.48112000000003},{"x":6.9816645761928,"y":365.48112000000003},{"x":6.9852685291064,"y":365.48112000000003},{"x":6.987567602516799,"y":365.48112000000003},{"x":6.9940920000328,"y":365.48112000000003},{"x":6.9987522839728,"y":365.48112000000003},{"x":7.002418374005599,"y":365.48112000000003},{"x":7.0047795845352,"y":364.16880000000003},{"x":7.0063330125152,"y":362.20032000000003},{"x":7.0076378920184,"y":360.88800000000003},{"x":7.008445674568,"y":360.23184000000003},{"x":7.008756360164,"y":358.91952000000003},{"x":7.008756360164,"y":358.91952000000003},{"x":7.011552530528,"y":358.91952000000003},{"x":7.0181390651632,"y":358.91952000000003},{"x":7.0200653158584005,"y":358.91952000000003},{"x":7.0219294294344,"y":358.91952000000003},{"x":7.0237314058912,"y":358.91952000000003},{"x":7.0250984225136,"y":358.91952000000003},{"x":7.0260926164208,"y":358.91952000000003},{"x":7.0272110845664,"y":358.91952000000003},{"x":7.0285159640696,"y":358.91952000000003},{"x":7.029572295096,"y":358.91952000000003},{"x":7.030380077645599,"y":358.91952000000003},{"x":7.0318713685064,"y":358.91952000000003},{"x":7.03392189344,"y":358.91952000000003},{"x":7.0355995956584,"y":358.91952000000003},{"x":7.037153023638401,"y":358.91952000000003},{"x":7.038768588737599,"y":358.91952000000003},{"x":7.0406948394328,"y":358.91952000000003},{"x":7.042434678770401,"y":358.91952000000003},{"x":7.0442987923464,"y":358.91952000000003},{"x":7.0456036718496,"y":358.91952000000003},{"x":7.047157099829599,"y":358.91952000000003},{"x":7.0493318990016,"y":358.91952000000003},{"x":7.050823189862401,"y":358.91952000000003},{"x":7.053184400392,"y":358.91952000000003},{"x":7.0549242397295995,"y":357.60720000000003},{"x":7.0572854502592,"y":356.95104000000003},{"x":7.059398112312,"y":355.63872000000003},{"x":7.062070008437599,"y":354.32640000000004},{"x":7.0647419045632,"y":352.35792000000004},{"x":7.067165252212,"y":352.35792000000004},{"x":7.0744974322775995,"y":352.35792000000004},{"x":7.087981187144,"y":352.35792000000004},{"x":7.0900938491967995,"y":352.35792000000004},{"x":7.0913987287,"y":352.35792000000004},{"x":7.0928900195608,"y":352.35792000000004},{"x":7.09450558466,"y":352.35792000000004},{"x":7.0956240528056,"y":352.35792000000004},{"x":7.0965561095936,"y":351.04560000000004},{"x":7.09761244062,"y":350.38944000000004},{"x":7.0979852633352,"y":349.07712000000004},{"x":7.0998493769112,"y":347.76480000000004},{"x":7.101029982176,"y":345.79632000000004},{"x":7.1018377647256,"y":345.79632000000004},{"x":7.103391192705599,"y":345.79632000000004},{"x":7.1048824835664,"y":345.79632000000004},{"x":7.106000951712,"y":345.79632000000004},{"x":7.1071815569767995,"y":345.79632000000004},{"x":7.1084242993608,"y":345.79632000000004},{"x":7.109542767506401,"y":345.79632000000004},{"x":7.110785509890401,"y":345.79632000000004},{"x":7.1119661151552,"y":345.79632000000004},{"x":7.113022446181599,"y":345.79632000000004},{"x":7.114265188565599,"y":345.79632000000004},{"x":7.1147001484,"y":345.79632000000004},{"x":7.1148244226384,"y":345.79632000000004},{"x":7.115818616545599,"y":345.79632000000004},{"x":7.116750673333599,"y":345.79632000000004},{"x":7.1192982952207995,"y":345.79632000000004},{"x":7.120354626247201,"y":345.79632000000004},{"x":7.1214109572736,"y":345.79632000000004},{"x":7.1224051511808,"y":345.79632000000004},{"x":7.123710030684,"y":345.79632000000004},{"x":7.1255120071408,"y":345.79632000000004},{"x":7.1278732176704,"y":345.79632000000004},{"x":7.128867411577599,"y":344.48400000000004},{"x":7.129613057008,"y":343.82784},{"x":7.129923742604,"y":342.51552000000004},{"x":7.1306693880344,"y":341.20320000000004},{"x":7.1310422107496,"y":339.23472000000004},{"x":7.1316014448224,"y":339.23472000000004},{"x":7.137069511312,"y":339.23472000000004},{"x":7.1394928589608,"y":339.23472000000004},{"x":7.1413569725368,"y":339.23472000000004},{"x":7.1455822966424005,"y":339.23472000000004},{"x":7.1499940321055995,"y":339.23472000000004},{"x":7.156332018264,"y":339.23472000000004},{"x":7.166646780051201,"y":339.23472000000004},{"x":7.1744760570704,"y":337.92240000000004},{"x":7.1770858160768,"y":339.23472000000004},{"x":7.181373277301599,"y":339.23472000000004},{"x":7.1886433202480005,"y":339.23472000000004},{"x":7.19081811942,"y":339.23472000000004},{"x":7.1927443701152,"y":337.92240000000004},{"x":7.194546346572,"y":337.26624},{"x":7.1965968715056,"y":334.64160000000004},{"x":7.198336710843201,"y":334.64160000000004},{"x":7.200946469849599,"y":332.67312000000004},{"x":7.2028727205448,"y":332.67312000000004},{"x":7.20479897124,"y":332.67312000000004},{"x":7.2064145363392,"y":332.67312000000004},{"x":7.2079058272,"y":332.67312000000004},{"x":7.2090242953456,"y":332.67312000000004},{"x":7.210391311968,"y":332.67312000000004},{"x":7.2123796997824,"y":331.36080000000004},{"x":7.2137467164048,"y":332.67312000000004},{"x":7.216294338292,"y":332.67312000000004},{"x":7.217847766272,"y":332.67312000000004},{"x":7.2241857524304,"y":332.67312000000004},{"x":7.2279761167015995,"y":331.36080000000004},{"x":7.230088778754401,"y":329.39232000000004},{"x":7.2319528923304,"y":328.08000000000004},{"x":7.233817005906401,"y":327.42384},{"x":7.2356811194824004,"y":326.11152000000004},{"x":7.238850112561599,"y":326.11152000000004},{"x":7.242329791236799,"y":326.11152000000004},{"x":7.2481706804416,"y":326.11152000000004},{"x":7.253079512858401,"y":326.11152000000004},{"x":7.2623379436192,"y":324.79920000000004},{"x":7.2633942746455995,"y":324.14304},{"x":7.2643884685527995,"y":322.83072000000004},{"x":7.265444799579201,"y":321.51840000000004},{"x":7.2656312109367995,"y":319.54992000000004},{"x":7.26693609044,"y":318.23760000000004},{"x":7.267992421466401,"y":318.23760000000004},{"x":7.268924478254401,"y":318.23760000000004},{"x":7.268924478254401,"y":318.23760000000004},{"x":7.2743304076248,"y":318.23760000000004},{"x":7.2766294810352,"y":318.23760000000004},{"x":7.278555731730401,"y":318.23760000000004},{"x":7.2802334339487995,"y":318.23760000000004},{"x":7.282781055836,"y":318.23760000000004},{"x":7.284645169412,"y":318.23760000000004},{"x":7.2862607345112,"y":318.23760000000004},{"x":7.2870685170608,"y":318.23760000000004},{"x":7.288062710968,"y":318.23760000000004},{"x":7.2889326306368,"y":318.23760000000004},{"x":7.2965754962984,"y":318.23760000000004},{"x":7.3027892082184005,"y":318.23760000000004},{"x":7.3050261445096,"y":316.26912000000004},{"x":7.3066417096088,"y":316.26912000000004},{"x":7.3089407830192,"y":314.95680000000004},{"x":7.3112398564296,"y":312.98832000000004},{"x":7.3137253411976,"y":311.676},{"x":7.316024414608,"y":311.676},{"x":7.317888528184,"y":311.676},{"x":7.320063327356,"y":311.676},{"x":7.3244129257,"y":311.676},{"x":7.326898410468,"y":311.676},{"x":7.3295081694744,"y":311.676},{"x":7.3316829686464,"y":311.676},{"x":7.333547082222401,"y":311.676},{"x":7.3356597442752,"y":311.676},{"x":7.3375238578512,"y":311.676},{"x":7.3392636971888,"y":311.01984},{"x":7.341811319076,"y":308.3952},{"x":7.343489021294401,"y":307.73904},{"x":7.3451667235128,"y":306.42672000000005},{"x":7.34616091742,"y":305.1144},{"x":7.3474657969232,"y":305.1144},{"x":7.348397853711201,"y":305.1144},{"x":7.349889144572,"y":305.1144},{"x":7.35082120136,"y":305.1144},{"x":7.353493097485599,"y":305.1144},{"x":7.3549222512272,"y":305.1144},{"x":7.3564756792072,"y":303.14592000000005},{"x":7.3583397927832,"y":301.8336},{"x":7.3596446722864,"y":301.17744},{"x":7.3612602373856,"y":299.86512000000005},{"x":7.363869996392,"y":298.5528},{"x":7.369773022716,"y":298.5528},{"x":7.372755604437599,"y":298.5528},{"x":7.3782236709272,"y":297.89664},{"x":7.380647018576,"y":298.5528},{"x":7.3863636335424,"y":296.58432000000005},{"x":7.3882898842376,"y":295.272},{"x":7.3892219410256,"y":294.61584},{"x":7.389470489502401,"y":293.30352000000005},{"x":7.389470489502401,"y":291.9912},{"x":7.3908375061248,"y":291.33504},{"x":7.3943793219192,"y":291.33504},{"x":7.4000959368856,"y":291.33504},{"x":7.405315454898401,"y":291.33504},{"x":7.410783521388,"y":291.33504},{"x":7.411901989533599,"y":290.02272000000005},{"x":7.4135175546328,"y":288.7104},{"x":7.414822434136,"y":288.05424},{"x":7.418115701453599,"y":286.74192000000005},{"x":7.4210982831752,"y":285.4296},{"x":7.42383231642,"y":284.77344},{"x":7.4266906239032,"y":283.46112000000005},{"x":7.4293003829096,"y":281.49264},{"x":7.432220827512,"y":280.18032000000005},{"x":7.434892723637599,"y":278.868},{"x":7.438123853836,"y":278.21184},{"x":7.44558030814,"y":276.89952000000005},{"x":7.4479415186696,"y":274.93104},{"x":7.449805632245599,"y":273.61872000000005},{"x":7.451918294298401,"y":272.3064},{"x":7.4541552305896,"y":270.33792000000005},{"x":7.4563300297616,"y":270.33792000000005},{"x":7.460679628105599,"y":270.33792000000005},{"x":7.4622330560856,"y":269.0256},{"x":7.4634136613504,"y":267.05712000000005},{"x":7.4649049522112,"y":265.7448},{"x":7.4671418885024,"y":265.08864},{"x":7.469192413436,"y":263.77632000000006},{"x":7.475716810952,"y":263.77632000000006},{"x":7.486901492408,"y":263.77632000000006},{"x":7.493425889924,"y":263.77632000000006},{"x":7.494482220950401,"y":262.464},{"x":7.4954142777384005,"y":263.77632000000006},{"x":7.497091979956799,"y":263.77632000000006},{"x":7.4989560935328,"y":263.77632000000006},{"x":7.5010066184664,"y":263.77632000000006},{"x":7.5029950062808,"y":263.77632000000006},{"x":7.5038027888304,"y":263.77632000000006},{"x":7.5059775880024,"y":263.77632000000006},{"x":7.506909644790401,"y":263.77632000000006},{"x":7.5085873470088,"y":263.77632000000006},{"x":7.510700009061599,"y":263.77632000000006},{"x":7.5134340423064,"y":263.77632000000006},{"x":7.5159195270744,"y":263.77632000000006},{"x":7.5188399716768,"y":263.77632000000006},{"x":7.5212633193256,"y":263.77632000000006},{"x":7.523997352570401,"y":263.77632000000006},{"x":7.5266071115768,"y":263.77632000000006},{"x":7.528719773629599,"y":262.464},{"x":7.531143121278401,"y":261.80784},{"x":7.5332557833312,"y":259.1832},{"x":7.5349956226687995,"y":258.52704},{"x":7.53723255896,"y":257.21472000000006},{"x":7.5407122376352005,"y":257.21472000000006},{"x":7.551896919091201,"y":257.21472000000006},{"x":7.562895189189599,"y":257.21472000000006},{"x":7.5655670853152,"y":255.9024},{"x":7.567804021606401,"y":253.93392000000003},{"x":7.5705380548512,"y":252.6216},{"x":7.5728992653808,"y":251.96544},{"x":7.574949790314401,"y":250.65312000000003},{"x":7.577497412201599,"y":249.3408},{"x":7.5795479371352,"y":249.3408},{"x":7.5817227363072,"y":249.3408},{"x":7.5843324953136,"y":249.3408},{"x":7.5867558429624005,"y":249.3408},{"x":7.5886199565384,"y":249.3408},{"x":7.5906083443528,"y":249.3408},{"x":7.5929074177632,"y":249.3408},{"x":7.5950822169352,"y":249.3408},{"x":7.597008467630401,"y":250.65312000000003},{"x":7.599431815279201,"y":249.3408},{"x":7.6010473803784,"y":249.3408},{"x":7.6029736310736,"y":249.3408},{"x":7.6050241560072,"y":250.65312000000003},{"x":7.60713681806,"y":249.3408},{"x":7.609311617232,"y":249.3408},{"x":7.6109271823312,"y":249.3408},{"x":7.612729158788,"y":249.3408},{"x":7.6143447238872,"y":250.65312000000003},{"x":7.6156496033904,"y":249.3408},{"x":7.617389442728,"y":249.3408},{"x":7.6189428707080005,"y":249.3408},{"x":7.6208691214032,"y":250.65312000000003},{"x":7.62267109786,"y":249.3408},{"x":7.624535211436,"y":249.3408},{"x":7.626399325012,"y":248.68464},{"x":7.6277663416344,"y":247.37232000000003},{"x":7.6300654150447995,"y":246.06},{"x":7.6317431172632,"y":244.09152000000003},{"x":7.6335450937200005,"y":242.7792},{"x":7.6357820300112005,"y":242.7792},{"x":7.6375218693488,"y":242.7792},{"x":7.6460346546792,"y":242.7792},{"x":7.6576542959696,"y":242.7792},{"x":7.6667263153728,"y":242.7792},{"x":7.668901114544799,"y":242.7792},{"x":7.678283819544,"y":242.7792},{"x":7.6892199525232,"y":242.7792},{"x":7.6973599151384,"y":242.7792},{"x":7.710595121528,"y":242.7792},{"x":7.715131131229599,"y":242.7792},{"x":7.7172437932824005,"y":242.7792},{"x":7.718859358381599,"y":242.7792},{"x":7.720972020434401,"y":242.7792},{"x":7.7232089567256,"y":242.7792},{"x":7.72519734454,"y":242.7792},{"x":7.7268129096392,"y":240.81072000000003},{"x":7.7284906118576,"y":239.4984},{"x":7.729919765599201,"y":238.84224},{"x":7.730789685268,"y":237.52992000000003},{"x":7.731721742056,"y":236.2176},{"x":7.7341450897048,"y":236.2176},{"x":7.735884929042401,"y":236.2176},{"x":7.7364441631152,"y":236.2176},{"x":7.737127671426401,"y":236.2176},{"x":7.7379975910952,"y":236.2176},{"x":7.7394267448368,"y":236.2176},{"x":7.740545212982401,"y":236.2176},{"x":7.7417258182472,"y":236.2176},{"x":7.7430928348696,"y":236.2176},{"x":7.745081222684,"y":236.2176},{"x":7.7462618279488,"y":236.2176},{"x":7.747256021856,"y":236.2176},{"x":7.7487473127168,"y":236.2176},{"x":7.7507357005312,"y":236.2176},{"x":7.752537676988,"y":236.2176},{"x":7.7570736866895995,"y":236.2176},{"x":7.7598698570536,"y":236.2176},{"x":7.767699134072799,"y":236.2176},{"x":7.7772682504296,"y":236.2176},{"x":7.778697404171201,"y":236.2176},{"x":7.78578103576,"y":236.2176},{"x":7.7875830122168,"y":236.2176},{"x":7.789633537150401,"y":236.2176},{"x":7.7940452726136,"y":236.2176},{"x":7.795909386189599,"y":236.2176},{"x":7.7977113626464005,"y":237.52992000000003},{"x":7.800072573176,"y":238.84224},{"x":7.801812412513599,"y":238.84224},{"x":7.803800800328,"y":237.52992000000003},{"x":7.805478502546401,"y":237.52992000000003},{"x":7.8074668903608,"y":236.2176},{"x":7.810200923605599,"y":236.2176},{"x":7.8116922144664,"y":236.2176},{"x":7.814053424996,"y":236.2176},{"x":7.8157311272144,"y":236.2176},{"x":7.817284555194401,"y":236.2176},{"x":7.8182787491016,"y":236.2176},{"x":7.8194593543664,"y":236.2176},{"x":7.8207020967504,"y":236.2176},{"x":7.8228147588032,"y":236.2176},{"x":7.8241817754256,"y":236.2176},{"x":7.8254245178096,"y":236.2176},{"x":7.8265429859552,"y":236.2176},{"x":7.8267293973128,"y":236.2176},{"x":7.8275371798624,"y":236.2176},{"x":7.828469236650401,"y":236.2176},{"x":7.8300226646304,"y":236.2176},{"x":7.830954721418401,"y":236.2176},{"x":7.8317003668488,"y":236.2176},{"x":7.833005246352,"y":236.2176},{"x":7.8406481120136,"y":236.2176},{"x":7.8427607740664005,"y":236.2176},{"x":7.8461783156224,"y":236.2176},{"x":7.8470482352912,"y":236.2176},{"x":7.8525163017808,"y":236.2176},{"x":7.8533862214495995,"y":236.2176},{"x":7.854442552476,"y":236.2176},{"x":7.8551260607872,"y":236.2176},{"x":7.8560581175752,"y":236.2176},{"x":7.856803763005599,"y":236.2176},{"x":7.8573008599592,"y":236.2176},{"x":7.857922231151201,"y":236.2176},{"x":7.8588542879392005,"y":236.2176},{"x":7.8599727560848,"y":236.2176},{"x":7.8610290871112,"y":236.2176},{"x":7.862644652210401,"y":236.2176},{"x":7.8644466286672,"y":236.2176},{"x":7.86655929072,"y":236.2176},{"x":7.869044775488,"y":236.2176},{"x":7.871281711779201,"y":236.2176},{"x":7.8736429223088,"y":236.2176},{"x":7.875569173004,"y":236.2176},{"x":7.8779925206528,"y":236.2176},{"x":7.8807886910168,"y":236.2176},{"x":7.8829634901888,"y":236.2176},{"x":7.886008209029599,"y":236.2176},{"x":7.8883072824400005,"y":236.2176},{"x":7.890606355850401,"y":236.2176},{"x":7.8930297034992005,"y":236.2176},{"x":7.8953287769096,"y":236.2176},{"x":7.898124947273599,"y":236.2176},{"x":7.9002997464456,"y":236.2176},{"x":7.9026609569752,"y":236.2176},{"x":7.9044007963128,"y":236.2176},{"x":7.9073212409152,"y":236.2176},{"x":7.909433902968,"y":236.2176},{"x":7.9116708392592,"y":236.2176},{"x":7.9136592270736,"y":236.2176},{"x":7.918443785252,"y":236.2176},{"x":7.9199350761128,"y":236.2176},{"x":7.921364229854401,"y":236.2176},{"x":7.922669109357599,"y":236.2176},{"x":7.9239739888608,"y":236.2176},{"x":7.92558955396,"y":236.2176},{"x":7.927329393297599,"y":236.2176},{"x":7.9288828212775995,"y":236.2176},{"x":7.929442055350401,"y":236.2176},{"x":7.9318654029992,"y":236.2176},{"x":7.933543105217599,"y":236.2176},{"x":7.9343508877672,"y":236.2176},{"x":7.9365256869392,"y":236.2176},{"x":7.938203389157599,"y":236.2176},{"x":7.9415587935944005,"y":236.2176},{"x":7.94267726174,"y":236.2176},{"x":7.9434229071704,"y":236.2176},{"x":7.9438578670048,"y":236.2176},{"x":7.9438578670048,"y":236.2176},{"x":7.946094803296,"y":236.2176},{"x":7.947958916872,"y":236.2176},{"x":7.949512344852,"y":236.2176},{"x":7.951376458428,"y":236.2176},{"x":7.9537376689576,"y":236.2176},{"x":7.956471702202401,"y":236.2176},{"x":7.9586465013744006,"y":236.2176},{"x":7.9603242035927995,"y":236.2176},{"x":7.961939768692,"y":236.2176},{"x":7.9631203739568,"y":236.2176},{"x":7.963990293625599,"y":236.2176},{"x":7.964735939056,"y":236.2176},{"x":7.9649223504136,"y":236.2176},{"x":7.9662272299168,"y":236.2176},{"x":7.966910738228,"y":236.2176},{"x":7.9670350124664004,"y":236.2176},{"x":7.967718520777599,"y":236.2176},{"x":7.9680913434928,"y":236.2176},{"x":7.9686505775656,"y":236.2176},{"x":7.9693340858768,"y":236.2176},{"x":7.969955457068799,"y":236.2176},{"x":7.9705768282608,"y":236.2176},{"x":7.970949650976,"y":236.2176},{"x":7.9720059820024005,"y":236.2176},{"x":7.9730001759096,"y":236.2176},{"x":7.9742429182936,"y":236.2176},{"x":7.9756720720352,"y":236.2176},{"x":7.9764177174655995,"y":236.2176},{"x":7.9777225969688,"y":236.2176},{"x":7.9789032022335995,"y":236.2176},{"x":7.9798973961407995,"y":236.2176},{"x":7.981078001405599,"y":236.2176},{"x":7.9815750983592,"y":236.2176},{"x":7.9864217936568,"y":236.2176},{"x":7.9878509473984005,"y":236.2176},{"x":7.989777198093599,"y":236.2176},{"x":7.9916413116696,"y":236.2176},{"x":7.9966744183248,"y":236.2176},{"x":7.9987249432584,"y":236.2176},{"x":8.000837605311201,"y":236.2176},{"x":8.003571638556,"y":236.2176},{"x":8.0052493407744,"y":236.2176},{"x":8.0086668823304,"y":236.2176},{"x":8.010717407264,"y":236.2176},{"x":8.0126436579592,"y":236.2176},{"x":8.0148805942504,"y":236.2176},{"x":8.0164961593496,"y":236.2176},{"x":8.019105918356,"y":236.2176},{"x":8.0210321690512,"y":236.2176},{"x":8.0237040651768,"y":236.2176},{"x":8.02500894468,"y":236.2176},{"x":8.026748784017599,"y":236.2176},{"x":8.0289235831896,"y":236.2176},{"x":8.0309741081232,"y":236.2176},{"x":8.0333353186528,"y":236.2176},{"x":8.034640198156,"y":236.2176},{"x":8.0353237064672,"y":236.2176},{"x":8.035572254944,"y":236.2176},{"x":8.0356343920632,"y":237.52992000000003},{"x":8.0361314890168,"y":238.84224},{"x":8.0362557632552,"y":240.81072000000003},{"x":8.0362557632552,"y":242.12304},{"x":8.036504311732,"y":240.81072000000003},{"x":8.036504311732,"y":239.4984},{"x":8.0383062881888,"y":238.84224},{"x":8.0393626192152,"y":237.52992000000003},{"x":8.0394868934536,"y":236.2176},{"x":8.0401082646456,"y":236.2176},{"x":8.0403568131224,"y":236.2176},{"x":8.0425316122944,"y":236.2176},{"x":8.0446442743472,"y":236.2176},{"x":8.0458870167312,"y":236.2176},{"x":8.0467569364,"y":236.2176},{"x":8.0479375416648,"y":236.2176},{"x":8.0491181469296,"y":236.2176},{"x":8.049801655240799,"y":236.2176},{"x":8.0502366150752,"y":236.2176},{"x":8.0502366150752,"y":236.2176},{"x":8.0502987521944,"y":236.2176},{"x":8.050485163552,"y":236.2176},{"x":8.0524114142472,"y":236.2176},{"x":8.056263915637599,"y":236.2176},{"x":8.058562989048,"y":235.56144},{"x":8.0606135139816,"y":232.9368},{"x":8.0622912162,"y":232.28064},{"x":8.064217466895201,"y":232.9368},{"x":8.0658330319944,"y":234.24912000000003},{"x":8.068194242524,"y":235.56144},{"x":8.0711768242456,"y":234.24912000000003},{"x":8.07316521206,"y":234.24912000000003},{"x":8.0755885597088,"y":232.9368},{"x":8.0778876331192,"y":232.28064},{"x":8.0802488436488,"y":230.96832000000003},{"x":8.0819886829864,"y":230.96832000000003},{"x":8.0845984419928,"y":230.96832000000003},{"x":8.0915577993432,"y":230.96832000000003},{"x":8.0935461871576,"y":230.96832000000003},{"x":8.095223889376,"y":230.96832000000003},{"x":8.0960938090448,"y":230.96832000000003},{"x":8.0971501400712,"y":230.96832000000003},{"x":8.0977715112632,"y":230.96832000000003},{"x":8.0985171566936,"y":230.96832000000003},{"x":8.0991385278856,"y":230.96832000000003},{"x":8.1000084475544,"y":230.96832000000003},{"x":8.1006919558656,"y":230.96832000000003},{"x":8.1010026414616,"y":230.96832000000003},{"x":8.1011269157,"y":230.96832000000003},{"x":8.1011269157,"y":230.96832000000003},{"x":8.1019346982496,"y":230.96832000000003},{"x":8.102183246726401,"y":230.96832000000003},{"x":8.102183246726401,"y":230.96832000000003},{"x":8.1059736109976,"y":230.96832000000003},{"x":8.1084590957656,"y":230.96832000000003},{"x":8.1126844198712,"y":230.96832000000003},{"x":8.1139271622552,"y":230.96832000000003},{"x":8.119643777221599,"y":230.96832000000003},{"x":8.124614746757599,"y":230.96832000000003},{"x":8.126416723214401,"y":230.96832000000003},{"x":8.1291507564592,"y":230.96832000000003},{"x":8.1310148700352,"y":230.96832000000003},{"x":8.1329411207304,"y":230.96832000000003},{"x":8.1348673714256,"y":230.96832000000003},{"x":8.1366693478824,"y":230.96832000000003},{"x":8.1382849129816,"y":230.96832000000003},{"x":8.1403975750344,"y":230.96832000000003},{"x":8.1420752772528,"y":230.96832000000003},{"x":8.1437529794712,"y":230.96832000000003},{"x":8.1447471733784,"y":230.96832000000003},{"x":8.144933584736,"y":230.96832000000003},{"x":8.1469841096696,"y":230.96832000000003},{"x":8.1481025778152,"y":230.96832000000003},{"x":8.1500288285104,"y":230.96832000000003},{"x":8.152327901920799,"y":230.96832000000003},{"x":8.1545027010928,"y":230.96832000000003},{"x":8.155931854834401,"y":230.96832000000003},{"x":8.1576095570528,"y":230.96832000000003},{"x":8.1594736706288,"y":230.96832000000003},{"x":8.1610270986088,"y":230.96832000000003},{"x":8.162642663708,"y":230.96832000000003},{"x":8.1646310515224,"y":230.96832000000003},{"x":8.166930124932799,"y":230.96832000000003},{"x":8.168421415793599,"y":230.96832000000003},{"x":8.1706583520848,"y":230.96832000000003},{"x":8.173019562614401,"y":230.96832000000003},{"x":8.1734545224488,"y":230.96832000000003},{"x":8.1742623049984,"y":230.96832000000003},{"x":8.1745729905944,"y":230.96832000000003},{"x":8.1748215390712,"y":230.96832000000003},{"x":8.176623515528,"y":230.96832000000003},{"x":8.1799167828456,"y":230.96832000000003},{"x":8.18190517066,"y":232.28064},{"x":8.18345859864,"y":234.24912000000003},{"x":8.184079969832,"y":235.56144},{"x":8.185633397812,"y":236.2176},{"x":8.187621785626401,"y":237.52992000000003},{"x":8.1899208590368,"y":236.2176},{"x":8.1920956582088,"y":235.56144},{"x":8.1943325945,"y":234.24912000000003},{"x":8.1963831194336,"y":232.9368},{"x":8.1975015875792,"y":232.28064},{"x":8.200235620824,"y":230.96832000000003},{"x":8.2031560654264,"y":230.96832000000003},{"x":8.2054551388368,"y":230.96832000000003},{"x":8.2078163493664,"y":230.96832000000003},{"x":8.209369777346401,"y":230.96832000000003},{"x":8.211917399233599,"y":230.96832000000003},{"x":8.2147757067168,"y":230.96832000000003},{"x":8.2176340142,"y":232.9368},{"x":8.2200573618488,"y":234.24912000000003},{"x":8.2223564352592,"y":235.56144},{"x":8.225090468504,"y":236.2176},{"x":8.2270788563184,"y":237.52992000000003},{"x":8.2292536554904,"y":237.52992000000003},{"x":8.230993494828,"y":237.52992000000003},{"x":8.232857608404,"y":237.52992000000003},{"x":8.2345353106224,"y":237.52992000000003},{"x":8.236461561317599,"y":237.52992000000003},{"x":8.238139263536,"y":237.52992000000003},{"x":8.2395684172776,"y":237.52992000000003},{"x":8.240065514231201,"y":237.52992000000003},{"x":8.2406868854232,"y":237.52992000000003},{"x":8.2417432164496,"y":237.52992000000003},{"x":8.242426724760799,"y":237.52992000000003},{"x":8.2429859588336,"y":237.52992000000003},{"x":8.2433587815488,"y":237.52992000000003},{"x":8.243918015621599,"y":237.52992000000003},{"x":8.244352975456,"y":237.52992000000003},{"x":8.244725798171201,"y":237.52992000000003},{"x":8.2448500724096,"y":237.52992000000003},{"x":8.2450364837672,"y":237.52992000000003},{"x":8.2450364837672,"y":237.52992000000003}];
var desiredStream = paceData.map(function(d){ return { y: (1/(d.y/1609.344)), x: d.x } })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment