Last active
October 2, 2015 01:16
-
-
Save biovisualize/c502ca29c60fc0b77cd2 to your computer and use it in GitHub Desktop.
stream csv into canvas
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/PapaParse/4.1.2/papaparse.min.js" charset="utf-8"></script> | |
</head> | |
<body> | |
<canvas id="canvas1"></canvas> | |
<script> | |
var dataLenghtX = 1441; | |
var dataLenghtY = 722; | |
var valuesMax = 325; | |
var valuesMin = 206; | |
var nullColor = 100; | |
var element = document.getElementById("canvas1"); | |
var ctx = element.getContext("2d"); | |
element.width = dataLenghtX; | |
element.height = dataLenghtY; | |
var imageData = ctx.createImageData(dataLenghtX, dataLenghtY); | |
var value = null; | |
function convertRange( value, r1, r2 ) { | |
return ( value - r1[ 0 ] ) * ( r2[ 1 ] - r2[ 0 ] ) / ( r1[ 1 ] - r1[ 0 ] ) + r2[ 0 ]; | |
} | |
function draw(values){ | |
for (var x = 0; x < values.length; x++) { | |
if(isNaN(values[x])){ | |
index = x * 4; | |
imageData.data[index + 0] = nullColor; | |
imageData.data[index + 1] = nullColor; | |
imageData.data[index + 2] = nullColor; | |
imageData.data[index + 3] = 255; | |
} | |
else{ | |
value = convertRange(values[x], [valuesMin, valuesMax], [0, 255]); | |
index = x * 4; | |
imageData.data[index + 0] = value / 2; | |
imageData.data[index + 1] = value; | |
imageData.data[index + 2] = 255; | |
imageData.data[index + 3] = 255; | |
} | |
} | |
ctx.putImageData(imageData, 0,y, 0, 0, dataLenghtX, 1); | |
} | |
var y = 0; | |
var max = null; | |
var min = 10000; | |
Papa.parse('../temperature.csv', { | |
//worker: true, | |
download: true, | |
header: false, | |
step: function(results, parser) { | |
var arr = []; | |
var data = results.data[0]; | |
for(var x in data){ | |
arr.push(parseFloat(data[x])); | |
} | |
draw(arr); | |
y++; | |
}, | |
complete: function(){ | |
console.log('done', y); | |
} | |
}); | |
</script> | |
</body> | |
</html> |
We can't make this file beautiful and searchable because it's too large.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000; | |
267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000; | |
267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000; | |
267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000; | |
266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000; | |
266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000; | |
266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000; | |
266.29998779296875000000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.60000610351562500000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;267.00000000000000000000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;265.89999389648437500000000000000000;265.89999389648437500000000000000000;265.89999389648437500000000000000000;265.89999389648437500000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000; | |
267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.29998779296875000000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.50000000000000000000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.20001220703125000000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.00000000000000000000000000000000;266.89999389648437500000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.70001220703125000000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;265.89999389648437500000000000000000;265.89999389648437500000000000000000;265.89999389648437500000000000000000;265.89999389648437500000000000000000;265.89999389648437500000000000000000;265.89999389648437500000000000000000;265.89999389648437500000000000000000;265.79998779296875000000000000000000;265.79998779296875000000000000000000;265.79998779296875000000000000000000;265.79998779296875000000000000000000;265.79998779296875000000000000000000;265.79998779296875000000000000000000;265.89999389648437500000000000000000;265.89999389648437500000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.10000610351562500000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.29998779296875000000000000000000;266.39999389648437500000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.39999389648437500000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.10000610351562500000000000000000;266.00000000000000000000000000000000;265.89999389648437500000000000000000;265.79998779296875000000000000000000;265.70001220703125000000000000000000;265.60000610351562500000000000000000;265.50000000000000000000000000000000;265.39999389648437500000000000000000;265.39999389648437500000000000000000;265.29998779296875000000000000000000;265.29998779296875000000000000000000;265.29998779296875000000000000000000;265.29998779296875000000000000000000;265.29998779296875000000000000000000;265.29998779296875000000000000000000;265.29998779296875000000000000000000;265.39999389648437500000000000000000;265.39999389648437500000000000000000;265.39999389648437500000000000000000;265.39999389648437500000000000000000;265.39999389648437500000000000000000;265.39999389648437500000000000000000;265.39999389648437500000000000000000;265.39999389648437500000000000000000;265.39999389648437500000000000000000;265.39999389648437500000000000000000;265.39999389648437500000000000000000;265.50000000000000000000000000000000;265.50000000000000000000000000000000;265.50000000000000000000000000000000;265.50000000000000000000000000000000;265.50000000000000000000000000000000;265.60000610351562500000000000000000;265.60000610351562500000000000000000;265.60000610351562500000000000000000;265.60000610351562500000000000000000;265.60000610351562500000000000000000;265.60000610351562500000000000000000;265.60000610351562500000000000000000;265.70001220703125000000000000000000;265.70001220703125000000000000000000;265.70001220703125000000000000000000;265.70001220703125000000000000000000;265.70001220703125000000000000000000;265.70001220703125000000000000000000;265.70001220703125000000000000000000;265.79998779296875000000000000000000;265.79998779296875000000000000000000;265.79998779296875000000000000000000;265.79998779296875000000000000000000;265.89999389648437500000000000000000;266.00000000000000000000000000000000;266.10000610351562500000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.29998779296875000000000000000000;266.39999389648437500000000000000000;266.50000000000000000000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.70001220703125000000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.20001220703125000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.39999389648437500000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.60000610351562500000000000000000;266.70001220703125000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000; | |
267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.79998779296875000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.39999389648437500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.79998779296875000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.70001220703125000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;267.00000000000000000000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.00000000000000000000000000000000;266.89999389648437500000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;265.89999389648437500000000000000000;265.89999389648437500000000000000000;265.89999389648437500000000000000000;265.89999389648437500000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.00000000000000000000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.10000610351562500000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;266.89999389648437500000000000000000;267.00000000000000000000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.79998779296875000000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000; | |
267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.39999389648437500000000000000000;267.29998779296875000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;266.89999389648437500000000000000000;266.79998779296875000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.20001220703125000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.29998779296875000000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.70001220703125000000000000000000;267.60000610351562500000000000000000;267.70001220703125000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000; | |
268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.70001220703125000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.89999389648437500000000000000000;269.00000000000000000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.39999389648437500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.70001220703125000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.00000000000000000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.70001220703125000000000000000000;269.60000610351562500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.39999389648437500000000000000000;269.29998779296875000000000000000000;269.20001220703125000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.10000610351562500000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.00000000000000000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.10000610351562500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.29998779296875000000000000000000;267.20001220703125000000000000000000;267.10000610351562500000000000000000;267.00000000000000000000000000000000;266.89999389648437500000000000000000;266.79998779296875000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.70001220703125000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.89999389648437500000000000000000;267.00000000000000000000000000000000;267.10000610351562500000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.39999389648437500000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.50000000000000000000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.60000610351562500000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.50000000000000000000000000000000;267.60000610351562500000000000000000;267.70001220703125000000000000000000;267.79998779296875000000000000000000;267.89999389648437500000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.20001220703125000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.39999389648437500000000000000000;268.50000000000000000000000000000000;268.60000610351562500000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.10000610351562500000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.10000610351562500000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000; | |
269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.60000610351562500000000000000000;269.70001220703125000000000000000000;269.79998779296875000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;270.00000000000000000000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;269.89999389648437500000000000000000;269.79998779296875000000000000000000;269.70001220703125000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.50000000000000000000000000000000;269.39999389648437500000000000000000;269.29998779296875000000000000000000;269.20001220703125000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.00000000000000000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.50000000000000000000000000000000;269.39999389648437500000000000000000;269.29998779296875000000000000000000;269.20001220703125000000000000000000;269.10000610351562500000000000000000;269.00000000000000000000000000000000;268.89999389648437500000000000000000;268.79998779296875000000000000000000;268.70001220703125000000000000000000;268.60000610351562500000000000000000;268.50000000000000000000000000000000;268.39999389648437500000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.70001220703125000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.79998779296875000000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.39999389648437500000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.70001220703125000000000000000000;267.79998779296875000000000000000000;267.89999389648437500000000000000000;268.00000000000000000000000000000000;268.10000610351562500000000000000000;268.29998779296875000000000000000000;268.39999389648437500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.70001220703125000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.89999389648437500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000; | |
270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.10000610351562500000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.50000000000000000000000000000000;270.39999389648437500000000000000000;270.29998779296875000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.10000610351562500000000000000000;270.00000000000000000000000000000000;269.89999389648437500000000000000000;269.79998779296875000000000000000000;269.70001220703125000000000000000000;269.60000610351562500000000000000000;269.50000000000000000000000000000000;269.39999389648437500000000000000000;269.20001220703125000000000000000000;269.00000000000000000000000000000000;268.79998779296875000000000000000000;268.60000610351562500000000000000000;268.39999389648437500000000000000000;268.20001220703125000000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.00000000000000000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.10000610351562500000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.89999389648437500000000000000000;268.00000000000000000000000000000000;268.10000610351562500000000000000000;268.29998779296875000000000000000000;268.39999389648437500000000000000000;268.50000000000000000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.60000610351562500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.39999389648437500000000000000000;268.29998779296875000000000000000000;268.20001220703125000000000000000000;268.10000610351562500000000000000000;268.00000000000000000000000000000000;267.89999389648437500000000000000000;267.79998779296875000000000000000000;267.70001220703125000000000000000000;267.60000610351562500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.39999389648437500000000000000000;267.50000000000000000000000000000000;267.60000610351562500000000000000000;267.70001220703125000000000000000000;267.79998779296875000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;268.00000000000000000000000000000000;268.10000610351562500000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.39999389648437500000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.10000610351562500000000000000000;268.00000000000000000000000000000000;267.79998779296875000000000000000000;267.70001220703125000000000000000000;267.50000000000000000000000000000000;267.39999389648437500000000000000000;267.29998779296875000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.10000610351562500000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.39999389648437500000000000000000;268.50000000000000000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.39999389648437500000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000; | |
270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.89999389648437500000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.29998779296875000000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;270.89999389648437500000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.60000610351562500000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.39999389648437500000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.20001220703125000000000000000000;270.00000000000000000000000000000000;269.89999389648437500000000000000000;269.70001220703125000000000000000000;269.60000610351562500000000000000000;269.39999389648437500000000000000000;269.29998779296875000000000000000000;269.10000610351562500000000000000000;268.89999389648437500000000000000000;268.79998779296875000000000000000000;268.60000610351562500000000000000000;268.50000000000000000000000000000000;268.29998779296875000000000000000000;268.20001220703125000000000000000000;268.10000610351562500000000000000000;268.00000000000000000000000000000000;267.89999389648437500000000000000000;267.79998779296875000000000000000000;267.70001220703125000000000000000000;267.60000610351562500000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;268.00000000000000000000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.20001220703125000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.39999389648437500000000000000000;268.50000000000000000000000000000000;268.60000610351562500000000000000000;268.70001220703125000000000000000000;268.79998779296875000000000000000000;269.00000000000000000000000000000000;269.10000610351562500000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.50000000000000000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.60000610351562500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.39999389648437500000000000000000;269.29998779296875000000000000000000;269.20001220703125000000000000000000;269.10000610351562500000000000000000;269.00000000000000000000000000000000;268.89999389648437500000000000000000;268.79998779296875000000000000000000;268.60000610351562500000000000000000;268.50000000000000000000000000000000;268.29998779296875000000000000000000;268.20001220703125000000000000000000;268.00000000000000000000000000000000;267.79998779296875000000000000000000;267.70001220703125000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.50000000000000000000000000000000;267.39999389648437500000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.29998779296875000000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;268.00000000000000000000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.20001220703125000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.50000000000000000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.70001220703125000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000; | |
271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.39999389648437500000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.29998779296875000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.50000000000000000000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.79998779296875000000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.60000610351562500000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.70001220703125000000000000000000;270.60000610351562500000000000000000;270.50000000000000000000000000000000;270.39999389648437500000000000000000;270.29998779296875000000000000000000;270.20001220703125000000000000000000;270.10000610351562500000000000000000;270.00000000000000000000000000000000;269.79998779296875000000000000000000;269.60000610351562500000000000000000;269.39999389648437500000000000000000;269.20001220703125000000000000000000;268.89999389648437500000000000000000;268.70001220703125000000000000000000;268.50000000000000000000000000000000;268.39999389648437500000000000000000;268.20001220703125000000000000000000;268.10000610351562500000000000000000;268.00000000000000000000000000000000;267.89999389648437500000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.29998779296875000000000000000000;267.20001220703125000000000000000000;267.20001220703125000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.10000610351562500000000000000000;267.20001220703125000000000000000000;267.29998779296875000000000000000000;267.39999389648437500000000000000000;267.50000000000000000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;268.00000000000000000000000000000000;268.10000610351562500000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.39999389648437500000000000000000;268.50000000000000000000000000000000;268.60000610351562500000000000000000;268.70001220703125000000000000000000;268.79998779296875000000000000000000;268.89999389648437500000000000000000;269.00000000000000000000000000000000;269.10000610351562500000000000000000;269.20001220703125000000000000000000;269.39999389648437500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.50000000000000000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.29998779296875000000000000000000;269.20001220703125000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.00000000000000000000000000000000;268.89999389648437500000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.70001220703125000000000000000000;268.60000610351562500000000000000000;268.50000000000000000000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.29998779296875000000000000000000;268.20001220703125000000000000000000;268.10000610351562500000000000000000;268.00000000000000000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.70001220703125000000000000000000;267.60000610351562500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.29998779296875000000000000000000;268.39999389648437500000000000000000;268.50000000000000000000000000000000;268.60000610351562500000000000000000;268.70001220703125000000000000000000;268.79998779296875000000000000000000;268.89999389648437500000000000000000;269.00000000000000000000000000000000;269.10000610351562500000000000000000;269.20001220703125000000000000000000;269.29998779296875000000000000000000;269.39999389648437500000000000000000;269.50000000000000000000000000000000;269.60000610351562500000000000000000;269.70001220703125000000000000000000;269.79998779296875000000000000000000;269.89999389648437500000000000000000;270.00000000000000000000000000000000;270.10000610351562500000000000000000;270.20001220703125000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.39999389648437500000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.60000610351562500000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.79998779296875000000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;271.00000000000000000000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000; | |
271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.79998779296875000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.39999389648437500000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.10000610351562500000000000000000;269.00000000000000000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.70001220703125000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.70001220703125000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.10000610351562500000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.39999389648437500000000000000000;270.29998779296875000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.10000610351562500000000000000000;270.00000000000000000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.79998779296875000000000000000000;269.70001220703125000000000000000000;269.60000610351562500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.39999389648437500000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.50000000000000000000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.79998779296875000000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.10000610351562500000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.70001220703125000000000000000000;271.70001220703125000000000000000000;271.70001220703125000000000000000000;271.70001220703125000000000000000000;271.70001220703125000000000000000000;271.70001220703125000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.89999389648437500000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;272.00000000000000000000000000000000;272.00000000000000000000000000000000;272.00000000000000000000000000000000;272.00000000000000000000000000000000;272.00000000000000000000000000000000;272.00000000000000000000000000000000;272.00000000000000000000000000000000;272.00000000000000000000000000000000;272.00000000000000000000000000000000;272.00000000000000000000000000000000;272.00000000000000000000000000000000;272.00000000000000000000000000000000;272.00000000000000000000000000000000;272.00000000000000000000000000000000;272.00000000000000000000000000000000;272.00000000000000000000000000000000;272.00000000000000000000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.70001220703125000000000000000000;271.70001220703125000000000000000000;271.70001220703125000000000000000000;271.70001220703125000000000000000000;271.70001220703125000000000000000000;271.70001220703125000000000000000000;271.70001220703125000000000000000000;271.70001220703125000000000000000000;271.70001220703125000000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.10000610351562500000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;270.89999389648437500000000000000000;270.79998779296875000000000000000000;270.70001220703125000000000000000000;270.60000610351562500000000000000000;270.50000000000000000000000000000000;270.39999389648437500000000000000000;270.29998779296875000000000000000000;270.20001220703125000000000000000000;270.00000000000000000000000000000000;269.79998779296875000000000000000000;269.70001220703125000000000000000000;269.39999389648437500000000000000000;269.29998779296875000000000000000000;269.00000000000000000000000000000000;268.70001220703125000000000000000000;268.50000000000000000000000000000000;268.20001220703125000000000000000000;267.89999389648437500000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.50000000000000000000000000000000;267.39999389648437500000000000000000;267.29998779296875000000000000000000;267.20001220703125000000000000000000;267.10000610351562500000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;267.00000000000000000000000000000000;266.89999389648437500000000000000000;266.89999389648437500000000000000000;267.10000610351562500000000000000000;267.20001220703125000000000000000000;267.39999389648437500000000000000000;267.50000000000000000000000000000000;267.60000610351562500000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.10000610351562500000000000000000;268.10000610351562500000000000000000;268.20001220703125000000000000000000;268.29998779296875000000000000000000;268.39999389648437500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.89999389648437500000000000000000;269.00000000000000000000000000000000;269.10000610351562500000000000000000;269.29998779296875000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.50000000000000000000000000000000;269.60000610351562500000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.70001220703125000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;270.00000000000000000000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.70001220703125000000000000000000;269.70001220703125000000000000000000;269.60000610351562500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.39999389648437500000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.20001220703125000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.00000000000000000000000000000000;268.89999389648437500000000000000000;268.79998779296875000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.60000610351562500000000000000000;268.50000000000000000000000000000000;268.39999389648437500000000000000000;268.39999389648437500000000000000000;268.29998779296875000000000000000000;268.20001220703125000000000000000000;268.10000610351562500000000000000000;268.00000000000000000000000000000000;267.89999389648437500000000000000000;267.89999389648437500000000000000000;267.79998779296875000000000000000000;267.70001220703125000000000000000000;267.60000610351562500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.39999389648437500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.50000000000000000000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.60000610351562500000000000000000;267.70001220703125000000000000000000;267.70001220703125000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.79998779296875000000000000000000;267.89999389648437500000000000000000;268.00000000000000000000000000000000;268.00000000000000000000000000000000;268.10000610351562500000000000000000;268.20001220703125000000000000000000;268.20001220703125000000000000000000;268.39999389648437500000000000000000;268.50000000000000000000000000000000;268.70001220703125000000000000000000;268.79998779296875000000000000000000;268.89999389648437500000000000000000;269.10000610351562500000000000000000;269.29998779296875000000000000000000;269.50000000000000000000000000000000;269.70001220703125000000000000000000;269.89999389648437500000000000000000;270.00000000000000000000000000000000;270.10000610351562500000000000000000;270.29998779296875000000000000000000;270.39999389648437500000000000000000;270.60000610351562500000000000000000;270.70001220703125000000000000000000;270.79998779296875000000000000000000;270.89999389648437500000000000000000;271.00000000000000000000000000000000;271.10000610351562500000000000000000;271.20001220703125000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000; | |
271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;272.00000000000000000000000000000000;272.00000000000000000000000000000000;272.00000000000000000000000000000000;272.00000000000000000000000000000000;272.00000000000000000000000000000000;272.00000000000000000000000000000000;272.00000000000000000000000000000000;272.00000000000000000000000000000000;272.00000000000000000000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.89999389648437500000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.79998779296875000000000000000000;271.70001220703125000000000000000000;271.70001220703125000000000000000000;271.70001220703125000000000000000000;271.70001220703125000000000000000000;271.70001220703125000000000000000000;271.70001220703125000000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.60000610351562500000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.50000000000000000000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.39999389648437500000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.29998779296875000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.20001220703125000000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.10000610351562500000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.39999389648437500000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.20001220703125000000000000000000;270.20001220703125000000000000000000;270.10000610351562500000000000000000;270.10000610351562500000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;270.00000000000000000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;269.79998779296875000000000000000000;269.79998779296875000000000000000000;269.70001220703125000000000000000000;269.60000610351562500000000000000000;269.60000610351562500000000000000000;269.50000000000000000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.39999389648437500000000000000000;269.39999389648437500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.60000610351562500000000000000000;269.70001220703125000000000000000000;269.79998779296875000000000000000000;269.89999389648437500000000000000000;269.89999389648437500000000000000000;270.00000000000000000000000000000000;270.10000610351562500000000000000000;270.20001220703125000000000000000000;270.29998779296875000000000000000000;270.29998779296875000000000000000000;270.39999389648437500000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.60000610351562500000000000000000;270.60000610351562500000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;271.00000000000000000000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.89999389648437500000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.79998779296875000000000000000000;270.70001220703125000000000000000000;270.70001220703125000000000000000000;270.60000610351562500000000000000000;270.50000000000000000000000000000000;270.50000000000000000000000000000000;270.39999389648437500000000000000000;270.29998779296875000000000000000000;270.20001220703125000000000000000000;270.10000610351562500000000000000000;270.00000000000000000000000000000000;269.89999389648437500000000000000000;269.79998779296875000000000000000000;269.70001220703125000000000000000000;269.60000610351562500000000000000000;269.50000000000000000000000000000000;269.50000000000000000000000000000000;269.39999389648437500000000000000000;269.29998779296875000000000000000000;269.29998779296875000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.20001220703125000000000000000000;269.10000610351562500000000000000000;269.10000610351562500000000000000000;269.00000000000000000000000000000000;269.00000000000000000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.39999389648437500000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.50000000000000000000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.60000610351562500000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.70001220703125000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.79998779296875000000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268.89999389648437500000000000000000;268 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment