Team:Aachen/TestBench2

From 2014.igem.org

Revision as of 17:29, 12 October 2014 by Mosthege (Talk | contribs)

Wonderful woman. Very free-spirited. We're all very fond of her. And I'm talkin' about the Dude here —sometimes there's a man who, wal, he's the man for his time'n place, he fits right in there—and that's the Dude, in Los Angeles. They call Los Angeles the City of Angels. I didn't find it to be that exactly, but I'll allow as there are some nice folks there. 'Course, I can't say I seen London, and I never been to France, and I ain't never seen no queen in her damn undies as the fella says. But I'll tell you what, after seeing Los Angeles and thisahere story I'm about to unfold —wal, I guess I seen somethin' ever' bit as stupefyin' as ya'd see in any a those other places, and in English too, so I can die with a smile on my face without feelin' like the good Lord gypped me.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Final//EN"> Simple Chimera Viewer

<script id="default.fs" type="x-shader/x-fragment">

  1. ifdef GL_ES

precision highp float;

  1. endif

varying vec4 vColor; varying vec2 vTexCoord; varying vec3 lightWeighting;

uniform bool hasTexture1; uniform sampler2D sampler1;

uniform bool enablePicking; uniform vec3 pickColor;

uniform bool hasFog; uniform vec3 fogColor;

uniform float fogNear; uniform float fogFar;

void main(){

 if(!hasTexture1) {
   gl_FragColor = vec4(vColor.rgb * lightWeighting, vColor.a);
 } else {
   gl_FragColor = vec4(texture2D(sampler1, vec2(vTexCoord.s, vTexCoord.t)).rgb * lightWeighting, 1.0);
 }
 if(enablePicking) {
   gl_FragColor = vec4(pickColor, 1.0);
 }
 
 /* handle fog */
 if (hasFog) {
   float depth = gl_FragCoord.z / gl_FragCoord.w;
   float fogFactor = smoothstep(fogNear, fogFar, depth);
   gl_FragColor = mix(gl_FragColor, vec4(fogColor, gl_FragColor.w), fogFactor);
 }  

} </script> <script id="offset.vs" type="x-shader/x-vertex"> // just like default.vs.glsl expect for additional offset

  1. define LIGHT_MAX 8

attribute vec3 position; attribute vec3 offset; attribute vec3 normal; attribute vec4 color; attribute vec2 texCoord1;

uniform mat4 worldMatrix; uniform mat4 viewMatrix; uniform mat4 projectionMatrix; uniform mat4 worldInverseTransposeMatrix;

uniform bool enableLights; uniform vec3 ambientColor; uniform vec3 directionalColor; uniform vec3 lightingDirection;

uniform vec3 pointLocation[LIGHT_MAX]; uniform vec3 pointColor[LIGHT_MAX]; uniform int numberPoints;

varying vec4 vColor; varying vec2 vTexCoord; varying vec3 lightWeighting;

void main(void) {

 vec4 mvPosition = worldMatrix * vec4(position + offset, 1.0);
 
 if(!enableLights) {
   lightWeighting = vec3(1.0, 1.0, 1.0);
 } else {
   vec3 plightDirection;
   vec3 pointWeight = vec3(0.0, 0.0, 0.0);
   vec4 transformedNormal = worldInverseTransposeMatrix * vec4(normal, 1.0);
   float directionalLightWeighting = max(dot(transformedNormal.xyz, lightingDirection), 0.0);
   for (int i = 0; i < LIGHT_MAX; i++) {
     if (i < numberPoints) {
       plightDirection = normalize((viewMatrix * vec4(pointLocation[i], 1.0)).xyz - mvPosition.xyz);
       pointWeight += max(dot(transformedNormal.xyz, plightDirection), 0.0) * pointColor[i];
     } else {
       break;
     }
   }
   lightWeighting = ambientColor + (directionalColor * directionalLightWeighting) + pointWeight;
 }
 
 vColor = color;
 vTexCoord = texCoord1;
 gl_Position = projectionMatrix * mvPosition;

} </script> <script id="cylinder.vs" type="x-shader/x-vertex"> // just like default.vs.glsl expect for additional tranformation

  1. define LIGHT_MAX 8

attribute vec3 position; attribute vec4 transformX, transformY, transformZ; // 4x3 transformation attribute float yscale; attribute vec3 normal; attribute vec4 color; attribute vec2 texCoord1;

uniform mat4 worldMatrix; uniform mat4 viewMatrix; uniform mat4 projectionMatrix; uniform mat4 worldInverseTransposeMatrix;

uniform bool enableLights; uniform vec3 ambientColor; uniform vec3 directionalColor; uniform vec3 lightingDirection;

uniform vec3 pointLocation[LIGHT_MAX]; uniform vec3 pointColor[LIGHT_MAX]; uniform int numberPoints;

varying vec4 vColor; varying vec2 vTexCoord; varying vec3 lightWeighting;

void main(void) {

 vec4 pos = vec4(position * vec3(1.0, yscale, 1.0), 1.0);
 vec4 mvPosition;
 mvPosition.x = dot(pos, transformX);
 mvPosition.y = dot(pos, transformY);
 mvPosition.z = dot(pos, transformZ);
 mvPosition.w = pos.w;
 pos = worldMatrix * mvPosition;
 mvPosition = pos;
 vec3 n;
 n.x = dot(normal, vec3(transformX));
 n.y = dot(normal, vec3(transformY));
 n.z = dot(normal, vec3(transformZ));
 
 if(!enableLights) {
   lightWeighting = vec3(1.0, 1.0, 1.0);
 } else {
   vec3 plightDirection;
   vec3 pointWeight = vec3(0.0, 0.0, 0.0);
   //vec3 transformedNormal = mat3(worldInverseTransposeMatrix) * n;
   vec3 transformedNormal = vec3(worldInverseTransposeMatrix * vec4(n, 0.0));
   float directionalLightWeighting = max(dot(transformedNormal, lightingDirection), 0.0);
   for (int i = 0; i < LIGHT_MAX; i++) {
     if (i < numberPoints) {
       plightDirection = normalize((viewMatrix * vec4(pointLocation[i], 1.0)).xyz - mvPosition.xyz);
       pointWeight += max(dot(transformedNormal, plightDirection), 0.0) * pointColor[i];
     } else {
       break;
     }
   }
   lightWeighting = ambientColor + (directionalColor * directionalLightWeighting) + pointWeight;
 }
 
 vColor = color;
 vTexCoord = texCoord1;
 gl_Position = projectionMatrix * mvPosition;

} </script> <script id="nolight.vs" type="x-shader/x-vertex"> // just like default.vs.glsl except all lights are ignored

  1. define LIGHT_MAX 8

attribute vec3 position; attribute vec3 normal; attribute vec4 color; attribute vec2 texCoord1;

uniform mat4 worldMatrix; uniform mat4 viewMatrix; uniform mat4 projectionMatrix; uniform mat4 worldInverseTransposeMatrix;

uniform bool enableLights; uniform vec3 ambientColor; uniform vec3 directionalColor; uniform vec3 lightingDirection;

uniform vec3 pointLocation[LIGHT_MAX]; uniform vec3 pointColor[LIGHT_MAX]; uniform int numberPoints;

varying vec4 vColor; varying vec2 vTexCoord; varying vec3 lightWeighting;

void main(void) {

 vec4 mvPosition = worldMatrix * vec4(position, 1.0);
 
 lightWeighting = vec3(1.0, 1.0, 1.0);
 
 vColor = color;
 vTexCoord = texCoord1;
 gl_Position = projectionMatrix * mvPosition;

} </script> <script> var json = [ ["bg",0.0,0.0,0.0], ["cofr",8.881,39.441,18.015], ["eyepos",8.881,39.441,225.864], ["up",0,1,0], ["persp",14.575], ["ld",0.342,0.342,0.342,0.357,-0.66,-0.66], ["ld",0.272,0.272,0.272,-0.251,-0.251,-0.935], ["la",0.125,0.125,0.125], ["s",0.2,[5.97,44.642,40.395],[0.824,0.706,0.549,1]], ["s",0.2,[4.849,44.262,40.745],[1.0,0.051,0.051,1]], ["s",0.2,[7.162,43.699,40.449],[0.824,0.706,0.549,1]], ["s",0.2,[6.199,45.867,39.935],[0.188,0.314,0.973,1]], ["s",0.2,[5.133,46.869,39.845],[0.824,0.706,0.549,1]], ["s",0.2,[4.0,46.423,38.939],[0.824,0.706,0.549,1]], ["s",0.2,[4.173,45.532,38.113],[1.0,0.051,0.051,1]], ["s",0.2,[5.694,48.226,39.363],[0.824,0.706,0.549,1]], ["s",0.2,[6.139,48.224,37.894],[0.824,0.706,0.549,1]], ["s",0.2,[7.039,49.397,37.554],[0.824,0.706,0.549,1]], ["s",0.2,[6.917,50.473,38.169],[1.0,0.051,0.051,1]], ["s",0.2,[7.87,49.24,36.635],[1.0,0.051,0.051,1]], ["s",0.2,[2.815,46.998,39.163],[0.188,0.314,0.973,1]], ["s",0.2,[1.642,46.704,38.339],[0.824,0.706,0.549,1]], ["s",0.2,[1.908,47.259,36.937],[0.824,0.706,0.549,1]], ["s",0.2,[2.432,48.396,36.808],[1.0,0.051,0.051,1]], ["s",0.2,[0.394,47.443,38.84],[0.824,0.706,0.549,1]], ["s",0.2,[-0.142,46.891,40.142],[0.824,0.706,0.549,1]], ["s",0.2,[0.233,45.821,40.552],[1.0,0.051,0.051,1]], ["s",0.2,[-1.039,47.622,40.786],[0.188,0.314,0.973,1]], ["s",0.2,[1.479,46.504,35.932],[0.188,0.314,0.973,1]], ["s",0.2,[1.638,46.911,34.531],[0.824,0.706,0.549,1]], ["s",0.2,[0.287,47.019,33.82],[0.824,0.706,0.549,1]], ["s",0.2,[-0.711,46.498,34.311],[1.0,0.051,0.051,1]], ["s",0.2,[2.547,45.894,33.81],[0.824,0.706,0.549,1]], ["s",0.2,[3.904,45.706,34.51],[0.824,0.706,0.549,1]], ["s",0.2,[4.766,44.716,33.726],[0.824,0.706,0.549,1]], ["s",0.2,[4.623,47.033,34.686],[0.824,0.706,0.549,1]], ["s",0.2,[0.252,47.713,32.677],[0.188,0.314,0.973,1]], ["s",0.2,[-0.975,47.852,31.899],[0.824,0.706,0.549,1]], ["s",0.2,[-0.504,47.586,30.472],[0.824,0.706,0.549,1]], ["s",0.2,[0.582,48.069,30.063],[1.0,0.051,0.051,1]], ["s",0.2,[-1.538,49.253,32.048],[0.824,0.706,0.549,1]], ["s",0.2,[-1.71,49.606,33.515],[0.824,0.706,0.549,1]], ["s",0.2,[-0.607,49.931,34.319],[0.824,0.706,0.549,1]], ["s",0.2,[-2.958,49.506,34.132],[0.824,0.706,0.549,1]], ["s",0.2,[-0.746,50.136,35.707],[0.824,0.706,0.549,1]], ["s",0.2,[-3.101,49.711,35.51],[0.824,0.706,0.549,1]], ["s",0.2,[-1.995,50.022,36.288],[0.824,0.706,0.549,1]], ["s",0.2,[-2.145,50.201,37.646],[1.0,0.051,0.051,1]], ["s",0.2,[-1.28,46.792,29.753],[0.188,0.314,0.973,1]], ["s",0.2,[-0.957,46.441,28.363],[0.824,0.706,0.549,1]], ["s",0.2,[-1.171,47.698,27.581],[0.824,0.706,0.549,1]], ["s",0.2,[-2.213,48.343,27.704],[1.0,0.051,0.051,1]], ["s",0.2,[-1.85,45.286,27.862],[0.824,0.706,0.549,1]], ["s",0.2,[-1.473,43.946,28.446],[0.824,0.706,0.549,1]], ["s",0.2,[-0.144,43.501,28.382],[0.824,0.706,0.549,1]], ["s",0.2,[-2.423,43.133,29.068],[0.824,0.706,0.549,1]], ["s",0.2,[0.256,42.266,28.92],[0.824,0.706,0.549,1]], ["s",0.2,[-2.042,41.885,29.616],[0.824,0.706,0.549,1]], ["s",0.2,[-0.692,41.444,29.543],[0.824,0.706,0.549,1]], ["s",0.2,[-0.142,48.082,26.827],[0.188,0.314,0.973,1]], ["s",0.2,[-0.173,49.299,26.037],[0.824,0.706,0.549,1]], ["s",0.2,[-0.836,49.13,24.672],[0.824,0.706,0.549,1]], ["s",0.2,[-0.935,47.979,24.192],[1.0,0.051,0.051,1]], ["s",0.2,[1.254,49.838,25.869],[0.824,0.706,0.549,1]], ["s",0.2,[1.442,51.176,26.52],[0.824,0.706,0.549,1]], ["s",0.2,[2.668,51.872,26.002],[0.824,0.706,0.549,1]], ["s",0.2,[3.756,51.305,26.005],[1.0,0.051,0.051,1]], ["s",0.2,[2.508,53.107,25.57],[0.188,0.314,0.973,1]], ["c",0.2,0.656,[[-0.192,-0.908,0.372,5.672],[0.908,-0.308,-0.283,44.541],[0.372,0.283,0.884,40.488]],[0.824,0.706,0.549,1]], ["c",0.2,0.578,[[0.369,0.908,0.197,5.112],[-0.908,0.308,0.283,44.351],[0.197,-0.283,0.939,40.663]],[1.0,0.051,0.051,1]], ["c",0.2,1.521,[[-0.617,0.784,-0.072,6.566],[-0.784,-0.62,-0.035,44.171],[-0.072,0.035,0.997,40.422]],[0.824,0.706,0.549,1]], ["c",0.2,0.658,[[0.984,0.173,0.031,6.027],[-0.173,0.922,0.346,44.946],[0.031,-0.346,0.938,40.281]],[0.824,0.706,0.549,1]], ["c",0.2,0.67,[[0.617,-0.173,0.768,6.141],[0.173,-0.922,-0.346,45.558],[0.768,0.346,-0.539,40.051]],[0.188,0.314,0.973,1]], ["c",0.2,0.683,[[0.686,-0.727,-0.027,5.951],[0.727,0.684,0.062,46.1],[-0.027,-0.062,0.998,39.914]],[0.188,0.314,0.973,1]], ["c",0.2,0.783,[[-0.672,0.727,-0.142,5.418],[-0.727,-0.684,-0.062,46.601],[-0.142,0.062,0.988,39.869]],[0.824,0.706,0.549,1]], ["c",0.2,1.518,[[0.21,-0.747,-0.631,4.566],[0.747,-0.294,0.597,46.646],[-0.631,-0.597,0.496,39.392]],[0.824,0.706,0.549,1]], ["c",0.2,1.545,[[0.93,0.363,0.06,5.413],[-0.363,0.878,0.312,47.547],[0.06,-0.312,0.948,39.604]],[0.824,0.706,0.549,1]], ["c",0.2,0.653,[[0.927,0.141,0.348,4.046],[-0.141,-0.726,0.673,46.186],[0.348,-0.673,-0.653,38.72]],[0.824,0.706,0.549,1]], ["c",0.2,0.576,[[0.988,-0.141,0.055,4.133],[0.141,0.726,-0.673,45.74],[0.055,0.673,0.738,38.306]],[1.0,0.051,0.051,1]], ["c",0.2,1.536,[[0.916,0.29,0.278,5.916],[-0.29,-0.001,0.957,48.225],[0.278,-0.957,0.083,38.629]],[0.824,0.706,0.549,1]], ["c",0.2,1.518,[[0.801,0.593,0.075,6.589],[-0.593,0.773,0.224,48.81],[0.075,-0.224,0.972,37.724]],[0.824,0.706,0.549,1]], ["c",0.2,0.712,[[0.494,0.665,0.56,7.276],[-0.665,-0.126,0.736,49.352],[0.56,-0.736,0.38,37.292]],[0.824,0.706,0.549,1]], ["c",0.2,0.538,[[0.607,-0.665,0.435,7.692],[0.665,0.126,-0.736,49.273],[0.435,0.736,0.519,36.832]],[1.0,0.051,0.051,1]], ["c",0.2,0.709,[[0.995,-0.098,0.026,7.005],[0.098,0.864,-0.494,49.704],[0.026,0.494,0.869,37.729]],[0.824,0.706,0.549,1]], ["c",0.2,0.536,[[0.929,0.098,0.356,6.944],[-0.098,-0.864,0.494,50.242],[0.356,-0.494,-0.794,38.036]],[1.0,0.051,0.051,1]], ["c",0.2,0.682,[[0.196,-0.802,-0.565,2.541],[0.802,-0.201,0.563,46.929],[-0.565,-0.563,0.603,38.971]],[0.188,0.314,0.973,1]], ["c",0.2,0.781,[[0.465,0.802,-0.376,1.955],[-0.802,0.201,-0.563,46.782],[-0.376,0.563,0.736,38.559]],[0.824,0.706,0.549,1]], ["c",0.2,1.535,[[0.554,-0.813,0.179,1.018],[0.813,0.482,-0.326,47.074],[0.179,0.326,0.928,38.59]],[0.824,0.706,0.549,1]], ["c",0.2,1.531,[[0.978,0.174,0.117,1.775],[-0.174,0.363,0.915,46.981],[0.117,-0.915,0.385,37.638]],[0.824,0.706,0.549,1]], ["c",0.2,0.669,[[0.909,0.417,0.023,2.047],[-0.417,0.903,0.103,47.561],[0.023,-0.103,0.994,36.903]],[0.824,0.706,0.549,1]], ["c",0.2,0.59,[[-0.794,-0.417,0.444,2.309],[0.417,-0.903,-0.103,48.13],[0.444,0.103,0.89,36.838]],[1.0,0.051,0.051,1]], ["c",0.2,1.513,[[0.802,-0.354,0.48,0.126],[0.354,-0.365,-0.861,47.167],[0.48,0.861,-0.168,39.491]],[0.824,0.706,0.549,1]], ["c",0.2,0.656,[[0.704,-0.678,0.212,-0.364],[0.678,0.552,-0.486,47.072],[0.212,0.486,0.848,40.302]],[0.824,0.706,0.549,1]], ["c",0.2,0.668,[[-0.025,0.678,0.735,-0.813],[-0.678,-0.552,0.486,47.437],[0.735,-0.486,0.473,40.623]],[0.188,0.314,0.973,1]], ["c",0.2,0.641,[[0.139,0.311,-0.94,-0.042],[-0.311,-0.887,-0.34,46.606],[-0.94,0.34,-0.027,40.251]],[0.824,0.706,0.549,1]], ["c",0.2,0.565,[[0.949,-0.311,-0.056,0.145],[0.311,0.887,0.34,46.071],[-0.056,-0.34,0.939,40.456]],[1.0,0.051,0.051,1]], ["c",0.2,0.662,[[0.45,-0.887,0.104,3.706],[0.887,0.43,-0.168,46.566],[0.104,0.168,0.98,38.995]],[0.824,0.706,0.549,1]], ["c",0.2,0.674,[[-0.381,0.887,0.261,3.114],[-0.887,-0.43,0.168,46.853],[0.261,-0.168,0.951,39.107]],[0.188,0.314,0.973,1]], ["c",0.2,0.684,[[0.991,0.108,0.081,1.516],[-0.108,0.277,0.955,46.599],[0.081,-0.955,0.286,35.606]],[0.188,0.314,0.973,1]], ["c",0.2,0.784,[[0.984,-0.108,0.143,1.595],[0.108,-0.277,-0.955,46.802],[0.143,0.955,-0.261,34.905]],[0.824,0.706,0.549,1]], ["c",0.2,1.531,[[0.272,-0.883,-0.383,0.962],[0.883,0.071,0.465,46.965],[-0.383,-0.465,0.798,34.175]],[0.824,0.706,0.549,1]], ["c",0.2,1.543,[[-0.019,0.589,0.808,2.092],[-0.589,-0.659,0.467,46.402],[0.808,-0.467,0.36,34.171]],[0.824,0.706,0.549,1]], ["c",0.2,0.652,[[-0.146,-0.812,0.564,0.022],[0.812,-0.424,-0.4,46.881],[0.564,0.4,0.722,33.95]],[0.824,0.706,0.549,1]], ["c",0.2,0.575,[[0.537,0.812,0.228,-0.477],[-0.812,0.424,0.4,46.62],[0.228,-0.4,0.888,34.196]],[1.0,0.051,0.051,1]], ["c",0.2,1.538,[[0.114,0.882,-0.457,3.225],[-0.882,-0.122,-0.455,45.8],[-0.457,0.455,0.764,34.16]],[0.824,0.706,0.549,1]], ["c",0.2,1.519,[[0.88,0.473,-0.029,4.263],[-0.473,0.873,-0.115,46.37],[-0.029,0.115,0.993,34.598]],[0.824,0.706,0.549,1]], ["c",0.2,1.53,[[0.098,0.564,0.82,4.335],[-0.564,-0.647,0.513,45.211],[0.82,-0.513,0.255,34.118]],[0.824,0.706,0.549,1]], ["c",0.2,0.658,[[0.758,-0.323,-0.566,1.802],[0.323,-0.568,0.757,47.072],[-0.566,-0.757,-0.327,36.688]],[0.824,0.706,0.549,1]], ["c",0.2,0.67,[[0.934,0.323,-0.156,1.587],[-0.323,0.568,-0.757,46.695],[-0.156,0.757,0.635,36.186]],[0.188,0.314,0.973,1]], ["c",0.2,0.68,[[0.355,-0.841,-0.409,-0.034],[0.841,0.095,0.533,47.745],[-0.409,-0.533,0.741,32.495]],[0.188,0.314,0.973,1]], ["c",0.2,0.779,[[0.218,0.841,-0.495,-0.647],[-0.841,-0.095,-0.533,47.815],[-0.495,0.533,0.686,32.107]],[0.824,0.706,0.549,1]], ["c",0.2,1.526,[[0.885,0.308,0.349,-0.739],[-0.308,-0.174,0.935,47.719],[0.349,-0.935,-0.059,31.186]],[0.824,0.706,0.549,1]], ["c",0.2,1.517,[[0.928,-0.371,0.019,-1.256],[0.371,0.923,-0.098,48.553],[0.019,0.098,0.995,31.974]],[0.824,0.706,0.549,1]], ["c",0.2,0.668,[[0.461,0.864,0.203,-0.215],[-0.864,0.384,0.326,47.714],[0.203,-0.326,0.923,30.364]],[0.824,0.706,0.549,1]], ["c",0.2,0.589,[[-0.212,-0.864,0.457,0.327],[0.864,-0.384,-0.326,47.956],[0.457,0.326,0.828,30.159]],[1.0,0.051,0.051,1]], ["c",0.2,1.518,[[0.99,-0.113,0.089,-1.624],[0.113,0.232,-0.966,49.429],[0.089,0.966,0.243,32.782]],[0.824,0.706,0.549,1]], ["c",0.2,1.403,[[0.498,0.786,-0.366,-1.158],[-0.786,0.232,-0.573,49.768],[-0.366,0.573,0.734,33.917]],[0.824,0.706,0.549,1]], ["c",0.2,1.395,[[0.139,-0.894,0.426,-2.334],[0.894,-0.071,-0.442,49.556],[0.426,0.442,0.789,33.824]],[0.824,0.706,0.549,1]], ["c",0.2,1.41,[[0.992,-0.099,0.085,-0.676],[0.099,0.146,-0.984,50.034],[0.085,0.984,0.154,35.013]],[0.824,0.706,0.549,1]], ["c",0.2,1.4,[[0.991,-0.102,0.088,-3.029],[0.102,0.146,-0.984,49.609],[0.088,0.984,0.155,34.821]],[0.824,0.706,0.549,1]], ["c",0.2,1.383,[[0.11,-0.904,0.414,-1.37],[0.904,-0.083,-0.42,50.079],[0.414,0.42,0.807,35.997]],[0.824,0.706,0.549,1]], ["c",0.2,1.387,[[0.481,0.797,-0.365,-2.548],[-0.797,0.224,-0.561,49.866],[-0.365,0.561,0.743,35.899]],[0.824,0.706,0.549,1]], ["c",0.2,0.723,[[0.989,-0.109,0.095,-2.034],[0.109,0.13,-0.986,50.069],[0.095,0.986,0.14,36.644]],[0.824,0.706,0.549,1]], ["c",0.2,0.655,[[0.986,0.109,0.123,-2.109],[-0.109,-0.13,0.986,50.158],[0.123,-0.986,-0.116,37.323]],[1.0,0.051,0.051,1]], ["c",0.2,0.663,[[1.0,-0.026,-0.015,0.278],[0.026,0.519,0.854,47.191],[-0.015,-0.854,0.519,33.537]],[0.824,0.706,0.549,1]], ["c",0.2,0.675,[[0.999,0.026,-0.046,0.261],[-0.026,-0.519,-0.854,47.538],[-0.046,0.854,-0.517,32.965]],[0.188,0.314,0.973,1]], ["c",0.2,0.685,[[0.936,0.22,0.273,-1.205],[-0.22,-0.239,0.946,46.711],[0.273,-0.946,-0.175,29.429]],[0.188,0.314,0.973,1]], ["c",0.2,0.785,[[0.961,-0.22,0.168,-1.043],[0.22,0.239,-0.946,46.535],[0.168,0.946,0.278,28.734]],[0.824,0.706,0.549,1]], ["c",0.2,1.544,[[-0.33,-0.578,-0.746,-1.403],[0.578,-0.748,0.324,45.863],[-0.746,-0.324,0.582,28.113]],[0.824,0.706,0.549,1]], ["c",0.2,1.496,[[0.989,-0.143,-0.041,-1.064],[0.143,0.84,0.523,47.07],[-0.041,-0.523,0.851,27.972]],[0.824,0.706,0.549,1]], ["c",0.2,0.655,[[0.53,-0.846,0.055,-1.448],[0.846,0.524,-0.1,47.87],[0.055,0.1,0.993,27.614]],[0.824,0.706,0.549,1]], ["c",0.2,0.577,[[-0.503,0.846,0.177,-1.969],[-0.846,-0.524,0.1,48.192],[0.177,-0.1,0.979,27.675]],[1.0,0.051,0.051,1]], ["c",0.2,1.509,[[0.446,0.249,-0.86,-1.661],[-0.249,-0.888,-0.387,44.616],[-0.86,0.387,-0.333,28.154]],[0.824,0.706,0.549,1]], ["c",0.2,1.404,[[-0.314,0.947,0.064,-0.808],[-0.947,-0.317,0.046,43.723],[0.064,-0.046,0.997,28.414]],[0.824,0.706,0.549,1]], ["c",0.2,1.396,[[-0.108,-0.68,0.725,-1.948],[0.68,-0.582,-0.445,43.539],[0.725,0.445,0.525,28.757]],[0.824,0.706,0.549,1]], ["c",0.2,1.405,[[0.332,0.285,-0.899,0.056],[-0.285,-0.879,-0.383,42.883],[-0.899,0.383,-0.211,28.651]],[0.824,0.706,0.549,1]], ["c",0.2,1.415,[[0.388,0.269,-0.881,-2.232],[-0.269,-0.882,-0.388,42.509],[-0.881,0.388,-0.27,29.342]],[0.824,0.706,0.549,1]], ["c",0.2,1.402,[[-0.108,-0.677,0.728,-0.218],[0.677,-0.587,-0.445,41.855],[0.728,0.445,0.521,29.232]],[0.824,0.706,0.549,1]], ["c",0.2,1.422,[[-0.307,0.949,0.07,-1.367],[-0.949,-0.31,0.051,41.664],[0.07,-0.051,0.996,29.58]],[0.824,0.706,0.549,1]], ["c",0.2,0.655,[[0.14,-0.587,-0.798,-0.696],[0.587,-0.6,0.544,47.39],[-0.798,-0.544,0.26,30.294]],[0.824,0.706,0.549,1]], ["c",0.2,0.668,[[0.785,0.587,-0.199,-1.084],[-0.587,0.6,-0.544,46.993],[-0.199,0.544,0.815,29.934]],[0.188,0.314,0.973,1]], ["c",0.2,0.676,[[1.0,-0.021,-0.006,-0.149],[0.021,0.838,0.545,48.365],[-0.006,-0.545,0.839,26.643]],[0.188,0.314,0.973,1]], ["c",0.2,0.775,[[0.997,0.021,-0.071,-0.165],[-0.021,-0.838,-0.545,48.974],[-0.071,0.545,-0.836,26.248]],[0.824,0.706,0.549,1]], ["c",0.2,1.534,[[0.36,0.93,0.075,0.54],[-0.93,0.351,0.109,49.569],[0.075,-0.109,0.991,25.953]],[0.824,0.706,0.549,1]], ["c",0.2,1.526,[[0.788,-0.434,-0.437,-0.504],[0.434,-0.111,0.894,49.215],[-0.437,-0.894,0.101,25.354]],[0.824,0.706,0.549,1]], ["c",0.2,0.693,[[0.922,-0.079,-0.378,-0.863],[0.079,-0.92,0.384,48.811],[-0.378,-0.384,-0.842,24.539]],[0.824,0.706,0.549,1]], ["c",0.2,0.559,[[0.997,0.079,-0.016,-0.913],[-0.079,0.92,-0.384,48.236],[-0.016,0.384,0.923,24.299]],[1.0,0.051,0.051,1]], ["c",0.2,1.499,[[0.992,0.125,-0.029,1.348],[-0.125,0.892,-0.434,50.507],[-0.029,0.434,0.9,26.194]],[0.824,0.706,0.549,1]], ["c",0.2,1.502,[[0.545,0.816,0.192,2.055],[-0.816,0.463,0.345,51.524],[0.192,-0.345,0.919,26.261]],[0.824,0.706,0.549,1]], ["c",0.2,0.652,[[-0.462,0.887,-0.004,2.957],[-0.887,-0.462,-0.003,51.721],[-0.004,0.003,1.0,26.003]],[0.824,0.706,0.549,1]], ["c",0.2,0.575,[[0.462,-0.887,-0.002,3.501],[0.887,0.462,0.003,51.438],[-0.002,-0.003,1.0,26.005]],[1.0,0.051,0.051,1]], ["c",0.2,0.653,[[0.992,-0.121,-0.021,2.628],[0.121,0.937,0.328,52.178],[-0.021,-0.328,0.945,25.895]],[0.824,0.706,0.549,1]], ["c",0.2,0.665,[[0.766,0.121,-0.631,2.548],[-0.121,-0.937,-0.328,52.795],[-0.631,0.328,-0.703,25.679]],[0.188,0.314,0.973,1]], ["c",0.2,0.66,[[0.537,0.773,0.34,-0.916],[-0.773,0.288,0.566,47.793],[0.34,-0.566,0.751,27.394]],[0.824,0.706,0.549,1]], ["c",0.2,0.672,[[0.162,-0.773,0.614,-0.402],[0.773,-0.288,-0.566,47.985],[0.614,0.566,0.55,27.017]],[0.188,0.314,0.973,1]], ["t",[8.523,15.78,13.535,8.193,15.257,14.425,8.151,15.532,13.833,8.851,16.476,15.212,9.101,16.851,14.226,9.71,17.921,14.893,8.891,19.333,13.375,8.282,18.263,12.708,8.781,20.479,12.92,8.765,20.483,12.919,8.267,18.266,12.707,7.726,20.243,12.778,7.058,20.06,12.533,7.643,18.095,12.479,6.17,19.694,12.052,5.969,19.472,11.927,7.467,17.9,12.369,6.949,17.945,12.505,5.702,19.26,11.82,6.682,17.732,12.399,6.148,17.809,12.389,5.026,16.092,13.921,5.404,15.778,14.142,5.446,15.504,14.735,4.74,16.768,14.485,5.121,16.273,15.376,4.651,17.166,15.861,5.0,16.751,16.963,5.47,15.859,16.478,5.483,16.304,16.972,8.831,16.814,16.424,8.818,16.369,15.93,10.422,17.818,16.325,10.462,17.937,15.754,8.861,16.495,15.324,9.718,17.938,14.992,11.158,18.652,15.008,10.368,18.605,14.295,10.782,18.893,14.59,10.49,19.824,13.959,10.093,19.482,13.701,10.15,20.649,13.291,10.53,19.852,13.973,10.193,20.679,13.306,10.583,20.488,13.788,10.96,21.118,13.731,10.57,21.308,13.249,10.871,21.904,12.156,9.173,21.832,11.433,8.637,21.227,12.426,7.606,20.943,12.314,8.994,22.036,11.317,7.414,21.162,12.189,6.625,21.264,11.179,6.257,20.265,11.4,7.067,20.222,12.397,6.179,19.865,11.907,5.423,19.781,10.891,5.345,19.381,11.398,4.655,19.2,10.416,4.349,18.818,10.692,5.02,18.975,11.691,5.549,17.559,12.276,3.287,18.632,11.383,4.558,17.386,12.921,3.892,18.778,12.425,3.753,19.065,13.6,4.436,17.638,13.953,4.033,18.977,14.672,4.038,18.953,14.718,4.441,17.616,13.997,3.589,19.063,15.066,3.644,18.921,15.303,4.495,17.473,14.234,4.373,17.968,15.575,3.425,19.332,16.744,4.124,18.436,17.216,4.056,18.605,18.285,5.02,17.348,18.719,5.221,17.005,17.71,5.704,16.557,17.719,6.605,18.269,19.332,7.508,17.606,18.417,6.95,18.444,18.893,7.23,18.743,18.709,7.808,17.927,18.221,7.615,19.545,19.303,7.8,19.679,19.137,7.993,18.06,18.055,7.7,19.407,18.562,7.847,19.506,18.388,8.149,18.165,17.87,9.78,19.09,17.686,7.87,19.561,18.417,9.803,19.145,17.715,8.529,20.203,18.993,9.38,20.845,19.282,10.603,19.749,17.986,11.221,20.805,18.441,12.508,20.358,17.901,11.983,19.27,17.408,13.008,20.411,17.717,13.328,20.484,16.134,12.284,19.339,15.918,13.407,20.639,15.628,12.865,20.963,14.863,11.704,19.686,15.099,11.323,19.918,14.68,12.862,20.97,14.856,11.319,19.926,14.673,11.429,20.568,14.538,12.737,22.007,14.388,11.288,21.748,14.005,11.159,22.457,12.397,11.063,22.643,13.057,12.13,22.339,14.402,12.777,22.096,14.376,11.199,22.546,12.385,12.354,23.55,13.119,12.552,23.694,12.608,11.395,22.687,11.88,12.219,23.724,12.075,10.739,24.85,10.517,10.094,23.677,10.511,10.106,24.743,10.67,8.689,24.516,11.337,8.85,23.478,11.097,8.666,23.863,11.492,8.472,23.529,11.714,8.667,23.162,11.307,6.254,22.546,11.167,7.894,22.331,11.647,7.394,22.186,11.628,8.223,23.827,12.213,5.987,22.865,11.702,6.17,24.352,12.959,5.151,24.76,12.656,4.905,23.299,11.38,4.382,25.905,11.603,4.379,23.512,11.704,3.996,25.471,11.864,3.513,25.74,11.547,4.011,23.129,11.323,2.087,24.297,11.538,1.855,24.014,11.048,3.764,22.828,10.803,3.609,22.722,9.737,5.497,20.929,9.182,5.913,20.788,10.171,5.492,20.622,9.681,5.055,19.729,10.262,5.445,19.831,10.793,4.676,19.247,10.325,4.604,19.956,9.177,4.221,19.475,9.23,4.66,20.301,8.707,2.839,21.871,9.24,2.269,21.157,9.801,2.669,21.623,9.743,2.627,21.691,9.997,2.227,21.226,10.057,0.988,23.172,10.772,1.014,22.647,12.248,2.253,20.701,11.533,2.793,20.976,12.585,1.132,22.879,12.749,2.918,21.223,13.117,2.455,22.856,13.795,2.47,22.808,13.922,2.936,21.169,13.261,1.131,22.741,14.373,3.089,21.776,13.631,1.811,22.858,14.399,1.275,22.629,14.77,3.089,21.05,13.683,2.605,22.704,14.292,2.607,22.703,14.297,3.092,21.049,13.689,3.004,20.829,15.1,3.568,19.099,15.027,3.734,19.08,13.606,4.015,18.991,14.677,2.607,22.704,14.298,3.004,20.829,15.101,1.277,22.629,14.776,2.725,21.599,15.579,1.972,22.4,15.453,1.09,22.487,14.997,2.829,20.697,15.307,0.639,22.115,15.233,2.629,21.13,15.786,1.142,22.115,15.769,0.461,21.857,15.872,2.668,20.463,15.886,2.037,21.852,16.384,2.053,21.777,16.606,2.682,20.398,16.08,1.698,20.786,17.693,2.426,19.762,18.384,3.41,19.374,16.771,4.041,18.648,18.312,2.971,20.447,20.022,4.587,19.333,19.95,4.548,20.899,20.237,4.851,20.872,20.412,4.872,19.307,20.115,5.342,20.407,20.391,7.336,19.446,19.608,6.624,18.464,19.427,6.97,18.65,18.993,4.964,20.988,20.569,5.463,20.531,20.559,4.899,21.351,21.026,6.111,22.163,21.402,6.843,21.456,20.987,7.392,21.817,20.997,8.497,20.186,19.049,7.948,19.826,19.039,7.839,19.545,18.47,6.254,23.138,21.193,7.555,22.926,20.759,6.921,24.468,20.87,7.797,24.858,20.454,8.431,23.316,20.343,8.745,25.361,20.263,9.332,25.256,19.885,9.018,23.211,19.964,9.549,24.875,19.395,9.804,24.721,19.182,9.273,23.057,19.751,10.439,24.766,19.096,10.549,24.657,19.005,9.39,22.941,19.654,11.672,23.917,19.237,11.932,23.299,19.215,9.65,22.323,19.632,11.458,22.104,18.749,12.454,22.999,19.401,11.916,21.841,18.912,12.727,22.448,19.231,13.486,21.446,18.883,12.584,20.961,18.606,13.094,21.098,18.519,15.028,22.002,16.686,14.635,21.654,16.322,14.555,21.667,15.793,14.539,23.548,16.166,14.126,23.025,15.336,14.076,24.466,15.83,13.868,24.531,15.607,13.943,23.082,15.14,13.536,24.55,13.895,13.891,25.532,15.582,13.557,25.441,13.872,13.855,26.577,15.332,13.822,26.86,15.116,13.526,25.712,13.666,13.448,26.747,14.687,13.364,26.96,14.465,13.441,25.928,13.441,13.319,26.869,12.923,13.458,26.214,11.865,13.565,25.344,12.499,13.356,25.577,11.954,10.679,26.464,10.441,10.577,25.827,10.529,9.944,25.72,10.682,10.569,26.588,10.488,9.834,25.844,10.73,9.495,27.451,8.622,9.746,26.42,10.815,9.48,27.665,9.101,9.037,27.631,8.823,9.313,26.048,10.958,8.383,26.839,11.146,7.427,25.753,12.091,8.224,24.812,12.035,6.178,24.666,12.888,6.204,24.531,12.928,8.252,24.668,12.077,8.258,24.005,12.182,6.945,26.197,11.921,5.662,25.142,12.706,4.91,26.3,11.654,6.957,26.24,11.845,4.923,26.348,11.569,5.411,26.729,11.535,4.939,27.246,10.551,4.451,26.865,10.585,4.134,27.331,9.048,2.432,26.889,9.294,2.797,26.436,10.824,1.394,24.971,10.837,1.219,25.531,10.91,2.007,27.03,9.728,2.285,26.884,9.19,1.256,24.967,10.739,0.65,25.73,10.326,-0.494,24.644,9.996,0.111,23.881,10.41,-0.44,24.152,10.356,-0.879,23.402,10.985,-0.332,23.125,11.044,-1.381,23.154,11.243,-1.1,22.795,12.775,-0.052,22.766,12.576,-0.558,22.312,14.27,0.119,22.295,14.463,0.604,22.75,12.763,0.586,22.662,14.251,1.092,22.798,14.265,1.11,22.886,12.777,2.434,22.862,13.821,-2.445,23.076,13.33,-1.946,22.602,14.843,-4.076,22.954,14.407,-4.116,22.875,14.54,-1.987,22.52,14.979,-2.965,22.716,15.516,-2.117,22.021,17.206,-1.164,21.845,16.622,-1.603,21.849,18.139,-0.936,21.878,18.337,-0.475,21.875,16.827,0.837,20.868,18.361,1.613,20.837,17.713,0.383,21.841,16.11,1.957,21.836,16.629,-0.976,21.81,18.429,0.8,20.804,18.447,-0.163,21.421,18.979,0.674,20.67,20.832,1.536,20.144,20.074,0.843,20.671,21.464,2.202,21.475,21.726,2.731,20.85,20.304,4.266,21.67,20.996,4.421,21.487,20.868,2.885,20.667,20.177,4.456,21.133,20.402,2.416,22.725,22.483,4.454,22.768,21.661,3.47,24.097,22.161,4.621,24.954,21.947,5.495,23.543,21.467,6.057,24.929,21.182,4.681,25.341,22.051,6.119,25.327,21.288,4.85,25.898,22.167,5.024,26.258,22.192,6.304,25.71,21.314,6.461,26.747,21.682,7.632,26.694,21.333,7.476,25.657,20.965,8.423,26.16,20.775,8.382,27.918,21.225,9.173,27.384,20.667,10.501,28.523,21.066,10.761,28.227,21.044,9.433,27.089,20.644,11.15,27.056,21.051,11.366,25.677,20.424,9.679,25.52,19.931,10.526,25.159,19.34,10.45,25.062,19.291,9.599,25.417,19.878,9.816,25.036,19.388,11.55,25.538,20.35,10.723,25.01,19.261,11.857,24.292,19.508,11.643,25.501,20.44,11.962,24.25,19.611,12.061,24.85,21.403,13.491,23.929,21.632,13.392,23.329,19.84,13.665,22.777,19.671,14.133,24.094,21.592,14.307,22.942,19.631,15.147,23.909,21.868,14.618,23.801,19.884,15.048,24.281,21.049,15.855,24.579,21.33,15.059,23.655,19.059,14.786,24.206,19.228,14.83,24.783,17.423,15.103,24.231,17.254,14.64,25.149,16.918,14.827,24.891,17.503,14.636,25.257,16.997,14.731,25.89,17.075,14.199,26.197,15.912,14.071,25.583,15.762,14.023,26.625,15.5,14.267,26.265,15.954,14.091,26.693,15.541,14.994,27.364,15.416,14.714,27.63,14.93,13.83,26.941,15.088,13.455,26.823,14.66,14.616,27.852,14.704,13.368,27.018,14.462,13.324,26.935,12.919,14.711,28.315,14.398,13.419,27.397,12.612,14.416,29.1,13.267,13.713,30.064,11.831,12.716,28.361,11.176,12.336,30.254,10.709,11.578,29.925,9.952,11.937,28.022,10.396,11.532,29.776,8.399,11.413,28.311,10.371,11.095,29.691,8.798,11.373,29.6,8.277,11.778,27.847,10.274,10.557,28.558,8.434,11.081,29.363,6.482,10.3,28.349,6.857,10.16,28.722,6.429,9.581,28.237,6.238,9.755,27.893,6.676,9.174,28.089,5.802,7.304,28.223,7.293,8.01,28.017,8.069,5.612,28.244,8.238,5.793,29.271,8.885,8.169,28.92,8.637,7.896,29.328,8.32,7.916,29.353,8.335,8.187,28.943,8.651,7.758,30.315,10.166,7.863,30.161,10.333,8.282,28.805,8.802,8.341,29.799,10.273,8.536,29.506,10.458,8.459,28.539,8.97,7.805,27.748,11.292,8.813,28.033,9.475,8.431,27.571,10.831,8.386,29.617,10.564,7.67,27.848,11.388,6.199,28.507,11.03,8.313,29.728,10.485,6.125,28.619,10.951,7.836,30.09,10.545,7.624,30.287,10.368,5.914,28.816,10.774,5.675,29.269,9.108,4.735,27.712,8.848,5.0,27.303,10.521,4.197,27.389,9.017,3.695,28.275,6.609,3.157,27.952,6.777,2.685,28.212,6.436,1.059,27.447,8.103,1.532,27.187,8.444,-0.059,26.015,9.623,0.653,27.636,7.986,-0.441,26.193,9.513,-0.961,26.497,9.309,-1.952,24.839,9.957,-1.374,24.632,10.123,-1.312,24.14,10.481,-2.077,24.79,10.048,-1.429,24.094,10.566,-1.935,23.852,10.821,-3.056,24.942,10.455,-2.856,23.995,11.204,-4.078,24.209,11.481,-3.983,23.297,13.021,-2.754,23.018,12.855,-4.386,22.896,13.933,-5.203,23.529,12.513,-5.693,23.144,13.388,-5.603,23.557,12.944,-6.55,24.233,13.365,-6.649,23.826,13.812,-6.948,24.738,13.406,-7.177,25.226,14.842,-6.865,24.285,15.164,-8.702,25.563,16.336,-7.014,25.216,15.867,-7.49,25.561,16.18,-8.249,25.464,17.134,-6.438,24.192,15.915,-7.09,25.215,17.987,-6.974,25.05,18.106,-6.32,24.026,16.034,-6.678,24.504,18.365,-6.272,23.976,18.529,-5.938,23.53,16.189,-5.504,22.972,18.417,-4.992,22.333,18.169,-5.389,22.846,15.923,-4.317,22.685,16.986,-3.803,21.744,18.798,-2.964,22.014,17.702,-2.4,21.843,18.605,-3.677,21.91,20.144,-2.265,22.02,20.048,-1.794,21.352,21.721,-1.631,21.192,21.61,-2.112,21.869,19.943,-1.37,21.484,20.588,0.33,20.363,21.875,0.592,20.656,20.853,0.76,20.657,21.486,1.018,20.53,22.761,1.448,20.824,22.371,1.675,20.516,23.654,1.384,22.86,24.62,1.117,23.493,23.471,0.824,23.026,24.478,0.149,23.218,24.388,0.393,23.699,23.375,-0.037,23.405,23.764,-0.551,23.596,23.34,-0.122,23.889,22.951,-0.894,24.656,22.326,-0.331,24.979,21.965,0.519,24.257,22.54,1.626,25.585,22.217,-0.356,25.077,21.917,1.599,25.694,22.164,0.098,27.131,22.612,0.25,27.227,22.818,1.756,25.793,22.376,1.372,27.103,23.666,2.696,26.99,24.262,3.22,25.669,23.035,3.435,26.215,23.121,3.441,27.863,24.192,4.233,27.15,23.046,4.211,28.718,24.584,4.33,28.8,24.502,4.345,27.227,22.969,5.022,28.778,23.368,5.565,28.639,22.951,4.856,27.096,22.576,6.282,27.638,22.09,6.555,29.367,22.929,7.272,28.366,22.068,8.515,29.738,23.582,9.539,29.62,22.848,8.296,28.248,21.334,10.415,28.853,21.176,9.817,29.517,23.041,10.692,28.75,21.369,11.144,28.164,23.139,11.264,27.808,22.997,10.829,28.345,21.207,11.445,27.546,21.572,11.392,27.44,21.432,10.772,28.231,21.057,11.16,27.059,21.063,11.545,27.124,21.649,11.304,26.761,21.267,11.675,26.284,22.344,11.55,27.137,21.664,11.68,26.299,22.361,11.362,27.423,23.084,12.057,26.865,24.535,12.47,25.663,24.013,12.929,25.059,24.789,13.557,23.413,23.548,13.185,23.791,22.601,13.678,23.605,23.007,14.509,23.801,22.208,14.075,24.0,21.745,15.093,23.82,22.011,14.875,23.422,23.293,15.463,23.438,23.106,14.684,23.241,23.818,15.268,23.624,24.62,16.088,23.849,23.965,16.683,23.682,25.949,17.52,24.144,25.738,16.925,24.311,23.754,17.818,24.668,25.475,17.969,26.362,24.993,17.068,25.906,23.3,17.205,27.002,24.551,16.746,27.539,24.114,16.636,26.411,22.889,16.013,27.717,22.897,15.903,27.668,22.342,16.526,26.362,22.334,15.819,27.277,21.845,15.055,25.963,20.706,15.807,25.125,21.262,14.735,24.787,19.156,14.894,26.609,20.249,14.573,25.433,18.699,14.492,26.399,18.201,14.814,27.296,20.188,14.417,27.046,18.143,14.36,28.265,18.488,14.38,28.275,18.455,14.437,27.056,18.111,15.174,28.205,17.708,14.564,29.376,18.6,15.369,29.375,17.862,15.541,30.009,17.866,16.164,29.862,14.702,15.992,29.228,14.697,15.697,30.013,13.567,16.4,30.911,14.744,15.933,31.062,13.61,17.54,32.41,13.139,17.416,32.261,12.291,15.809,30.914,12.762,17.722,31.751,11.319,16.023,31.75,12.015,16.682,32.023,11.531,16.915,32.198,10.474,14.951,31.388,11.864,14.977,32.893,11.112,14.555,32.821,10.934,14.471,31.306,11.661,14.076,31.726,9.118,13.79,31.304,11.278,13.579,31.587,9.593,13.632,31.121,9.071,13.966,30.618,11.608,12.583,30.793,10.493,13.11,30.635,8.544,12.004,30.255,9.91,11.97,30.115,8.355,13.38,31.348,6.576,12.278,30.927,6.116,13.033,31.728,6.288,12.833,31.97,6.066,12.064,31.187,5.878,12.213,31.818,5.872,12.054,31.855,5.742,11.904,31.223,5.747,11.801,32.176,5.257,10.544,31.919,4.911,10.569,30.951,5.379,9.938,30.878,5.307,10.011,29.952,5.607,10.642,30.024,5.678,9.344,29.201,5.239,9.368,29.143,5.277,10.667,29.963,5.719,9.774,29.281,5.717,8.811,31.071,5.27,8.215,30.254,4.922,7.645,32.259,4.391,6.504,31.989,4.503,6.993,29.965,5.043,4.891,31.153,3.89,6.479,29.95,5.31,4.824,30.872,4.428,4.356,30.527,4.24,6.489,29.375,5.372,5.474,30.452,5.83,5.394,30.314,5.977,6.413,29.245,5.51,4.666,29.329,6.343,5.3,30.373,5.949,4.571,29.389,6.316,4.182,30.448,4.359,3.31,30.106,4.347,3.699,29.047,6.304,2.689,28.985,6.132,1.657,30.984,4.324,1.036,29.863,6.108,1.199,30.5,6.133,0.282,30.69,7.257,0.119,30.054,7.232,-2.226,30.339,7.551,-2.393,29.031,7.894,-0.071,28.565,7.623,-1.636,28.076,8.927,-1.309,27.488,9.099,0.256,27.976,7.795,-1.357,26.837,9.118,-2.495,27.574,9.033,-2.543,26.924,9.053,-3.147,28.59,7.987,-3.925,28.663,8.487,-3.429,27.007,9.621,-3.38,27.657,9.601,-3.812,27.729,10.912,-3.861,27.079,10.932,-5.457,26.925,12.257,-5.542,26.198,12.069,-3.947,26.351,10.744,-4.86,25.447,11.734,-6.332,25.198,12.388,-5.554,24.569,12.015,-5.975,24.662,12.415,-3.809,28.069,11.119,-5.453,27.265,12.464,-4.591,29.363,11.486,-4.867,29.529,11.589,-5.768,27.453,12.582,-6.024,28.68,12.925,-6.778,28.522,12.981,-6.568,27.285,12.641,-8.284,28.349,12.446,-9.26,27.268,13.766,-7.679,26.055,14.143,-9.204,26.392,15.637,-10.069,27.45,13.849,-10.125,26.599,15.732,-11.077,27.669,14.222,-11.557,27.67,14.525,-10.605,26.6,16.036,-10.982,26.192,16.284,-9.549,24.864,17.742,-8.997,25.109,17.673,-8.401,24.916,18.57,-7.888,25.097,18.282,-8.452,25.302,17.367,-7.28,25.063,18.205,-7.881,25.019,18.372,-7.273,24.986,18.294,-6.999,24.434,18.566,-8.485,24.917,20.205,-7.641,24.326,20.514,-7.687,24.461,21.162,-7.045,23.793,21.347,-6.999,23.658,20.699,-6.685,23.374,21.677,-6.188,23.052,21.424,-6.502,23.336,20.446,-5.706,22.409,20.1,-4.242,22.877,22.025,-3.997,22.255,20.628,-2.158,21.745,22.272,-2.984,22.42,20.709,-2.302,22.252,21.279,-4.262,23.086,23.161,-2.179,21.955,23.408,-2.317,21.856,24.478,-0.926,20.075,24.643,-0.701,20.063,23.583,-0.471,20.099,24.219,0.572,20.149,23.906,0.417,20.116,23.248,1.147,20.152,24.082,0.296,20.169,25.032,0.887,20.17,25.142,-0.152,20.146,25.463,0.118,22.749,25.812,1.139,22.6,25.467,0.563,22.749,25.377,-0.719,23.181,24.937,-0.267,23.178,24.51,-0.482,23.362,23.895,-1.825,22.802,24.663,-1.657,22.96,23.604,-3.74,24.091,23.356,-3.522,24.419,23.017,-1.438,23.287,23.264,-1.673,24.385,22.259,-3.698,25.467,22.42,-1.829,25.306,21.735,-3.879,26.509,22.224,-3.826,26.67,22.044,-1.782,25.447,21.576,-2.643,26.892,20.854,-2.615,26.908,20.854,-1.754,25.463,21.576,-1.401,27.544,22.246,-2.64,26.933,20.864,-1.427,27.571,22.258,-3.823,26.716,22.055,-2.35,27.997,22.135,-3.332,27.665,22.051,-3.824,26.717,22.061,-1.428,27.571,22.263,-2.678,27.904,22.672,-2.468,27.85,23.322,-1.231,27.521,22.874,-1.579,27.702,23.893,-0.33,27.55,24.297,-0.054,27.377,23.255,1.088,27.243,24.074,0.191,28.303,25.758,1.545,27.905,25.357,2.15,28.344,26.844,2.592,27.929,26.778,1.957,27.518,25.296,2.609,27.216,27.571,3.151,27.033,27.381,2.434,27.357,25.129,3.103,27.757,26.6,4.056,28.207,26.011,3.323,27.777,24.58,4.078,28.62,25.026,4.679,28.614,26.215,4.74,29.053,25.242,5.721,29.451,25.315,5.75,29.469,24.836,4.768,29.07,24.763,5.459,29.048,23.629,6.721,29.869,24.463,6.431,29.448,23.256,8.391,29.819,23.909,6.978,29.907,25.234,8.648,29.857,24.681,8.885,29.843,25.3,9.893,29.365,24.903,9.656,29.379,24.284,11.003,28.042,24.231,10.722,29.471,25.909,11.732,28.136,25.115,12.06,29.131,25.938,12.26,28.993,26.021,11.918,28.007,25.193,12.85,28.141,26.356,13.379,27.071,25.973,12.383,27.068,24.857,13.256,25.262,25.11,14.069,26.691,26.601,13.862,24.927,25.662,14.564,26.3,26.445,14.803,26.126,26.528,14.072,24.774,25.736,15.401,24.914,27.145,14.825,26.234,26.721,15.422,25.016,27.326,15.191,26.103,27.249,16.839,26.423,28.726,16.974,25.317,28.716,17.238,25.915,28.64,17.965,27.807,25.753,18.364,27.298,25.667,17.6,27.938,25.225,17.831,28.269,25.961,17.465,28.401,25.433,17.819,30.004,25.814,17.098,30.363,25.165,16.646,28.81,24.694,15.928,29.562,24.344,15.807,29.295,24.016,16.525,28.542,24.366,15.805,28.66,23.134,14.939,30.041,23.426,14.989,29.362,22.579,14.242,30.858,22.846,14.052,30.821,22.543,14.784,29.322,22.254,14.042,29.778,21.271,14.37,29.224,20.767,15.112,28.769,21.75,14.978,28.447,21.216,14.287,28.832,20.162,14.891,28.03,20.573,14.433,28.956,18.851,13.902,29.912,20.221,14.047,30.035,18.91,13.482,30.867,19.922,13.432,31.111,19.691,14.0,30.265,18.692,15.4,32.287,18.66,14.589,31.292,17.953,14.668,31.406,17.954,15.432,32.265,18.654,14.034,30.242,18.685,14.978,30.929,17.956,17.067,32.645,17.318,16.84,31.361,16.436,18.859,33.09,16.45,16.799,31.972,16.136,18.28,33.227,16.153,18.699,33.29,15.64,16.675,31.567,15.602,17.632,33.478,14.481,17.631,33.414,14.371,16.673,31.503,15.491,17.813,33.002,13.886,17.728,33.439,14.386,17.911,33.027,13.901,18.793,33.252,15.547,19.441,33.1,15.226,18.578,32.87,13.57,19.203,32.901,13.441,19.151,32.63,13.128,18.526,32.599,13.257,19.294,32.15,12.722,18.474,31.77,11.866,17.706,32.219,12.402,17.995,31.711,11.423,19.206,34.471,9.954,18.684,34.254,9.623,19.063,34.95,10.36,18.907,34.986,10.406,18.536,34.287,9.667,17.244,35.333,9.16,16.729,34.343,8.29,17.984,33.227,8.734,16.237,33.966,7.404,15.394,32.951,7.992,17.191,32.271,9.288,14.756,31.866,8.189,16.852,32.477,9.504,14.75,32.112,8.534,14.432,32.076,8.812,16.845,32.496,9.955,14.912,33.171,10.628,14.888,32.823,6.459,14.311,31.754,6.843,15.054,32.96,5.384,14.481,32.898,5.059,13.808,31.7,6.557,13.488,32.102,6.268,13.835,33.127,4.696,12.884,32.315,5.929,12.003,32.49,5.241,11.937,32.331,5.286,12.819,32.158,5.973,12.198,32.019,5.772,13.585,33.429,4.228,11.767,32.774,4.801,13.253,33.417,2.946,12.741,33.607,2.601,11.254,32.964,4.456,10.692,33.543,3.738,9.444,32.696,4.132,10.079,32.167,4.827,9.444,31.141,5.219,8.919,32.723,4.17,8.919,31.168,5.257,7.739,32.344,4.379,8.226,33.857,3.14,7.131,33.34,3.474,7.165,33.903,3.368,6.576,33.919,3.359,6.577,33.355,3.466,5.189,34.134,2.419,5.092,33.994,2.444,6.479,33.215,3.491,4.864,32.517,2.095,4.982,31.57,2.478,6.583,32.384,3.827,4.982,31.603,3.12,1.868,30.45,2.533,1.868,30.483,3.176,1.304,30.736,2.373,0.876,31.302,2.853,1.44,31.049,3.655,-0.615,31.62,3.449,-0.574,32.066,4.072,1.487,31.557,4.365,1.284,32.159,4.468,1.326,32.159,4.547,1.529,31.557,4.444,1.071,31.073,6.254,1.253,32.743,4.908,0.998,31.656,6.615,-0.464,33.627,5.891,0.65,32.589,7.053,0.081,33.35,6.764,-0.874,33.479,6.308,0.576,31.504,7.044,-1.486,32.604,7.422,-1.783,31.957,7.683,0.279,30.857,7.306,-0.343,31.194,8.135,-0.35,31.156,8.145,0.272,30.814,7.318,-2.235,30.448,7.604,-0.292,30.36,7.982,-1.526,30.202,8.086,-0.357,31.175,8.146,-2.242,30.466,7.605,-1.799,31.935,7.697,-2.078,32.031,7.389,-2.488,30.551,7.335,-2.893,31.035,5.956,-3.07,30.139,5.694,-2.664,29.655,7.073,-3.027,29.062,5.094,-3.299,28.31,5.392,-2.904,28.995,7.335,-3.179,27.251,5.576,-3.737,28.413,6.673,-3.805,28.098,6.353,-4.249,26.88,6.167,-3.844,28.669,7.854,-4.765,28.148,6.396,-5.038,28.234,6.54,-4.099,28.75,7.988,-5.293,28.819,7.422,-5.692,29.484,8.545,-4.449,29.334,8.975,-4.796,29.798,9.126,-4.699,29.823,9.267,-4.358,29.358,9.107,-4.647,29.696,10.773,-4.55,29.608,10.808,-4.261,29.27,9.142,-3.762,28.348,10.347,-4.978,30.054,9.299,-4.909,29.914,10.803,-5.535,30.177,9.061,-5.905,30.693,9.281,-5.254,30.396,11.008,-6.888,31.284,11.152,-6.965,31.033,11.678,-5.322,30.176,11.47,-7.235,30.134,12.537,-7.178,29.981,12.63,-5.273,30.041,11.552,-6.459,29.23,12.885,-7.546,29.633,12.671,-6.805,28.902,12.924,-8.309,28.704,12.393,-8.225,30.233,12.33,-8.906,29.231,12.093,-7.955,31.132,11.471,-8.345,31.319,11.465,-9.249,29.395,12.087,-10.346,30.498,11.401,-10.64,30.061,11.172,-9.539,28.964,11.861,-10.74,29.469,11.354,-11.661,27.832,12.48,-10.348,27.526,12.85,-11.394,27.755,13.085,-12.862,27.932,13.023,-12.596,27.855,13.628,-13.502,28.018,13.074,-14.017,28.795,14.147,-13.111,28.633,14.7,-14.561,29.329,15.712,-14.503,29.319,15.801,-13.046,28.623,14.8,-13.235,29.069,15.766,-13.223,29.058,15.773,-13.034,28.611,14.808,-12.982,28.625,16.072,-12.078,27.973,16.109,-12.005,27.87,14.851,-11.381,26.369,16.574,-12.267,28.355,17.673,-11.573,26.756,18.158,-12.03,28.457,19.414,-12.017,28.356,19.554,-11.562,26.666,18.283,-11.331,27.564,19.295,-11.325,27.426,19.416,-11.556,26.534,18.398,-11.456,27.093,19.887,-10.317,25.783,20.317,-10.402,25.206,18.834,-9.302,25.278,19.724,-9.78,25.934,21.17,-8.726,25.439,20.638,-7.943,25.016,21.622,-9.501,26.924,21.823,-7.626,26.143,22.365,-7.446,26.766,22.5,-6.492,26.285,23.443,-6.672,25.662,23.307,-6.312,25.243,23.638,-9.493,27.135,21.841,-7.436,27.007,22.521,-8.187,28.378,23.217,-7.525,28.304,24.077,-6.774,26.932,23.381,-7.267,28.187,25.15,-6.035,28.227,25.478,-5.507,26.973,23.718,-4.436,28.052,25.381,-3.308,27.752,24.85,-4.379,26.673,23.187,-3.233,27.86,23.798,-2.867,27.759,24.882,-2.792,27.867,23.831,-1.903,27.719,24.401,-1.753,29.546,26.964,-0.789,29.506,26.483,-0.216,30.971,27.857,0.208,30.88,27.782,-0.338,29.409,26.403,1.445,29.36,28.08,1.898,28.339,27.568,0.115,28.387,25.892,2.079,28.423,26.97,2.104,28.062,27.586,2.273,28.162,26.986,2.269,27.463,27.792,1.613,28.286,28.63,1.779,27.688,28.836,1.265,27.716,29.779,1.398,27.132,29.897,1.931,27.023,28.97,1.788,26.928,29.594,4.381,26.083,30.06,4.524,26.179,29.436,4.692,26.053,30.493,5.411,27.723,30.8,5.343,28.079,29.786,5.875,29.394,29.884,5.789,29.634,28.506,5.246,28.353,28.218,5.074,29.0,27.387,5.82,29.784,28.403,5.107,29.16,27.276,6.177,30.032,26.442,6.247,30.289,28.56,6.663,30.606,26.621,8.264,31.007,28.213,8.545,30.939,27.951,6.961,30.534,26.343,8.868,30.47,26.408,10.616,31.145,28.415,11.068,30.689,26.901,12.386,30.277,26.871,11.495,31.045,26.911,11.026,31.275,27.319,10.802,31.438,28.463,12.572,30.57,26.919,11.59,32.146,28.53,12.128,32.47,28.542,13.11,30.894,26.931,14.348,31.881,27.882,14.659,31.398,27.993,13.443,30.376,27.05,14.107,29.61,27.449,15.584,31.07,28.264,15.16,29.236,27.756,15.8,30.738,27.913,16.007,30.653,27.882,15.367,29.151,27.725,16.228,28.629,28.097,15.112,26.252,27.341,14.251,26.775,26.969,14.746,26.384,26.813,16.353,30.695,27.924,16.574,28.671,28.139,16.714,30.357,27.728,18.021,32.091,26.081,18.179,31.584,26.109,18.229,32.996,25.577,18.046,32.777,25.022,18.019,31.391,25.621,17.725,32.214,24.99,16.624,31.184,24.411,17.052,30.486,25.113,15.875,29.702,24.285,15.76,31.682,23.688,15.01,30.201,23.562,14.305,30.999,22.965,15.631,32.152,23.48,14.192,31.412,22.782,15.973,32.963,22.511,15.962,32.972,22.495,14.182,31.42,22.768,15.894,32.847,21.433,14.082,32.094,22.502,15.135,33.036,21.651,15.667,32.79,21.089,13.983,31.371,22.466,13.976,32.612,21.531,13.807,32.466,21.344,13.834,31.242,22.301,13.383,31.204,20.763,13.397,31.069,20.762,13.847,31.124,22.301,13.822,30.102,21.012,13.859,32.575,21.069,13.435,31.313,20.488,15.55,32.753,20.627,13.719,32.38,20.301,14.473,32.894,20.351,15.563,32.782,20.118,13.449,31.342,19.979,15.415,32.49,18.914,13.688,32.08,19.135,14.372,32.454,18.795,17.062,32.622,19.854,16.732,32.35,18.682,17.704,32.68,19.741,18.375,33.162,18.894,17.322,32.773,17.938,19.141,33.232,17.136,19.609,33.703,19.437,20.34,33.758,17.663,20.485,34.341,19.521,21.351,35.38,19.112,21.182,34.768,17.266,22.379,36.349,18.101,22.511,36.352,17.91,21.328,34.772,17.055,21.728,34.928,16.606,20.276,33.244,14.723,19.876,33.087,15.171,19.651,32.887,13.384,20.751,33.256,14.501,20.139,32.9,13.156,20.282,32.421,12.75,21.618,34.0,13.927,21.174,33.186,12.159,21.031,33.665,12.566,21.707,34.807,13.699,21.123,34.496,12.33,21.772,35.41,13.539,20.013,36.91,13.412,19.314,36.039,12.2,18.506,36.421,12.814,17.843,36.211,12.073,18.651,35.829,11.459,18.026,35.799,11.588,17.94,35.493,11.105,18.566,35.523,10.975,16.945,35.805,9.66,17.576,35.685,11.387,16.625,35.974,9.908,16.409,36.394,11.544,16.175,36.612,11.455,16.407,36.177,9.825,15.632,36.826,10.565,15.001,37.148,9.485,15.853,36.46,8.876,15.321,36.543,8.652,15.417,36.471,8.409,15.943,36.393,8.647,15.49,36.718,7.328,16.435,34.74,6.753,16.773,34.656,8.142,16.287,34.321,7.235,16.267,34.276,6.298,16.119,33.857,6.781,16.284,33.994,5.705,16.59,35.381,5.783,16.608,35.099,5.19,16.77,35.527,4.733,16.698,34.633,3.87,16.536,34.205,4.326,16.726,34.353,3.285,15.038,33.265,2.822,14.847,33.118,3.863,14.441,33.124,2.602,13.961,36.432,2.153,13.428,36.105,1.973,13.933,36.713,2.738,13.687,36.59,2.993,13.196,35.989,2.213,11.596,36.563,3.181,11.407,36.478,2.917,13.019,35.909,1.964,11.034,36.921,2.652,10.474,36.141,2.135,12.492,35.175,1.477,10.847,35.698,2.399,10.792,34.297,3.019,12.439,33.856,2.06,10.372,33.808,3.163,9.867,34.94,2.512,9.448,34.45,2.656,9.493,35.383,2.248,8.413,35.542,2.49,8.368,34.609,2.898,7.827,34.922,3.053,7.68,34.626,3.162,8.212,34.295,3.014,7.151,34.312,3.25,7.385,35.112,3.142,6.859,34.794,3.231,7.401,35.721,2.932,7.315,35.775,2.945,6.779,34.844,3.242,5.38,35.005,2.309,6.738,36.918,3.153,4.874,36.01,2.492,5.666,36.338,3.402,5.548,36.432,3.469,4.77,36.092,2.551,4.339,38.033,2.575,3.071,37.7,1.671,3.624,35.791,1.734,1.883,36.251,0.722,1.879,35.235,0.337,3.62,34.898,1.396,2.625,33.831,0.742,3.122,33.401,0.728,4.057,34.52,1.384,3.686,33.115,0.888,0.251,34.161,-0.383,0.996,32.758,0.022,0.135,33.66,0.028,-0.739,32.818,1.069,0.122,31.916,1.063,-1.277,32.159,1.876,-1.248,33.116,1.0,-1.724,32.421,1.815,-2.035,32.881,1.643,-2.148,32.822,1.693,-1.831,32.365,1.862,-3.444,32.337,1.229,-3.456,32.249,1.264,-1.842,32.282,1.894,-2.904,30.745,1.32,-2.525,29.866,2.972,-1.463,31.402,3.546,-2.792,29.466,3.955,-2.879,29.592,4.254,-1.538,31.513,3.808,-2.94,30.605,4.956,-2.824,31.169,5.544,-1.423,32.077,4.396,-2.236,32.53,5.391,-1.863,32.911,5.504,-1.095,32.412,4.495,-1.01,33.441,5.931,-0.541,33.606,5.776,-0.671,32.561,4.355,1.174,32.722,4.789,-1.959,32.894,5.718,-1.103,33.425,6.139,-1.722,32.548,7.247,-2.294,32.586,5.7,-2.057,32.24,7.229,-2.875,31.218,5.816,-2.487,28.849,2.478,-2.749,28.308,3.393,-2.022,26.768,2.813,-1.969,26.586,3.361,-2.697,28.126,3.941,-2.576,27.067,4.125,-1.853,25.351,4.231,-2.46,25.833,4.995,-2.311,25.272,4.693,-5.743,24.909,3.675,-5.892,25.469,3.977,-6.155,25.923,3.587,-6.179,26.928,4.772,-5.916,26.474,5.162,-6.334,27.766,5.45,-6.536,28.04,3.451,-6.67,28.812,4.206,-6.751,29.484,3.084,-6.855,29.704,3.223,-6.775,29.032,4.345,-7.903,30.425,3.557,-8.054,30.541,3.968,-6.936,29.156,4.785,-7.784,30.203,5.384,-7.767,29.776,6.12,-6.92,28.754,5.477,-7.292,29.371,6.293,-7.936,30.299,7.802,-7.461,29.894,7.976,-8.02,30.654,8.296,-7.071,31.012,9.104,-6.512,30.252,8.784,-6.124,30.641,9.112,-5.531,30.157,9.041,-5.882,29.737,8.708,-4.974,30.034,9.279,-7.04,31.09,9.169,-6.095,30.715,9.173,-7.089,31.306,11.038,-8.704,32.28,8.988,-8.753,32.496,10.857,-9.99,33.542,10.44,-10.074,33.487,10.551,-8.837,32.441,10.969,-10.785,31.498,10.959,-11.427,33.902,10.487,-11.99,31.868,10.902,-13.114,33.845,10.573,-13.687,33.516,10.593,-12.532,31.557,10.921,-14.217,32.707,11.025,-14.389,32.451,11.015,-12.686,31.328,10.912,-13.677,30.977,11.114,-13.403,30.146,10.774,-12.442,30.588,10.609,-12.762,30.061,10.723,-15.842,31.769,11.32,-15.129,30.295,11.419,-16.191,30.97,11.905,-16.097,29.823,14.094,-15.029,29.076,13.744,-15.462,29.578,15.353,-16.964,31.521,14.954,-16.283,31.185,16.167,-16.662,32.416,15.465,-16.661,32.421,15.471,-16.281,31.189,16.174,-16.443,31.953,16.958,-16.305,31.096,17.726,-16.158,30.427,16.858,-16.011,30.57,17.441,-14.277,29.265,16.849,-14.614,29.264,16.331,-13.101,28.58,16.588,-12.993,28.629,16.088,-14.504,29.314,15.824,-13.235,29.063,15.79,-13.796,29.444,18.109,-12.679,28.738,17.694,-12.498,28.893,19.438,-14.329,30.605,19.11,-13.031,30.054,20.44,-14.624,31.131,19.396,-14.282,31.93,19.699,-12.689,30.853,20.743,-13.993,33.022,20.85,-12.514,31.874,20.546,-13.097,32.774,20.604,-13.964,33.036,20.926,-12.657,30.869,20.829,-12.6,31.294,21.82,-12.046,29.665,22.754,-12.026,29.015,21.892,-11.742,29.311,22.413,-11.274,28.965,22.378,-11.524,28.644,21.855,-11.028,27.477,21.795,-11.481,27.156,19.925,-12.039,28.279,19.727,-11.352,27.492,19.456,-10.742,28.959,22.601,-10.527,27.471,22.004,-10.159,28.867,22.741,-9.844,28.755,22.79,-10.232,27.367,22.049,-9.655,28.853,23.384,-9.063,28.705,23.275,-9.712,27.237,21.954,-8.437,28.494,23.346,-9.085,28.985,24.298,-8.458,28.774,24.369,-8.173,28.644,25.433,-9.528,30.233,25.058,-8.604,29.857,26.171,-9.634,31.122,25.631,-9.507,31.375,25.976,-8.473,30.119,26.528,-9.296,31.755,27.199,-8.923,31.716,27.787,-8.061,30.077,27.178,-7.724,30.36,27.613,-5.671,28.831,27.269,-5.941,28.498,26.823,-4.34,28.331,26.765,-4.938,30.246,27.992,-3.561,29.835,27.533,-4.373,31.228,28.132,-3.589,31.812,27.863,-2.754,30.435,27.257,-1.52,31.9,27.586,-1.408,31.798,27.616,-2.642,30.333,27.287,-1.053,31.712,28.16,-1.509,32.082,27.732,-1.148,31.979,28.27,-3.578,31.988,28.005,-3.598,32.483,28.222,-1.167,32.458,28.48,-1.829,33.146,28.012,-1.643,33.51,28.299,-0.991,32.8,28.75,-1.877,34.409,29.722,-1.583,34.365,30.059,-0.707,32.758,29.076,-1.168,33.953,31.024,-0.158,33.686,31.427,0.303,32.491,29.479,1.643,32.231,31.002,1.618,31.898,30.965,0.28,32.177,29.443,1.523,31.442,30.53,1.524,30.414,29.834,0.281,31.149,28.747,1.522,29.646,29.105,1.557,30.245,30.014,1.557,29.467,29.296,1.215,28.753,30.365,1.998,30.416,31.362,1.626,28.912,31.623,2.123,30.808,31.848,3.049,30.473,32.302,2.44,28.618,32.021,2.974,28.62,32.012,4.055,30.447,32.207,3.98,28.594,31.917,4.339,28.259,32.125,4.669,30.529,31.653,4.878,28.33,31.638,5.342,30.001,30.721,5.298,31.502,31.467,5.895,30.857,30.558,7.507,32.304,31.734,8.005,32.105,31.27,6.333,30.682,30.15,8.356,31.429,29.917,10.052,32.564,31.475,10.283,31.86,30.11,11.07,32.568,30.177,10.539,33.883,31.814,11.528,33.81,30.496,11.855,35.344,31.969,12.201,35.43,31.804,11.877,33.896,30.329,12.341,35.463,31.234,12.859,36.042,30.046,12.431,34.516,29.056,12.512,35.914,28.585,12.563,35.79,28.216,12.486,34.385,28.666,12.99,36.062,27.842,12.925,35.848,27.376,12.425,34.183,28.227,13.192,34.453,26.296,13.243,34.289,26.293,12.48,34.007,28.224,14.677,33.316,27.586,13.491,34.477,26.16,14.924,33.504,27.453,15.257,34.414,26.486,17.208,34.095,27.128,16.638,33.224,28.017,16.999,33.19,27.632,13.495,34.534,26.146,15.262,34.479,26.47,14.699,35.878,26.571,16.05,36.387,27.045,16.613,34.988,26.944,17.601,36.419,27.559,19.245,35.991,26.389,18.484,34.502,25.612,19.116,35.551,24.847,18.947,34.959,23.756,18.293,33.828,24.371,18.175,34.01,23.319,17.706,33.198,23.204,17.794,32.966,24.249,17.473,32.402,24.217,19.014,35.05,23.449,18.246,34.108,22.99,18.962,34.111,21.845,17.956,32.91,21.283,17.299,32.978,22.461,17.314,32.853,21.396,19.084,35.099,23.419,19.042,34.167,21.81,19.918,34.805,21.895,19.445,35.345,23.578,20.328,35.085,22.077,21.646,35.204,23.396,23.167,35.573,21.951,21.944,35.477,20.542,23.813,36.421,20.556,23.757,36.558,19.89,21.884,35.622,19.834,22.847,36.561,18.735,24.608,36.943,19.181,23.641,36.92,18.073,25.434,37.215,18.582,25.506,37.415,18.199,23.709,37.108,17.716,24.255,37.626,16.942,23.539,37.318,16.309,23.08,36.837,17.159,22.422,36.068,15.616,22.336,35.928,15.724,23.002,36.71,17.256,22.271,35.324,15.883,23.38,38.309,14.705,22.266,37.031,14.057,22.576,38.755,13.796,20.953,39.062,13.294,20.472,37.371,13.502,20.136,37.805,13.794,19.624,37.42,13.779,19.959,36.986,13.487,18.45,36.499,12.891,19.141,37.746,14.087,17.953,36.834,13.208,18.036,39.41,13.525,17.521,37.304,13.719,17.609,38.931,13.884,17.401,39.455,13.412,17.23,36.886,13.08,16.255,37.137,12.681,16.455,36.452,11.634,17.444,36.159,11.967,17.626,35.747,11.482,16.038,37.38,13.047,17.025,39.336,13.648,16.786,39.72,13.561,15.596,37.42,12.841,15.635,37.83,14.076,15.091,37.841,14.098,15.012,37.431,12.865,14.032,39.325,14.155,13.806,39.293,14.03,14.8,37.401,12.747,13.582,37.842,12.202,13.658,37.873,12.056,14.872,37.43,12.609,13.612,38.812,11.593,13.739,38.836,11.469,14.992,37.452,12.492,14.374,37.719,11.668,13.791,38.433,9.035,14.427,37.316,9.234,14.311,36.956,8.716,14.459,36.884,8.731,14.584,37.239,9.249,14.932,36.628,8.432,14.45,36.883,8.718,14.924,36.627,8.419,14.962,36.884,7.339,14.247,36.949,8.644,14.746,36.954,7.26,13.724,38.425,8.958,12.356,37.99,8.511,13.378,36.519,6.813,12.959,36.54,8.223,12.761,36.27,8.171,13.168,36.233,6.758,12.463,35.542,7.182,12.396,35.503,7.009,13.096,36.192,6.575,11.185,36.312,5.713,11.72,36.817,4.597,13.631,36.698,5.458,13.811,36.844,4.408,11.9,35.191,7.287,10.659,35.98,6.008,10.327,35.143,6.687,10.17,35.213,6.699,10.491,36.055,6.021,9.78,35.263,7.149,9.532,35.429,7.115,10.208,36.244,5.982,9.612,37.934,7.569,10.153,38.929,6.713,10.749,37.239,5.126,10.375,37.682,4.862,8.985,39.728,6.034,9.208,38.481,4.183,8.664,38.458,4.531,7.703,35.678,2.843,8.247,35.701,2.495,7.67,35.071,3.057,8.024,39.726,6.241,7.703,38.457,4.738,6.263,39.146,5.534,5.499,38.662,4.603,6.917,37.959,3.779,4.627,38.953,3.118,6.02,37.598,3.77,4.886,38.101,3.44,4.393,38.106,2.631,6.676,37.086,3.278,5.604,36.506,3.526,5.218,39.486,4.93,4.346,39.778,3.446,4.79,39.912,5.012,3.871,40.599,5.213,3.427,40.465,3.648,3.067,42.794,4.339,3.119,42.85,4.179,3.481,40.522,3.482,3.979,43.077,3.559,3.297,41.128,2.906,3.58,42.603,2.94,4.201,43.039,3.377,3.697,40.485,3.305,3.572,40.839,2.844,2.762,38.521,0.943,2.86,38.091,1.343,1.666,36.653,0.384,2.303,38.897,0.61,1.179,37.053,0.03,1.451,39.275,0.001,0.745,39.355,-0.445,0.474,37.133,-0.417,0.083,37.604,-0.195,-1.636,36.265,-0.382,-1.245,35.794,-0.604,-2.169,35.95,-0.188,-2.16,34.839,0.249,-1.237,34.683,-0.167,-1.353,34.182,0.244,-2.327,34.633,0.474,-1.52,33.976,0.47,-3.663,33.648,0.372,-3.616,33.193,0.656,-1.466,33.458,0.794,-3.534,32.716,0.988,-3.484,32.598,1.07,-1.413,33.331,0.882,-2.189,33.083,1.533,-3.962,32.947,0.362,-3.901,32.454,0.675,-4.151,31.877,0.434,-3.838,31.588,0.852,-3.609,32.184,1.064,-3.048,30.684,1.133,-5.424,29.789,0.768,-4.441,29.104,1.059,-4.939,29.06,1.375,-4.84,28.797,1.485,-4.348,28.856,1.163,-5.011,27.711,1.69,-4.966,27.68,1.679,-4.309,28.829,1.153,-4.243,26.986,0.826,-2.216,26.968,1.866,-2.417,28.812,2.124,-1.942,26.725,2.41,-4.311,24.541,1.227,-4.168,24.147,1.732,-4.625,24.069,2.193,-4.875,25.429,1.441,-5.225,25.011,2.42,-5.637,26.025,2.332,-5.38,28.929,1.675,-5.59,27.853,1.894,-5.86,29.309,1.618,-5.331,28.981,1.607,-5.811,29.361,1.55,-5.844,29.705,1.017,-6.168,29.768,1.084,-6.116,29.421,1.614,-6.791,29.883,0.892,-7.678,30.183,2.001,-6.951,29.703,2.657,-8.059,30.418,2.476,-8.07,30.45,2.674,-6.961,29.733,2.843,-8.002,30.452,3.203,-9.053,32.829,3.663,-8.866,32.542,4.072,-8.887,34.175,4.86,-8.751,34.028,5.162,-8.743,32.409,4.345,-8.569,32.329,5.813,-8.809,34.143,5.478,-8.629,32.448,6.138,-8.713,32.804,6.632,-8.891,34.57,5.974,-8.797,33.243,7.143,-8.979,34.957,6.453,-8.981,35.104,6.815,-8.798,33.395,7.516,-10.227,35.322,8.138,-10.391,35.029,8.667,-8.963,33.102,8.045,-10.249,34.364,9.496,-11.158,35.05,8.815,-11.015,34.385,9.645,-12.224,34.931,8.798,-12.64,34.74,9.253,-11.458,34.181,10.128,-13.143,34.107,10.235,-13.08,34.696,8.999,-13.583,34.064,9.982,-14.045,34.34,8.675,-14.818,33.985,8.89,-14.311,33.729,10.184,-14.879,32.933,10.591,-16.608,35.223,9.591,-16.669,34.171,11.292,-16.617,35.71,10.97,-16.493,36.127,12.465,-16.528,34.646,12.994,-16.119,35.145,13.083,-16.037,35.021,13.401,-16.446,34.522,13.311,-16.472,34.321,14.369,-16.842,33.929,14.305,-16.868,34.076,13.238,-16.946,33.709,13.772,-17.319,32.837,13.199,-17.268,33.142,12.625,-17.533,32.263,13.134,-17.238,32.688,14.329,-17.451,32.113,14.274,-17.117,32.969,14.83,-15.831,35.18,13.616,-16.29,34.461,14.558,-15.625,36.396,14.409,-15.627,36.404,14.497,-16.292,34.469,14.646,-16.282,36.828,15.241,-16.43,36.713,15.677,-16.422,34.367,15.028,-16.29,36.317,16.15,-16.256,35.9,16.85,-16.39,33.979,15.681,-16.446,35.354,17.742,-16.447,35.35,17.745,-16.391,33.975,15.683,-17.674,35.028,17.856,-16.416,33.748,15.91,-17.601,34.721,17.917,-17.9,34.602,17.93,-16.616,33.548,15.757,-16.393,33.236,17.283,-17.756,34.107,19.657,-16.229,32.673,19.249,-16.948,34.305,20.309,-16.55,34.273,20.628,-15.831,32.641,19.568,-15.354,33.646,20.735,-15.679,35.71,22.04,-14.589,34.909,21.976,-13.842,35.979,22.717,-13.759,35.88,22.776,-14.511,34.817,22.03,-14.011,35.094,24.447,-14.062,34.731,24.496,-14.556,34.498,22.073,-14.569,34.433,24.76,-14.157,34.382,22.273,-14.143,34.321,24.541,-14.283,33.896,24.744,-14.29,33.996,22.058,-13.759,34.16,24.478,-13.302,33.985,24.384,-13.888,33.842,21.975,-12.685,33.849,22.35,-12.631,33.556,22.16,-13.84,33.585,21.808,-12.476,31.844,22.702,-12.488,33.637,22.382,-12.351,31.914,22.898,-12.588,33.367,24.408,-11.683,32.149,25.575,-11.556,30.844,23.922,-10.553,31.551,25.069,-10.461,31.428,25.064,-11.47,30.729,23.918,-10.407,30.559,24.455,-10.336,29.435,23.763,-11.407,29.742,23.309,-11.064,29.392,23.003,-10.007,29.056,23.454,-10.757,29.038,22.714,-10.174,28.947,22.855,-11.136,32.303,26.541,-10.039,31.696,25.979,-9.793,32.054,27.202,-11.409,33.109,27.561,-10.032,32.763,28.098,-11.386,33.27,29.901,-10.131,33.452,30.716,-8.929,32.923,28.814,-9.402,34.113,30.262,-9.148,34.208,30.265,-8.692,33.011,28.818,-8.459,34.1,29.428,-7.613,34.068,29.08,-7.948,32.983,28.512,-6.171,32.747,28.542,-6.252,32.194,28.424,-8.021,32.482,28.405,-6.757,31.181,28.275,-7.324,34.32,29.232,-5.891,32.992,28.69,-6.012,34.547,29.477,-4.21,34.696,29.401,-4.14,33.137,28.616,-2.599,34.709,29.838,-3.427,34.215,28.486,-3.167,34.48,28.691,-2.225,34.539,29.585,-3.765,32.966,28.363,-2.001,33.643,28.158,-4.47,35.269,30.389,-2.852,35.265,30.798,-3.942,35.896,31.941,-3.794,35.857,32.104,-2.708,35.227,30.955,-2.257,34.789,31.893,-3.429,36.073,33.407,-1.914,34.992,33.119,-2.931,36.264,33.738,-2.56,36.39,34.075,-1.565,35.111,33.437,-1.953,36.289,35.257,-1.844,36.224,35.322,-1.456,35.046,33.502,-1.012,35.171,33.91,0.423,33.664,32.573,-0.066,33.586,32.208,1.741,32.125,31.832,1.734,34.393,33.449,3.09,32.876,32.732,2.694,34.969,34.151,3.091,34.005,32.59,2.956,34.716,33.072,2.84,34.981,34.173,3.236,32.888,32.755,3.654,33.873,32.699,5.02,33.428,32.422,4.791,32.381,32.439,6.805,33.633,33.138,6.954,33.457,33.025,4.939,32.205,32.326,7.148,33.007,32.594,8.756,33.406,33.89,8.95,32.956,33.458,9.63,33.489,35.341,10.61,33.709,34.925,9.93,33.175,33.042,11.769,33.774,34.191,12.304,34.395,33.121,10.539,33.882,31.824,11.855,35.343,31.978,12.953,34.595,33.045,12.545,35.557,31.898,13.045,35.583,32.332,13.052,35.589,32.324,12.552,35.562,31.89,12.671,35.587,31.315,13.875,36.351,31.927,13.394,36.257,30.966,14.5,37.018,30.577,14.089,37.04,29.555,13.01,36.277,30.012,13.104,36.47,28.218,13.056,36.41,28.209,12.968,36.225,30.004,12.622,36.099,28.543,14.408,37.16,29.273,13.443,36.598,27.919,14.902,37.011,27.742,14.914,36.911,27.607,13.455,36.498,27.783,14.884,36.435,27.149,14.618,35.94,26.6,13.19,36.003,27.235,13.424,34.589,26.172,16.069,36.907,27.535,16.039,36.431,27.077,17.591,36.457,27.587,16.083,36.965,27.616,17.604,36.508,27.658,16.67,37.071,29.064,18.122,37.426,29.793,18.917,36.829,28.317,18.598,37.787,29.676,18.963,38.011,29.596,19.246,37.031,28.245,20.271,37.728,28.466,20.843,37.023,27.601,19.75,36.412,27.485,21.375,36.36,26.909,20.838,35.905,25.652,19.278,36.013,26.38,19.148,35.572,24.838,21.227,35.716,24.861,19.49,35.406,24.143,21.695,35.269,24.0,23.478,36.011,25.73,23.814,35.546,24.819,23.854,36.05,25.175,24.594,36.542,24.411,24.56,36.042,24.048,24.935,37.01,24.32,24.956,37.29,23.412,24.582,36.343,23.075,25.229,37.191,21.68,25.202,37.83,23.427,25.492,37.77,21.696,25.928,38.17,21.549,26.226,37.571,20.778,25.792,37.166,20.918,26.619,37.439,20.32,26.748,38.508,20.966,27.145,38.384,20.51,27.301,39.42,21.209,27.793,40.424,19.425,27.608,39.329,18.83,27.65,40.742,18.871,26.667,40.759,17.8,26.682,39.345,17.822,26.225,41.12,16.431,25.996,40.952,16.29,26.436,39.166,17.671,25.244,39.486,16.381,25.816,41.026,15.56,25.038,39.57,15.551,24.963,40.183,15.33,23.825,39.686,14.339,23.9,39.073,14.56,23.033,39.426,13.67,23.774,40.405,14.067,22.988,40.058,13.43,23.423,41.376,12.459,21.522,41.438,11.831,21.214,40.117,12.844,20.319,40.96,12.791,19.743,40.309,13.243,20.708,39.544,13.241,19.222,39.943,13.48,19.186,39.684,13.675,20.674,39.301,13.424,19.828,38.07,13.938,18.856,39.561,13.713,19.484,37.942,13.977,18.346,39.587,13.426,19.06,40.082,13.35,18.539,40.077,13.085,19.57,40.459,13.103,18.781,42.078,12.904,17.846,41.5,12.909,16.618,42.322,12.07,15.111,40.573,13.01,16.522,39.964,13.735,14.351,39.59,14.328,14.368,39.549,14.363,16.537,39.927,13.766,15.386,38.038,14.281,14.759,40.482,12.739,13.998,39.499,14.057,14.286,40.287,12.362,14.08,40.187,12.28,13.792,39.399,13.975,13.297,39.269,13.613,13.294,39.197,13.642,13.789,39.327,14.005,13.564,37.877,12.177,13.282,39.231,13.61,13.552,37.911,12.144,13.505,38.85,11.681,13.289,39.263,13.604,13.512,38.882,11.675,14.071,40.181,12.272,14.613,40.835,10.341,14.054,39.536,9.744,15.14,40.677,8.174,13.914,39.946,6.795,12.829,38.805,8.366,12.517,39.978,7.301,11.824,39.81,7.286,12.039,38.614,8.349,10.555,38.952,7.377,10.377,38.561,7.512,11.862,38.223,8.484,11.532,37.692,8.614,11.968,37.432,8.656,12.297,37.963,8.527,12.904,36.514,8.238,11.667,37.109,8.677,12.621,36.21,8.257,12.323,35.482,7.268,11.164,36.718,8.886,11.85,35.113,7.465,9.881,35.124,7.304,9.884,35.138,7.256,11.854,35.128,7.413,10.281,35.081,6.812,9.755,35.259,8.047,10.501,36.209,9.04,10.731,37.019,8.923,9.5,35.389,7.337,9.576,37.888,7.822,8.896,36.053,7.255,8.893,37.258,7.475,11.317,40.599,6.423,9.978,39.85,6.394,10.422,41.359,5.222,9.078,41.677,5.02,8.47,40.206,6.167,7.839,41.742,5.66,7.769,41.716,5.67,8.394,40.179,6.178,7.265,41.651,5.377,6.933,41.449,5.459,8.017,39.949,6.272,7.186,40.608,6.374,7.125,40.527,6.394,7.956,39.869,6.292,6.197,39.284,5.583,7.079,40.575,6.373,6.153,39.331,5.563,6.84,41.421,5.458,6.116,41.657,5.025,5.352,39.591,5.084,4.924,40.017,5.166,5.308,42.295,5.218,4.031,40.724,5.379,3.222,42.915,4.499,5.344,42.325,5.139,3.26,42.947,4.414,4.129,43.18,3.809,6.27,42.517,4.486,5.183,43.399,3.065,7.017,42.405,2.11,6.451,42.775,0.638,4.616,43.768,1.593,6.375,43.423,0.678,6.539,44.955,0.416,4.78,45.3,1.33,4.993,45.921,1.412,4.146,46.22,1.343,3.934,45.599,1.261,2.744,45.48,0.469,2.778,44.205,0.466,3.973,44.147,1.258,2.938,43.862,0.908,2.956,43.36,1.227,3.992,43.608,1.599,2.767,42.773,1.26,2.832,42.603,1.438,4.061,43.428,1.788,3.44,41.205,1.349,2.699,42.56,1.207,3.307,41.162,1.117,2.464,42.33,0.657,2.403,42.189,0.418,3.249,41.03,0.893,2.455,41.541,0.302,0.054,42.23,-0.869,0.106,41.581,-0.986,-1.019,42.147,-0.969,-1.895,40.811,0.039,-0.891,40.061,0.162,-1.553,38.309,0.412,-1.198,39.115,0.822,-1.396,40.354,0.604,-1.949,40.959,0.929,-1.615,38.478,1.425,-0.953,40.229,1.175,-0.95,40.229,1.183,-1.613,38.478,1.433,-0.905,39.547,2.079,-1.019,39.142,2.894,-1.73,38.061,2.272,-2.262,37.747,2.466,-1.016,39.134,2.911,-2.26,37.739,2.484,-2.462,38.415,4.348,-3.006,38.257,4.349,-2.819,37.576,2.485,-4.496,38.982,3.875,-3.614,37.34,2.965,-4.459,38.048,3.665,-4.881,38.892,3.501,-3.204,37.486,2.112,-5.096,37.907,3.087,-5.769,36.761,2.313,-3.896,36.306,1.315,-5.042,35.118,1.11,-6.291,36.576,2.238,-5.514,34.951,1.042,-6.508,36.0,2.256,-7.06,35.479,2.232,-6.013,34.48,1.02,-7.951,34.202,1.414,-7.981,34.03,1.144,-6.042,34.307,0.751,-7.141,33.541,0.685,-5.979,32.272,-0.307,-5.021,33.193,-0.121,-5.357,32.157,-0.115,-9.35,32.538,0.858,-8.699,31.843,0.36,-9.08,32.078,0.835,-9.4,33.318,3.219,-9.137,32.966,3.522,-8.968,34.308,4.723,-9.307,34.371,2.438,-8.865,35.473,3.859,-8.559,35.666,3.364,-8.376,36.757,3.903,-8.682,36.564,4.398,-8.158,37.332,3.885,-8.158,37.334,3.888,-8.681,36.566,4.401,-8.77,36.952,4.879,-8.986,36.779,4.978,-8.897,36.392,4.501,-10.454,37.47,5.318,-10.842,36.404,6.107,-9.326,35.214,5.373,-9.415,35.601,5.851,-10.818,36.315,6.567,-9.388,35.502,6.36,-10.646,35.731,7.67,-11.363,36.357,6.655,-11.267,35.779,7.77,-12.326,35.617,7.814,-11.51,36.406,6.564,-12.483,35.67,7.716,-13.323,35.604,6.703,-13.743,34.943,7.117,-12.878,35.048,8.106,-13.831,34.715,7.726,-13.942,34.764,7.021,-14.03,34.535,7.629,-14.187,34.371,6.563,-17.166,36.014,6.75,-17.008,36.178,7.816,-16.92,36.407,7.208,-15.964,37.673,7.822,-16.052,37.444,8.43,-15.694,37.763,8.876,-16.125,37.281,9.567,-16.483,36.963,9.121,-16.507,37.238,10.557,-15.996,37.502,9.631,-16.393,37.432,10.613,-16.35,38.984,10.669,-16.392,38.74,12.737,-16.43,37.218,12.43,-16.497,38.026,14.569,-16.412,37.287,14.834,-16.355,36.569,12.662,-15.741,36.807,14.139,-15.679,36.581,14.149,-16.294,36.343,12.673,-15.893,35.391,13.32,-16.014,40.558,13.467,-16.119,39.843,15.3,-15.414,40.228,14.597,-15.402,40.242,14.617,-16.106,39.859,15.32,-15.539,41.257,15.643,-15.909,41.246,16.543,-16.528,39.847,16.344,-16.53,41.184,17.655,-16.851,40.792,18.055,-16.848,39.454,16.744,-17.314,39.235,17.881,-17.633,37.556,17.608,-17.211,37.543,16.433,-17.31,37.114,17.405,-17.132,36.772,17.278,-17.02,37.177,16.297,-16.846,36.754,16.735,-17.108,36.689,17.293,-16.821,36.67,16.75,-18.201,35.751,17.761,-17.676,35.034,17.854,-16.259,35.902,16.85,-16.449,35.356,17.742,-17.347,37.053,17.478,-18.427,36.094,17.934,-17.668,37.499,17.677,-18.105,37.829,18.191,-18.863,36.424,18.448,-19.183,37.174,19.136,-19.465,35.212,20.819,-19.126,34.592,20.019,-19.042,34.889,20.508,-17.916,34.484,20.474,-18.067,34.21,19.988,-17.301,34.422,20.686,-18.227,35.13,21.348,-17.634,35.115,21.622,-18.643,35.454,21.666,-18.189,37.001,22.148,-17.152,36.758,22.134,-17.906,38.367,22.664,-17.034,38.926,22.359,-16.158,37.395,21.788,-14.585,38.92,22.955,-14.24,38.401,23.168,-15.813,36.876,22.002,-13.969,37.076,22.681,-14.063,38.29,23.558,-13.802,36.972,23.048,-13.656,37.795,23.721,-13.551,37.636,23.89,-13.703,36.821,23.207,-13.951,36.094,24.905,-13.267,38.196,24.854,-13.667,36.655,25.868,-13.8,39.095,25.187,-13.029,37.637,25.193,-13.047,37.975,25.099,-13.489,39.194,25.482,-13.357,36.754,26.163,-12.325,38.293,26.251,-12.318,38.285,26.321,-13.349,36.744,26.243,-12.878,38.544,27.504,-13.159,38.23,28.068,-13.647,36.411,26.843,-14.057,36.2,28.005,-14.499,35.984,27.818,-14.116,36.182,26.644,-14.82,35.731,27.358,-14.888,35.704,27.274,-14.19,36.154,26.554,-14.688,35.771,26.698,-15.656,35.169,26.953,-15.462,35.232,26.374,-16.19,34.879,27.058,-14.674,32.326,27.354,-13.947,32.678,26.67,-14.153,32.637,27.247,-13.917,32.705,27.337,-13.709,32.747,26.76,-12.631,32.534,26.613,-12.871,33.207,24.711,-13.934,33.381,24.971,-13.389,33.614,24.719,-12.668,33.473,24.418,-13.185,33.879,24.427,-12.568,33.742,22.393,-13.567,32.947,27.927,-12.256,32.793,27.245,-13.235,33.177,28.392,-12.784,33.453,28.694,-11.777,33.087,27.566,-11.754,33.247,29.906,-14.17,35.422,30.012,-13.227,35.339,31.307,-13.036,35.935,31.113,-13.032,35.946,31.151,-13.222,35.35,31.345,-13.31,36.373,32.103,-11.354,35.816,33.686,-10.996,34.716,33.146,-10.87,35.793,33.36,-10.709,35.789,33.295,-10.824,34.711,33.076,-9.853,36.31,34.341,-9.172,36.343,33.777,-10.144,34.743,32.512,-9.953,35.34,32.319,-9.837,35.255,32.173,-10.027,34.659,32.367,-9.305,35.249,31.815,-9.815,35.402,32.202,-9.284,35.387,31.842,-9.034,36.405,33.66,-8.34,37.068,33.174,-8.631,36.011,31.385,-8.842,36.918,32.24,-8.743,37.214,31.95,-8.532,36.307,31.096,-7.499,36.906,30.353,-7.35,36.56,30.287,-8.392,35.981,31.033,-6.344,36.212,30.489,-6.314,35.405,30.298,-8.363,35.221,30.854,-7.626,35.177,30.053,-7.271,36.805,30.317,-6.266,36.458,30.519,-5.738,37.085,32.071,-7.283,37.733,30.179,-5.75,38.013,31.933,-6.384,39.466,31.092,-6.433,39.627,31.407,-5.8,38.174,32.248,-8.069,38.371,33.008,-7.72,37.168,34.363,-5.451,36.971,33.604,-6.287,37.804,34.675,-5.857,37.765,35.064,-4.961,36.926,34.047,-4.652,37.342,34.974,-3.589,36.778,34.873,-3.898,36.362,33.946,-3.399,36.553,34.277,-3.292,36.764,34.973,-3.102,36.539,34.376,-2.463,36.429,35.54,-3.568,38.379,36.606,-2.723,37.949,37.078,-2.966,38.475,36.867,-2.865,38.556,36.951,-2.621,38.031,37.163,-2.31,37.748,38.166,-1.427,35.654,37.119,-1.79,36.06,36.177,-0.724,35.152,36.162,-0.654,35.227,35.493,-1.715,36.141,35.461,-0.879,35.085,34.053,1.374,34.591,35.405,1.364,34.382,33.956,2.313,34.957,34.673,1.862,35.323,36.607,2.869,35.79,36.04,2.514,36.054,37.944,2.62,36.112,37.955,2.976,35.847,36.052,4.03,35.685,36.167,4.192,34.923,34.514,3.148,35.037,34.296,3.924,33.923,32.807,5.186,34.816,34.401,4.852,33.822,32.701,6.614,34.082,33.457,5.491,34.808,34.877,6.937,34.074,33.962,6.108,34.885,35.01,6.468,34.873,35.304,7.297,34.062,34.257,7.378,34.141,36.312,8.092,33.786,36.319,8.11,33.658,34.265,8.984,33.741,35.716,8.299,33.547,36.669,9.22,33.469,36.116,8.834,33.51,36.642,10.684,33.918,37.97,11.07,33.877,37.444,11.668,34.14,37.531,12.012,33.83,36.114,11.414,33.567,36.026,12.475,33.65,35.158,13.472,35.176,36.315,13.758,34.833,35.335,13.63,35.287,35.678,13.865,35.848,34.945,13.978,35.36,34.645,14.212,36.454,34.153,13.86,35.968,35.036,14.207,36.583,34.251,14.53,36.758,36.038,14.676,37.109,35.983,14.373,36.982,34.188,15.578,38.02,34.261,15.768,37.907,32.721,14.563,36.87,32.648,16.286,37.473,31.234,16.071,37.264,30.881,14.342,36.655,32.284,14.94,37.304,30.913,15.989,37.147,29.34,14.861,37.19,29.421,15.383,37.043,27.899,16.738,38.209,32.96,17.228,37.766,31.467,17.312,38.35,33.284,18.002,38.802,33.102,17.899,38.206,31.29,18.375,38.567,31.173,18.262,39.071,33.119,18.628,38.829,31.189,20.058,38.958,33.339,19.083,39.485,31.524,19.898,39.548,32.755,20.156,38.934,33.276,18.729,38.804,31.123,20.486,39.176,31.955,20.896,38.765,31.26,19.127,38.404,30.448,20.661,38.614,30.218,20.599,38.311,29.487,19.063,38.092,29.693,20.374,37.812,28.565,22.14,38.377,29.158,22.011,37.882,28.216,22.557,37.79,27.856,22.286,37.31,27.566,21.739,37.402,27.927,22.271,36.739,27.235,23.885,37.926,26.431,23.871,37.355,26.101,24.584,37.727,25.365,24.609,37.52,25.28,23.9,37.12,26.004,24.248,37.084,25.431,23.534,39.737,25.632,24.275,39.318,24.663,23.604,41.582,25.04,23.544,41.693,24.129,24.223,39.416,23.863,24.924,40.383,22.348,26.002,38.781,21.909,25.229,37.92,23.454,25.956,38.265,21.577,26.735,39.037,21.4,26.683,38.519,21.072,27.232,39.431,21.323,25.146,40.725,22.265,25.544,41.225,22.242,23.78,42.056,24.042,24.995,41.665,22.088,23.76,42.247,23.348,23.731,42.923,23.593,25.495,42.092,21.794,24.802,42.766,21.284,26.019,43.462,20.549,26.712,42.788,21.059,26.57,43.105,20.505,26.187,43.845,19.544,26.738,43.488,19.501,27.518,45.288,18.366,28.45,44.384,17.572,27.67,42.584,18.707,28.73,43.577,16.905,28.277,42.556,16.042,27.189,41.499,17.79,26.684,41.77,16.422,27.549,43.11,14.436,26.005,42.287,14.923,25.355,42.904,13.73,24.784,42.201,13.701,25.472,41.631,14.896,24.572,40.872,14.573,24.313,42.04,13.328,24.071,40.701,14.177,23.703,41.654,12.563,24.415,43.919,12.297,23.804,43.532,11.533,23.9,43.957,11.962,23.456,44.279,11.746,23.356,43.857,11.315,22.726,45.16,10.845,20.416,43.832,10.708,21.182,42.607,11.186,20.306,43.549,11.297,20.113,43.307,11.744,21.0,42.38,11.606,19.764,41.961,12.552,19.106,43.901,12.297,18.757,42.554,13.105,16.594,42.798,12.272,16.591,43.137,12.486,18.854,44.13,12.508,18.948,44.263,12.142,16.436,43.161,12.117,17.204,45.029,12.254,17.013,45.136,11.88,16.24,43.271,11.731,16.727,45.017,10.483,16.694,44.89,10.294,16.207,43.145,11.542,17.62,44.334,9.634,15.95,43.291,10.978,17.075,44.203,9.545,17.053,44.04,9.001,15.561,42.811,10.822,16.049,44.556,9.574,15.873,44.553,9.501,15.386,42.807,10.749,14.913,42.612,10.372,15.86,44.553,9.488,14.9,42.613,10.36,14.462,42.987,9.119,14.487,42.83,9.063,14.926,42.447,10.3,15.452,42.289,8.132,14.488,42.842,9.057,15.453,42.302,8.126,15.729,43.259,7.988,16.061,43.149,7.888,15.786,42.192,8.026,17.202,43.807,8.78,17.7,43.542,8.45,16.352,41.891,7.651,16.75,42.253,7.28,14.702,41.54,4.388,14.305,41.179,4.759,13.755,41.519,4.722,13.074,40.56,6.02,13.623,40.22,6.057,12.261,40.218,6.652,12.395,41.165,5.574,11.665,40.75,6.26,10.775,41.513,5.057,12.884,43.024,4.843,11.211,43.169,4.406,12.16,43.979,4.99,12.075,44.111,4.947,11.125,43.302,4.362,10.885,43.822,4.143,10.727,43.622,3.875,10.983,43.123,4.123,11.394,42.89,1.937,10.294,41.465,1.923,9.942,41.775,4.109,9.195,41.557,2.091,8.475,41.594,2.369,9.301,41.807,4.357,8.838,42.145,4.138,8.542,42.064,4.759,9.038,41.736,4.91,7.291,41.733,5.259,7.299,41.715,5.302,9.047,41.717,4.954,7.806,41.784,5.591,8.21,42.373,4.196,6.999,42.004,4.764,7.847,41.822,2.427,7.235,42.656,3.781,7.395,42.639,3.332,10.216,41.072,1.572,9.111,41.14,1.718,9.612,40.961,1.34,8.254,42.85,-1.351,7.753,43.029,-0.973,7.677,43.677,-0.932,9.349,43.589,-1.302,8.772,44.416,-0.883,9.336,44.716,-0.777,8.981,45.331,-0.63,8.417,45.031,-0.736,8.595,46.368,-0.66,7.042,46.598,0.423,6.767,45.275,0.415,5.861,46.23,1.485,5.789,46.149,1.497,6.695,45.194,0.427,5.149,46.161,1.423,5.795,46.467,1.498,5.155,46.479,1.424,6.455,47.725,0.157,5.988,48.215,0.159,4.688,46.969,1.426,5.245,48.314,1.131,4.379,48.866,1.689,3.702,47.597,2.061,3.078,49.503,2.245,2.612,49.332,2.565,3.171,47.403,2.426,2.896,47.69,2.943,2.708,47.437,2.982,2.984,47.151,2.465,2.127,46.502,2.465,2.217,46.383,2.2,3.074,47.031,2.2,1.802,46.193,1.222,1.261,46.086,2.591,0.962,45.933,1.566,0.282,46.167,3.245,-0.022,45.987,3.147,0.658,45.753,1.468,-0.707,45.355,1.864,-0.835,44.524,0.336,0.539,44.977,0.041,-0.677,44.048,-0.02,-0.518,43.854,-0.189,0.688,44.794,-0.118,0.138,43.766,-0.291,2.305,42.858,0.26,2.592,43.997,0.366,2.74,43.642,0.803,2.442,42.578,0.566,2.868,43.381,1.088,2.678,42.794,1.121,-0.706,43.18,-0.587,-0.063,43.044,-0.718,-1.121,42.862,-0.836,-1.352,43.703,-0.271,-1.73,43.355,-0.538,-2.122,44.388,0.004,-2.632,42.428,2.313,-2.178,41.633,1.49,-1.829,41.874,1.884,-1.566,41.603,1.806,-1.931,41.378,1.416,-0.887,40.01,2.61,-0.906,39.553,2.083,-1.948,40.964,0.941,-0.951,40.235,1.188,-1.491,41.747,2.026,-0.809,40.16,2.839,-1.05,41.287,3.845,-1.098,40.873,4.316,-0.862,39.707,3.353,-2.308,38.988,4.79,-1.33,41.283,5.251,-2.56,39.436,5.811,-3.51,41.655,6.344,-3.561,40.24,6.503,-3.577,40.282,6.512,-3.749,41.604,6.138,-2.825,39.38,5.584,-4.31,40.138,5.145,-3.866,41.826,5.886,-4.443,40.39,4.858,-4.657,41.432,4.848,-5.301,41.344,3.645,-5.127,40.296,3.58,-5.406,41.801,3.246,-6.012,41.631,2.933,-5.776,40.114,3.244,-6.206,40.602,3.242,-7.058,39.851,3.169,-6.629,39.364,3.171,-6.794,38.365,2.766,-8.211,39.407,3.977,-7.915,37.934,3.551,-9.111,39.22,4.518,-9.315,38.8,4.829,-8.126,37.5,3.872,-8.519,37.692,4.84,-8.55,37.534,4.859,-8.157,37.342,3.891,-8.769,36.96,4.882,-8.657,37.58,4.978,-8.876,37.005,5.001,-10.355,37.674,5.339,-8.656,37.596,4.978,-10.354,37.689,5.339,-9.448,38.706,4.963,-10.253,39.383,4.952,-11.106,38.321,5.328,-11.24,39.694,5.223,-11.883,39.625,5.406,-11.671,38.261,5.489,-13.219,37.701,4.25,-13.098,35.785,5.082,-11.558,36.472,6.266,-13.378,35.679,6.363,-13.261,35.49,5.019,-13.551,35.366,6.296,-13.797,34.973,5.838,-13.886,34.825,4.128,-14.461,34.266,4.891,-14.449,34.549,4.306,-16.916,36.994,5.439,-16.927,36.711,6.024,-16.682,37.104,6.483,-15.222,37.793,4.976,-14.989,37.903,6.019,-14.614,37.878,4.758,-13.999,37.816,4.932,-14.336,37.836,6.204,-12.712,39.747,6.131,-12.819,39.842,6.25,-14.443,37.932,6.323,-13.2,39.905,6.753,-13.547,40.067,7.009,-14.789,38.094,6.579,-13.958,40.538,6.922,-14.317,38.466,7.259,-13.861,39.804,7.447,-14.306,40.544,7.727,-15.137,38.1,7.384,-14.664,40.634,8.259,-14.711,38.151,7.599,-14.304,40.33,8.351,-14.704,40.571,8.464,-15.177,38.036,7.59,-14.907,38.126,8.644,-14.926,40.613,8.794,-15.129,38.169,8.974,-15.484,39.651,10.012,-15.637,42.333,9.826,-16.195,41.37,11.045,-15.795,42.962,9.755,-15.298,43.35,10.37,-15.667,41.783,11.698,-14.996,42.418,12.277,-15.219,41.58,13.771,-15.917,40.842,13.376,-15.465,41.493,15.544,-15.524,41.28,15.622,-15.985,40.599,13.464,-15.387,40.267,14.595,-15.181,41.914,13.793,-15.428,41.823,15.566,-15.789,43.313,15.127,-16.265,43.474,16.287,-15.846,41.965,16.585,-16.458,42.002,17.704,-16.412,43.713,16.515,-16.605,42.241,17.931,-17.588,42.432,18.296,-17.856,41.075,18.453,-16.89,40.799,18.098,-17.348,39.241,17.919,-18.572,40.544,19.48,-18.016,38.745,18.877,-19.089,38.156,19.871,-18.606,40.557,19.51,-19.123,38.168,19.901,-19.348,40.315,20.262,-20.279,39.913,21.795,-19.999,37.79,21.344,-19.595,39.103,21.913,-20.27,39.955,22.071,-19.588,39.139,22.155,-19.801,39.599,22.329,-16.991,39.579,22.941,-17.119,39.122,22.693,-14.682,39.143,23.334,-16.268,39.602,22.392,-15.369,39.633,22.604,-17.0,39.76,23.197,-14.691,39.324,23.589,-16.763,40.149,23.48,-16.76,40.16,23.503,-14.688,39.337,23.616,-14.814,39.741,24.113,-14.052,39.07,24.852,-13.926,38.665,24.355,-13.52,38.171,24.518,-16.89,40.771,24.233,-14.962,40.436,24.944,-15.26,40.975,24.74,-14.489,41.745,25.643,-14.191,41.206,25.848,-14.313,42.299,25.915,-13.447,42.403,26.163,-13.271,41.317,26.111,-12.584,41.061,28.346,-12.903,40.648,28.401,-13.613,40.875,26.17,-13.002,40.135,28.075,-12.887,38.6,27.487,-13.491,39.244,25.545,-12.327,38.338,26.306,-12.978,40.613,28.48,-13.078,40.099,28.155,-13.404,40.785,28.892,-13.234,39.069,30.562,-12.908,38.383,29.825,-12.65,36.924,30.847,-12.762,36.647,30.473,-13.014,38.122,29.473,-13.912,36.092,29.41,-13.233,39.071,30.578,-12.649,36.927,30.863,-12.591,37.3,31.41,-12.627,37.255,31.445,-12.688,36.878,30.9,-13.008,37.192,31.883,-12.612,37.32,31.468,-12.994,37.253,31.904,-13.254,39.091,30.636,-13.083,39.823,31.707,-12.834,37.937,32.904,-12.102,38.944,33.057,-11.449,38.011,34.606,-12.26,37.117,34.265,-11.055,37.796,35.07,-10.004,36.361,34.438,-11.336,35.856,33.71,-10.851,35.836,33.386,-11.259,38.893,34.853,-10.866,38.678,35.317,-11.85,40.458,35.747,-10.674,41.096,36.109,-9.527,39.403,35.729,-9.696,40.62,35.367,-9.282,40.666,35.311,-9.087,39.452,35.67,-8.117,40.909,35.574,-8.108,40.904,35.578,-9.077,39.446,35.674,-7.605,40.985,36.813,-7.115,40.368,37.05,-8.528,38.753,35.94,-6.997,39.197,36.06,-5.629,40.289,37.306,-5.531,39.119,36.313,-5.134,39.544,36.3,-5.097,39.509,36.283,-5.496,39.085,36.296,-4.241,38.845,36.377,-5.021,39.61,36.308,-4.161,38.954,36.404,-5.522,40.352,37.313,-5.18,40.666,37.356,-3.777,39.306,36.452,-4.052,39.862,36.313,-3.889,39.944,36.316,-3.605,39.394,36.454,-3.0,39.422,36.725,-3.849,40.009,36.311,-2.961,39.485,36.721,-3.094,41.166,38.291,-2.631,40.839,38.671,-2.529,39.18,37.075,-1.776,39.158,39.047,-1.837,38.937,39.067,-2.586,38.974,37.094,-2.011,38.197,38.319,-1.587,37.506,40.426,-1.761,36.766,39.679,-1.387,36.933,40.186,0.739,35.551,39.077,0.365,35.384,38.57,1.362,35.589,38.888,1.442,35.602,38.63,0.445,35.397,38.312,0.921,34.926,37.21,1.209,37.492,41.016,1.832,37.53,40.827,1.009,38.065,41.256,1.45,39.526,40.279,2.273,38.991,39.851,3.114,40.603,39.268,3.121,40.6,39.269,2.28,38.988,39.852,4.001,40.276,40.043,4.492,39.611,40.385,2.84,38.231,40.24,4.531,38.575,40.126,4.859,36.576,38.972,3.168,36.232,39.087,4.842,36.325,38.395,4.47,36.242,37.436,2.774,36.145,38.068,4.175,35.716,36.273,5.313,35.859,37.396,5.017,35.333,36.232,5.605,35.442,36.449,5.442,35.844,37.442,5.742,35.426,36.499,6.74,34.627,37.361,5.817,36.15,38.389,7.09,34.913,38.244,5.895,36.391,38.965,6.523,36.688,39.344,7.642,35.174,38.577,8.085,35.362,38.813,6.684,36.837,39.446,8.246,35.511,38.916,8.611,35.651,39.283,10.818,34.523,38.737,10.759,34.227,38.294,11.743,34.449,37.856,11.13,35.466,39.071,12.098,35.522,38.236,12.036,36.125,38.445,12.311,36.188,38.357,12.391,35.59,38.142,12.796,36.555,38.472,13.176,36.48,38.245,12.799,35.51,37.899,13.722,36.41,38.035,14.328,36.175,36.656,13.489,35.242,36.33,13.646,35.348,35.692,13.509,37.351,38.671,14.035,37.23,38.435,13.43,37.892,39.083,14.117,39.391,37.78,14.638,38.547,37.29,14.108,39.967,37.478,14.101,39.999,37.202,14.632,38.577,37.033,16.103,39.832,35.78,16.437,38.345,34.838,14.925,37.271,36.206,15.862,38.204,34.514,14.134,40.438,37.201,16.138,40.298,35.779,15.263,41.463,36.011,16.28,42.431,35.617,17.295,41.4,35.33,17.546,41.886,34.947,18.456,41.348,34.86,18.205,40.862,35.242,19.96,40.394,35.9,19.733,40.039,36.272,17.962,40.482,35.641,19.294,39.63,36.398,19.513,37.954,34.409,18.194,38.701,33.528,19.993,38.609,33.725,21.04,37.424,34.975,21.52,38.08,34.29,21.463,37.852,34.861,22.242,38.375,35.155,22.306,38.607,34.586,22.807,38.976,34.432,22.534,38.919,33.567,22.049,38.553,33.773,22.497,38.771,32.483,23.721,40.679,33.287,23.683,40.531,32.204,23.607,40.944,32.696,23.53,41.569,32.161,23.606,41.156,31.668,24.455,42.988,31.147,24.466,42.971,31.105,23.617,41.139,31.626,24.154,41.756,30.477,23.832,40.399,29.413,23.251,39.595,30.414,22.878,39.394,29.421,23.82,40.414,28.986,22.865,39.41,28.965,23.328,38.888,27.65,23.858,41.402,27.95,23.371,40.013,26.47,23.441,41.857,25.878,24.095,41.841,28.007,23.711,42.357,25.943,23.821,42.876,26.331,23.813,44.365,24.343,23.703,43.846,23.954,23.539,45.155,23.66,22.511,44.884,22.837,22.611,43.558,23.079,21.743,44.9,21.7,21.645,44.786,21.65,22.499,43.429,23.023,21.998,42.639,22.126,22.056,42.605,22.124,22.564,43.39,23.021,23.635,43.233,20.711,23.417,42.767,22.442,23.715,42.723,21.799,22.031,42.609,22.098,23.606,43.238,20.682,22.062,42.96,20.657,22.053,43.014,20.617,23.596,43.299,20.637,21.668,44.81,21.583,23.224,43.791,20.256,21.874,44.832,20.967,21.952,45.288,21.423,23.919,43.842,20.455,23.303,44.498,19.863,23.601,44.713,19.784,24.235,44.07,20.371,23.372,46.186,20.193,24.038,46.444,19.804,24.983,44.36,19.935,24.868,44.687,19.384,25.676,44.482,19.094,25.79,44.154,19.644,26.626,45.984,18.576,26.873,45.816,18.482,26.038,43.986,19.55,27.37,45.43,18.371,28.05,47.417,18.173,28.546,47.031,18.063,30.087,48.671,18.817,30.889,48.673,17.413,29.459,47.033,16.465,29.303,48.276,15.985,29.117,47.893,15.055,29.273,46.65,15.535,29.185,46.334,14.985,29.562,45.639,15.325,29.649,45.956,15.875,29.858,45.056,15.307,27.178,43.958,14.072,27.614,43.474,14.127,25.42,43.267,13.421,26.449,45.664,14.075,24.734,44.873,13.424,25.922,46.757,14.214,25.217,47.068,14.508,24.07,45.165,13.7,23.181,45.679,13.446,23.245,45.602,13.068,24.134,45.088,13.321,23.199,46.657,12.212,23.303,46.204,11.504,24.232,44.662,12.654,23.719,44.695,12.316,23.039,45.81,10.93,23.472,44.327,11.78,22.743,45.212,10.882,22.965,45.874,10.581,22.67,45.276,10.534,23.102,46.136,9.988,22.306,45.948,9.061,21.873,45.088,9.607,21.567,45.672,8.347,20.467,45.16,8.341,20.704,44.544,9.6,19.268,44.346,8.422,18.379,44.061,9.442,19.691,44.22,10.761,19.582,43.937,11.349,17.888,44.557,9.763,19.023,44.501,11.715,17.277,45.26,11.839,17.837,44.54,9.754,17.221,45.242,11.829,16.942,45.125,10.431,20.458,45.156,8.173,19.26,44.342,8.265,19.996,44.755,7.308,19.063,44.249,6.487,18.441,43.897,7.545,17.593,42.657,6.25,19.096,44.371,5.466,17.626,42.779,5.228,18.588,44.429,5.081,18.505,44.455,4.831,17.543,42.805,4.979,18.541,44.493,4.295,17.224,45.079,3.553,16.044,43.472,4.134,15.921,44.067,4.367,14.538,43.691,4.603,14.661,43.096,4.37,13.714,43.074,4.703,14.499,43.748,4.627,13.674,43.131,4.728,13.895,43.724,4.856,13.682,43.796,4.901,13.448,43.208,4.776,13.255,44.241,4.9,12.852,44.165,4.957,13.015,43.126,4.837,12.275,44.069,4.985,12.814,44.364,4.914,12.24,44.257,4.944,11.805,45.31,3.398,11.634,45.225,3.389,12.068,44.172,4.934,10.878,43.893,4.129,11.503,45.171,3.149,10.729,43.831,3.857,10.854,44.228,2.235,10.831,44.122,2.208,10.706,43.725,3.829,11.375,42.986,1.894,11.232,44.458,1.632,11.753,43.302,1.352,11.713,45.347,2.042,11.736,45.367,1.985,11.776,43.322,1.295,12.731,45.647,1.742,11.619,44.248,0.921,12.009,45.23,1.096,12.938,45.626,1.401,11.97,43.301,0.974,13.345,45.504,0.901,11.878,43.961,0.479,12.665,45.252,0.419,12.898,45.723,-0.276,11.549,43.507,-0.133,11.016,44.676,0.053,10.599,44.545,-0.377,11.157,43.384,-0.538,10.612,43.418,-0.902,12.695,46.011,-0.515,10.813,44.964,-0.186,11.697,46.04,-0.102,10.885,46.761,-0.339,9.951,45.73,-0.437,9.508,46.743,-0.478,10.886,47.074,-0.383,9.509,47.056,-0.523,9.511,48.137,-1.385,7.68,47.966,-1.489,7.785,46.895,-0.621,7.31,47.804,-0.965,6.461,47.722,0.156,6.985,46.818,0.435,5.8,46.463,1.497,7.451,48.128,-1.6,7.082,47.966,-1.076,7.08,48.367,-2.09,5.828,50.009,-1.44,5.829,49.609,-0.426,5.656,50.14,-0.097,5.611,50.068,-0.003,5.782,49.532,-0.326,5.189,50.005,0.436,5.123,49.579,0.661,5.711,49.075,-0.085,5.002,49.069,0.917,4.594,49.916,1.159,4.504,49.387,1.385,3.204,50.024,1.941,4.584,50.019,1.127,3.194,50.121,1.911,4.203,50.525,1.353,3.682,52.298,2.134,2.737,51.679,2.597,3.667,53.342,2.343,3.6,53.5,3.423,2.678,51.818,3.545,2.991,53.022,5.022,2.797,52.919,5.147,2.485,51.715,3.671,2.072,51.811,4.876,1.589,49.259,4.57,2.061,49.473,3.402,2.268,47.849,3.895,1.455,49.083,4.802,2.134,47.673,4.127,1.314,48.082,5.242,1.281,47.992,5.251,2.1,47.581,4.136,0.508,46.659,4.147,0.59,46.495,3.71,2.193,47.395,3.638,1.612,46.46,3.121,0.78,48.027,5.545,0.055,46.691,4.413,-0.942,48.692,5.42,-1.376,48.567,5.231,-0.351,46.574,4.236,-1.528,47.52,5.338,-2.161,46.951,5.108,-0.907,46.074,4.034,-2.27,45.738,2.907,-1.382,45.671,1.946,-0.127,46.014,3.19,-0.82,45.384,1.911,-1.772,44.695,0.19,-1.187,44.465,0.258,-1.026,43.989,-0.097,-2.455,46.991,5.1,-2.563,45.779,2.899,-3.879,46.69,4.032,-5.207,46.484,2.655,-3.891,45.573,1.522,-4.779,45.407,2.087,-4.219,42.531,2.616,-3.296,42.517,2.084,-3.607,42.561,2.673,-2.815,42.576,3.142,-2.447,42.533,2.587,-1.208,41.502,3.953,-1.19,41.494,3.932,-2.428,42.524,2.563,-1.638,41.964,2.117,-2.988,42.564,3.472,-1.373,41.49,4.268,-2.725,42.62,3.989,-2.82,42.66,4.603,-1.469,41.53,4.89,-3.647,41.899,5.988,-1.917,42.067,5.723,-2.612,42.183,6.07,-3.03,42.648,4.471,-3.857,41.887,5.856,-4.647,41.499,4.816,-3.078,42.632,4.178,-4.699,41.481,4.501,-3.364,42.576,3.673,-3.644,42.503,3.122,-4.982,41.407,3.946,-4.257,42.473,3.07,-4.542,42.434,2.787,-5.267,41.369,3.664,-5.373,41.825,3.265,-5.09,42.697,2.174,-5.917,42.086,2.658,-6.384,42.111,2.315,-6.581,41.689,2.529,-6.125,41.638,2.885,-6.327,40.609,3.191,-8.563,41.951,3.247,-8.583,40.908,4.007,-9.461,40.632,4.547,-8.663,42.442,3.664,-9.568,41.158,4.994,-10.512,41.58,5.268,-9.698,41.523,5.341,-8.57,42.084,4.302,-8.548,42.727,3.943,-10.381,41.904,5.585,-8.736,43.691,5.043,-9.054,44.058,5.289,-10.699,42.271,5.832,-9.907,43.865,6.395,-10.561,44.093,6.668,-11.353,42.5,6.105,-12.145,43.034,6.521,-13.713,40.684,6.551,-12.921,40.15,6.134,-13.301,40.213,6.638,-11.184,44.888,7.651,-12.768,43.829,7.504,-13.432,44.455,8.07,-15.373,43.059,7.661,-14.831,42.346,7.069,-15.188,42.436,7.6,-10.893,44.72,9.222,-13.157,44.296,9.548,-10.654,44.563,10.241,-12.584,43.769,9.473,-11.02,43.913,9.896,-10.717,44.257,10.579,-13.217,44.008,9.867,-12.897,43.444,9.944,-13.464,43.235,10.497,-13.75,43.811,10.386,-13.531,42.854,12.292,-13.91,42.992,12.408,-14.15,43.956,10.508,-14.437,45.1,12.794,-14.711,44.475,10.76,-14.866,45.164,12.169,-15.199,44.91,12.803,-14.967,43.752,10.518,-14.683,42.799,12.417,-15.629,44.685,13.467,-15.118,42.571,13.09,-15.718,44.051,14.338,-15.875,44.818,13.532,-15.998,44.202,14.412,-16.058,44.721,14.028,-16.604,46.287,16.233,-16.544,45.767,16.617,-16.563,46.807,16.349,-16.271,46.907,16.668,-16.213,45.882,16.981,-17.688,46.502,19.035,-16.383,45.421,17.744,-17.191,45.761,18.869,-18.054,46.041,18.912,-16.579,45.42,16.857,-18.15,45.417,18.833,-16.752,44.894,17.971,-17.14,44.901,18.446,-18.158,44.409,18.84,-16.588,44.349,16.866,-17.754,43.031,18.627,-18.663,44.266,18.811,-18.258,42.888,18.597,-18.759,43.206,18.837,-19.435,41.045,19.595,-18.895,40.854,19.311,-19.656,40.631,20.051,-20.486,43.344,21.179,-20.706,42.93,21.634,-20.288,43.937,21.421,-20.15,43.986,21.882,-20.558,42.982,22.128,-20.016,44.064,22.448,-18.948,43.379,23.591,-19.342,42.202,23.429,-18.409,41.981,23.911,-18.429,41.933,23.928,-19.365,42.147,23.448,-18.896,41.791,23.707,-18.793,43.457,23.67,-18.253,42.06,23.99,-17.883,43.675,24.756,-16.564,43.099,25.193,-17.06,41.539,24.385,-15.454,41.849,24.912,-16.181,43.352,25.6,-15.06,42.11,25.331,-14.85,42.642,25.622,-15.872,43.932,26.001,-14.55,43.204,26.01,-16.079,44.289,26.461,-15.674,44.825,26.544,-14.145,43.74,26.093,-15.311,45.292,26.61,-15.305,45.296,26.61,-14.139,43.744,26.093,-13.588,44.596,26.39,-12.534,43.86,26.543,-13.085,43.008,26.247,-11.459,42.27,27.272,-11.629,41.858,27.241,-13.246,42.62,26.217,-12.385,41.275,28.399,-13.02,42.224,26.124,-12.282,41.073,27.998,-11.581,41.957,27.323,-12.339,41.368,28.476,-11.848,41.727,28.365,-11.893,41.86,28.601,-12.384,41.5,28.71,-12.804,41.68,29.124,-11.037,42.19,30.204,-11.948,42.01,30.727,-10.494,42.833,32.091,-10.601,42.846,32.196,-12.048,42.022,30.827,-12.029,43.22,32.574,-13.142,41.97,33.519,-13.24,40.682,31.839,-12.822,41.608,33.751,-12.474,41.261,33.84,-12.912,40.355,31.922,-11.921,39.509,33.285,-12.488,41.124,34.257,-11.935,39.372,33.703,-12.444,40.88,34.737,-10.791,42.894,36.289,-10.954,42.435,36.522,-10.196,43.124,36.165,-9.635,42.127,35.692,-10.461,41.559,36.106,-9.468,41.117,35.363,-9.559,42.144,35.675,-9.396,41.134,35.348,-7.721,41.433,36.844,-7.622,41.027,36.818,-9.292,40.705,35.32,-8.127,40.948,35.583,-9.171,43.361,35.885,-7.376,42.516,37.03,-7.217,42.926,36.6,-6.963,43.116,36.899,-7.15,42.685,37.297,-6.877,44.579,37.833,-6.481,44.262,38.675,-6.787,42.395,38.068,-6.018,43.074,39.7,-6.058,42.942,39.773,-6.823,42.278,38.133,-6.186,42.317,39.662,-4.398,40.682,38.844,-5.131,40.731,37.359,-4.0,39.931,36.317,-4.234,40.445,36.427,-4.547,41.036,38.415,-4.263,40.769,38.839,-3.865,40.018,36.312,-3.11,41.176,38.292,-3.906,40.445,39.38,-2.731,40.832,38.867,-1.876,39.151,39.242,-3.68,40.694,40.966,-1.636,39.414,40.927,-2.744,41.26,41.139,-1.626,41.898,41.42,-0.519,40.052,41.208,-0.72,41.664,40.872,0.697,41.703,40.213,0.898,40.092,40.549,1.603,41.518,39.647,2.009,41.172,39.406,1.33,39.724,40.293,2.994,40.801,39.281,2.468,43.241,38.307,3.482,43.0,38.114,4.49,44.097,37.775,5.439,43.488,38.467,4.49,42.354,38.85,5.203,41.817,39.675,6.156,43.378,38.469,5.873,41.714,39.677,6.744,43.453,38.511,7.389,42.958,38.284,6.456,41.266,39.471,7.653,42.485,38.039,7.851,42.081,37.866,6.641,40.889,39.31,7.429,41.639,37.79,7.432,41.631,37.787,6.643,40.882,39.308,8.947,40.581,38.469,7.255,40.148,38.854,8.03,40.043,38.57,9.03,39.938,38.931,6.725,40.249,39.764,9.279,39.607,39.387,6.878,40.0,39.292,8.85,39.483,38.954,9.275,39.583,39.398,6.721,40.228,39.774,7.067,39.277,39.43,9.49,38.041,39.514,7.283,37.735,39.546,9.136,36.44,39.37,11.567,37.411,39.416,10.961,35.887,39.285,11.856,36.576,38.674,11.642,37.444,39.408,11.926,36.606,38.667,12.414,36.969,38.779,11.697,37.491,39.44,12.465,37.013,38.809,12.311,37.529,39.231,11.524,40.482,39.483,12.138,40.52,39.274,12.245,41.03,38.884,10.84,40.81,38.916,11.602,41.338,38.35,10.42,41.009,38.511,10.39,41.068,38.411,11.57,41.4,38.245,10.545,42.622,37.603,11.183,43.049,37.37,12.244,41.851,37.999,12.164,42.601,37.21,13.657,42.233,36.805,13.649,41.505,37.618,14.81,42.46,36.4,13.524,42.76,36.673,14.693,42.923,36.284,14.211,44.756,37.18,15.302,45.361,36.452,15.712,43.487,35.605,17.01,44.562,34.943,17.69,43.595,34.834,16.309,42.637,35.509,17.578,42.12,34.825,18.667,43.523,34.537,18.556,42.049,34.528,19.691,43.826,34.723,19.88,43.715,34.634,18.751,41.935,34.435,20.657,41.727,34.806,20.573,41.38,35.041,18.667,41.588,34.671,20.203,40.87,35.16,20.096,40.716,35.273,18.553,41.424,34.79,20.051,40.466,35.835,20.317,40.827,35.34,20.27,40.576,35.902,20.694,41.334,35.233,20.79,41.359,35.323,20.36,40.598,35.986,20.73,40.796,36.433,20.28,40.15,37.082,19.913,39.957,36.63,19.476,39.548,36.759,22.198,37.973,36.371,21.394,37.371,36.047,21.815,37.799,35.924,22.692,38.608,35.69,22.305,38.429,35.249,22.874,39.034,34.533,21.467,44.353,34.595,22.29,42.384,34.766,21.956,44.76,34.562,22.032,44.766,34.51,22.367,42.39,34.713,23.739,44.169,34.48,24.902,43.266,33.502,23.69,41.362,33.599,23.577,41.627,33.008,24.908,43.277,33.448,23.584,41.64,32.947,24.892,43.299,32.918,24.891,43.291,32.413,23.582,41.633,32.442,24.371,43.166,32.056,24.328,43.129,31.819,23.539,41.595,32.205,24.463,43.015,31.192,24.506,43.215,31.842,24.642,43.101,31.215,25.026,43.34,32.199,26.15,44.506,31.477,25.766,44.267,30.493,26.435,44.949,31.39,25.191,46.847,31.274,24.35,46.427,30.36,23.343,47.864,29.936,23.426,47.752,29.35,24.435,46.312,29.759,24.262,46.574,28.544,24.697,44.533,27.76,24.93,43.989,28.866,24.388,44.058,27.91,24.276,43.826,27.954,24.809,43.739,28.913,24.456,42.431,28.552,24.11,43.675,27.659,24.3,42.289,28.274,23.845,43.297,27.24,23.824,43.238,27.192,24.28,42.234,28.229,24.031,43.323,26.584,23.854,43.32,27.214,24.064,43.409,26.607,24.119,43.697,27.633,24.282,44.019,27.539,24.239,43.754,26.506,24.597,44.495,27.41,24.461,45.806,26.576,24.084,45.245,25.556,24.579,47.069,24.682,24.541,46.753,23.999,24.046,44.929,24.873,23.758,45.685,24.16,24.325,46.747,23.071,23.554,45.68,23.286,23.82,46.528,22.683,23.006,46.259,22.003,22.787,45.426,22.646,22.001,45.405,21.521,23.008,46.329,21.87,22.003,45.467,21.405,23.143,46.165,20.249,23.133,46.141,20.225,21.994,45.444,21.381,23.349,44.665,19.818,23.861,46.945,21.841,23.903,46.713,20.223,24.856,47.424,21.867,25.099,48.919,20.976,24.119,48.045,19.43,24.872,49.48,20.768,24.004,50.101,20.567,23.297,48.632,19.24,23.011,48.842,18.728,23.712,48.335,18.233,23.922,48.181,18.799,25.688,48.139,17.738,26.021,46.363,18.565,24.218,46.598,19.535,25.071,44.86,19.082,23.685,48.387,18.105,25.661,48.191,17.611,25.543,48.582,17.09,25.694,48.676,17.127,25.812,48.285,17.647,26.335,49.438,17.551,27.499,49.033,18.332,27.049,47.855,18.477,27.973,49.66,19.068,28.949,49.257,18.772,28.026,47.452,18.181,30.066,48.701,18.823,29.638,50.409,19.91,30.671,49.713,19.824,30.711,50.29,19.882,31.435,50.202,19.988,31.353,49.631,19.923,32.483,50.016,20.337,32.654,49.559,20.275,31.513,49.204,19.866,32.924,48.272,20.59,33.637,47.825,18.577,32.216,48.764,17.881,33.408,49.087,18.149,33.407,49.148,18.08,32.215,48.821,17.817,33.232,49.539,17.096,32.244,50.005,16.319,31.347,49.231,17.135,30.479,49.902,15.895,30.122,49.618,15.991,30.99,48.946,17.231,29.417,48.588,15.778,29.97,49.993,15.031,29.245,49.015,14.685,29.151,49.306,13.682,28.641,48.262,13.382,28.703,47.906,14.366,28.772,46.346,14.296,27.116,47.973,12.903,27.152,46.039,13.788,26.624,47.133,13.927,26.872,48.078,12.87,26.365,47.244,13.892,25.694,48.121,12.359,24.517,49.478,13.451,25.025,48.789,15.135,25.183,50.172,14.724,25.647,50.541,15.866,25.553,49.209,16.435,26.202,49.94,16.9,25.823,50.934,15.992,26.391,50.362,17.035,26.39,51.566,17.778,26.967,50.744,19.012,26.934,49.588,18.196,27.372,50.249,18.924,27.013,50.76,19.134,27.418,50.265,19.047,26.846,50.798,20.197,29.055,51.33,21.124,29.691,50.813,20.001,30.76,50.667,19.966,29.112,51.438,21.146,30.815,50.771,19.987,30.34,51.171,19.955,30.753,51.657,19.952,31.224,51.253,19.984,31.816,51.526,20.104,32.089,50.823,20.193,31.478,50.598,20.067,32.527,50.414,20.417,32.126,50.877,20.22,32.561,50.465,20.443,32.924,50.628,20.912,33.029,50.223,20.972,32.667,50.057,20.504,33.197,49.531,21.884,33.216,49.05,21.693,32.685,49.575,20.314,32.953,48.287,20.626,34.761,47.551,22.26,34.416,46.869,21.162,34.983,47.085,21.298,34.277,48.175,18.356,33.787,47.84,18.542,33.566,49.102,18.111,34.39,48.243,18.283,33.673,49.167,18.043,33.515,49.558,17.056,35.249,48.616,18.071,34.374,49.932,16.844,34.966,50.2,16.769,34.943,50.21,16.623,34.351,49.942,16.698,35.112,50.17,15.993,33.5,53.028,15.178,32.739,52.8,15.883,33.331,53.695,16.014,32.789,53.876,17.229,32.197,52.981,17.098,30.915,52.969,17.701,30.594,52.525,17.048,31.856,52.509,16.404,30.138,52.102,15.97,30.06,52.704,17.193,29.64,52.268,16.105,29.047,53.048,17.176,27.945,52.751,16.695,28.672,52.008,15.683,27.189,51.976,15.041,27.467,51.745,14.409,28.95,51.777,15.051,27.971,51.683,13.241,29.024,50.645,12.805,29.875,50.866,14.668,29.049,50.241,13.293,26.968,48.531,11.75,27.114,48.251,12.301,25.92,48.283,11.827,26.949,48.565,11.62,25.904,48.312,11.713,26.322,48.583,11.403,26.199,48.58,11.239,25.788,48.31,11.558,25.487,47.758,10.092,24.691,47.478,10.361,24.992,48.029,11.827,23.48,46.81,11.394,22.076,48.536,12.226,23.758,49.545,12.559,22.453,49.34,11.59,22.519,49.759,11.419,23.82,49.937,12.399,23.265,50.513,11.43,23.944,51.259,11.55,24.416,50.592,12.504,24.742,51.005,12.243,24.975,51.0,12.541,24.635,50.587,12.785,25.301,51.281,14.058,25.513,51.478,12.347,25.808,51.731,13.875,26.082,51.667,12.632,25.606,51.638,12.037,26.183,51.839,12.3,25.456,51.925,11.505,25.621,52.047,11.365,26.358,51.969,12.151,26.001,52.466,11.038,26.956,49.696,9.494,27.312,49.199,10.606,25.922,48.318,9.356,25.746,47.926,9.807,27.111,48.752,11.12,26.473,48.758,10.936,26.458,50.107,8.24,25.485,48.679,8.255,25.548,50.016,7.801,23.719,49.83,7.465,23.878,48.516,7.96,23.488,48.934,8.092,23.33,48.76,8.163,23.729,48.352,8.027,22.522,48.066,8.144,23.46,46.581,10.267,24.554,47.047,9.892,23.324,46.319,10.86,23.046,49.1,8.219,22.217,48.43,8.204,22.457,48.994,8.363,22.42,49.009,8.365,22.178,48.446,8.206,21.565,48.463,7.945,21.599,48.156,7.829,22.215,48.117,8.082,21.482,47.713,7.426,20.984,48.474,7.664,20.861,48.034,7.259,20.357,48.13,6.88,20.512,47.766,6.601,21.007,47.691,6.997,20.579,47.449,6.058,19.296,48.207,6.193,19.363,47.89,5.65,18.855,47.949,5.265,19.506,46.894,4.246,20.014,46.836,4.631,19.42,46.636,3.781,18.781,44.566,4.308,19.287,44.479,5.231,18.779,44.538,4.846,17.379,47.196,3.847,17.552,46.901,3.43,16.122,48.304,3.902,15.742,47.907,3.908,17.197,46.53,3.436,15.176,47.001,3.78,15.152,46.921,3.745,17.175,46.46,3.406,15.146,47.115,1.7,17.15,46.214,3.143,15.33,46.77,1.584,15.012,46.521,1.644,17.058,45.938,3.357,15.019,46.327,3.689,14.966,45.731,3.985,17.012,45.414,3.617,15.681,44.448,4.44,13.782,45.139,4.178,14.496,43.857,4.633,13.892,43.826,4.861,13.593,45.141,4.214,13.715,43.828,4.895,13.288,44.272,4.894,13.162,45.282,4.21,12.885,44.404,4.891,11.872,45.348,3.377,13.407,45.481,3.829,12.088,45.522,3.041,12.994,45.796,2.284,12.779,45.696,2.001,11.899,45.434,2.793,11.78,45.412,2.227,11.618,45.297,2.267,11.746,45.325,2.831,11.13,44.404,1.873,14.31,45.698,3.632,13.896,46.013,2.087,14.303,45.892,1.586,15.146,47.024,3.755,15.14,47.218,1.709,15.713,47.928,3.885,15.733,47.973,3.865,15.161,47.265,1.688,15.179,48.308,2.487,15.409,49.161,1.516,15.424,48.236,0.584,16.065,50.275,1.003,15.625,50.605,0.068,14.984,48.567,-0.351,14.663,48.781,-0.837,12.512,46.937,-1.262,12.57,46.497,-0.829,11.579,46.497,-0.398,12.107,47.733,-1.322,11.15,47.339,-0.461,9.792,48.419,-1.467,12.445,48.729,-1.528,10.172,49.536,-1.698,10.455,50.024,-1.425,10.022,50.659,-1.923,9.686,50.249,-2.257,9.315,50.487,-2.748,8.606,51.831,-0.563,7.725,51.804,-1.221,7.442,51.829,0.109,7.151,51.865,0.049,7.416,51.842,-1.285,6.854,52.957,0.684,6.247,52.845,0.574,6.809,51.731,-1.395,6.579,51.76,-0.055,5.757,52.648,0.642,6.118,51.575,0.009,5.39,52.111,0.626,4.795,51.197,0.662,5.558,50.714,0.042,5.137,50.647,0.481,5.105,53.084,0.982,4.737,52.547,0.966,4.722,53.591,1.175,6.501,54.087,1.113,6.118,54.595,1.307,6.97,55.255,1.473,6.646,55.676,1.581,5.75,55.074,1.43,6.08,55.593,1.7,5.155,56.003,2.215,4.758,55.513,1.982,4.854,56.408,2.567,3.986,55.501,4.351,3.836,54.55,3.879,3.198,53.944,5.422,4.56,55.897,5.399,3.733,54.314,6.4,4.89,54.893,6.8,4.754,54.709,7.395,3.615,54.153,6.922,4.375,54.264,7.691,3.686,52.871,8.349,3.01,52.929,7.5,3.349,52.593,7.828,3.328,52.561,7.817,2.99,52.898,7.49,1.962,51.545,8.555,1.374,51.558,7.973,2.458,52.91,6.963,1.686,51.8,6.943,0.484,51.036,7.597,0.77,51.263,6.557,-1.069,50.796,6.779,-0.854,48.912,5.38,0.998,49.261,5.07,0.87,48.255,5.503,-0.054,50.508,8.737,-1.59,50.284,7.883,-2.156,49.953,8.73,-3.905,49.603,7.61,-3.464,49.909,6.684,-3.702,49.496,7.072,-3.722,48.94,6.474,-3.485,49.349,6.081,-5.192,48.05,5.173,-4.147,47.425,4.181,-2.501,48.76,5.148,-2.722,47.726,5.25,-4.049,48.417,7.227,-5.542,47.489,5.979,-4.232,48.587,7.756,-4.235,48.57,7.769,-5.546,47.47,5.994,-4.43,47.383,7.467,-4.857,46.719,7.751,-5.972,46.806,6.277,-6.708,46.191,6.72,-8.154,46.418,4.632,-7.418,47.033,4.19,-7.764,46.503,4.122,-6.223,45.698,2.54,-5.877,46.228,2.607,-5.41,45.167,2.043,-6.791,44.821,2.484,-5.945,44.341,1.99,-7.182,43.645,2.143,-8.17,44.822,3.529,-8.394,43.646,3.062,-8.56,44.736,4.039,-4.902,46.579,7.904,-6.753,46.05,6.874,-7.444,46.696,8.628,-9.245,46.957,7.824,-8.554,46.311,6.069,-9.408,46.117,7.174,-10.705,45.651,9.88,-10.868,44.812,9.23,-10.63,44.655,10.249,-10.228,46.111,11.022,-10.153,45.115,11.391,-10.335,46.065,13.201,-10.305,45.178,13.67,-10.123,44.228,11.859,-10.05,43.618,13.535,-10.147,43.13,13.373,-10.233,43.673,11.675,-10.125,42.679,12.096,-10.36,42.353,11.429,-10.483,43.326,10.967,-12.663,42.513,10.332,-11.741,42.076,10.092,-10.766,42.018,10.574,-10.368,42.33,11.441,-12.671,42.488,10.345,-12.628,41.717,11.757,-12.742,41.84,11.828,-12.785,42.612,10.416,-12.926,42.299,12.22,-12.613,41.773,11.972,-12.811,42.24,12.349,-10.353,42.383,11.644,-12.186,41.743,12.5,-10.773,41.808,12.106,-10.205,42.434,12.183,-12.671,42.288,12.859,-10.221,42.901,13.455,-12.33,42.076,13.399,-10.622,42.506,13.81,-10.345,43.108,13.752,-12.796,42.498,13.16,-12.543,43.676,14.332,-13.374,44.268,13.857,-13.537,43.025,12.738,-14.069,45.133,13.119,-12.879,45.209,14.379,-13.633,45.96,13.577,-10.976,46.131,13.963,-13.494,46.049,14.022,-11.288,46.2,14.39,-11.015,46.503,14.045,-13.668,46.287,13.65,-13.545,46.393,14.162,-12.384,46.203,14.871,-12.084,46.216,14.857,-10.993,47.036,15.007,-13.524,46.927,15.124,-12.492,47.517,16.598,-12.831,47.965,16.669,-13.905,47.43,15.204,-14.191,47.811,15.444,-14.151,47.259,18.199,-15.494,47.115,16.953,-15.83,46.488,19.597,-15.649,46.827,16.975,-15.967,46.233,19.399,-16.271,46.368,19.51,-15.906,47.003,16.872,-15.796,45.99,17.212,-15.958,45.951,17.143,-16.047,46.969,16.811,-17.433,46.572,19.197,-16.182,46.976,16.758,-17.561,46.587,19.096,-15.876,45.945,17.203,-17.351,46.565,19.258,-16.346,46.325,19.501,-16.286,46.751,19.704,-17.287,47.018,19.474,-16.746,47.133,19.837,-17.217,47.984,20.394,-17.792,47.93,20.071,-17.145,48.409,20.787,-17.996,47.277,22.964,-18.761,46.642,22.549,-18.004,46.229,24.722,-18.146,45.971,24.724,-18.911,46.368,22.55,-18.903,45.26,23.173,-19.895,44.669,22.357,-20.04,45.697,21.621,-20.021,44.629,21.785,-20.169,44.555,21.366,-20.198,45.618,21.172,-20.168,45.019,20.96,-20.263,44.155,20.912,-20.263,44.616,20.502,-20.459,43.578,20.634,-18.329,44.716,25.346,-19.074,44.088,23.755,-18.195,44.374,24.85,-17.926,47.485,23.087,-17.929,46.452,24.854,-17.64,46.971,24.866,-16.78,48.501,23.126,-16.372,48.095,24.909,-15.97,48.052,24.474,-14.257,46.991,25.93,-14.604,47.0,26.413,-12.909,46.246,26.198,-13.858,47.09,24.201,-12.51,46.345,24.469,-13.478,46.504,23.334,-13.409,46.467,23.27,-12.445,46.31,24.409,-12.59,47.035,22.293,-12.259,46.978,22.251,-12.114,46.253,24.367,-10.935,47.286,22.514,-9.931,46.675,22.784,-11.039,45.598,24.656,-10.673,45.009,23.863,-10.593,44.926,23.962,-10.958,45.515,24.755,-9.145,45.046,23.419,-8.959,44.637,23.809,-10.761,45.083,25.166,-10.396,44.494,24.373,-10.418,44.061,24.685,-10.783,44.65,25.478,-9.599,43.11,26.141,-10.286,43.973,24.552,-9.458,43.016,26.0,-9.032,42.844,25.536,-8.132,42.587,26.46,-8.559,42.759,26.923,-7.437,44.174,28.301,-8.913,44.277,29.397,-10.035,42.862,28.019,-8.974,43.647,29.532,-8.976,43.645,29.535,-10.037,42.86,28.022,-10.395,42.577,29.023,-9.223,43.433,30.592,-10.627,42.377,30.018,-10.058,43.032,31.894,-9.044,43.939,30.863,-9.879,43.538,32.164,-8.982,44.568,30.728,-8.97,44.615,30.769,-9.867,43.584,32.205,-10.226,43.999,32.561,-10.923,43.384,32.575,-10.563,42.969,32.219,-11.996,43.328,32.594,-11.242,44.801,34.238,-12.277,44.573,34.055,-11.838,44.572,34.362,-8.958,44.693,30.804,-10.215,44.077,32.597,-10.079,45.989,30.862,-10.056,44.909,32.703,-9.984,46.026,31.625,-9.449,46.565,31.501,-9.498,44.733,33.324,-8.242,45.349,31.531,-8.104,45.338,31.625,-9.36,44.722,33.417,-8.01,44.683,33.124,-7.7,44.656,34.239,-9.007,44.692,34.687,-6.998,45.835,35.779,-8.186,44.408,35.358,-7.427,44.848,35.768,-7.001,44.932,36.753,-9.01,43.763,35.689,-7.056,43.328,36.404,-6.944,44.876,37.002,-6.997,43.271,36.661,-6.91,44.73,37.601,-6.237,47.352,37.567,-6.203,47.205,38.167,-6.557,49.781,37.726,-5.744,47.634,37.779,-5.973,49.372,37.475,-5.498,49.916,37.698,-5.174,47.336,38.14,-5.208,47.483,37.54,-4.983,47.428,37.514,-4.949,47.281,38.113,-3.925,47.518,37.474,-3.925,47.517,37.475,-4.948,47.281,38.114,-3.888,47.371,38.07,-3.888,47.371,38.072,-4.948,47.281,38.116,-4.401,47.252,38.392,-5.36,45.501,40.114,-5.907,45.53,39.839,-5.428,44.378,40.898,-3.945,45.701,40.482,-3.971,44.584,41.277,-3.318,44.627,41.258,-3.109,41.654,41.718,-3.761,41.611,41.737,-4.024,41.064,41.51,-3.071,45.891,40.02,-2.419,44.823,40.782,-2.558,46.01,39.7,-1.798,45.68,39.229,-1.637,44.484,40.297,-0.731,44.249,39.749,-1.436,45.744,38.648,-0.358,44.315,39.151,0.029,44.921,37.981,0.91,44.472,37.982,0.645,43.804,39.153,1.553,43.495,38.649,1.512,44.397,37.241,2.198,43.414,37.855,3.41,43.517,37.103,3.642,43.39,37.469,2.417,43.294,38.198,4.439,44.15,37.666,4.628,43.258,35.026,5.367,44.026,35.367,5.248,43.43,35.17,5.764,43.353,35.086,5.887,43.948,35.282,7.116,44.536,33.358,7.064,45.073,33.492,5.837,44.468,35.411,6.481,45.948,33.311,6.33,44.881,35.421,6.814,45.976,33.882,6.403,46.068,33.372,5.761,44.585,35.47,6.559,46.286,33.941,6.617,47.097,34.889,5.818,45.37,36.389,6.395,45.51,36.364,6.782,47.216,35.042,6.56,45.629,36.517,7.439,47.087,35.932,9.395,46.336,36.621,8.694,44.809,37.268,10.109,44.221,36.895,9.898,43.147,37.586,8.464,43.638,38.022,8.695,43.143,37.785,9.903,42.67,37.572,8.7,42.639,37.77,9.748,41.115,38.38,8.949,40.584,38.469,7.856,42.077,37.863,7.434,41.635,37.787,9.55,46.381,36.564,10.264,44.266,36.838,11.383,45.737,36.711,12.555,44.788,37.077,11.307,43.42,37.165,12.303,43.017,36.979,13.033,44.72,37.07,12.782,42.95,36.972,13.513,44.934,37.461,12.785,47.751,36.437,13.279,47.787,36.865,12.867,48.129,35.929,14.222,48.169,35.413,14.555,47.825,36.38,14.98,49.563,34.75,15.418,49.232,34.514,14.978,47.504,36.151,15.871,48.897,34.305,16.144,48.36,34.035,15.242,46.983,35.89,14.952,47.275,34.892,15.006,46.952,34.785,15.293,46.679,35.789,17.0,45.962,34.238,15.015,47.033,34.671,17.009,46.043,34.124,16.205,48.125,33.82,16.395,48.202,33.842,17.205,46.122,34.147,17.671,47.039,33.789,18.191,46.913,34.128,17.74,45.993,34.495,18.279,46.335,34.372,18.583,45.989,34.653,18.066,45.622,34.797,19.106,45.865,34.976,18.792,46.444,34.471,19.323,46.34,34.786,18.725,47.027,34.231,19.041,47.253,34.17,19.64,46.566,34.725,20.13,46.973,34.692,19.042,47.254,34.17,20.13,46.974,34.692,19.514,47.656,34.136,19.518,47.66,34.136,20.134,46.978,34.693,20.064,47.522,34.397,22.671,47.549,33.828,22.742,47.005,34.124,24.293,46.618,33.695,24.292,46.105,34.172,22.741,46.507,34.588,24.38,45.743,34.55,22.656,47.787,32.248,24.277,46.863,32.069,22.898,48.056,30.641,23.07,48.027,30.45,24.454,46.833,31.872,24.945,46.994,31.738,24.13,46.701,31.077,23.556,46.994,30.68,21.44,48.912,32.255,21.679,49.184,30.648,20.894,49.051,31.995,20.847,49.076,31.969,21.632,49.209,30.623,21.296,49.808,30.304,22.471,48.844,27.64,22.777,48.27,28.028,23.686,48.476,25.566,22.384,48.118,27.398,22.974,48.25,25.771,23.717,48.324,25.565,22.807,48.123,28.027,23.704,46.908,27.351,22.266,49.747,27.36,23.481,49.378,25.286,23.848,50.734,25.361,25.228,50.425,25.069,24.946,49.05,24.975,25.437,49.311,24.613,24.949,47.2,22.427,24.459,46.939,22.789,23.955,46.72,22.401,26.041,50.966,24.232,26.301,49.887,23.724,27.505,51.534,23.426,27.909,51.09,22.542,26.716,49.429,22.814,27.848,50.833,21.974,26.893,50.692,20.39,25.733,49.283,21.184,25.468,49.822,20.963,26.655,50.929,20.163,25.238,50.052,20.744,26.816,50.895,19.099,26.251,51.725,19.001,24.706,50.834,20.651,26.106,51.736,20.067,26.067,51.812,20.093,24.668,50.908,20.676,24.381,51.931,20.644,23.369,51.65,20.716,23.656,50.626,20.748,22.009,50.808,20.519,21.978,50.458,20.48,23.627,50.297,20.711,22.061,49.39,18.996,22.221,49.261,18.918,23.778,50.176,20.639,22.771,48.922,18.804,21.437,48.75,16.673,21.987,48.411,16.558,20.745,48.521,14.993,21.021,47.638,14.675,22.296,47.42,16.201,22.15,46.814,15.999,22.355,46.756,16.024,22.502,47.362,16.226,23.27,46.343,15.616,23.534,46.485,15.7,22.802,47.523,16.323,24.66,47.718,15.308,23.772,46.097,15.237,24.93,47.276,14.78,22.911,45.874,13.703,24.924,46.696,14.85,23.3,45.597,13.98,23.199,46.251,15.546,22.297,46.039,14.034,22.274,46.65,15.945,22.138,46.69,15.93,22.17,46.076,14.021,21.01,47.527,14.614,21.021,47.594,14.473,22.181,46.146,13.872,22.069,47.235,13.067,20.544,48.676,13.916,21.533,48.451,12.441,20.165,49.148,13.011,20.126,49.38,12.637,21.493,48.689,12.057,21.904,49.484,11.431,19.542,49.834,11.799,21.338,49.924,10.619,20.139,49.777,10.183,20.501,50.043,8.961,21.725,50.21,9.31,22.468,51.299,8.609,22.518,51.445,8.893,21.773,50.347,9.578,22.472,51.138,9.474,23.436,52.539,9.543,23.39,52.232,10.125,23.9,53.013,9.671,24.886,52.852,10.503,24.376,52.071,10.957,24.991,52.051,11.154,24.872,51.664,11.533,24.25,51.661,11.359,25.027,51.38,12.065,25.296,52.943,10.556,25.378,52.136,11.204,25.742,52.56,10.868,26.189,51.392,7.372,26.635,51.01,7.684,25.726,50.918,7.245,20.753,49.388,8.234,22.755,50.553,7.781,21.143,48.958,8.11,21.491,48.569,7.958,23.127,50.137,7.618,22.346,49.116,8.378,22.452,49.024,8.364,23.239,50.039,7.604,23.041,49.129,8.221,20.366,49.152,7.912,20.733,48.707,7.768,20.088,48.379,6.991,18.8,49.273,8.493,18.306,48.517,7.653,17.398,48.478,8.246,17.217,48.383,7.969,18.113,48.415,7.358,16.398,49.208,6.333,16.84,49.145,5.519,18.583,48.348,6.493,18.141,48.09,5.565,16.798,48.492,8.234,15.979,49.318,6.599,15.269,50.177,8.068,14.058,51.082,7.02,14.7,50.274,5.491,13.632,50.301,5.557,13.611,50.313,5.252,14.677,50.286,5.164,13.256,51.379,4.069,13.557,51.416,3.721,14.96,50.322,4.837,14.981,51.799,3.14,16.284,50.606,2.187,16.187,49.199,3.94,15.602,49.452,2.556,13.285,52.18,3.557,14.709,52.563,2.977,14.366,53.118,2.831,14.91,52.846,-0.599,15.267,52.284,-0.544,14.257,52.451,-0.886,13.979,51.267,-0.642,14.99,51.1,-0.301,14.097,49.221,-1.165,12.421,51.147,-0.782,12.709,49.115,-1.29,10.718,50.41,-1.188,11.46,52.882,-0.445,9.862,51.956,-0.887,10.957,52.769,-0.012,10.135,52.721,0.96,9.129,51.913,-0.021,7.751,53.01,1.357,7.23,52.95,0.863,8.665,51.859,-0.461,7.504,51.859,0.217,10.268,53.168,1.433,7.884,53.458,1.83,8.185,54.702,2.102,8.509,54.541,2.484,10.184,53.316,1.999,10.698,53.581,1.879,8.564,55.064,2.494,10.023,53.503,2.897,10.079,53.732,3.581,8.619,55.293,3.178,9.219,54.558,4.537,8.283,55.494,5.395,7.746,56.167,3.978,6.966,56.52,4.615,5.857,57.0,2.726,6.712,56.615,2.215,6.15,56.59,2.373,7.871,55.442,6.023,6.553,56.468,5.244,7.007,55.5,6.635,8.582,54.942,6.988,7.762,54.968,7.66,8.842,54.982,9.152,8.482,55.191,9.41,7.402,55.176,7.918,7.781,55.409,9.585,5.893,55.045,10.096,5.464,54.802,8.443,5.084,54.358,8.739,5.554,54.255,10.709,4.736,53.547,9.369,4.593,52.807,10.348,3.797,52.06,9.774,3.831,52.697,8.716,2.124,51.409,8.923,1.988,51.534,8.588,3.69,52.826,8.371,3.353,52.55,7.848,3.644,51.529,10.537,1.955,50.822,9.767,1.843,50.437,10.238,-0.141,50.018,9.423,-0.028,50.403,8.952,-2.132,49.858,8.924,-0.275,49.504,10.059,-2.254,49.394,9.499,-1.583,48.63,11.1,-2.254,48.625,11.359,-2.843,49.39,9.726,-3.156,48.951,11.915,-4.349,47.763,11.46,-3.957,48.28,9.302,-4.114,47.053,9.212,-4.332,46.951,11.728,-4.096,46.191,9.497,-3.94,45.205,10.999,-4.134,44.872,10.809,-4.317,45.811,9.281,-4.429,44.751,9.477,-4.545,44.74,9.356,-4.44,45.8,9.152,-6.805,45.307,9.732,-6.968,45.891,9.566,-4.603,46.385,8.986,-7.145,46.502,9.71,-5.182,46.269,8.526,-6.906,46.349,9.017,-7.157,45.667,10.287,-7.334,46.277,10.431,-6.601,46.416,12.306,-8.056,47.582,12.915,-8.968,47.586,11.114,-9.074,47.54,13.294,-7.396,47.958,14.316,-8.333,47.962,14.867,-6.848,48.754,16.052,-7.332,48.812,16.62,-8.817,48.02,15.436,-9.264,48.458,16.792,-11.392,47.578,16.377,-10.946,47.139,15.021,-12.449,47.608,16.61,-11.298,48.75,17.095,-12.365,48.653,17.25,-11.814,48.82,17.488,-13.082,48.382,19.444,-13.495,48.262,18.992,-13.532,47.871,20.288,-13.693,47.74,20.243,-13.647,48.137,18.949,-14.679,47.607,20.585,-15.175,47.085,20.077,-14.088,47.672,18.497,-15.764,46.925,19.912,-15.29,47.291,20.271,-15.872,47.119,20.094,-16.336,47.497,20.224,-15.254,47.579,20.599,-16.302,47.766,20.53,-16.284,48.203,20.914,-14.807,47.741,22.414,-15.891,48.346,22.509,-15.017,47.886,23.812,-13.707,47.059,22.686,-13.982,47.244,24.068,-12.778,47.224,22.221,-12.744,47.175,22.244,-13.947,47.195,24.092,-13.572,46.615,23.218,-11.703,48.561,20.387,-12.234,48.04,21.175,-10.912,48.277,21.51,-10.254,48.707,19.556,-9.639,48.406,20.78,-9.738,48.637,19.163,-9.516,48.539,19.137,-9.444,48.319,20.758,-7.81,49.157,19.244,-7.133,48.78,19.77,-8.777,47.948,21.277,-7.759,47.3,20.877,-8.123,46.162,22.33,-9.096,46.948,22.554,-8.375,45.4,23.093,-9.188,45.103,23.316,-9.898,46.654,22.774,-10.639,44.987,23.852,-7.652,46.016,22.358,-7.956,45.271,23.118,-6.928,45.396,22.865,-6.722,43.773,23.596,-7.773,43.825,23.769,-7.817,42.486,25.301,-9.02,42.842,25.519,-8.844,44.142,23.963,-10.274,43.971,24.536,-6.581,43.67,23.609,-7.676,42.383,25.313,-6.21,42.256,24.471,-5.876,41.946,25.054,-7.296,42.03,25.977,-4.971,42.042,26.035,-4.973,42.027,26.109,-7.298,42.016,26.052,-6.166,42.548,27.638,-6.969,43.1,28.035,-8.122,42.582,26.46,-7.427,44.169,28.301,-5.951,43.494,28.143,-6.382,44.574,28.413,-5.782,44.812,28.522,-6.14,45.703,28.548,-6.741,45.465,28.439,-5.742,46.676,28.272,-5.994,46.901,28.343,-7.028,45.721,28.52,-6.395,46.615,28.654,-6.502,46.686,28.693,-7.142,45.797,28.561,-7.987,47.472,28.056,-9.117,47.021,28.241,-8.428,45.283,28.772,-9.242,46.772,28.701,-9.532,46.627,28.97,-8.718,45.138,29.041,-9.867,46.38,29.314,-10.432,48.589,31.218,-10.658,48.103,31.289,-10.121,48.982,31.632,-8.657,47.646,32.036,-9.372,46.93,31.643,-7.852,46.952,31.99,-7.82,46.677,31.858,-9.342,46.673,31.52,-8.12,45.472,31.553,-7.698,46.624,31.952,-7.99,45.415,31.652,-7.911,44.75,33.148,-7.189,46.834,32.386,-7.436,44.947,33.553,-6.281,46.374,34.021,-6.353,46.252,34.532,-7.499,44.84,34.003,-6.775,46.037,35.517,-6.271,46.978,34.734,-6.695,46.743,35.713,-6.848,48.207,34.017,-6.675,48.68,34.397,-6.504,47.267,36.134,-6.626,49.576,35.648,-6.69,49.676,36.15,-6.566,47.364,36.622,-6.896,49.794,36.753,-7.347,50.227,35.819,-7.552,50.345,36.422,-8.055,50.719,36.335,-6.747,52.995,38.541,-6.244,52.622,38.628,-6.419,54.244,38.639,-5.634,54.364,38.256,-5.35,52.759,38.193,-3.944,54.049,37.874,-3.272,53.279,37.672,-4.658,51.966,37.985,-2.734,52.966,37.662,-2.489,52.297,37.006,-4.406,51.277,37.311,-4.201,51.159,36.708,-4.857,49.976,36.716,-5.062,50.094,37.319,-3.727,47.745,37.131,-5.245,49.762,36.965,-4.118,47.795,36.816,-3.942,47.613,37.252,-5.283,49.957,37.443,-4.999,47.523,37.293,-4.309,48.374,36.251,-4.576,48.898,36.148,-4.322,50.064,35.776,-3.207,47.831,36.218,-3.769,48.005,35.295,-2.691,46.998,34.492,-2.159,46.852,35.437,-2.003,46.19,34.283,-1.493,45.618,34.67,-1.633,46.262,35.837,-0.63,45.014,34.847,-0.624,45.011,34.856,-1.628,46.259,35.846,-0.111,45.254,35.986,0.003,45.511,37.106,-1.501,46.544,37.085,-1.465,46.398,37.68,0.619,44.273,34.566,0.982,44.605,35.731,1.509,43.771,34.21,1.919,43.473,34.53,1.342,44.343,36.012,3.216,43.456,35.704,2.883,42.772,33.455,4.18,42.755,34.629,4.361,42.018,32.891,4.734,42.018,32.928,4.563,42.755,34.668,5.337,42.076,33.038,5.595,42.124,33.14,4.829,42.805,34.772,5.436,43.006,34.933,5.84,42.16,33.144,5.671,43.041,34.938,6.204,42.815,34.75,6.326,43.028,34.848,5.788,43.246,35.032,7.141,44.425,33.301,6.379,42.836,34.702,7.193,44.232,33.155,6.014,42.181,33.096,5.898,42.259,32.681,7.077,44.311,32.739,6.534,44.363,31.787,6.448,44.558,31.847,6.993,44.501,32.798,6.676,44.865,32.4,6.645,45.295,32.801,6.961,44.948,33.215,6.378,45.822,33.035,6.346,45.358,32.286,6.067,45.888,32.499,6.094,45.086,31.725,5.934,45.252,31.548,5.911,46.05,32.327,3.96,45.473,31.267,3.607,46.448,31.401,5.568,46.997,32.458,4.213,48.091,31.847,4.22,48.14,31.922,5.574,47.045,32.531,3.952,48.356,32.502,4.126,48.589,33.03,5.756,47.288,33.081,5.911,47.506,33.649,4.15,48.755,33.251,5.936,47.68,33.879,4.272,49.105,34.258,4.497,49.206,34.849,6.154,47.778,34.453,4.961,49.31,35.304,5.716,49.517,35.972,6.887,47.979,35.102,7.535,47.787,35.988,7.337,48.803,35.586,6.824,49.319,35.568,6.409,50.216,36.242,8.153,48.41,36.229,8.591,50.31,36.543,10.572,49.794,36.541,10.027,47.922,36.227,11.919,47.467,36.332,11.922,47.79,35.897,10.802,49.707,36.092,10.9,49.989,36.508,12.268,47.674,36.297,12.35,48.053,35.788,11.618,48.953,35.336,11.27,49.419,35.521,11.265,50.357,36.267,12.737,48.444,35.532,11.451,50.38,35.677,11.464,50.39,35.668,12.751,48.454,35.522,11.952,50.638,35.466,12.386,50.799,35.233,13.246,48.638,35.257,14.032,50.019,34.598,12.788,51.891,35.047,14.476,51.226,34.393,13.795,52.089,34.07,14.573,52.528,33.549,15.279,51.679,33.855,15.039,52.107,33.442,15.857,51.855,32.637,16.13,51.417,33.016,16.632,51.66,31.888,16.751,51.538,31.915,16.249,51.295,33.043,16.957,51.075,32.275,16.965,51.066,32.285,16.257,51.286,33.053,16.711,50.951,32.844,17.801,50.109,32.469,17.547,49.994,33.027,19.295,49.233,32.94,18.932,48.307,33.742,17.184,49.068,33.83,18.46,47.905,33.777,18.203,50.161,31.293,19.697,49.286,31.764,20.113,50.024,30.093,18.001,50.499,30.937,19.906,50.372,29.727,17.795,50.962,30.577,17.585,51.245,29.869,19.689,50.663,28.998,19.059,50.929,28.189,20.871,50.45,26.354,21.615,50.154,27.049,21.224,49.967,26.557,21.258,49.92,26.548,21.649,50.108,27.04,23.267,51.074,25.061,22.047,49.992,27.101,23.477,50.865,25.322,23.251,50.76,24.974,21.392,49.675,26.344,21.211,49.93,26.492,23.223,51.083,25.008,20.859,50.415,26.293,23.066,51.083,24.833,20.791,50.44,26.07,20.627,50.518,25.92,22.991,51.186,24.635,20.396,50.492,25.354,22.942,51.072,24.486,20.414,50.396,25.188,20.345,50.567,25.243,22.94,51.262,24.524,21.208,50.871,23.598,21.206,51.615,23.308,22.938,51.962,24.251,20.345,52.845,24.051,22.883,52.034,23.944,20.464,52.854,23.776,20.418,53.049,23.999,23.016,52.18,24.195,22.691,52.628,23.286,24.673,53.488,23.0,24.998,53.041,23.91,26.429,53.676,23.094,24.666,53.784,22.483,26.421,53.981,22.56,26.736,54.502,22.628,29.65,52.83,21.92,29.335,52.31,21.852,29.908,53.099,21.431,29.904,53.096,21.421,29.331,52.307,21.841,29.271,52.051,21.273,29.906,53.096,21.411,29.273,52.051,21.264,29.845,52.845,20.847,29.853,52.8,20.771,29.28,52.006,21.188,30.503,51.72,19.996,30.154,53.053,20.669,30.796,51.966,19.896,31.862,51.854,20.044,30.227,53.158,20.666,31.937,51.962,20.042,30.288,53.409,21.23,30.619,54.06,20.904,32.277,52.631,19.706,30.558,53.808,20.34,30.381,54.202,19.164,32.095,53.037,18.496,31.015,53.079,18.439,31.019,53.078,18.353,32.099,53.036,18.405,32.9,53.992,17.921,33.643,53.875,18.92,32.842,52.919,19.404,33.648,52.993,20.382,33.086,51.566,21.162,32.202,51.295,20.291,32.996,51.017,20.978,33.357,51.404,21.554,33.284,50.846,21.395,33.454,50.159,22.31,35.135,51.853,21.901,35.359,50.641,22.682,35.601,50.897,22.136,36.442,48.419,21.724,36.151,48.308,22.294,36.459,47.889,21.334,36.337,50.121,19.407,36.354,49.592,19.017,36.071,51.175,17.716,36.23,50.869,19.89,35.965,51.923,18.198,35.76,51.297,19.668,35.714,51.428,19.718,35.915,52.064,18.252,35.915,52.691,18.457,36.451,53.14,17.087,36.452,52.512,16.882,36.62,52.473,16.251,35.705,51.466,19.755,35.906,52.732,18.497,35.636,51.989,20.01,35.769,51.418,19.873,35.696,51.943,20.122,36.239,50.999,20.11,29.531,54.203,18.392,30.192,53.08,17.691,29.187,53.447,17.705,27.213,54.409,19.467,26.801,53.659,18.812,26.946,53.845,19.409,26.647,53.431,19.628,26.481,53.216,19.048,26.329,53.184,20.113,26.12,52.769,20.074,26.265,52.789,19.007,24.432,52.858,20.625,24.377,52.022,20.612,26.207,51.9,18.993,26.063,51.906,20.06,26.415,53.571,20.89,24.719,53.635,21.415,26.476,53.827,21.457,26.434,54.035,22.099,24.678,53.836,22.036,26.749,54.555,22.167,26.687,53.977,21.372,27.002,54.497,21.44,27.199,54.514,20.387,27.2,54.515,20.387,27.002,54.498,21.44,27.26,54.767,20.951,26.686,53.974,21.369,27.198,54.511,20.385,26.625,53.717,20.801,26.549,53.588,20.449,27.122,54.381,20.033,26.858,53.818,19.951,20.309,53.851,23.242,22.575,53.487,22.474,20.967,53.305,22.096,21.098,53.498,21.483,22.698,53.668,21.897,20.655,55.296,21.132,22.488,53.509,21.602,20.66,54.986,20.931,20.776,55.25,20.698,22.828,53.618,21.432,21.236,53.444,20.989,21.619,52.536,20.089,23.188,52.762,20.585,21.453,52.366,19.505,21.6,51.357,19.612,23.343,51.696,20.698,21.982,50.857,20.5,21.51,51.114,19.508,21.881,50.585,20.384,21.963,49.516,18.899,19.809,51.226,18.373,20.053,49.642,17.624,18.244,50.346,17.639,18.189,50.209,17.447,19.998,49.505,17.432,18.241,49.71,16.843,18.326,49.48,16.505,20.086,49.269,17.085,19.541,48.982,15.361,18.019,49.641,16.098,19.26,49.13,14.988,17.641,50.723,15.056,17.693,50.783,14.877,19.307,49.183,14.829,18.816,49.701,14.006,17.537,51.485,13.776,18.664,50.383,12.936,17.483,52.27,13.056,17.268,52.19,12.096,18.456,50.305,12.003,17.997,50.277,11.577,18.444,49.969,11.117,18.902,49.996,11.542,19.561,49.924,9.951,17.441,49.369,10.079,18.654,49.382,9.013,17.242,48.595,8.802,17.03,49.365,10.144,16.844,48.591,8.865,16.171,48.89,9.667,16.158,48.889,9.656,16.831,48.59,8.854,15.3,50.27,8.655,16.156,48.905,9.679,15.299,50.284,8.676,17.016,49.38,10.156,16.667,49.942,10.877,14.98,50.799,9.337,15.899,51.845,11.375,14.788,52.919,11.261,13.99,51.756,9.236,12.835,52.815,9.411,12.321,52.586,7.558,13.468,51.524,7.357,12.165,51.421,6.757,12.329,51.071,6.471,13.624,51.193,7.087,13.203,50.411,5.622,12.242,51.092,6.365,13.122,50.431,5.523,12.7,51.512,4.378,12.099,51.254,6.367,12.548,51.685,4.38,11.972,51.728,4.713,11.716,52.489,4.262,12.273,52.5,3.897,11.329,52.937,4.24,11.302,53.166,3.906,12.242,52.761,3.516,12.153,53.197,3.027,12.631,53.134,2.884,12.72,52.698,3.373,13.815,53.622,2.652,12.056,53.982,1.582,13.255,54.448,1.384,12.559,54.095,1.15,11.304,52.203,4.873,10.941,52.667,4.815,11.63,52.877,7.345,10.618,52.449,5.237,11.148,52.61,7.182,11.448,53.059,7.379,10.759,52.849,4.85,9.946,53.612,5.896,10.881,53.896,8.31,9.34,54.509,6.894,9.647,54.522,9.052,11.585,54.093,9.191,10.448,54.747,10.054,11.342,54.301,10.412,11.152,54.658,11.333,10.258,55.105,10.975,10.566,54.868,11.511,10.247,55.055,11.777,9.939,55.291,11.24,9.361,56.042,11.906,8.125,56.294,10.548,8.702,55.543,9.883,7.995,55.753,10.045,6.114,54.499,12.694,6.036,54.004,12.136,6.056,52.829,13.504,5.974,52.464,13.189,5.956,53.648,11.829,4.955,52.259,11.358,5.708,51.968,13.38,4.722,51.823,11.526,5.064,51.06,13.399,4.617,50.518,13.258,4.281,51.289,11.386,2.384,50.892,13.303,3.97,51.242,11.24,2.238,50.88,12.982,1.951,50.733,12.841,3.855,51.133,10.93,2.265,49.754,12.474,4.0,50.529,11.201,2.943,49.561,12.257,2.252,49.737,12.445,3.843,51.117,10.904,2.063,49.981,10.644,2.226,49.751,12.449,2.037,49.995,10.648,1.915,50.73,12.818,0.314,50.308,12.929,0.29,49.535,10.769,0.479,49.291,12.57,0.474,49.282,12.57,0.284,49.526,10.769,-1.008,48.653,11.83,0.467,49.285,12.582,-1.015,48.655,11.842,0.303,50.303,12.939,0.246,50.322,12.979,-1.078,48.677,11.887,-1.18,49.154,12.905,-1.477,49.228,12.842,-1.384,48.753,11.822,-1.717,48.96,12.344,-2.509,48.853,11.936,-2.233,48.639,11.384,-3.137,48.964,11.939,-2.447,49.167,12.558,-3.074,49.281,12.566,-2.237,49.444,13.064,-2.281,49.478,13.126,-3.116,49.313,12.626,-3.243,49.617,13.121,-5.345,48.712,12.971,-5.152,48.436,12.48,-6.756,47.849,12.831,-6.247,46.173,12.606,-4.614,46.664,12.242,-4.203,44.938,11.479,-4.259,44.949,12.031,-5.858,45.915,12.917,-6.268,46.139,12.606,-4.223,44.904,11.479,-5.822,44.27,11.508,-5.788,44.154,10.859,-4.189,44.788,10.829,-4.488,44.662,9.499,-5.85,44.146,10.797,-4.554,44.653,9.433,-6.815,45.214,9.813,-6.127,44.326,11.289,-7.13,45.419,10.373,-6.576,46.195,12.383,-5.69,48.93,14.429,-7.073,48.049,14.167,-6.485,48.856,15.885,-4.326,49.768,15.184,-5.081,49.719,16.662,-3.811,49.805,15.481,-2.878,49.115,16.376,-4.089,48.986,17.614,-2.098,50.043,18.801,-3.714,49.297,18.739,-3.202,49.568,19.045,-2.95,50.364,19.944,-4.94,49.306,18.756,-3.998,48.771,19.625,-4.092,48.739,19.709,-5.047,49.271,18.852,-5.55,49.494,19.142,-7.6,49.264,17.352,-7.349,49.012,16.841,-9.281,48.659,17.013,-4.624,48.15,20.303,-6.089,48.896,19.744,-5.89,47.819,20.215,-6.91,47.681,20.268,-7.054,48.765,19.794,-7.67,47.283,20.904,-5.966,46.905,20.822,-6.667,46.458,21.492,-5.943,45.838,22.0,-5.629,46.816,20.731,-5.585,45.744,21.903,-4.38,47.213,20.784,-3.733,46.741,20.822,-4.848,45.207,21.946,-3.112,44.952,21.638,-3.064,44.716,22.105,-4.8,44.971,22.414,-3.344,44.626,23.72,-4.643,43.488,24.917,-6.137,43.8,23.646,-5.819,42.371,24.504,-4.557,43.22,25.363,-5.741,42.129,24.907,-4.818,42.25,25.868,-4.365,43.369,25.743,-4.621,42.403,26.259,-5.823,42.914,27.783,-4.824,42.683,27.463,-4.265,42.858,26.681,-3.454,43.511,26.426,-4.91,43.057,28.467,-3.683,42.549,26.961,-3.21,41.801,27.608,-4.449,42.328,29.098,-4.11,41.821,29.617,-4.207,42.343,30.175,-4.543,42.836,29.641,-4.336,44.136,30.059,-4.161,42.369,30.537,-4.291,44.163,30.421,-3.69,44.342,31.301,-3.572,44.526,31.186,-4.165,44.361,30.297,-3.193,44.894,30.926,-3.174,45.865,30.232,-4.143,45.467,29.507,-3.987,46.468,29.114,-3.465,47.51,31.331,-4.278,48.113,30.213,-4.755,49.211,31.534,-4.779,49.355,31.404,-4.3,48.249,30.091,-4.588,49.928,31.295,-4.945,50.384,30.549,-4.633,48.675,29.395,-5.339,49.515,30.063,-6.614,49.042,29.05,-5.754,48.259,28.505,-7.646,48.764,28.181,-7.953,47.522,28.039,-6.061,47.018,28.362,-6.466,46.739,28.675,-7.156,49.887,29.346,-8.121,49.507,28.442,-7.798,49.995,29.343,-8.917,50.271,29.504,-9.104,49.749,28.583,-9.228,49.877,29.09,-7.058,50.483,29.96,-7.7,50.591,29.958,-6.563,51.295,30.453,-7.109,51.671,31.239,-8.281,50.991,30.793,-7.55,52.847,31.872,-7.862,52.284,33.191,-8.635,50.349,32.294,-7.559,51.874,33.477,-7.366,51.559,33.714,-8.428,50.012,32.548,-7.416,50.17,32.986,-7.423,49.981,33.074,-8.436,49.809,32.642,-7.282,49.685,33.553,-7.15,48.125,33.363,-8.285,48.032,32.426,-7.503,47.315,32.357,-6.867,47.893,33.456,-7.2,47.067,32.456,-6.293,46.621,34.096,-7.403,50.009,33.086,-7.263,49.712,33.564,-7.296,50.75,34.7,-7.398,50.152,33.019,-7.291,50.903,34.629,-7.349,51.541,33.747,-7.486,51.773,33.92,-7.438,51.151,34.814,-8.147,51.643,35.33,-7.516,51.822,33.91,-8.179,51.696,35.32,-7.973,52.105,34.859,-8.364,54.299,36.632,-8.57,53.89,37.093,-8.02,55.03,37.366,-8.262,54.631,36.274,-7.931,55.322,37.052,-7.91,55.137,36.525,-5.912,56.291,36.685,-6.124,56.365,37.196,-4.498,56.851,36.889,-3.864,55.004,38.187,-5.55,54.695,38.369,-3.852,54.415,37.999,-2.638,54.977,38.346,-2.626,54.388,38.157,-2.113,55.254,38.526,-2.111,55.253,38.525,-2.624,54.387,38.156,-1.577,54.937,38.515,-1.574,54.933,38.513,-2.621,54.382,38.155,-2.083,54.07,38.145,-1.246,54.723,38.552,-1.755,53.86,38.183,-1.204,54.144,38.3,-0.893,53.616,38.189,-1.431,53.31,38.068,-0.355,53.242,38.256,-0.133,52.11,36.142,-1.216,52.21,36.013,0.103,52.041,35.532,-0.113,52.301,34.865,-1.425,52.463,35.365,-2.024,52.243,33.882,-2.843,52.025,34.253,-2.221,52.252,35.725,-3.925,51.113,35.389,-2.919,51.833,34.026,-4.001,50.921,35.163,-3.741,51.086,33.959,-4.092,50.404,33.789,-4.352,50.239,34.993,-3.799,48.18,34.513,-4.085,50.101,32.855,-3.793,47.877,33.579,-4.671,48.996,33.002,-4.701,48.9,32.857,-3.827,47.768,33.414,-3.395,47.45,32.084,-2.537,46.789,32.453,-2.85,47.016,33.833,-2.153,46.207,33.663,-2.146,46.353,32.105,-1.734,45.74,33.29,-0.566,45.241,32.351,-0.183,45.075,32.932,-1.373,45.583,33.837,-0.502,44.977,33.963,0.858,44.469,33.197,0.539,44.371,34.228,1.429,43.869,33.871,1.425,44.271,32.542,1.995,43.671,33.216,2.711,45.294,31.597,3.278,44.602,31.154,2.561,42.98,32.774,3.81,42.392,31.676,4.027,42.257,31.993,2.784,42.84,33.1,4.265,42.084,32.547,4.584,42.293,31.765,4.822,42.121,32.319,5.566,42.575,31.454,5.577,42.574,31.463,4.833,42.119,32.328,5.436,42.177,32.437,5.841,42.639,31.528,5.7,42.243,32.502,6.33,44.346,31.603,5.583,42.723,31.283,6.065,44.432,31.351,4.986,42.669,31.159,4.833,42.78,30.993,5.908,44.546,31.18,3.934,44.767,30.899,4.61,42.683,31.089,3.704,44.667,30.998,4.224,42.455,31.523,4.965,42.527,31.322,4.579,42.298,31.756,5.562,42.58,31.446,1.059,42.995,30.665,2.346,44.018,29.719,2.904,41.825,30.281,3.02,41.812,30.118,2.464,44.005,29.551,3.405,42.04,29.683,3.407,42.041,29.676,2.466,44.006,29.543,3.019,42.776,28.234,2.594,43.044,27.803,2.041,44.274,29.112,1.714,44.186,27.739,1.005,45.985,27.602,1.234,46.322,28.957,1.429,46.724,28.473,1.727,47.581,29.303,1.531,47.179,29.788,1.931,48.384,29.949,2.003,48.284,30.604,1.607,47.073,30.484,1.613,48.731,31.747,3.179,48.204,32.621,3.389,46.474,31.478,3.743,48.334,32.504,3.851,48.336,32.464,3.505,46.476,31.435,4.111,48.119,31.881,3.215,48.562,33.375,3.782,48.714,33.305,3.877,49.06,34.316,1.67,49.665,33.609,2.119,50.316,34.582,1.46,51.052,34.993,2.333,51.177,36.37,3.046,50.449,36.045,3.51,50.553,36.5,3.195,53.053,36.532,4.426,52.546,36.672,3.527,54.333,36.483,3.677,54.406,36.455,4.586,52.623,36.642,4.865,54.807,36.853,5.044,54.777,36.932,4.786,52.59,36.731,5.702,53.117,36.891,7.202,50.999,36.606,6.379,50.34,36.428,8.563,50.426,36.718,8.053,53.109,37.048,9.414,52.537,37.16,8.715,54.327,36.759,9.754,54.555,35.823,10.512,52.777,36.171,11.237,52.888,35.385,11.952,50.648,35.479,11.278,50.378,36.272,11.464,50.401,35.682,9.79,54.611,35.732,11.272,52.943,35.294,10.113,54.972,35.334,10.319,55.091,35.063,11.453,53.048,35.056,11.016,54.301,34.128,11.659,54.196,33.684,12.096,52.943,34.612,13.054,53.216,33.603,11.825,54.464,33.375,13.232,53.504,33.272,13.186,53.925,32.804,14.785,53.359,32.246,14.781,52.956,32.731,15.245,52.532,32.632,14.856,53.343,32.127,15.313,52.516,32.517,15.573,52.646,31.925,16.103,52.026,32.02,15.844,51.895,32.613,16.618,51.701,31.863,16.102,52.64,30.945,16.616,52.341,30.744,15.932,53.442,30.106,16.272,52.899,28.851,16.946,51.814,29.524,17.081,51.784,27.837,17.384,51.479,27.862,17.276,51.481,29.551,18.76,51.157,27.881,17.447,51.742,27.513,18.826,51.436,27.513,18.262,52.017,26.828,19.981,51.458,25.194,20.443,50.91,25.976,20.214,50.88,25.408,19.985,51.384,24.996,20.218,50.81,25.223,21.071,51.132,23.577,19.934,51.631,24.913,21.021,51.379,23.494,20.182,52.638,24.214,17.413,52.936,25.192,17.967,53.784,24.459,16.786,52.842,25.358,16.478,52.672,24.742,17.697,53.635,23.918,15.291,53.083,23.821,15.285,53.156,23.582,17.692,53.699,23.708,17.443,53.256,23.428,17.52,53.411,23.127,17.765,53.845,23.424,16.82,54.021,21.856,16.869,54.124,21.838,17.81,53.941,23.408,16.782,55.234,21.94,17.291,55.866,22.17,18.257,54.497,23.61,17.913,56.082,22.29,19.543,56.181,22.108,19.689,54.583,23.45,19.92,55.86,21.879,20.366,55.304,21.493,20.136,54.027,23.064,20.77,53.506,21.893,19.175,56.08,18.947,19.597,55.771,19.103,18.53,55.321,18.465,18.721,54.488,18.816,19.764,55.039,19.411,19.273,53.849,19.472,19.284,53.845,19.477,19.773,55.036,19.416,20.096,52.959,19.007,20.778,52.984,19.428,20.446,55.06,19.832,20.86,53.229,20.002,19.268,53.837,19.465,20.081,52.951,18.995,18.715,54.476,18.809,18.242,53.978,18.392,19.66,52.508,18.624,17.764,53.263,17.504,17.591,52.55,17.313,19.485,51.785,18.43,17.879,50.973,17.703,17.425,52.435,16.943,17.69,50.843,17.282,17.37,51.428,15.657,17.491,51.111,15.519,17.81,50.527,17.145,17.872,50.019,16.548,17.189,53.375,16.29,17.102,52.498,14.914,17.048,53.283,14.194,16.698,54.043,16.317,16.488,54.043,14.224,15.66,54.665,15.109,14.103,55.081,13.715,14.715,54.517,12.637,13.441,54.402,12.742,13.382,53.545,11.663,14.653,53.606,11.49,12.631,53.532,10.893,12.698,53.095,10.718,14.72,53.169,11.316,12.776,53.034,9.459,14.288,52.884,11.439,12.692,52.8,9.861,12.191,54.412,12.965,11.366,54.454,12.276,10.78,54.664,12.455,11.643,53.325,14.115,10.198,53.509,13.676,11.164,53.002,13.903,10.967,52.64,13.96,9.988,53.122,13.737,9.044,52.44,14.675,8.333,53.262,14.558,9.277,53.944,13.62,8.391,54.932,13.749,11.023,52.415,14.043,9.104,52.198,14.764,10.903,51.865,14.191,10.892,51.468,14.364,9.091,51.746,14.961,11.349,51.054,16.224,9.185,51.193,15.075,11.025,50.68,16.098,11.189,50.982,16.475,8.91,51.664,15.247,9.598,50.871,17.189,8.511,51.417,17.798,7.822,52.211,15.855,6.723,52.661,17.252,4.619,52.481,15.801,5.587,52.02,14.313,4.956,51.106,14.23,4.34,52.182,15.999,4.692,50.822,14.418,2.458,51.196,14.463,2.387,51.302,15.092,3.726,52.009,16.213,3.641,52.552,16.601,1.797,51.547,15.032,2.863,52.169,17.261,1.976,51.078,15.806,2.471,51.335,16.862,2.278,52.02,17.571,1.276,51.414,15.309,1.367,50.776,16.189,-0.073,50.099,15.718,-0.045,50.793,14.877,-2.003,49.844,15.275,-2.238,50.012,14.469,-0.267,50.953,14.115,-1.74,49.842,14.144,-2.736,49.854,13.822,-2.253,49.679,13.477,-3.216,49.818,13.472,-0.157,49.886,16.196,-2.085,49.637,15.738,-0.709,49.935,17.597,-1.154,49.822,17.951,-2.562,49.517,16.117,-1.763,50.47,18.525,-2.415,49.185,16.416,-1.729,49.976,18.475,-0.199,50.538,17.985,-0.676,51.284,18.564,-0.142,50.932,18.409,0.261,51.323,18.799,-0.244,51.703,18.982,1.721,52.209,18.439,1.719,52.266,18.485,-0.246,51.76,19.028,-0.084,52.95,19.348,-1.995,53.183,20.573,-2.422,52.026,20.422,-2.098,52.835,21.033,-2.211,52.608,21.405,-2.544,51.783,20.821,-2.748,53.079,22.229,-2.767,53.034,22.268,-2.563,51.738,20.859,-2.359,51.965,21.415,-0.792,49.779,22.172,-0.898,49.416,21.663,0.075,47.492,23.273,-0.383,49.185,21.532,0.388,47.646,22.827,0.02,47.356,23.143,-0.955,49.276,21.531,-0.002,47.108,22.392,-0.291,46.77,21.864,-1.245,48.938,21.002,-1.423,46.596,20.619,-1.617,46.613,20.603,-1.438,48.956,20.986,-2.67,47.534,20.541,-2.32,45.904,20.939,-3.288,46.911,20.836,-2.606,45.145,21.653,-1.846,45.881,21.104,-2.132,45.122,21.819,-0.714,46.056,22.349,-0.721,45.992,22.479,-2.139,45.059,21.95,-1.924,45.233,23.515,-2.733,44.938,23.674,-2.999,44.746,22.118,-3.281,44.655,23.732,-1.923,44.304,26.173,-2.444,44.0,26.312,-1.476,43.993,26.415,-1.493,43.608,26.545,-2.461,43.616,26.442,-1.685,43.07,26.711,-1.717,43.032,26.726,-2.494,43.576,26.457,-2.351,43.017,26.659,-2.839,42.905,26.717,-3.002,43.459,26.519,-3.219,42.495,27.057,-2.365,42.614,26.862,-2.71,42.184,27.212,-1.731,42.625,26.932,-1.162,41.51,26.991,-2.106,40.999,27.274,-0.146,40.423,27.484,-0.16,40.38,27.496,-2.12,40.956,27.286,-0.764,39.636,28.72,-1.641,39.106,29.074,-3.023,40.411,27.651,-2.117,38.709,29.003,-2.245,38.639,29.0,-3.155,40.338,27.647,-4.055,40.358,29.656,-3.821,39.474,29.994,-2.929,38.637,29.665,-2.132,38.702,29.145,-3.939,40.423,29.805,-1.656,39.098,29.216,-3.78,40.063,30.162,-1.882,38.968,29.663,-1.532,39.234,29.39,-3.811,40.563,29.985,-2.36,39.768,30.835,-2.207,40.552,31.308,-3.658,41.347,30.458,-1.381,42.359,31.054,-3.252,42.065,31.209,-2.431,42.43,31.424,-1.858,43.357,31.183,-4.135,42.344,30.586,-3.665,44.318,31.347,-1.757,43.579,31.011,-3.571,44.526,31.187,-3.192,44.893,30.927,-1.521,40.214,31.142,-0.694,42.022,30.888,-0.716,39.668,29.688,-0.204,41.483,31.011,-0.229,39.868,30.18,0.143,39.709,29.583,0.19,42.064,30.78,0.528,39.658,30.052,0.186,40.906,31.226,0.269,40.319,31.043,0.861,39.657,30.209,0.534,42.062,30.942,2.394,40.918,30.55,0.976,39.597,29.916,2.509,40.858,30.256,1.666,40.046,28.608,2.079,40.485,28.185,2.91,41.284,29.846,1.681,41.285,27.576,3.018,40.803,29.189,2.242,40.833,27.808,1.683,41.287,27.575,2.912,41.286,29.845,2.906,42.234,27.961,3.011,42.755,28.225,3.014,41.792,30.102,3.399,42.02,29.667,1.284,41.895,27.23,2.452,42.927,27.568,1.589,44.082,27.532,0.976,41.961,27.069,1.281,44.148,27.372,0.009,43.141,26.6,-0.733,44.759,25.938,0.61,45.61,26.773,-1.203,45.046,25.711,-1.189,45.086,25.666,0.623,45.647,26.731,0.079,46.117,25.454,0.981,47.15,25.523,1.436,46.579,26.793,1.92,47.4,27.551,1.674,47.452,25.159,2.632,47.71,27.178,3.427,48.649,25.585,3.873,49.338,26.193,3.106,48.442,27.824,3.517,48.828,28.155,3.414,48.857,28.25,2.996,48.474,27.926,3.37,50.275,28.523,3.236,50.278,28.6,2.863,48.476,28.002,3.0,49.227,28.724,2.346,50.57,30.2,2.163,49.502,30.231,1.763,49.868,31.399,2.46,51.343,30.755,1.863,50.546,31.887,2.026,52.171,32.235,1.664,52.043,33.0,1.501,50.419,32.651,1.624,51.716,33.484,1.554,51.423,33.94,1.435,50.143,33.08,1.208,51.564,34.426,1.534,51.482,33.908,1.188,51.623,34.394,0.698,52.028,34.326,0.475,51.848,35.698,0.978,51.453,35.686,0.239,51.918,36.308,2.491,53.646,37.27,3.098,53.08,36.592,3.429,54.361,36.543,2.431,53.882,37.421,3.372,54.583,36.685,3.711,55.394,37.621,3.917,55.393,37.546,3.566,54.583,36.614,4.76,54.973,37.003,5.475,57.391,37.77,6.148,56.753,37.202,5.815,57.282,37.218,5.942,57.362,37.047,6.262,56.824,37.05,7.438,57.507,36.545,7.812,56.83,36.564,6.595,56.221,37.067,8.042,55.778,36.746,7.787,54.878,36.838,6.34,55.321,37.158,7.072,53.691,37.131,8.708,56.963,36.454,8.84,55.897,36.648,9.047,56.415,36.364,9.287,57.811,33.495,9.625,57.263,33.404,9.512,57.02,32.799,10.198,56.276,32.969,10.312,56.518,33.574,11.01,55.554,32.82,9.388,55.358,31.466,10.298,54.748,31.5,9.703,54.765,31.488,9.722,53.829,31.414,10.315,53.867,31.431,9.753,52.761,31.218,9.971,52.653,31.226,10.506,53.771,31.438,11.727,53.158,30.662,9.977,52.597,31.196,11.733,53.104,30.632,9.89,51.993,30.309,9.964,51.915,30.154,11.81,53.024,30.472,11.784,52.851,29.054,12.434,53.924,28.928,12.441,54.066,30.349,12.881,54.194,29.326,15.119,54.256,30.38,14.616,54.127,31.374,15.002,53.916,30.941,15.283,53.271,31.468,14.909,53.455,31.923,15.624,52.754,31.729,15.728,53.187,30.721,16.069,52.671,30.981,15.897,53.475,30.145,12.641,54.205,28.505,13.089,54.474,28.903,12.867,54.945,27.756,15.055,54.242,26.654,15.578,53.673,27.649,16.531,52.745,26.155,17.034,52.411,26.683,16.081,53.34,28.177,16.911,52.177,27.237,17.215,52.339,26.696,17.073,52.112,27.248,17.842,52.433,26.53,14.737,54.253,25.796,16.169,52.758,25.178,14.982,53.169,24.258,14.441,54.589,25.524,14.646,53.55,23.949,13.963,54.152,24.47,13.476,54.37,23.582,14.159,53.768,23.06,13.338,54.244,22.515,13.504,54.101,22.14,14.325,53.626,22.685,15.687,55.428,21.384,15.085,53.547,22.214,15.843,54.55,21.489,16.359,55.217,21.796,14.997,53.415,23.097,16.056,53.713,21.762,16.138,53.656,21.813,15.09,53.349,23.155,16.561,54.047,21.758,16.721,53.902,21.853,15.262,53.194,23.257,17.421,53.292,23.124,16.084,53.708,21.771,16.504,54.102,21.713,16.391,55.21,21.806,15.296,55.089,20.938,13.708,54.123,21.488,13.139,54.445,21.688,15.322,55.771,20.932,14.774,55.145,20.246,15.995,56.107,18.064,16.619,56.794,18.613,16.597,56.252,18.251,17.647,56.189,18.281,17.669,56.732,18.643,18.291,56.948,18.763,17.738,58.065,19.624,17.115,57.849,19.504,17.88,58.489,19.918,17.684,57.881,22.034,16.892,57.157,21.912,17.515,57.373,22.032,16.251,55.508,17.593,16.87,55.615,17.751,16.155,55.101,17.15,16.419,54.826,17.061,17.153,55.321,17.655,16.808,54.443,16.857,16.171,54.72,16.765,16.574,54.343,16.578,15.536,54.965,15.371,15.564,55.268,17.121,14.965,55.481,15.705,15.656,55.677,17.563,15.44,55.752,17.635,14.764,55.551,15.772,14.727,55.388,16.968,12.649,54.563,16.527,12.938,54.826,15.385,12.708,54.305,15.514,12.632,54.226,14.994,12.867,54.752,14.896,12.117,54.05,14.007,12.341,53.507,15.277,11.824,53.325,14.293,12.118,53.105,14.808,12.011,52.88,14.77,11.723,53.114,14.257,11.242,52.792,14.044,11.965,52.457,14.861,11.2,52.397,14.129,11.07,51.849,14.272,12.011,52.286,14.964,11.11,51.699,14.362,11.566,51.284,16.222,12.071,52.394,15.072,11.619,51.378,16.317,12.226,52.623,16.089,12.186,52.729,16.602,11.582,51.477,16.795,11.849,52.895,17.626,11.69,52.754,17.909,11.442,51.353,17.045,9.886,51.293,17.838,11.43,53.014,19.161,9.626,51.553,19.089,10.867,52.931,20.563,10.295,52.686,21.274,9.054,51.308,19.8,9.134,51.024,20.825,8.608,50.924,20.838,8.528,51.207,19.814,7.071,51.918,21.517,6.946,51.967,21.389,8.403,51.257,19.686,6.694,52.775,19.987,6.713,53.069,18.902,8.424,51.591,18.451,6.642,52.825,17.867,5.981,54.294,18.735,5.858,54.137,17.687,5.209,55.831,18.057,5.106,55.909,17.492,5.762,54.21,17.156,5.164,56.235,16.926,3.464,55.651,16.211,4.062,53.626,16.441,3.3,55.289,16.733,2.815,54.957,17.291,3.605,53.314,16.966,2.825,52.979,17.65,2.153,55.144,18.342,2.163,53.166,18.701,1.753,54.856,19.531,1.726,54.834,19.562,2.136,53.144,18.731,0.282,53.721,19.564,0.646,55.998,20.928,-0.667,54.744,20.765,-0.093,55.247,21.769,-0.368,55.172,21.959,-0.923,54.675,20.942,-1.405,55.02,22.251,-2.629,53.571,22.012,-1.998,53.402,20.733,-2.101,53.067,21.203,-0.135,55.628,22.903,-1.158,55.504,23.254,-1.071,55.747,23.846,-1.424,55.804,23.874,-1.511,55.561,23.282,-1.739,56.129,24.159,-3.35,54.908,24.897,-3.345,54.171,24.122,-3.258,54.414,24.714,-1.49,52.423,25.27,-1.577,52.18,24.678,-1.09,52.356,25.623,-0.843,52.308,25.51,-1.296,52.125,24.55,-0.744,51.893,24.289,-1.082,51.654,23.789,-1.633,51.887,24.05,-1.292,50.885,23.092,0.628,51.558,23.243,0.318,50.795,22.579,1.794,51.539,22.845,1.821,51.505,22.795,0.346,50.758,22.525,1.327,50.235,21.949,1.016,49.734,21.874,0.035,50.256,22.451,1.351,48.528,22.228,1.295,48.486,22.231,-0.021,50.214,22.454,0.874,47.942,23.565,-0.266,49.747,22.314,0.445,47.91,23.201,1.931,48.483,22.426,1.531,47.939,23.766,3.179,48.781,23.715,3.212,48.753,24.305,1.564,47.911,24.357,3.32,49.093,24.809,3.569,49.394,23.821,3.666,49.714,24.34,2.424,51.548,23.005,3.958,50.325,23.995,3.13,51.504,23.133,2.599,51.931,23.361,3.853,50.124,24.721,4.077,51.291,23.688,4.597,51.633,24.205,4.342,50.446,25.208,4.954,51.996,24.576,5.594,51.955,25.128,4.944,50.407,25.728,5.849,51.748,27.406,5.624,51.571,27.668,4.72,50.231,25.99,4.379,51.192,28.206,3.525,50.295,28.443,3.916,49.386,26.213,3.559,48.876,28.176,5.52,52.316,27.916,4.268,51.983,28.469,3.678,53.498,28.24,2.041,53.292,30.198,2.529,51.764,30.55,2.086,52.54,32.055,1.815,53.737,30.389,1.875,52.956,32.233,-0.408,53.532,31.655,-0.767,52.78,32.466,1.559,52.295,32.946,0.676,52.566,33.81,0.736,52.373,33.928,1.612,52.125,33.05,1.569,51.803,33.537,-1.281,52.564,32.984,0.162,52.35,34.328,-1.749,52.292,33.345,-1.591,52.237,32.337,-2.059,51.965,32.697,-2.408,51.561,32.331,-3.11,51.288,33.303,-2.761,51.692,33.669,-3.582,50.944,33.602,-3.572,50.656,31.847,-4.045,50.313,32.145,-4.42,50.02,31.72,-4.446,49.97,31.776,-4.072,50.26,32.205,-4.637,49.397,31.881,-4.674,49.241,32.337,-4.111,50.092,32.693,-4.694,48.989,32.86,-4.688,49.16,32.298,-4.707,48.913,32.823,-3.402,47.462,32.05,-5.5,52.939,31.063,-6.234,52.168,30.982,-6.734,53.311,31.633,-4.886,54.109,31.885,-6.194,54.339,32.355,-4.537,54.513,32.252,-4.535,54.72,33.328,-6.193,54.521,33.301,-5.828,55.211,34.821,-6.966,55.336,34.995,-7.221,54.634,33.458,-7.29,54.836,34.699,-8.097,52.344,34.725,-7.93,52.445,33.481,-7.632,52.045,33.785,-4.048,54.958,33.675,-5.355,55.442,35.159,-3.941,56.003,35.363,-3.862,55.07,33.595,-3.761,56.112,35.285,-3.103,55.826,33.549,-2.038,56.703,33.824,-2.725,56.964,35.552,-2.201,57.241,35.732,-0.871,56.607,33.962,-1.068,57.147,35.866,0.366,56.606,34.336,0.392,56.617,34.356,-1.039,57.16,35.889,-0.505,56.844,35.878,0.891,56.716,34.624,0.047,56.954,36.174,1.86,57.303,35.11,2.003,57.429,35.396,0.186,57.077,36.452,2.065,57.742,36.414,2.587,56.244,38.389,0.692,55.621,38.371,1.306,54.732,38.188,-0.031,53.79,38.489,-0.608,54.706,38.663,-0.592,54.128,38.407,3.065,58.303,35.062,3.127,58.616,36.081,3.467,58.507,35.529,3.603,58.358,34.575,4.005,58.561,35.042,4.209,58.641,33.721,5.255,58.614,33.823,5.195,58.531,35.159,6.691,58.677,34.657,5.923,58.156,32.508,7.452,58.155,33.16,7.081,57.491,31.427,7.849,57.314,31.305,8.326,57.954,33.021,8.551,57.163,32.325,8.321,55.578,30.455,9.088,55.187,31.358,9.423,54.606,31.386,7.865,55.063,30.441,8.939,54.058,31.372,7.825,52.984,29.39,8.309,53.201,31.151,7.923,52.828,30.466,8.042,52.774,29.382,9.154,53.85,31.364,8.532,52.662,29.049,8.897,53.377,31.381,8.393,52.415,29.507,8.563,52.644,29.05,9.185,53.832,31.365,9.179,52.764,31.165,8.621,52.626,29.034,9.24,52.745,31.148,9.196,52.132,30.265,9.234,52.358,28.637,9.815,51.862,29.865,11.625,52.795,28.748,9.22,52.456,28.543,11.611,52.9,28.646,9.357,52.808,28.091,9.463,53.279,27.514,11.731,53.436,27.99,11.759,53.737,27.402,12.353,54.354,27.697,12.367,54.097,28.306,12.627,54.851,27.581,12.049,54.403,27.062,12.341,54.897,26.984,10.884,55.273,25.887,11.092,55.694,25.761,12.535,55.29,26.866,10.868,57.014,26.105,12.325,55.825,26.003,11.753,56.432,25.707,11.785,57.387,25.101,13.341,55.617,25.984,11.955,56.044,24.816,12.161,55.841,24.503,13.533,55.427,25.692,12.929,55.107,24.661,12.081,55.589,23.512,12.844,54.839,23.609,12.706,54.713,22.542,11.197,55.766,22.825,11.767,54.901,21.811,10.701,56.696,22.553,10.403,56.6,22.358,11.469,54.805,21.616,9.948,55.48,21.702,8.898,53.621,21.439,10.274,52.689,21.316,9.113,51.028,20.867,9.058,51.216,21.448,8.892,53.256,21.846,8.681,53.596,21.474,8.866,51.0,20.907,8.217,52.119,22.126,7.991,52.053,22.069,8.612,50.925,20.843,7.075,51.92,21.522,7.99,52.058,22.07,7.074,51.925,21.523,7.414,52.897,21.69,7.29,52.962,21.569,6.95,51.99,21.401,6.697,52.795,19.998,7.369,53.187,21.512,6.766,52.993,19.948,8.418,53.79,21.263,7.753,55.217,21.232,6.102,54.42,19.918,6.613,54.811,21.477,6.442,54.881,21.515,5.952,54.481,19.95,5.451,55.181,21.202,5.397,55.216,21.161,5.902,54.513,19.912,5.077,56.319,20.462,5.035,56.399,20.122,5.865,54.583,19.613,5.076,56.161,19.057,5.104,57.082,19.973,5.145,56.844,18.907,5.023,57.304,19.359,4.928,57.941,18.685,5.05,57.481,18.233,5.11,57.715,17.623,1.886,57.912,17.895,2.248,57.687,16.879,2.008,57.452,17.443,1.476,56.814,18.901,1.598,56.354,18.449,1.199,56.065,19.639,1.516,57.933,20.051,1.239,57.185,20.789,1.597,57.711,20.665,2.389,57.534,22.202,2.03,57.008,22.326,2.189,56.686,22.872,1.592,56.293,22.815,1.433,56.615,22.268,0.648,55.827,23.031,2.385,55.022,24.047,1.394,54.63,24.19,3.288,54.73,24.89,3.282,54.586,24.927,1.388,54.476,24.231,0.699,54.201,25.611,0.542,54.493,25.593,1.219,54.788,24.212,0.368,54.855,25.237,0.852,53.908,25.365,3.115,54.245,24.766,3.365,53.936,24.877,0.782,53.552,25.561,2.046,53.638,23.993,1.979,53.355,23.925,0.719,53.285,25.496,1.034,53.005,24.273,2.029,53.118,23.815,1.088,52.751,24.156,2.198,52.586,23.646,2.274,53.193,23.813,2.429,52.657,23.644,3.58,53.517,24.707,3.896,53.241,24.589,2.745,52.38,23.526,4.244,51.802,23.875,4.156,53.189,24.832,4.54,51.743,24.152,4.897,52.107,24.522,4.781,53.506,25.406,5.609,52.467,25.176,5.863,52.23,27.451,6.119,52.729,27.21,5.272,53.687,25.645,5.357,54.248,25.549,6.48,53.025,27.604,7.251,53.237,26.907,8.037,53.61,27.811,7.322,53.425,28.572,7.395,55.475,29.678,6.895,55.519,29.637,6.786,53.472,28.528,5.705,55.328,29.302,5.039,55.073,28.96,6.159,53.232,28.207,4.317,54.414,28.531,3.829,56.392,28.75,3.178,55.655,28.333,3.218,56.138,28.712,2.064,56.039,28.975,2.014,55.555,28.598,1.626,56.289,29.273,0.937,55.399,29.934,1.276,54.602,29.306,-0.293,55.29,30.544,-0.294,54.953,30.731,1.275,54.265,29.493,-0.982,54.093,30.703,1.021,54.266,30.412,-0.034,54.186,31.001,-1.82,56.317,31.165,-2.603,55.542,31.164,-2.312,56.026,31.479,-3.179,55.842,32.563,-3.47,55.358,32.248,-3.938,55.087,32.609,-4.186,54.546,31.88,-3.718,54.818,31.52,-4.535,54.142,31.514,-0.399,56.965,33.297,-0.802,56.714,33.744,0.427,56.7,34.144,0.606,57.054,32.415,1.366,56.784,33.322,2.4,57.38,33.627,0.649,57.029,32.36,2.445,57.353,33.568,1.816,57.022,31.628,2.014,57.116,31.546,2.671,57.46,33.475,3.075,57.388,32.946,3.13,57.473,32.976,2.73,57.552,33.506,3.442,57.933,32.782,3.138,57.432,32.889,3.45,57.894,32.701,2.074,57.158,31.493,2.38,57.347,31.028,3.756,58.083,32.236,3.451,57.489,31.029,5.317,57.573,30.697,5.396,58.156,31.944,6.554,57.491,30.862,2.3,57.099,29.721,3.359,57.207,29.541,2.78,56.899,29.451,7.465,55.143,29.832,8.041,53.468,28.156,8.411,53.441,28.108,7.768,55.306,29.975,7.722,53.244,28.89,8.533,53.344,28.19,7.854,53.139,28.978,8.345,53.025,28.649,7.048,53.15,26.143,5.937,53.742,25.347,5.407,54.308,25.524,7.301,53.297,26.883,6.728,54.341,25.365,7.401,54.838,25.469,7.929,53.761,26.979,8.277,55.379,25.747,9.689,55.213,26.031,9.17,53.615,27.229,10.356,54.369,26.075,10.638,54.109,26.2,9.436,53.37,27.346,11.731,53.833,27.224,10.914,54.631,26.046,12.007,54.356,27.069,10.841,55.226,25.894,10.66,54.601,26.051,10.584,55.195,25.899,10.015,55.462,26.005,10.227,55.913,25.937,10.784,55.619,25.836,10.541,56.936,26.184,8.183,56.659,25.444,8.496,57.681,25.691,8.218,57.286,25.259,8.016,58.309,24.452,8.294,58.705,24.883,8.104,59.559,24.27,8.489,60.085,24.803,8.732,59.302,25.49,8.858,59.887,25.2,9.797,60.067,25.813,9.739,59.496,26.146,10.283,60.404,25.975,11.767,59.37,23.419,11.316,58.397,23.43,11.269,59.042,23.278,11.15,59.012,23.182,11.189,58.365,23.327,10.91,57.969,22.895,11.268,57.198,23.371,11.547,57.594,23.803,11.731,56.239,23.594,10.47,59.309,22.763,10.181,58.287,22.446,10.006,59.54,22.508,10.73,60.017,22.866,10.252,60.207,22.605,11.225,60.353,23.003,9.971,61.227,25.163,9.081,61.023,24.621,9.487,60.883,25.008,7.759,56.524,24.909,7.793,57.151,24.724,6.914,55.915,24.68,6.868,55.941,23.098,7.745,57.179,23.044,7.397,56.148,22.862,7.739,56.106,22.373,8.111,57.134,22.521,7.934,55.949,21.845,7.52,55.897,22.349,7.729,55.752,21.823,6.585,55.42,22.15,7.371,56.049,22.717,6.425,55.583,22.544,6.842,55.842,22.953,6.668,55.869,23.118,6.24,55.612,22.719,5.591,55.732,22.837,5.588,55.729,22.823,6.237,55.609,22.704,4.929,57.01,21.696,5.14,56.454,20.649,6.448,55.053,21.658,5.456,55.343,21.337,4.956,55.891,23.399,4.253,57.183,22.313,4.053,56.335,22.983,4.869,55.861,23.561,3.959,56.303,23.157,4.671,55.856,24.108,5.344,55.777,23.746,5.119,55.776,24.282,6.419,55.914,24.035,7.537,52.996,21.726,8.565,53.623,21.451,8.099,52.146,22.103,3.103,51.228,22.779,3.806,49.963,23.237,3.477,49.214,23.464,2.341,51.386,22.683,1.884,50.108,21.828,3.344,49.035,23.496,1.755,49.935,21.859,2.09,48.729,22.213,13.482,54.619,20.079,12.919,54.536,21.481,14.567,55.231,20.051,13.214,55.117,18.978,14.315,55.7,19.015,13.532,55.332,18.434,11.892,53.439,17.543,12.209,53.654,16.999,12.226,53.241,16.524,12.399,53.627,16.175,12.393,54.064,16.629,12.469,53.839,15.608,12.27,53.14,15.975,12.341,53.357,15.41,12.117,52.943,14.95,-1.832,45.414,23.759,-0.585,46.457,23.48,-0.623,46.185,22.738,0.885,41.898,27.101,-0.091,43.072,26.636,-0.327,42.55,26.799,0.571,41.389,27.306,-0.663,42.004,27.019,0.385,40.949,27.515,1.62,41.269,27.594,1.579,40.812,27.842,2.01,40.466,28.206,1.454,40.066,28.483,1.023,40.412,28.12,0.386,39.666,29.326,1.483,40.053,28.514,0.414,39.653,29.355,0.798,39.603,29.824,0.398,50.934,18.428,1.867,51.793,18.041,0.968,50.556,16.646,0.215,50.905,18.376,0.778,50.525,16.592,0.137,50.512,17.955,11.346,52.263,7.086,11.127,51.809,5.5,11.401,52.148,4.876,11.722,52.825,7.347,11.523,51.677,6.531,-12.386,44.196,14.385,-10.483,45.118,13.97,-10.207,43.565,13.799,22.024,42.983,20.662,21.639,44.78,21.627,21.993,42.633,22.103,-12.401,39.091,5.75,-13.227,37.894,5.006,15.819,43.414,8.013,16.99,44.039,8.889,15.977,44.555,9.447,15.709,43.414,8.026,15.866,44.554,9.459,14.469,42.988,9.092,23.532,41.769,23.294,24.383,40.958,22.226,-7.892,39.232,32.95,-6.959,39.948,32.037,-6.494,39.639,31.355,-8.13,38.384,32.956,-8.364,39.386,31.771,-8.434,39.289,31.701,-8.208,38.273,32.876,-8.602,38.488,32.412,-8.607,38.463,32.406,-8.214,38.249,32.87,-8.723,38.029,31.953,-8.612,38.475,32.395,-8.727,38.04,31.944,-8.442,39.278,31.687,-8.463,39.256,31.556,-8.75,38.017,31.803,-7.506,37.759,30.197,-8.413,39.319,31.522,-7.449,37.83,30.159,-6.549,39.563,31.072,-14.037,32.829,28.318,-13.709,33.057,28.786,-14.557,32.519,28.434,-16.066,35.071,28.165,-15.218,35.609,28.517,-15.533,35.359,28.051,-3.698,23.408,23.375,-2.291,22.489,24.335,6.151,30.377,9.468,6.598,30.604,9.757,7.738,30.337,10.153,5.792,29.32,8.887,7.896,29.374,8.322,2.776,21.902,9.91,1.138,23.385,10.684,2.94,22.134,9.397,1.978,23.145,10.879,2.924,22.475,10.174,9.511,40.555,0.903,9.477,38.246,2.485,9.464,40.571,0.931,9.43,38.267,2.509,6.383,55.686,13.664,4.716,56.385,15.721,6.353,56.084,13.688,4.845,56.696,15.549,-0.128,53.396,27.054,1.529,53.706,28.808,8.967,16.211,13.912,8.699,15.748,14.855,9.278,17.503,14.488,9.371,17.193,13.43,9.037,17.769,12.811,8.584,18.7,13.202,9.98,18.264,14.097,9.646,18.839,13.478,8.39,18.907,13.289,8.582,19.757,13.37,8.383,18.909,13.289,8.574,19.759,13.37,7.857,18.813,13.034,7.657,19.544,13.06,7.465,18.706,12.891,7.249,19.432,12.911,6.945,18.477,12.745,6.387,19.082,12.583,6.852,18.374,12.687,6.285,18.969,12.52,7.424,17.095,12.101,7.653,16.295,12.271,8.071,15.796,12.816,6.9,17.028,12.201,7.161,16.118,12.394,7.637,15.549,13.015,6.268,18.707,12.537,6.073,18.552,12.459,6.466,16.864,12.249,6.101,16.103,12.582,5.704,15.697,13.29,5.959,17.046,12.258,5.638,16.377,12.55,5.289,16.021,13.172,5.962,15.297,13.88,6.697,15.078,13.727,7.474,15.162,13.71,6.004,15.023,14.472,6.739,14.804,14.319,7.516,14.887,14.302,5.985,15.459,16.824,6.667,15.242,17.002,7.405,15.241,16.984,8.078,15.457,16.771,8.576,15.854,16.4,5.998,15.904,17.318,6.68,15.687,17.496,7.418,15.686,17.478,8.091,15.902,17.265,8.589,16.299,16.894,9.018,17.173,15.972,9.624,17.72,16.121,9.042,17.244,15.631,9.647,17.788,15.793,9.037,17.363,15.142,9.03,17.349,15.06,9.535,19.376,13.393,9.515,20.529,12.941,10.022,20.94,12.865,9.319,20.91,12.565,10.389,21.58,11.819,9.772,21.554,11.556,8.117,21.474,12.313,8.692,21.8,11.99,7.993,21.614,12.233,8.574,21.935,11.913,5.274,18.363,12.223,5.79,18.578,12.321,4.9,18.199,12.208,4.433,18.688,11.593,4.587,18.144,12.412,4.093,18.629,11.814,4.421,18.213,12.779,4.315,18.431,13.668,4.467,18.371,14.324,4.471,18.352,14.361,4.502,18.216,14.407,4.19,18.747,14.798,4.537,18.126,14.556,4.225,18.657,14.948,4.631,17.728,14.92,4.856,17.081,15.15,4.059,18.021,16.418,3.368,18.967,16.044,4.434,17.528,17.434,4.329,17.808,18.477,5.47,17.113,18.166,6.705,16.708,18.372,6.921,17.957,18.727,5.9,17.48,19.293,7.442,18.877,18.503,7.572,18.97,18.387,7.695,18.754,18.166,7.826,18.842,18.012,8.958,18.567,17.419,8.531,17.486,17.741,8.788,16.977,17.195,9.434,17.624,16.409,10.139,18.451,17.564,10.381,17.971,17.051,9.097,19.445,17.563,8.378,19.6,17.824,9.111,19.48,17.581,8.392,19.634,17.842,9.465,19.822,17.894,8.992,20.215,18.369,9.989,20.216,18.072,9.534,20.623,18.553,11.333,19.382,17.899,11.902,20.462,18.36,12.378,19.986,17.414,12.302,19.161,16.69,12.638,20.046,16.13,13.347,20.295,16.955,12.63,20.191,15.843,12.211,20.442,15.252,11.937,20.626,15.036,11.935,20.631,15.031,12.07,20.932,14.833,11.958,21.859,14.414,10.916,22.139,13.241,10.684,21.692,13.048,11.39,22.61,13.92,11.622,23.278,12.679,11.77,23.386,12.298,11.281,22.881,11.1,10.786,23.258,10.579,12.089,23.944,11.188,11.526,24.373,10.595,9.389,23.631,10.646,9.303,24.691,10.823,6.728,22.457,11.749,7.382,22.637,12.083,8.026,23.032,12.069,6.643,22.559,11.919,7.368,22.653,12.11,7.952,23.121,12.218,5.76,23.479,12.53,5.042,23.767,12.317,4.24,24.058,12.261,4.088,24.833,12.325,3.181,23.072,11.551,2.447,23.518,11.633,3.055,22.92,11.287,2.327,23.373,11.381,4.516,23.058,10.634,5.275,22.879,10.44,5.845,22.338,10.273,6.078,21.574,10.175,4.269,22.923,9.589,4.936,22.766,9.418,5.437,22.29,9.271,5.641,21.62,9.185,3.518,19.632,8.845,2.825,20.063,8.827,2.359,20.631,9.184,4.005,20.448,8.347,3.357,20.849,8.331,2.923,21.38,8.664,2.033,21.721,10.847,1.545,22.488,11.128,2.04,21.581,11.241,1.552,22.348,11.522,2.233,19.862,11.741,2.619,19.09,11.685,2.771,20.084,12.805,3.181,19.264,12.745,2.793,21.709,12.46,2.412,22.337,12.342,1.757,22.682,12.264,2.838,21.799,12.653,2.426,22.366,12.403,1.798,22.763,12.438,3.014,22.126,13.47,3.026,22.09,13.568,2.685,22.598,14.009,3.131,22.009,13.856,3.133,22.008,13.859,3.225,20.853,14.392,3.018,19.94,13.565,3.743,19.263,14.325,2.939,19.854,14.991,3.244,21.549,14.973,3.097,22.245,14.675,3.244,21.55,14.974,3.097,22.245,14.676,2.071,21.905,15.943,2.585,21.25,16.172,2.597,21.193,16.34,2.518,20.585,17.088,2.844,19.691,16.349,2.973,19.945,17.52,1.86,20.079,17.962,4.025,19.148,17.483,4.036,19.119,17.465,3.419,19.458,18.598,4.017,18.541,19.417,3.748,19.871,19.585,2.401,19.656,19.489,4.721,20.155,19.902,4.956,20.134,20.038,5.528,18.945,20.293,6.182,18.63,20.036,6.089,19.994,20.593,6.834,19.636,20.301,6.186,20.849,20.98,5.534,21.63,21.396,7.269,20.811,20.882,7.635,20.264,20.465,7.876,19.914,19.811,7.818,21.172,20.892,8.184,20.624,20.474,8.425,20.275,19.82,6.708,22.032,21.025,6.841,22.938,20.831,7.217,23.708,20.539,7.932,24.027,20.199,8.416,23.962,19.93,8.532,24.72,19.901,8.816,23.891,19.672,8.932,24.648,19.643,9.09,24.009,19.398,9.284,23.892,19.236,9.397,23.606,19.16,9.835,24.249,18.914,9.465,23.539,19.104,9.901,24.183,18.86,9.862,22.908,19.045,10.536,23.109,18.727,11.208,23.483,18.799,9.941,22.72,19.038,10.548,23.081,18.726,11.287,23.296,18.792,10.053,22.101,19.046,10.718,22.02,18.721,9.879,21.15,18.821,10.557,21.135,18.511,11.799,22.716,18.838,12.228,22.47,18.99,13.694,20.853,18.106,14.206,20.874,17.533,14.539,21.158,16.902,14.086,21.201,18.47,14.598,21.223,17.897,14.932,21.506,17.265,14.153,20.87,16.279,14.131,20.978,15.755,14.541,22.382,15.485,15.011,22.817,16.335,13.918,23.697,15.706,13.755,23.748,15.531,13.354,23.696,14.502,13.685,22.432,14.465,12.643,23.095,14.036,13.274,23.891,13.21,13.427,24.66,14.806,13.444,25.383,14.787,13.352,26.061,14.633,13.33,26.251,14.489,13.285,26.203,14.188,13.214,26.382,14.002,13.287,24.363,12.309,13.044,24.475,11.74,13.143,25.512,11.241,12.665,25.509,10.666,12.002,25.569,10.327,11.265,25.681,10.278,13.245,26.149,11.152,12.768,26.146,10.578,12.105,26.206,10.238,11.368,26.318,10.19,9.907,27.168,10.515,9.804,27.647,9.855,8.64,25.285,11.2,7.792,26.169,11.358,7.761,24.891,12.733,6.985,24.836,13.057,7.776,24.813,12.756,7.0,24.761,13.079,7.792,24.168,12.881,7.01,24.368,13.165,7.775,24.081,12.896,6.993,24.281,13.18,6.771,25.434,12.747,6.421,25.757,12.624,5.106,25.809,12.405,4.704,25.508,12.366,5.545,26.621,11.917,6.298,26.583,12.016,5.554,26.651,11.865,6.306,26.611,11.967,4.1,27.257,9.904,3.678,26.389,10.608,2.723,26.9,10.104,3.338,26.841,9.072,2.333,25.997,11.211,1.816,25.458,11.216,2.811,25.532,11.694,2.286,25.001,11.69,1.413,26.596,10.586,0.779,24.386,10.367,0.173,25.15,9.953,-0.208,22.724,11.761,-1.256,22.753,11.96,-0.233,22.852,13.528,0.259,22.84,13.668,0.579,22.92,13.519,1.007,23.035,13.531,1.81,23.151,13.257,1.826,23.146,13.236,1.786,22.997,14.135,1.818,22.949,14.224,-0.901,22.796,13.627,-1.314,22.24,14.514,-1.994,23.024,14.078,-1.833,22.726,13.012,-2.601,23.095,14.983,-3.406,23.228,14.819,-2.624,23.05,15.058,-3.429,23.184,14.892,-1.819,22.038,15.449,-1.527,21.799,16.032,-2.791,22.22,16.0,-2.491,21.974,16.599,-1.334,22.085,17.394,-0.774,22.11,17.56,0.274,21.928,17.248,0.774,21.544,17.833,0.667,21.913,16.919,1.136,21.53,17.531,1.173,22.11,16.363,1.238,22.123,16.167,1.904,21.455,17.317,1.979,21.408,17.299,0.413,21.432,18.625,-0.241,21.804,18.616,0.39,21.391,18.679,-0.265,21.762,18.673,0.81,20.328,18.956,1.08,20.086,19.551,-0.151,20.879,19.558,0.155,20.604,20.236,1.232,20.658,20.695,2.209,20.33,20.312,2.254,21.262,20.892,1.608,20.882,21.735,3.54,21.441,20.342,3.642,21.32,20.259,3.668,21.026,20.05,3.737,20.849,19.926,3.546,22.062,21.125,2.767,21.988,21.401,3.649,22.662,21.489,2.88,22.646,21.799,4.019,23.572,21.653,5.025,23.136,21.756,4.852,24.193,21.499,4.101,24.504,22.267,5.768,24.194,21.104,6.447,23.832,20.859,5.229,25.053,21.356,5.28,25.376,21.442,5.38,25.721,21.507,5.526,26.022,21.527,8.871,26.739,20.856,8.08,27.273,21.414,9.908,27.981,20.55,10.11,27.752,20.533,10.36,26.993,20.552,9.465,26.165,20.561,10.534,25.883,20.048,11.178,26.244,20.978,11.026,25.559,19.753,11.186,25.437,19.688,11.354,24.697,19.226,11.195,24.375,18.993,11.87,25.029,19.821,11.953,24.996,19.901,12.361,24.654,20.453,12.513,23.556,19.812,13.411,23.977,20.621,12.612,24.156,21.605,13.643,23.58,20.016,13.577,24.021,20.767,13.98,23.666,19.995,13.913,24.107,20.746,15.32,24.049,18.196,15.047,24.601,18.365,14.941,23.921,16.628,14.478,24.838,16.292,14.48,25.388,16.313,14.584,26.013,16.431,13.97,27.358,14.937,13.892,27.532,14.759,13.113,26.987,13.697,13.11,26.935,13.7,13.281,27.59,13.584,13.787,27.949,14.283,13.32,27.776,13.461,13.826,28.135,14.16,13.402,28.158,12.738,13.771,28.789,12.981,13.396,27.776,11.664,12.926,28.809,11.767,13.296,29.441,12.01,14.392,29.478,12.319,12.253,28.922,11.148,12.114,29.615,10.977,11.699,28.681,10.594,11.568,29.378,10.432,10.97,28.906,10.091,10.85,29.423,9.503,10.955,27.847,9.923,10.483,28.122,9.213,11.476,26.873,10.063,10.465,27.338,10.01,10.05,27.671,9.289,10.292,27.702,8.248,10.658,28.309,7.627,11.488,29.318,7.359,9.12,27.429,7.025,8.448,27.477,7.561,8.492,27.592,6.175,7.773,27.644,6.75,7.329,28.675,7.976,6.384,28.764,8.043,7.37,28.905,8.121,6.433,29.043,8.219,8.434,29.527,9.097,8.275,30.037,9.66,8.493,29.441,9.191,8.337,29.945,9.759,8.609,29.388,9.467,8.746,29.182,9.598,8.941,27.981,10.304,8.262,28.365,11.363,8.533,29.016,11.054,8.177,28.428,11.423,8.443,29.083,11.117,6.828,28.058,11.426,7.332,26.925,11.223,6.236,26.722,11.805,5.825,27.486,10.848,6.573,29.074,11.373,7.187,29.524,11.399,7.857,29.725,11.1,6.552,29.107,11.35,7.184,29.529,11.396,7.835,29.758,11.076,6.477,29.382,11.212,7.134,29.947,11.056,6.376,29.477,11.127,7.032,30.042,10.971,5.496,28.989,9.97,5.728,27.91,10.562,4.767,27.783,9.768,5.484,28.337,8.89,4.434,27.563,9.87,4.384,27.517,9.894,4.101,27.203,8.354,3.871,27.243,7.7,3.541,27.506,7.147,4.639,27.525,8.186,4.409,27.566,7.531,4.079,27.828,6.979,2.592,27.351,7.101,2.004,27.074,7.703,2.12,27.611,6.759,1.532,27.335,7.362,1.147,27.117,9.238,0.536,26.666,9.691,1.5,26.976,9.586,0.871,26.532,10.023,0.222,26.89,9.528,0.658,27.449,8.935,0.075,26.958,9.486,0.502,27.521,8.89,-0.909,25.3,9.529,-1.458,25.549,9.326,-2.883,23.184,11.843,-4.102,23.452,12.077,-3.559,23.352,13.455,-3.355,23.39,13.768,-5.047,22.841,13.596,-4.599,23.246,12.707,-6.926,24.011,14.476,-7.243,24.935,14.111,-6.106,24.779,16.575,-6.362,25.181,17.389,-6.072,24.732,16.609,-6.329,25.134,17.422,-5.854,24.34,16.795,-5.995,24.528,17.711,-5.729,24.177,16.846,-5.86,24.353,17.766,-5.264,23.436,16.785,-5.096,23.22,17.648,-5.076,23.202,16.694,-4.922,23.003,17.564,-4.738,22.935,16.364,-4.765,22.508,15.213,-3.625,22.96,15.154,-3.654,22.326,16.231,-4.529,22.609,17.679,-3.684,22.129,17.221,-3.428,22.063,18.261,-4.436,21.845,18.375,-3.102,21.968,18.785,-2.303,21.722,19.349,-2.991,22.114,19.975,-3.713,21.631,19.493,-1.753,21.907,20.895,-1.637,21.794,20.816,-1.817,21.581,19.411,-1.414,21.56,18.874,-1.057,21.179,20.023,-0.629,21.156,19.452,-0.847,20.926,20.562,-0.147,20.631,20.657,-1.108,20.634,21.584,-0.409,20.338,21.679,2.043,21.313,22.412,2.334,22.0,22.602,2.247,22.709,22.894,1.802,23.253,23.211,2.198,20.945,23.689,2.454,21.549,23.857,2.377,22.171,24.113,1.986,22.65,24.392,1.253,24.73,22.212,1.172,23.861,23.11,1.913,23.263,23.088,2.713,23.552,22.168,2.26,25.201,22.771,2.981,24.619,22.749,1.097,25.264,21.768,0.373,25.039,21.675,1.081,25.331,21.736,0.357,25.102,21.645,1.345,26.441,22.078,0.784,26.977,22.246,1.44,26.501,22.207,0.878,27.036,22.372,1.874,26.616,22.942,2.39,25.508,22.882,2.838,26.534,23.376,1.945,26.845,24.123,4.068,25.405,22.751,4.256,25.959,22.845,3.017,26.78,23.539,3.642,27.513,23.481,3.924,27.887,23.267,3.916,28.479,23.848,3.988,27.932,23.222,3.983,28.525,23.801,4.599,28.109,22.898,5.01,28.004,22.582,5.488,27.366,22.095,5.632,26.652,21.768,5.921,28.28,22.354,6.775,28.908,22.335,7.836,29.114,22.076,8.323,29.652,22.669,8.241,29.068,21.785,8.728,29.606,22.378,8.902,28.498,20.816,9.703,28.727,20.756,8.952,28.304,20.751,9.754,28.533,20.691,10.351,29.418,21.667,10.028,29.701,22.283,10.545,29.346,21.802,10.222,29.629,22.418,11.285,28.531,22.185,11.372,28.272,22.081,11.262,26.032,20.917,11.627,25.455,21.946,11.691,26.872,22.78,11.777,25.805,23.262,12.34,26.35,24.136,11.447,26.989,23.875,12.222,24.872,23.609,12.491,24.167,23.078,12.711,24.363,24.434,12.947,23.744,23.967,16.272,24.203,24.625,16.493,24.141,25.36,16.799,24.493,24.492,17.019,24.431,25.227,17.138,24.817,24.668,17.295,25.045,23.396,17.237,25.926,24.352,18.211,25.447,25.095,16.873,26.408,23.995,16.515,26.827,23.654,16.143,26.977,22.895,16.049,26.936,22.42,16.362,25.809,21.592,15.645,26.689,21.057,14.999,24.83,20.898,14.579,24.697,20.073,15.016,24.634,20.922,14.598,24.488,20.099,14.496,25.448,19.958,14.384,25.897,19.64,14.215,26.547,18.915,14.365,26.625,19.677,14.166,26.967,18.878,14.314,27.06,19.638,14.696,27.645,17.75,14.817,26.575,17.492,14.753,26.276,16.677,14.544,26.934,15.811,15.578,27.694,17.051,15.509,27.376,16.185,16.033,29.197,17.482,16.483,29.08,16.848,16.634,29.044,16.078,16.46,29.097,15.314,16.205,29.832,17.486,16.655,29.714,16.853,16.806,29.678,16.083,16.632,29.731,15.319,15.677,29.667,14.208,15.47,28.644,14.428,14.545,28.86,13.943,15.175,29.429,13.298,16.144,31.771,13.29,16.746,32.275,13.114,16.066,31.677,12.755,16.668,32.182,12.579,14.801,32.245,11.692,14.447,32.185,11.542,13.389,31.657,10.508,13.09,30.803,11.295,12.897,30.382,11.464,12.868,31.133,9.646,12.466,30.759,9.24,11.809,30.343,9.122,11.445,30.061,9.158,12.246,29.91,7.517,12.362,30.217,6.672,13.352,30.455,7.807,13.454,30.724,7.065,11.287,31.012,5.435,11.22,31.977,4.963,9.874,29.69,5.665,9.894,29.641,5.697,8.868,29.766,4.891,9.505,30.552,5.237,7.781,30.904,5.118,7.567,31.655,4.919,7.121,30.748,5.183,6.938,31.506,4.981,5.916,30.548,5.518,5.245,30.921,5.16,6.128,29.981,5.77,6.063,29.868,5.889,5.706,29.267,6.278,6.52,28.377,5.79,6.885,27.959,6.521,6.342,28.537,7.552,4.779,28.408,6.641,5.167,27.963,7.417,4.105,30.007,5.936,3.957,30.411,5.19,3.63,29.82,5.93,3.481,30.225,5.184,2.654,29.712,5.735,2.888,30.135,5.061,1.686,29.084,5.845,1.667,30.237,5.721,1.901,30.66,5.047,2.307,30.205,4.061,0.465,29.991,6.573,0.628,30.628,6.598,-0.588,29.731,7.747,-1.505,29.842,7.872,-0.649,29.253,7.873,-1.557,29.435,7.979,-0.321,28.504,8.358,-0.902,28.322,8.842,-0.103,28.112,8.472,-0.684,27.93,8.957,-0.021,27.881,8.676,-0.651,27.436,9.193,0.143,27.74,8.755,-0.487,27.295,9.272,-2.713,27.67,9.053,-2.937,28.287,8.658,-3.26,27.722,9.404,-3.444,28.335,8.984,-3.773,27.051,10.234,-3.725,27.701,10.214,-4.131,26.81,11.602,-4.723,26.753,12.094,-4.189,26.319,11.476,-4.78,26.262,11.967,-4.191,25.822,11.365,-3.657,25.595,10.37,-3.517,24.756,11.147,-4.606,24.783,11.406,-4.601,27.06,12.2,-3.972,27.368,11.685,-4.599,27.242,12.31,-3.97,27.549,11.796,-5.139,27.878,12.755,-4.838,28.554,12.652,-4.636,29.101,12.184,-5.237,27.937,12.792,-4.849,28.56,12.656,-4.712,29.147,12.213,-7.228,27.494,12.922,-7.86,27.886,12.851,-7.08,26.5,12.586,-7.546,25.984,13.217,-7.94,26.706,13.885,-8.522,27.153,13.746,-8.734,27.66,12.398,-9.143,27.206,12.952,-7.838,26.278,14.906,-8.411,26.405,15.467,-7.526,25.761,15.342,-8.098,25.888,15.903,-9.291,27.026,15.217,-9.312,27.35,14.525,-9.861,27.154,15.276,-9.841,27.469,14.579,-10.392,27.277,15.479,-10.745,27.674,14.919,-10.716,27.278,15.684,-11.069,27.675,15.124,-9.908,25.799,16.022,-9.285,25.22,16.657,-10.362,25.478,16.272,-9.806,24.963,16.838,-7.885,25.371,17.866,-7.716,25.506,17.672,-7.346,24.126,19.132,-7.575,24.087,19.826,-8.208,24.728,18.904,-8.423,24.692,19.557,-6.712,23.473,19.387,-5.891,22.529,19.171,-5.761,22.872,20.761,-4.932,22.005,20.529,-4.247,22.735,21.229,-5.306,22.593,21.912,-2.568,22.561,22.463,-3.383,23.003,22.366,-2.577,22.646,22.924,-3.392,23.088,22.828,-2.059,21.077,23.364,-1.514,20.38,23.429,-2.204,21.03,24.437,-1.691,20.374,24.498,1.089,20.573,25.759,1.22,21.262,26.062,1.238,22.019,25.953,0.064,20.577,26.125,0.205,21.316,26.449,0.225,22.126,26.332,-2.364,23.055,23.004,-3.179,23.497,22.907,-2.275,23.188,22.866,-3.09,23.63,22.769,-1.431,23.729,22.616,-0.731,23.972,22.676,-2.399,24.392,22.157,-3.077,24.405,22.435,-2.507,25.035,21.791,-3.193,25.094,22.042,-2.732,25.376,21.419,-3.542,25.852,21.613,-2.721,25.409,21.383,-3.529,25.892,21.567,-2.139,26.057,20.902,-2.12,26.068,20.902,-1.192,26.083,21.629,-1.058,26.871,21.883,-1.17,25.179,22.113,-0.506,25.894,21.797,-0.334,26.671,22.06,-0.774,27.239,22.822,-1.858,27.493,21.297,-1.874,27.51,21.304,-1.998,27.9,22.503,-1.818,27.854,23.062,0.581,27.478,23.603,0.833,27.354,23.241,0.426,27.597,24.208,1.267,27.368,24.84,0.842,28.199,25.375,-0.126,27.692,25.169,2.05,28.263,25.977,2.382,27.951,25.928,2.513,27.889,25.947,2.768,27.771,26.837,2.66,27.84,25.896,2.941,27.713,26.777,2.765,27.822,25.794,3.48,28.159,25.352,7.03,29.947,23.294,7.759,30.085,23.537,7.113,29.893,23.077,7.841,30.031,23.319,7.587,30.146,24.252,7.789,30.176,24.86,10.573,28.96,24.131,10.677,29.05,23.324,10.713,28.932,24.553,11.269,29.004,25.228,12.551,28.097,25.638,12.97,27.25,25.335,12.826,26.529,24.595,13.147,25.865,24.689,12.626,26.405,24.399,12.947,25.741,24.492,13.649,25.866,25.264,13.694,26.531,25.581,14.068,25.635,25.646,14.144,26.283,25.991,14.379,25.667,25.811,14.551,25.542,25.871,15.016,24.739,26.187,14.189,23.938,25.69,14.695,23.451,25.218,15.813,23.973,25.443,15.526,24.017,27.096,16.069,23.496,26.59,15.297,25.593,26.791,15.316,25.683,26.951,15.676,25.104,28.04,16.238,25.213,28.544,15.46,26.196,28.007,16.058,26.312,28.542,17.677,24.97,28.682,18.242,24.582,28.299,18.538,24.243,27.656,18.498,24.031,26.901,18.13,23.995,26.208,17.985,25.545,28.603,18.585,25.133,28.197,18.9,24.773,27.513,18.857,24.548,26.711,18.467,24.51,25.975,17.832,26.381,28.635,18.348,26.837,28.329,18.701,27.207,27.774,18.828,27.426,27.063,18.709,27.459,26.319,17.433,26.889,28.721,17.95,27.346,28.415,18.302,27.716,27.859,18.429,27.935,27.149,18.31,27.967,26.404,17.385,29.232,25.735,16.781,29.533,25.191,16.025,28.482,23.821,16.212,27.636,23.608,14.388,29.977,22.82,14.236,29.948,22.58,15.648,28.268,21.951,15.548,27.915,21.429,14.392,28.204,20.059,14.223,28.544,19.426,14.339,27.702,19.795,14.172,28.058,19.17,13.585,30.394,19.363,13.543,30.6,19.167,14.22,30.71,18.167,14.23,30.703,18.164,14.456,30.496,18.171,14.938,29.709,18.094,15.281,31.682,18.091,15.904,30.718,17.837,16.634,30.887,17.241,16.715,32.016,16.919,16.246,32.079,18.549,16.887,32.228,18.026,17.222,32.973,16.299,16.409,32.336,15.111,16.786,33.089,14.67,16.408,32.313,15.071,16.785,33.066,14.63,16.447,31.868,14.877,16.609,32.325,14.306,17.112,32.743,13.94,16.343,31.642,14.592,16.567,32.234,14.191,17.008,32.517,13.656,18.485,33.457,14.61,18.965,33.345,14.371,18.409,31.298,10.993,18.85,31.176,10.429,19.23,31.37,9.842,19.474,31.842,9.347,19.535,32.499,9.043,19.401,33.21,8.989,19.097,33.836,9.196,18.914,31.331,11.409,19.382,31.201,10.81,19.786,31.408,10.186,20.046,31.909,9.66,20.11,32.607,9.337,19.967,33.363,9.28,19.644,34.028,9.5,17.69,34.593,9.478,17.291,33.827,8.804,17.114,33.429,8.751,16.44,33.714,8.237,16.755,32.997,9.002,16.061,33.259,8.502,16.47,33.062,9.108,15.788,33.2,8.708,15.113,32.827,8.482,16.438,32.985,10.454,15.713,33.239,10.706,16.476,32.826,10.732,15.749,33.086,10.971,14.342,33.009,10.064,14.162,32.597,9.381,14.167,32.838,10.214,13.987,32.426,9.531,14.711,31.726,7.464,15.344,32.791,7.167,14.321,32.423,6.506,14.595,32.868,5.969,13.981,32.387,6.313,14.229,32.828,5.761,13.911,32.775,5.785,13.429,32.946,5.513,12.505,33.033,5.211,13.179,33.267,5.01,12.341,33.232,4.903,13.009,33.473,4.692,11.942,33.423,4.483,12.324,33.799,3.968,12.807,33.797,3.403,11.781,33.482,4.375,12.293,33.81,3.948,12.646,33.856,3.295,10.7,32.452,4.503,10.103,32.999,3.787,9.405,32.13,4.977,9.021,32.149,5.005,8.222,31.888,5.139,8.151,31.825,5.148,7.476,32.711,3.755,8.619,33.141,3.459,5.722,33.875,3.253,5.659,33.785,3.27,5.705,32.854,3.448,5.09,32.589,2.917,5.757,32.441,3.615,5.147,32.131,3.101,5.576,32.192,3.721,5.518,31.905,4.214,4.723,30.826,3.159,4.15,30.24,3.189,3.379,29.962,3.202,2.564,30.049,3.198,4.723,30.793,2.517,4.151,30.207,2.546,3.379,29.93,2.56,2.564,30.016,2.555,0.921,31.64,3.499,0.152,31.854,3.422,0.948,31.929,3.902,0.176,32.119,3.793,1.674,31.291,5.438,1.766,30.88,5.351,1.511,31.513,5.831,1.605,31.913,5.201,1.46,31.92,6.082,1.554,32.32,5.453,0.02,31.781,7.726,-0.784,32.21,7.873,-0.107,31.504,7.838,-0.911,31.933,7.985,-1.735,30.616,8.171,-1.036,30.879,8.372,-1.74,30.626,8.172,-1.04,30.889,8.373,-2.202,31.248,7.784,-2.42,31.323,7.543,-2.9,30.729,6.685,-3.044,30.0,6.472,-3.189,29.472,6.526,-3.324,29.251,5.79,-3.34,29.055,6.691,-3.487,28.8,5.968,-4.313,28.72,7.019,-4.503,28.78,7.119,-4.289,29.733,9.935,-4.217,29.668,9.961,-3.774,28.857,9.683,-3.482,28.329,9.113,-3.964,29.057,10.689,-4.0,28.841,11.288,-4.556,29.947,10.032,-4.779,30.133,10.057,-5.018,30.338,9.903,-5.263,30.68,10.048,-5.924,31.074,11.303,-5.975,30.907,11.653,-5.726,30.398,12.156,-6.447,30.382,12.558,-5.699,30.323,12.201,-6.417,30.301,12.607,-5.596,29.711,12.504,-5.33,29.375,12.529,-7.641,28.795,12.898,-7.62,28.502,12.942,-8.647,29.986,12.348,-8.287,30.706,12.113,-8.829,30.073,12.345,-8.486,30.802,12.109,-9.992,29.878,11.945,-10.211,29.553,11.774,-10.219,29.195,11.775,-9.941,28.006,12.01,-10.97,27.86,12.693,-11.198,28.379,11.524,-12.009,27.682,13.347,-12.276,27.76,12.743,-12.913,28.119,14.226,-13.82,28.281,13.672,-13.696,29.323,15.171,-13.653,29.317,15.237,-11.352,27.734,15.489,-11.109,27.149,16.161,-11.194,27.664,15.375,-10.97,27.087,16.06,-11.554,27.317,16.582,-11.81,26.414,17.362,-11.687,27.585,17.681,-12.502,28.018,16.887,-11.275,27.362,18.609,-11.446,28.001,19.081,-11.268,27.31,18.682,-11.439,27.944,19.159,-11.269,27.091,18.77,-11.265,26.973,18.873,-11.261,26.768,19.143,-11.301,25.627,18.726,-10.356,25.726,19.485,-11.203,26.198,20.211,-9.768,25.373,19.165,-9.992,24.828,18.34,-9.018,25.071,18.204,-8.869,24.878,19.202,-8.316,25.646,21.347,-9.0,25.988,21.179,-8.127,26.318,21.79,-8.825,26.609,21.589,-7.249,25.909,22.94,-7.069,26.532,23.076,-7.127,25.089,23.078,-7.361,24.524,22.616,-7.332,24.065,22.003,-6.766,24.67,23.409,-7.0,24.105,22.947,-6.971,23.646,22.334,-5.522,25.425,23.881,-4.699,25.537,23.718,-4.039,25.552,23.189,-5.702,26.467,23.686,-4.88,26.579,23.523,-4.22,26.594,22.994,-7.942,26.896,21.866,-8.714,26.956,21.611,-7.936,27.028,21.877,-8.709,27.076,21.622,-7.567,27.847,22.829,-7.035,27.787,23.52,-6.605,27.653,23.784,-6.792,28.129,24.455,-5.897,27.676,23.973,-6.097,28.151,24.64,-4.933,27.587,23.895,-4.525,27.998,24.529,-4.311,27.421,23.602,-3.903,27.833,24.236,-3.92,27.478,23.296,-3.483,27.513,22.409,-1.517,27.615,25.182,-1.144,27.951,25.902,-0.879,28.64,26.376,-2.481,27.655,25.663,-2.108,27.991,26.383,-1.843,28.68,26.857,-0.525,30.225,26.604,-0.312,30.769,27.114,-0.237,30.163,26.553,-0.034,30.709,27.065,0.627,29.3,26.451,1.335,29.281,27.117,0.766,28.987,26.295,1.474,28.968,26.96,0.849,28.811,25.985,1.595,28.825,26.395,0.888,28.767,25.914,1.634,28.783,26.327,2.389,26.394,28.979,3.057,26.006,29.073,3.814,25.929,29.235,2.245,26.299,29.603,2.914,25.911,29.697,3.671,25.834,29.859,5.289,26.999,29.485,5.364,26.773,30.536,5.449,28.808,29.752,5.498,28.11,28.97,5.37,29.029,28.482,6.011,29.42,29.167,5.057,27.775,27.787,4.574,27.307,27.468,3.894,27.042,27.323,4.897,28.456,26.982,4.442,28.015,26.681,3.801,27.766,26.544,5.255,29.413,28.005,5.282,29.543,27.915,5.451,29.713,26.737,5.088,29.25,25.837,5.872,30.275,27.068,5.741,30.184,27.788,6.189,30.65,27.185,6.036,30.533,27.897,7.233,31.21,26.914,7.847,31.364,27.525,7.375,31.176,26.781,7.982,31.332,27.399,7.932,30.706,26.061,7.944,30.25,25.255,8.904,30.884,27.167,9.572,30.081,26.688,10.399,30.164,26.873,10.638,31.056,27.555,9.207,30.573,28.214,9.985,30.65,28.389,11.73,30.506,26.705,10.846,29.952,26.579,11.434,29.465,25.858,12.176,29.583,26.568,12.39,31.288,26.891,12.113,31.889,27.225,11.819,32.205,27.828,12.562,31.392,26.895,12.151,31.912,27.226,11.991,32.309,27.831,13.954,31.36,27.143,14.178,31.011,27.223,12.631,29.627,26.866,13.244,28.815,27.253,14.664,30.501,27.444,15.321,30.269,27.636,15.474,30.017,27.571,15.645,29.947,27.546,14.906,28.584,27.996,14.519,27.909,27.943,14.286,27.263,27.576,15.766,28.062,28.368,15.38,27.387,28.314,15.146,26.741,27.947,16.262,29.239,27.652,16.18,29.986,27.572,16.502,29.268,27.681,16.42,30.015,27.601,16.693,29.44,27.643,17.379,28.603,28.036,17.975,28.484,27.493,18.146,28.358,26.707,17.593,29.151,26.083,17.422,30.297,27.637,17.945,30.193,27.161,18.096,30.082,26.47,17.315,30.822,27.827,17.857,31.262,27.511,18.177,31.544,26.874,17.037,31.225,28.037,17.654,31.725,27.677,18.018,32.046,26.952,17.984,32.303,25.857,17.84,32.13,25.42,17.651,30.901,25.214,17.306,31.656,24.526,16.305,30.107,24.911,16.345,30.002,24.956,16.032,30.541,24.484,15.325,30.949,23.892,14.861,31.464,23.556,14.769,31.797,23.408,14.48,32.243,23.078,15.175,32.849,22.972,14.477,32.246,23.074,15.172,32.852,22.968,14.456,32.792,22.14,13.775,32.061,22.092,13.644,31.947,21.946,13.369,31.186,21.603,13.38,31.083,21.603,13.625,30.485,21.762,13.792,30.239,21.958,13.408,31.91,21.027,13.454,32.005,20.787,16.068,32.253,18.863,16.306,32.512,20.06,17.181,32.719,19.181,17.717,33.104,18.506,17.747,33.246,17.536,18.418,33.415,17.24,17.581,33.162,17.13,18.242,33.326,16.81,18.818,33.571,18.057,19.813,33.303,17.427,19.685,33.951,18.438,19.067,33.235,19.194,20.279,34.409,18.49,20.874,35.122,18.209,21.317,35.562,17.302,21.766,36.155,17.615,21.398,35.564,17.185,21.841,36.156,17.506,21.362,33.951,16.798,21.072,33.301,16.313,20.531,32.987,15.721,21.762,34.107,16.35,21.472,33.458,15.865,20.931,33.143,15.273,19.716,33.315,14.247,19.38,33.325,14.289,19.973,33.281,13.992,20.383,33.291,13.8,20.335,33.016,13.172,20.507,33.323,13.814,20.964,33.557,12.755,21.127,33.855,13.404,21.315,33.708,11.593,21.129,34.167,10.987,20.651,34.479,10.452,19.969,34.587,10.085,21.172,34.187,12.0,20.987,34.646,11.393,20.509,34.958,10.858,19.826,35.066,10.491,21.134,33.935,13.304,21.211,34.634,13.106,21.201,35.003,13.029,20.824,35.25,11.93,20.136,35.837,11.88,19.743,36.247,12.923,21.481,36.143,13.15,20.813,36.713,13.101,17.934,35.214,10.629,17.331,35.319,10.139,18.137,34.895,10.291,17.518,35.024,9.827,17.27,35.386,10.444,17.015,35.521,10.642,16.29,36.006,10.742,16.118,36.166,10.676,15.664,36.368,7.959,16.747,35.745,8.275,16.427,34.771,7.495,16.405,35.98,6.904,15.636,33.182,6.62,15.802,33.319,5.545,16.154,33.603,4.171,15.556,33.218,4.007,16.345,33.75,3.13,15.747,33.365,2.966,14.672,33.082,1.928,14.782,33.328,1.266,14.75,33.815,0.744,14.582,34.449,0.46,14.31,35.109,0.47,13.986,35.67,0.772,13.672,36.025,1.307,15.284,33.221,2.105,15.4,33.482,1.402,15.366,33.999,0.847,15.187,34.673,0.546,14.898,35.374,0.556,14.554,35.971,0.876,14.221,36.347,1.445,12.325,35.899,2.804,12.2,35.842,2.629,12.255,35.75,2.418,11.487,36.141,2.684,12.026,35.431,2.206,11.245,35.805,2.46,11.829,35.325,2.286,11.792,34.397,2.696,11.978,34.25,2.737,11.176,34.231,3.164,12.105,34.145,2.964,11.31,34.12,3.405,5.921,34.876,3.005,5.77,34.189,3.092,5.798,35.388,2.901,6.525,35.678,3.14,5.511,35.957,3.005,6.212,36.299,3.253,4.285,36.628,2.638,4.126,37.34,2.646,4.351,35.99,1.909,3.497,36.421,2.076,3.295,37.121,2.053,3.875,37.921,1.865,2.879,35.657,1.627,2.234,35.828,1.253,2.876,35.073,1.406,2.232,35.198,1.015,3.104,34.247,1.29,3.483,33.919,1.279,3.831,33.752,1.352,4.767,34.247,1.721,4.752,33.284,2.295,4.494,32.805,1.272,3.547,32.57,0.404,3.282,31.917,0.171,2.934,31.264,0.228,2.562,30.718,0.565,2.226,30.369,1.127,1.981,30.274,1.821,2.983,32.856,0.244,2.718,32.203,0.011,2.37,31.55,0.068,1.998,31.004,0.405,1.662,30.655,0.967,1.417,30.56,1.661,2.028,34.447,0.653,2.26,33.476,0.185,1.669,33.087,-0.076,0.683,33.56,0.058,1.514,34.88,-0.22,0.923,34.49,-0.482,0.464,32.247,0.389,-0.398,33.149,0.395,-0.443,32.148,1.668,0.404,31.193,1.856,0.124,31.687,3.014,-1.03,31.525,2.573,-2.742,32.455,1.807,-2.75,32.391,1.832,-2.411,31.398,1.986,-1.109,31.568,2.449,-2.18,30.863,2.992,-2.171,30.032,1.875,-2.349,31.113,3.526,-2.87,30.356,3.686,-2.373,31.148,3.607,-2.897,30.396,3.781,-2.205,31.536,4.143,-2.721,31.202,4.566,-2.134,31.88,4.5,-2.65,31.545,4.923,-1.885,32.435,4.788,-1.579,32.748,4.881,-1.128,33.177,5.038,-0.795,33.294,4.928,0.325,32.744,4.221,0.397,32.379,4.013,0.776,33.409,4.966,0.131,33.741,5.337,0.823,33.422,5.038,0.178,33.754,5.407,-1.502,33.176,6.792,-1.305,33.222,6.938,-2.028,32.868,6.545,-2.31,32.609,6.53,-2.814,31.817,6.66,-2.827,31.685,6.761,-2.773,31.976,5.685,-2.727,31.932,5.44,-2.671,27.385,3.15,-2.631,27.245,3.573,-2.823,28.25,4.735,-2.702,27.191,4.919,-2.374,26.515,4.634,-1.767,26.034,3.869,-2.845,25.466,5.485,-3.428,25.153,5.776,-4.119,24.944,5.823,-4.808,24.871,5.619,-5.389,24.946,5.195,-5.77,25.156,4.617,-2.696,24.906,5.183,-3.279,24.593,5.474,-3.97,24.384,5.521,-4.659,24.311,5.316,-5.24,24.386,4.892,-5.621,24.596,4.315,-6.063,25.917,4.613,-6.326,26.371,4.223,-5.965,27.186,5.244,-5.228,26.544,5.96,-4.542,27.532,6.101,-5.687,27.832,6.201,-6.731,28.22,4.832,-6.6,27.41,4.115,-7.075,30.006,4.064,-7.174,30.082,4.334,-7.194,29.753,5.191,-7.18,29.397,5.804,-6.514,28.277,5.998,-5.825,28.086,6.387,-6.861,28.864,6.846,-6.129,28.661,7.26,-7.531,29.468,7.17,-8.005,29.872,6.997,-6.263,31.34,9.69,-6.638,31.563,10.393,-6.154,31.328,9.751,-6.524,31.551,10.458,-7.138,31.552,10.061,-8.186,31.536,10.983,-8.368,32.431,9.927,-8.137,31.32,9.114,-9.276,33.205,10.831,-9.345,33.16,10.922,-9.398,32.044,11.403,-10.129,31.69,11.399,-9.122,31.416,11.68,-9.874,31.108,11.657,-10.823,32.279,11.155,-10.557,33.025,11.002,-11.538,32.498,11.121,-11.327,33.261,10.966,-12.526,32.45,11.294,-12.958,33.21,11.167,-12.744,32.325,11.301,-13.188,33.079,11.175,-13.083,31.857,11.339,-13.705,32.281,11.378,-13.186,31.703,11.333,-13.815,32.117,11.371,-11.828,30.25,10.503,-11.176,30.06,10.706,-12.073,29.682,10.603,-11.341,29.467,10.832,-12.861,29.319,10.725,-12.928,28.638,11.026,-12.951,28.13,11.575,-12.928,27.881,12.28,-13.501,29.404,10.776,-13.568,28.723,11.077,-13.591,28.215,11.626,-13.568,27.966,12.331,-14.128,31.685,11.311,-14.437,30.604,11.034,-15.327,31.121,11.562,-15.149,32.078,10.935,-15.457,29.469,11.911,-15.419,28.998,12.809,-16.499,30.193,12.369,-16.463,29.75,13.214,-15.04,29.549,14.534,-14.307,29.347,14.826,-15.745,29.893,14.744,-16.242,30.132,15.881,-16.464,31.301,15.457,-16.921,30.408,14.652,-16.277,31.824,15.75,-16.275,31.827,15.756,-15.808,29.788,16.871,-15.246,29.365,16.679,-15.617,29.853,17.455,-14.987,29.378,17.24,-13.74,29.175,16.445,-13.658,29.213,16.064,-13.593,29.075,16.749,-13.2,29.222,17.779,-12.331,28.986,18.524,-11.999,28.677,18.507,-13.016,29.535,18.797,-12.945,29.301,20.043,-13.396,30.362,19.511,-14.242,29.853,18.713,-13.214,30.574,19.827,-13.814,30.98,19.433,-13.007,31.057,20.01,-13.607,31.463,19.616,-12.845,30.159,21.185,-12.614,29.481,21.574,-12.765,30.671,22.133,-12.562,30.075,22.474,-12.072,28.405,21.297,-12.262,28.271,20.513,-11.509,27.267,21.304,-11.676,27.149,20.616,-11.007,28.319,21.897,-10.598,28.315,22.068,-10.241,28.258,22.152,-9.999,28.173,22.19,-9.936,28.07,22.157,-9.722,28.621,22.652,-9.6,27.986,22.095,-9.36,28.531,22.585,-9.255,27.971,22.014,-8.768,28.452,22.546,-9.151,27.923,21.96,-8.652,28.398,22.486,-8.522,29.0,24.835,-8.534,29.15,25.882,-8.898,30.058,25.479,-9.456,29.506,24.76,-8.888,30.626,25.78,-8.787,30.827,26.054,-8.543,31.13,26.812,-8.288,31.104,27.215,-7.778,29.408,27.415,-7.253,28.853,27.429,-6.595,28.527,27.217,-7.45,29.713,27.843,-6.941,29.175,27.856,-6.304,28.859,27.651,-5.126,28.61,26.631,-6.0,28.195,26.185,-5.205,28.382,25.501,-4.401,28.02,26.109,-4.968,28.777,26.922,-3.895,28.918,27.415,-4.325,30.018,27.557,-5.252,29.384,27.88,-3.999,30.631,27.556,-3.368,31.101,27.34,-2.02,31.152,27.047,-1.94,31.08,27.069,-1.9,30.755,27.105,-1.292,31.283,27.44,-1.464,30.369,26.947,-0.876,30.915,27.289,-1.828,32.408,27.728,-2.793,32.412,27.622,-1.833,32.521,27.777,-2.798,32.531,27.674,-0.968,33.549,28.929,-1.296,34.145,29.29,-0.784,33.521,29.14,-1.109,34.117,29.505,-0.376,33.401,29.615,-0.554,33.863,30.369,0.022,33.296,29.774,-0.157,33.758,30.528,1.014,32.364,29.698,1.509,32.268,30.26,0.998,32.149,29.674,1.493,32.047,30.235,1.11,31.784,29.731,1.111,31.028,29.219,0.921,30.824,28.642,1.375,30.274,28.773,0.869,30.631,27.949,1.322,30.075,28.058,1.614,29.463,30.259,1.239,28.896,31.045,1.959,29.597,31.313,1.583,30.398,30.743,2.189,29.808,31.483,2.753,29.604,31.76,2.379,27.944,32.278,2.194,27.25,32.181,1.935,26.724,31.756,1.672,26.506,31.118,1.476,26.655,30.437,2.904,27.853,32.305,2.694,27.063,32.195,2.399,26.464,31.711,2.1,26.216,30.984,1.876,26.386,30.209,3.112,29.596,31.814,3.857,29.577,31.743,3.383,28.051,32.307,2.99,27.245,32.316,2.925,26.434,31.941,3.209,25.874,31.302,3.752,25.743,30.6,3.815,27.781,32.467,3.47,27.074,32.475,3.413,26.361,32.146,3.662,25.869,31.584,4.139,25.754,30.968,4.096,28.936,31.7,3.988,29.764,31.731,4.385,28.974,31.439,4.305,29.806,31.445,4.934,29.031,30.845,5.256,28.664,30.339,6.275,31.467,30.365,6.761,32.002,30.546,7.214,32.31,31.05,6.401,31.417,30.248,6.784,31.993,30.524,7.374,32.246,30.9,6.876,31.019,29.645,7.636,31.299,29.557,6.473,30.042,29.455,6.83,30.808,28.793,7.588,31.078,28.663,8.506,30.743,29.172,8.314,31.951,30.536,9.017,31.26,30.161,9.721,31.418,30.231,9.982,32.325,30.703,8.708,31.926,31.529,9.456,32.094,31.604,10.716,31.446,29.393,11.503,32.155,29.46,10.436,32.783,30.729,10.819,33.82,30.995,11.509,34.599,30.661,11.631,35.175,31.213,11.708,34.648,30.566,11.829,35.223,31.118,11.947,34.873,30.529,12.314,35.284,29.686,12.27,35.206,28.761,12.314,35.099,28.442,12.364,35.302,28.184,12.32,35.157,27.87,12.312,34.121,27.459,12.597,34.221,26.741,12.344,34.019,27.457,12.628,34.124,26.74,13.049,33.265,28.263,13.909,32.994,28.013,12.619,33.36,29.318,12.956,32.861,28.347,13.826,32.63,28.089,14.807,32.712,28.607,14.36,33.358,26.84,13.822,33.724,26.355,14.484,33.453,26.773,13.946,33.818,26.288,15.222,33.852,26.914,15.757,33.658,27.953,16.824,33.59,27.441,16.205,34.589,27.056,16.815,32.602,28.332,16.658,31.92,28.499,16.208,31.36,28.474,17.201,32.482,27.99,17.022,31.706,28.181,16.509,31.068,28.152,17.613,32.864,27.301,17.977,32.472,26.748,17.821,33.769,26.797,18.185,33.378,26.244,14.429,34.37,26.01,14.432,34.415,25.999,15.127,35.248,26.369,15.885,34.7,26.891,16.289,35.686,26.777,15.323,36.098,26.992,17.287,35.706,26.956,17.398,34.455,27.012,18.157,34.258,26.472,18.549,35.378,26.058,18.291,35.95,27.619,18.958,35.777,27.145,18.629,35.056,25.129,18.475,34.514,24.131,16.661,31.991,23.674,16.942,32.811,22.693,17.916,33.388,22.799,18.611,33.347,21.642,16.631,32.825,22.483,16.605,32.691,21.42,17.208,32.561,20.648,17.85,32.618,20.535,18.774,34.826,22.51,18.827,34.863,22.487,19.475,33.655,21.191,19.683,33.485,20.319,20.35,34.293,21.276,20.558,34.123,20.404,19.426,35.239,22.56,19.717,35.438,22.689,21.162,35.386,22.54,20.904,34.67,21.557,21.531,34.823,20.96,22.302,35.663,21.457,22.188,34.813,22.906,22.779,34.957,22.345,22.345,36.143,20.509,23.039,36.494,20.514,22.307,36.236,20.059,23.003,36.583,20.08,22.139,36.288,19.254,21.756,36.115,18.736,23.321,36.767,19.298,24.012,37.079,18.722,24.456,37.413,18.415,24.503,37.544,18.164,22.453,36.627,16.428,22.396,36.532,16.5,22.394,36.426,16.873,22.123,35.912,16.364,22.088,36.202,17.281,21.797,35.674,16.797,22.474,35.096,15.103,22.27,34.908,14.311,22.539,35.7,14.943,22.335,35.512,14.152,22.77,36.934,15.867,22.627,36.379,14.703,22.651,37.676,14.666,23.75,37.638,15.369,22.144,37.963,14.06,21.474,37.101,13.379,20.875,38.203,13.668,21.86,38.818,13.183,19.198,36.531,13.38,19.242,36.469,13.319,18.984,36.792,13.58,18.597,37.053,13.826,17.51,38.09,14.103,16.976,35.97,11.666,16.934,35.917,11.584,16.384,37.727,13.856,16.794,38.541,14.106,14.566,37.461,13.478,14.189,37.883,13.984,13.992,38.571,14.235,14.504,37.453,13.443,14.179,37.881,13.979,13.921,38.561,14.195,14.157,37.448,12.409,14.222,37.473,12.285,14.335,37.544,12.034,13.864,38.06,11.654,14.41,37.558,11.961,13.942,38.075,11.579,15.714,37.274,11.927,15.142,37.529,11.067,14.812,37.827,10.872,14.832,37.677,9.97,14.177,38.944,10.673,14.196,38.794,9.771,14.635,36.689,8.002,14.455,36.748,7.936,14.123,36.914,7.669,13.674,37.214,8.183,13.527,37.771,8.658,13.587,36.743,7.494,13.445,37.142,8.108,12.991,37.601,8.483,13.312,36.385,7.563,13.136,36.146,7.517,12.623,35.989,5.987,11.913,36.033,5.667,12.979,36.325,5.246,12.268,36.369,4.925,14.322,37.132,5.637,15.143,37.186,5.786,15.903,36.848,5.869,16.425,36.196,5.868,14.502,37.278,4.588,15.323,37.332,4.736,16.083,36.994,4.82,16.606,36.342,4.819,13.143,36.458,4.289,12.365,36.448,4.359,13.061,36.289,3.349,12.283,36.279,3.419,11.764,35.563,6.171,11.413,35.341,6.368,10.033,35.523,6.425,9.813,35.67,6.394,9.829,37.102,6.024,9.595,37.764,6.646,10.041,37.492,5.688,9.808,38.155,6.31,11.27,37.259,4.422,11.508,36.984,3.625,10.896,37.702,4.158,11.134,37.427,3.36,9.815,38.011,5.415,9.73,38.485,6.119,10.002,38.291,4.407,9.161,38.458,5.035,9.076,38.933,5.739,9.779,39.537,6.258,8.82,38.501,3.578,8.467,38.242,3.008,8.203,37.745,2.562,8.068,37.086,2.307,8.084,36.368,2.284,8.276,38.477,3.926,7.923,38.219,3.356,7.659,37.722,2.909,7.524,37.063,2.654,7.54,36.345,2.631,8.678,38.596,5.248,8.796,39.062,5.8,7.985,38.595,5.398,8.103,39.061,5.949,6.864,38.506,5.176,6.267,38.127,4.448,4.907,36.951,3.586,4.45,37.555,3.248,4.874,36.908,3.553,4.418,37.512,3.216,4.799,38.775,4.009,4.58,39.416,4.264,4.351,39.715,4.301,3.601,40.276,4.466,2.869,40.945,3.568,2.587,41.619,3.686,2.66,42.299,3.969,2.888,40.965,3.51,2.593,41.625,3.668,2.678,42.318,3.914,3.302,41.896,2.75,4.262,40.087,2.823,4.459,39.499,2.252,4.239,38.87,1.736,3.657,38.358,1.405,4.119,40.454,2.377,4.31,39.885,1.823,4.097,39.275,1.324,3.534,38.779,1.003,2.225,37.637,1.369,1.781,37.102,1.013,2.363,37.381,1.585,1.921,36.842,1.232,1.641,37.354,0.863,2.058,38.064,1.076,1.383,37.566,0.676,1.81,38.267,0.896,0.868,37.794,0.311,0.971,38.638,0.3,0.471,37.839,0.059,0.574,38.684,0.049,-0.128,36.804,-0.778,-0.738,36.329,-0.844,-0.519,37.275,-0.556,-1.128,36.8,-0.623,-0.549,34.32,-0.415,-0.665,33.819,-0.004,-2.227,33.993,0.877,-3.033,33.869,0.84,-2.197,33.709,1.054,-3.006,33.61,1.003,-2.151,33.453,1.269,-2.933,33.172,1.342,-2.121,33.383,1.317,-2.904,33.105,1.388,-2.923,32.906,1.475,-2.889,32.685,1.611,-3.496,31.38,1.278,-3.378,31.43,1.433,-3.426,30.162,0.67,-3.95,29.567,0.643,-4.268,30.993,0.326,-4.865,30.317,0.294,-4.604,28.321,1.602,-4.568,28.296,1.593,-4.003,27.876,1.22,-3.451,28.942,0.783,-2.614,28.935,1.212,-2.664,27.864,1.908,-3.325,27.108,0.429,-2.428,27.099,0.889,-2.706,28.062,2.223,-2.528,27.279,2.33,-2.747,28.083,2.429,-2.572,27.302,2.555,-1.509,26.259,1.951,-1.385,25.62,1.512,-1.597,24.94,1.182,-2.1,24.358,1.028,-2.792,23.991,1.083,-3.531,23.916,1.335,-1.808,26.528,1.434,-1.692,25.927,1.02,-1.891,25.287,0.71,-2.364,24.739,0.565,-3.016,24.394,0.617,-3.712,24.323,0.854,-3.784,23.588,2.016,-3.29,23.259,2.45,-2.765,23.213,2.963,-2.294,23.458,3.471,-1.953,23.954,3.894,-1.797,24.621,4.161,-4.242,23.509,2.478,-3.748,23.18,2.912,-3.222,23.134,3.424,-2.751,23.379,3.933,-2.41,23.875,4.356,-2.255,24.542,4.623,-5.602,24.908,2.994,-6.014,25.922,2.907,-5.546,26.874,1.809,-4.79,26.228,0.948,-5.645,28.633,1.954,-6.318,27.857,2.528,-6.427,28.787,3.241,-6.546,29.312,2.215,-8.663,30.709,3.355,-9.087,31.245,3.594,-9.162,31.917,3.857,-8.822,30.743,2.847,-9.305,31.353,3.119,-9.389,32.117,3.418,-8.553,33.397,4.396,-8.459,33.295,4.604,-8.475,32.261,5.052,-8.927,31.667,4.299,-8.666,30.96,4.156,-7.851,30.57,4.711,-8.778,31.484,5.761,-8.481,30.681,5.599,-8.337,33.244,5.569,-8.382,33.333,5.811,-8.935,31.832,6.53,-8.908,31.191,6.995,-8.553,30.646,7.447,-9.019,32.187,7.023,-8.992,31.547,7.489,-8.637,31.002,7.941,-8.467,33.559,6.129,-8.531,33.895,6.52,-8.542,34.151,6.834,-8.543,34.262,7.107,-8.752,33.919,8.052,-9.042,34.527,8.384,-9.586,35.044,8.416,-8.814,33.809,8.251,-9.066,34.484,8.461,-9.648,34.934,8.614,-8.946,33.512,8.837,-9.442,33.998,9.396,-8.819,33.108,9.3,-9.314,33.594,9.86,-11.635,34.85,9.367,-11.993,34.686,9.758,-12.296,34.338,10.389,-12.272,34.122,10.666,-13.922,34.345,9.396,-14.577,34.043,9.579,-14.999,33.562,10.231,-14.976,33.947,9.606,-15.783,32.923,10.553,-16.492,33.413,10.83,-16.283,34.449,10.733,-16.26,34.835,10.109,-15.722,33.975,8.851,-16.431,34.465,9.129,-16.442,34.961,11.264,-16.905,34.398,12.171,-16.333,35.328,12.576,-16.824,35.909,11.743,-17.132,32.663,11.912,-16.609,32.16,11.434,-17.405,31.812,12.463,-16.913,31.338,12.013,-15.707,34.946,14.549,-15.462,35.661,14.494,-15.709,34.95,14.6,-15.463,35.665,14.545,-15.774,35.094,15.164,-15.77,36.027,15.399,-15.803,35.072,15.247,-15.806,36.0,15.504,-15.921,34.848,15.534,-15.871,35.591,15.961,-15.907,34.674,15.827,-15.856,35.406,16.272,-15.867,34.175,16.184,-15.686,34.544,16.813,-15.9,34.979,17.388,-15.867,34.174,16.184,-15.686,34.544,16.813,-15.9,34.978,17.388,-16.12,33.726,16.69,-16.292,33.952,17.474,-16.863,34.335,17.946,-16.295,33.282,16.467,-16.334,32.293,16.217,-16.692,33.664,17.886,-17.256,34.175,18.128,-16.762,32.476,18.167,-16.598,33.341,19.015,-17.169,33.877,19.168,-18.225,33.934,18.706,-16.183,33.426,19.399,-16.449,34.031,19.792,-15.913,33.404,19.616,-16.179,34.009,20.009,-15.384,33.203,20.016,-15.162,32.088,19.814,-14.208,32.663,20.115,-14.766,33.16,20.951,-15.87,34.114,20.671,-15.27,33.866,21.407,-14.988,34.331,21.864,-15.152,35.299,21.835,-16.454,34.522,21.393,-16.133,35.052,21.913,-14.07,35.455,22.185,-14.003,35.375,22.232,-13.905,34.663,22.452,-13.574,34.667,23.13,-13.613,34.826,23.866,-13.917,34.584,22.463,-13.574,34.666,23.13,-13.628,34.721,23.88,-13.621,34.646,22.957,-13.615,34.622,23.866,-13.85,34.459,22.459,-13.574,34.665,23.13,-13.54,34.555,23.875,-13.75,34.421,22.439,-13.573,34.665,23.129,-13.407,34.504,23.847,-13.136,33.02,21.57,-12.602,32.338,21.92,-13.162,32.905,21.386,-12.628,32.223,21.736,-12.257,32.682,22.29,-12.158,32.738,22.444,-12.057,32.252,23.543,-12.146,32.793,24.106,-12.355,31.204,23.539,-11.563,31.586,24.181,-11.61,32.072,24.796,-12.593,32.558,25.138,-10.896,31.304,24.291,-10.827,31.212,24.288,-11.033,32.009,25.323,-10.565,32.141,26.151,-10.412,32.394,26.847,-10.627,33.029,27.649,-10.106,33.304,28.801,-10.627,33.499,29.496,-9.642,33.371,29.102,-10.105,33.575,29.835,-9.22,33.805,29.284,-9.06,33.864,29.286,-7.055,32.859,28.203,-7.111,32.473,28.12,-7.442,31.813,28.009,-8.107,31.249,27.554,-6.15,30.83,28.536,-5.49,30.491,28.433,-5.624,31.832,28.693,-4.944,31.482,28.587,-6.554,33.372,28.398,-7.085,33.858,28.596,-6.358,33.543,28.501,-6.886,34.032,28.7,-5.778,33.894,28.864,-4.992,32.931,28.933,-4.384,34.009,28.806,-5.087,34.485,29.727,-2.929,33.314,27.892,-2.807,32.96,27.788,-1.947,34.301,28.766,-1.664,34.195,28.877,-3.399,34.977,29.591,-3.607,35.434,30.381,-3.272,35.838,31.346,-3.155,35.808,31.475,-2.302,34.614,30.486,-1.864,34.195,31.438,-2.816,35.606,32.088,-2.561,35.757,32.999,-2.266,35.832,33.266,-1.986,35.927,33.521,-1.369,35.798,33.863,-1.516,36.243,34.55,-1.311,35.763,33.898,-1.458,36.208,34.585,-1.135,34.231,33.371,-0.62,33.69,32.892,-0.68,34.329,33.774,-0.149,33.771,33.28,0.782,33.564,31.865,1.485,32.996,31.719,0.745,33.605,31.548,1.445,33.039,31.383,1.651,32.911,32.002,1.157,33.489,32.28,2.33,32.264,32.608,2.475,33.369,32.552,1.966,33.939,32.821,0.995,33.799,33.328,4.047,32.594,32.828,4.367,33.615,32.763,5.24,32.869,32.092,5.839,33.317,32.115,6.415,33.599,32.5,5.298,32.801,32.049,5.862,33.29,32.097,6.473,33.531,32.457,5.631,32.587,31.853,6.491,32.9,31.957,5.786,32.284,31.482,6.646,32.596,31.586,7.65,32.799,33.036,8.282,32.782,33.339,7.456,33.25,33.468,8.088,33.232,33.771,9.218,33.504,33.924,9.47,33.702,34.621,9.884,33.653,33.641,10.136,33.851,34.338,10.484,33.813,33.186,11.184,34.041,33.624,10.776,34.152,32.601,11.448,34.347,33.095,10.894,34.883,31.924,10.894,34.884,31.918,12.108,35.053,32.691,12.653,35.222,32.628,13.835,36.783,30.739,13.494,36.802,29.89,12.793,36.572,29.122,12.76,36.531,29.116,12.603,36.262,29.311,12.513,36.111,29.345,13.507,37.045,28.828,13.762,37.141,28.603,14.109,36.969,27.688,14.119,36.883,27.572,14.097,36.607,27.288,13.872,36.188,26.823,13.083,35.409,26.504,12.898,35.301,26.602,14.008,35.381,26.056,14.062,35.339,26.036,16.879,36.6,27.129,16.887,36.567,27.106,16.892,36.877,27.423,16.903,36.921,27.485,17.306,37.06,28.365,18.262,36.418,28.107,18.327,37.31,28.877,17.397,36.971,29.561,18.651,37.512,28.828,18.92,37.677,28.769,20.491,36.576,26.979,20.103,36.248,26.071,19.063,35.993,25.564,19.038,35.976,25.571,20.031,36.048,25.039,20.282,35.926,24.528,20.189,35.798,23.898,21.024,35.746,23.844,20.167,35.768,23.621,21.0,35.714,23.552,22.33,34.974,24.473,23.112,35.077,24.775,21.902,35.404,25.363,22.733,35.512,25.684,24.618,36.828,22.282,24.145,35.597,22.419,23.545,36.245,21.43,24.792,36.445,21.024,24.858,37.437,22.498,25.046,37.85,22.51,25.519,36.731,20.343,25.087,36.65,19.709,26.345,37.004,19.745,25.913,36.922,19.111,27.734,38.788,19.73,27.927,39.849,20.38,27.444,40.04,18.9,27.269,39.347,18.212,26.61,40.054,17.991,27.291,40.76,18.214,26.124,40.02,17.695,25.949,40.702,17.16,26.029,39.95,17.636,25.859,40.637,17.105,25.605,39.213,17.215,26.387,38.405,17.542,26.036,37.744,17.741,24.874,37.837,17.63,25.192,38.677,16.244,24.819,37.975,16.456,25.38,40.341,16.322,25.227,40.404,15.701,24.594,39.291,14.927,24.519,39.903,14.706,22.953,40.838,12.997,22.209,39.807,12.782,21.546,40.885,12.532,22.588,41.107,11.764,20.026,39.85,13.563,19.998,39.646,13.716,20.389,38.675,13.882,20.628,38.47,13.771,19.481,38.917,14.113,19.224,38.821,14.142,19.098,38.57,14.193,18.676,39.18,13.989,18.89,38.452,14.259,18.481,39.069,14.051,18.238,40.781,12.749,19.227,41.259,12.721,17.037,41.809,12.674,17.534,40.705,12.651,16.995,40.079,12.988,15.935,40.53,13.362,16.264,41.417,11.776,15.65,40.704,12.159,15.903,40.181,14.312,15.071,40.038,14.539,15.91,40.165,14.326,15.079,40.019,14.555,16.541,39.218,14.268,16.101,38.496,14.465,16.636,39.139,14.189,16.196,38.416,14.386,14.715,38.669,14.591,14.485,38.516,14.449,14.536,40.339,13.748,14.265,40.269,13.54,13.929,40.177,13.305,13.777,40.103,13.245,13.21,38.741,13.621,13.122,38.179,12.912,13.217,38.726,13.632,13.13,38.163,12.923,13.125,38.198,12.663,13.027,38.682,13.2,13.117,38.223,12.64,13.018,38.707,13.177,12.996,39.117,12.584,13.001,39.139,12.58,13.679,39.653,11.815,14.006,38.935,11.096,14.202,39.172,10.398,14.142,40.211,10.165,14.565,40.234,11.693,14.761,40.471,10.995,13.983,39.921,8.997,14.395,40.354,8.402,13.797,38.723,8.976,13.278,39.5,8.204,13.689,39.933,7.608,14.883,39.865,7.405,12.56,39.529,8.018,11.961,39.384,8.005,11.143,38.888,8.136,11.006,38.586,8.24,12.678,37.223,8.62,12.724,37.245,8.607,12.464,36.923,8.619,12.207,36.647,8.636,12.283,35.716,8.092,12.034,36.336,8.629,12.034,35.522,8.195,11.773,36.133,8.737,10.873,34.731,7.258,10.876,34.74,7.228,11.121,34.856,6.991,11.157,34.905,6.893,10.047,35.592,8.74,10.173,37.726,8.566,10.787,38.241,8.33,11.07,39.565,7.4,10.62,40.266,6.632,9.963,40.844,6.026,9.021,41.066,5.884,8.153,41.068,6.2,8.096,41.047,6.208,7.959,40.774,6.274,7.544,41.316,5.98,7.716,40.626,6.335,7.317,41.178,6.036,7.33,39.511,6.381,6.685,39.297,6.122,7.378,39.41,6.345,6.733,39.197,6.086,6.491,39.867,6.242,6.456,39.904,6.226,5.99,40.117,5.782,6.25,40.907,5.742,5.582,40.25,5.538,5.871,41.03,5.516,5.21,40.632,5.483,5.649,41.236,5.432,4.645,41.078,5.618,5.116,41.658,5.559,3.408,41.138,5.519,3.003,41.766,5.38,2.934,42.424,5.003,3.364,41.103,5.473,3.002,41.766,5.379,2.892,42.391,4.96,3.944,43.209,4.906,4.745,42.971,5.182,3.96,43.221,4.873,4.76,42.983,5.151,4.71,43.221,4.252,5.155,42.907,4.739,5.404,43.365,3.761,5.803,43.042,4.282,5.779,43.486,2.422,6.483,43.104,2.055,5.489,43.675,1.669,6.194,43.293,1.302,5.339,43.91,1.53,5.986,43.783,1.194,4.575,44.508,1.235,5.456,45.0,1.343,6.102,44.873,1.007,6.334,44.164,0.32,3.251,45.441,1.012,3.282,44.269,1.009,3.266,43.29,1.595,3.323,43.142,1.751,3.616,42.72,2.153,3.375,41.857,1.983,4.557,43.133,2.52,3.674,42.56,2.807,3.43,41.706,2.6,3.907,40.928,2.038,2.951,41.817,1.49,2.839,41.781,1.297,2.704,41.646,0.967,2.654,41.531,0.77,3.187,40.311,0.396,2.834,39.516,0.29,2.389,40.777,-0.226,2.014,39.933,-0.338,2.127,41.633,-0.362,1.558,41.674,-0.844,0.845,41.655,-1.065,2.074,42.282,-0.245,1.505,42.322,-0.728,0.792,42.304,-0.948,-0.272,40.894,-0.946,-0.636,40.339,-0.527,-1.351,41.543,-0.934,-1.671,41.055,-0.566,-0.912,39.093,0.459,-0.201,39.707,-0.486,0.292,38.573,0.013,-0.863,37.956,-0.236,-0.958,39.216,1.205,-0.956,39.217,1.211,-1.104,38.893,1.784,-1.205,38.534,2.506,-2.048,38.169,1.573,-2.211,37.989,0.836,-2.188,37.554,0.194,-1.984,36.943,-0.238,-2.581,37.854,1.767,-2.743,37.674,1.03,-2.721,37.24,0.388,-2.517,36.629,-0.044,-1.356,38.233,2.543,-1.354,38.227,2.556,-2.309,37.607,3.201,-2.383,37.855,3.885,-2.704,37.492,3.202,-2.773,37.742,3.886,-3.847,37.174,2.505,-4.559,37.332,2.871,-3.62,37.092,1.484,-4.263,36.465,2.026,-4.967,36.636,2.401,-5.501,37.524,2.478,-4.278,35.521,1.255,-3.504,36.025,0.47,-2.879,35.359,0.135,-3.111,34.276,0.63,-4.697,34.871,0.368,-4.148,34.286,0.074,-5.345,35.348,1.827,-5.618,35.964,2.279,-5.61,35.254,1.789,-5.902,35.864,2.238,-5.947,35.231,1.913,-6.308,34.89,1.897,-6.551,34.055,1.28,-7.262,33.954,1.424,-6.57,33.947,1.111,-7.281,33.845,1.255,-5.641,33.872,0.032,-6.684,33.045,-0.133,-5.456,31.387,-0.256,-5.65,30.646,-0.071,-5.903,30.07,0.405,-6.078,31.502,-0.448,-6.272,30.761,-0.263,-6.526,30.185,0.214,-7.706,33.154,0.162,-8.282,32.526,0.042,-8.477,33.69,0.685,-8.983,33.138,0.579,-8.734,31.205,0.647,-8.554,30.668,1.058,-8.184,30.309,1.533,-9.115,31.44,1.122,-8.935,30.903,1.533,-8.565,30.544,2.008,-9.562,31.859,1.514,-9.752,31.97,2.347,-9.595,32.379,3.089,-9.773,32.345,1.455,-9.941,32.443,2.187,-9.803,32.802,2.838,-8.741,33.687,4.023,-8.677,33.584,4.129,-8.893,33.925,3.813,-8.823,34.707,3.234,-9.28,36.61,5.124,-9.856,37.009,5.426,-9.285,35.701,4.714,-9.543,35.888,5.659,-10.103,36.328,5.931,-10.804,36.844,5.511,-9.99,36.219,6.068,-9.97,36.145,6.449,-9.813,35.838,7.172,-9.502,35.535,7.52,-11.872,36.231,7.368,-11.988,36.27,7.295,-14.646,34.061,7.794,-15.416,33.916,7.93,-16.177,34.132,8.009,-16.768,34.662,8.015,-17.067,35.396,7.946,-14.803,33.896,6.727,-15.573,33.752,6.863,-16.334,33.967,6.942,-16.926,34.498,6.948,-17.224,35.231,6.879,-16.701,36.931,8.144,-16.614,37.159,7.535,-16.341,36.967,9.867,-16.853,36.104,9.318,-16.441,35.574,10.243,-16.832,36.484,10.73,-16.212,38.197,10.814,-16.802,37.367,11.519,-16.244,38.008,12.42,-16.815,38.909,11.7,-15.951,37.329,13.157,-15.977,37.639,13.978,-15.918,37.037,13.262,-15.94,37.312,14.095,-15.814,36.72,13.298,-15.767,36.544,13.306,-15.581,35.967,13.71,-15.531,35.798,13.946,-16.123,38.606,13.758,-16.746,39.022,14.944,-15.859,39.872,14.268,-16.641,39.737,13.111,-15.678,40.464,15.636,-16.006,40.454,16.434,-16.267,40.344,17.175,-16.505,40.052,17.472,-17.339,38.583,16.433,-17.746,38.469,17.608,-17.282,36.215,17.573,-16.931,35.737,17.635,-17.57,36.224,17.733,-17.762,36.515,17.881,-17.934,36.777,18.036,-18.274,37.034,18.436,-19.441,35.992,18.622,-19.712,35.434,19.028,-19.596,34.916,19.545,-19.802,36.712,19.322,-20.093,36.114,19.757,-19.968,35.559,20.311,-17.387,35.858,22.126,-18.411,36.153,22.14,-17.514,37.678,22.068,-16.848,38.105,21.836,-15.433,37.568,21.68,-14.826,37.961,21.892,-14.513,38.46,22.362,-15.306,37.377,21.759,-14.779,37.891,21.921,-14.386,38.269,22.441,-14.748,36.793,22.006,-14.66,36.033,22.031,-13.917,37.791,22.886,-13.767,37.697,23.215,-13.514,36.291,24.03,-13.557,35.584,23.706,-13.398,36.836,24.492,-13.189,37.248,25.201,-12.55,37.331,26.167,-12.545,37.324,26.221,-12.856,37.04,26.876,-12.677,37.726,27.356,-13.011,36.867,27.188,-12.825,37.56,27.655,-14.398,36.026,25.666,-14.351,35.503,24.908,-14.884,35.651,25.861,-14.84,35.159,25.149,-15.66,34.62,25.848,-15.529,33.842,25.588,-15.107,33.132,25.67,-14.521,32.701,26.071,-16.388,34.268,26.532,-16.256,33.49,26.272,-15.835,32.78,26.354,-15.249,32.348,26.755,-13.873,32.756,25.763,-12.806,32.544,25.553,-12.737,34.183,23.843,-12.507,34.132,23.083,-12.813,34.252,23.816,-12.583,34.201,23.056,-12.274,33.873,23.076,-12.311,33.773,23.824,-12.219,33.799,23.069,-12.256,33.7,23.817,-13.261,32.831,26.948,-12.951,33.045,27.47,-12.756,33.205,27.735,-12.366,33.444,27.997,-11.704,33.69,28.244,-11.695,33.752,29.151,-11.536,33.7,28.241,-11.528,33.762,29.149,-12.36,33.557,29.412,-12.375,32.995,30.374,-12.984,33.192,30.881,-13.396,33.778,31.273,-13.487,34.574,31.431,-13.539,35.231,30.533,-13.368,33.216,29.134,-13.941,33.402,29.612,-14.329,33.953,29.981,-14.414,34.702,30.13,-13.327,34.909,31.975,-13.049,34.561,32.61,-12.46,34.393,33.086,-11.712,34.45,33.282,-13.402,35.986,32.657,-13.158,35.68,33.214,-12.641,35.532,33.633,-11.983,35.582,33.805,-10.588,35.539,33.094,-10.217,36.149,33.577,-10.216,35.557,32.787,-9.846,36.167,33.269,-9.835,33.842,31.682,-9.124,34.48,31.171,-9.365,36.053,32.241,-9.272,36.431,32.917,-8.941,36.458,31.945,-8.833,36.85,32.61,-8.11,36.571,30.564,-7.984,36.277,30.508,-7.855,35.99,30.446,-7.089,36.076,30.242,-7.837,35.514,30.333,-7.071,35.583,30.126,-5.715,36.803,31.184,-5.895,35.767,30.672,-5.231,35.328,30.623,-4.298,35.865,31.082,-5.367,36.394,32.224,-4.703,35.954,32.176,-5.833,37.21,31.174,-6.428,37.101,30.493,-5.839,37.631,31.112,-6.434,37.522,30.431,-5.774,38.879,31.533,-5.812,39.004,31.777,-6.333,37.996,33.005,-7.225,38.074,33.303,-5.806,37.061,32.519,-6.2,37.537,33.523,-7.091,37.615,33.821,-8.075,37.258,33.278,-5.729,37.588,34.092,-5.355,37.554,34.43,-2.799,36.682,36.214,-2.893,37.236,36.774,-3.648,37.033,35.688,-3.749,37.621,36.283,-2.768,37.193,36.949,-2.459,36.459,36.581,-2.466,36.858,37.939,-2.137,36.078,37.548,-1.136,35.748,36.148,-1.074,35.815,35.554,-1.061,35.917,34.669,-1.15,35.974,34.573,-0.57,35.211,34.737,-0.356,34.339,34.072,0.513,34.067,34.035,1.237,34.645,34.659,-0.181,34.553,35.511,0.604,34.306,35.477,2.749,35.181,35.409,1.757,34.788,36.052,2.53,36.276,36.913,2.605,36.317,36.921,2.983,35.165,35.294,4.037,35.043,35.454,3.374,34.983,33.592,3.66,34.573,33.045,3.175,34.946,33.513,3.474,34.539,32.971,4.188,34.506,33.163,4.286,34.873,33.789,4.804,34.44,33.093,4.926,34.804,33.717,5.85,34.119,32.749,5.97,33.836,32.548,6.06,34.765,33.925,6.289,34.76,34.283,6.631,34.68,34.417,6.937,34.67,34.666,7.624,34.347,34.883,7.654,34.376,35.642,8.13,34.095,34.888,8.124,34.142,35.647,8.678,33.937,34.898,9.2,33.733,34.595,9.853,33.241,36.598,10.515,33.387,37.074,9.466,33.282,37.124,10.128,33.428,37.6,11.298,33.58,36.78,11.896,33.843,36.867,11.895,33.776,35.548,11.236,33.892,34.645,13.282,34.037,35.414,12.931,34.27,36.405,14.013,35.012,33.967,13.631,34.727,33.371,14.251,36.057,33.382,13.816,35.733,32.703,14.086,36.854,35.178,14.2,37.127,35.135,14.853,37.654,34.072,14.603,36.768,33.446,15.013,37.559,32.779,15.807,37.805,33.519,14.788,37.445,32.008,15.452,37.677,31.464,14.682,37.342,31.834,15.348,37.577,31.294,14.446,37.154,31.596,14.076,36.913,31.313,14.901,37.051,30.182,16.031,37.003,30.125,15.072,37.365,28.619,14.689,37.34,28.494,15.757,37.319,28.574,16.338,37.254,28.338,16.062,37.943,31.916,16.848,38.188,32.11,17.161,38.402,32.27,17.648,38.722,32.141,18.148,37.666,30.64,18.624,38.027,30.523,17.947,39.004,32.052,18.122,39.185,32.063,19.69,39.26,31.243,19.965,38.985,30.776,19.847,38.692,30.187,19.795,38.437,29.57,19.637,38.204,28.972,19.557,38.139,28.895,21.219,37.639,28.476,21.395,38.149,29.403,22.966,36.826,27.054,23.528,37.042,26.655,22.98,37.397,27.385,23.543,37.614,26.986,24.676,38.65,25.195,23.991,38.977,26.238,23.563,39.903,24.495,23.3,40.79,24.643,23.547,39.932,24.256,23.281,40.824,24.361,24.616,39.568,22.913,25.128,38.858,23.953,25.294,38.559,22.637,25.895,39.786,22.444,25.104,38.148,22.746,25.373,38.275,22.054,25.088,38.091,22.73,25.355,38.216,22.037,27.017,39.781,21.938,26.612,40.255,22.335,26.089,40.767,22.444,26.533,39.367,21.979,26.151,39.813,22.353,25.659,40.295,22.455,24.004,41.786,22.43,26.119,42.565,21.57,25.426,43.239,21.061,27.362,42.612,20.791,27.852,42.215,20.437,28.107,41.658,20.052,28.086,41.028,19.696,27.219,42.93,20.238,27.71,42.533,19.884,27.965,41.975,19.498,27.944,41.346,19.142,26.931,43.789,18.712,27.229,44.477,18.279,27.42,43.075,19.314,27.434,43.302,18.284,27.732,43.99,17.851,28.201,44.875,18.179,27.564,42.792,17.845,27.972,43.175,17.151,27.346,42.301,17.431,27.766,42.708,16.757,26.748,41.689,17.187,26.332,41.1,17.194,27.32,42.425,16.099,26.481,41.691,15.494,26.819,42.806,14.994,28.06,42.472,15.048,25.505,42.639,14.444,25.045,42.073,14.421,24.478,41.642,14.25,24.078,41.506,13.933,23.583,41.332,13.531,23.38,41.129,13.455,24.053,42.127,12.044,24.09,42.814,11.667,24.664,42.513,12.809,24.701,43.2,12.432,22.844,44.445,11.168,23.003,43.474,10.763,22.408,43.065,10.533,21.737,42.746,10.688,20.944,43.353,11.056,22.351,44.753,10.26,21.718,44.319,10.015,21.006,43.98,10.18,20.534,42.186,12.284,20.976,41.387,12.474,19.991,42.752,12.367,19.15,43.247,12.829,17.903,42.302,13.248,17.066,42.396,12.926,17.914,42.077,13.153,17.078,42.172,12.831,17.149,43.664,13.151,18.078,44.072,13.16,16.343,43.879,12.29,16.626,44.567,12.341,16.207,43.956,12.024,16.492,44.642,12.079,15.933,43.913,11.302,16.117,44.572,10.83,15.913,43.838,11.189,16.097,44.497,10.718,15.929,44.081,10.63,16.405,44.467,10.023,15.529,43.639,10.761,15.713,44.298,10.29,15.425,43.637,10.717,15.609,44.296,10.246,15.629,42.108,10.806,15.68,41.425,11.095,15.531,40.872,11.568,15.206,40.539,12.148,15.156,41.913,10.429,15.208,41.23,10.718,15.058,40.677,11.192,14.733,40.344,11.771,14.891,43.513,10.438,15.263,44.264,10.101,14.885,43.513,10.432,15.257,44.264,10.095,14.516,42.748,9.782,14.538,42.606,9.731,14.699,42.108,9.554,14.899,42.049,8.731,15.106,41.578,10.407,14.522,41.196,9.577,14.722,41.136,8.754,15.632,41.42,8.239,14.82,42.509,8.473,14.821,42.519,8.467,16.257,42.883,7.782,16.8,43.501,8.07,16.514,42.746,7.612,17.03,43.378,7.917,16.59,41.282,7.312,16.599,40.751,6.803,16.377,40.383,6.206,15.96,40.238,5.617,15.416,40.34,5.132,14.833,40.671,4.83,16.988,41.644,6.941,16.997,41.113,6.432,16.775,40.745,5.835,16.358,40.6,5.246,15.814,40.701,4.762,15.23,41.033,4.459,13.884,40.554,5.259,13.334,40.894,5.221,12.992,40.393,6.468,13.223,40.175,7.055,11.154,41.337,5.838,10.889,41.221,5.961,11.613,41.621,5.418,11.097,42.171,4.369,11.968,42.971,4.887,12.757,41.904,4.801,11.588,43.577,4.852,11.515,43.69,4.814,10.701,42.784,3.397,10.857,42.695,2.567,10.926,42.09,4.237,10.207,42.143,3.39,10.341,42.025,2.56,11.334,41.798,2.058,9.565,42.134,3.486,9.285,42.053,2.728,9.192,42.153,3.631,8.882,42.073,2.884,8.189,42.027,5.212,8.195,42.014,5.243,8.477,41.911,5.354,8.505,41.875,5.412,7.892,42.073,5.063,7.62,42.325,4.602,8.216,42.385,3.184,8.678,42.217,3.141,8.676,40.784,1.311,8.237,40.665,0.786,7.858,40.799,0.22,7.593,41.168,-0.306,7.48,41.717,-0.715,7.536,42.369,-0.949,9.177,40.605,0.932,8.738,40.486,0.407,8.359,40.62,-0.159,8.094,40.989,-0.684,7.981,41.539,-1.093,8.037,42.19,-1.327,7.107,42.932,-0.635,6.649,42.843,-0.067,7.031,43.58,-0.594,6.573,43.491,-0.027,7.385,45.178,-0.463,7.623,46.506,-0.403,6.459,45.643,1.171,6.401,45.577,1.18,6.339,45.342,1.093,5.766,45.7,1.463,6.233,45.18,1.086,5.66,45.538,1.455,5.653,47.145,1.4,6.145,47.616,0.921,5.376,47.436,1.401,5.867,47.907,0.922,4.993,47.676,1.487,4.21,48.175,1.992,3.618,48.202,2.479,3.389,48.903,2.547,3.274,48.076,2.716,3.068,48.786,2.767,2.573,46.318,1.787,3.631,46.832,1.602,3.312,45.76,1.196,2.291,46.018,0.697,0.714,45.734,2.486,0.505,45.611,2.419,0.019,45.354,1.615,0.476,45.611,0.631,-0.085,44.682,0.377,-0.902,45.203,0.968,0.016,44.39,0.183,0.142,44.236,0.049,1.379,44.515,-0.399,2.095,44.215,-0.217,0.925,43.448,-0.611,1.739,43.107,-0.404,-2.455,43.049,-0.559,-2.97,42.562,-0.214,-3.101,42.06,0.378,-2.804,41.711,1.018,-2.947,44.04,-0.019,-3.534,43.487,0.373,-3.683,42.915,1.047,-3.344,42.517,1.776,-1.264,41.003,1.558,-0.876,40.495,2.001,-1.275,40.748,1.264,-0.887,40.224,1.689,-0.881,40.893,2.087,-0.828,40.995,2.243,-0.717,40.701,3.418,-0.758,40.341,3.827,-1.041,39.139,3.903,-1.584,38.869,4.443,-1.134,38.796,3.639,-1.676,38.527,4.179,-1.663,39.506,5.086,-1.199,40.229,4.904,-1.772,39.7,5.527,-1.3,40.408,5.312,-3.143,39.668,6.235,-3.689,40.989,6.537,-3.756,40.975,6.481,-3.217,39.652,6.172,-3.707,39.497,5.383,-2.783,38.989,4.793,-3.852,38.594,4.39,-4.268,39.735,4.331,-4.359,40.918,5.758,-4.448,41.086,5.567,-4.639,40.358,4.14,-4.841,41.403,4.172,-5.43,41.057,3.588,-5.953,40.91,3.318,-5.683,39.225,3.094,-5.875,38.23,2.691,-6.891,39.052,3.197,-7.466,38.174,3.014,-7.849,38.684,3.867,-7.749,39.654,3.423,-8.066,38.329,4.153,-8.505,38.802,4.508,-8.209,38.035,4.372,-8.646,38.512,4.723,-9.587,37.271,5.431,-9.669,37.101,5.414,-9.443,37.628,5.454,-9.443,37.639,5.454,-9.928,38.284,5.32,-10.593,38.843,5.31,-11.165,39.022,5.457,-11.691,38.966,5.608,-12.199,37.744,5.303,-12.772,37.537,4.845,-11.095,37.155,5.315,-12.129,36.631,5.787,-12.699,36.377,5.349,-12.601,36.517,4.063,-12.262,36.532,6.441,-12.929,36.241,6.477,-12.228,36.485,6.651,-12.893,36.191,6.702,-15.162,33.946,4.722,-15.951,33.923,4.695,-16.68,34.202,4.815,-17.213,34.73,5.06,-17.451,35.41,5.384,-17.35,36.114,5.727,-15.151,34.229,4.137,-15.939,34.206,4.11,-16.668,34.485,4.23,-17.201,35.013,4.475,-17.439,35.693,4.799,-17.338,36.397,5.142,-15.96,37.768,6.251,-16.194,37.658,5.208,-13.755,38.038,6.663,-13.186,38.529,6.817,-12.8,39.162,6.62,-13.789,38.069,6.701,-13.194,38.536,6.825,-12.834,39.193,6.658,-13.94,38.34,6.984,-13.455,39.11,7.151,-14.086,38.409,7.092,-13.602,39.179,7.26,-14.04,38.69,7.897,-13.881,39.539,8.189,-14.5,38.636,8.996,-14.306,39.346,9.087,-14.381,40.058,8.891,-14.59,38.653,9.13,-14.348,39.354,9.149,-14.472,40.075,9.025,-15.194,38.741,9.773,-15.847,38.237,10.269,-15.099,40.3,9.584,-16.048,40.165,10.16,-16.307,40.793,10.537,-15.684,41.715,10.434,-15.49,41.127,8.942,-15.749,41.755,9.319,-15.674,41.756,10.621,-15.525,42.347,10.142,-15.336,42.021,11.039,-15.199,42.602,10.546,-16.069,41.483,12.591,-15.354,42.151,13.072,-15.294,40.815,14.01,-15.12,41.066,14.845,-15.322,40.714,14.047,-15.145,40.976,14.878,-15.275,40.722,15.184,-15.288,40.702,15.202,-15.021,41.546,14.703,-14.994,41.781,14.718,-15.451,42.657,15.519,-15.815,42.78,16.406,-16.065,42.59,17.431,-15.993,43.134,16.908,-16.167,42.755,17.588,-16.095,43.299,17.065,-16.796,41.51,17.848,-17.768,41.744,18.218,-16.935,39.946,18.181,-16.905,39.941,18.148,-17.473,40.083,18.566,-17.903,39.764,19.184,-18.408,38.261,19.418,-18.482,37.494,18.844,-18.638,38.648,20.213,-18.361,39.343,20.255,-18.337,40.042,19.985,-18.648,38.652,20.221,-18.362,39.344,20.255,-18.346,40.046,19.993,-19.156,38.764,20.471,-19.241,39.573,20.607,-19.943,37.986,20.392,-19.665,38.544,21.31,-19.771,39.344,21.48,-20.22,40.121,20.784,-19.593,38.405,21.58,-19.664,37.426,21.985,-18.976,37.126,22.291,-18.133,37.768,22.229,-19.283,38.763,22.511,-18.641,38.484,22.797,-19.204,38.977,22.812,-18.518,38.912,23.175,-17.743,38.966,23.131,-19.365,39.413,23.078,-18.584,39.34,23.491,-17.702,39.402,23.44,-15.247,39.789,22.97,-16.15,39.959,22.816,-15.25,39.863,23.074,-16.153,40.033,22.921,-15.16,39.988,23.349,-15.947,40.302,23.307,-15.158,39.995,23.362,-15.945,40.307,23.319,-15.323,40.265,23.865,-16.045,40.421,23.638,-15.414,40.689,24.371,-16.129,40.813,24.107,-14.676,40.804,25.496,-14.975,41.343,25.291,-12.763,40.782,26.65,-12.496,40.682,27.518,-12.9,40.605,26.674,-12.624,40.517,27.541,-13.125,40.39,26.573,-12.896,40.114,27.285,-13.93,39.998,25.945,-13.05,39.396,26.192,-12.824,39.155,26.918,-13.301,39.309,27.864,-12.714,38.937,25.802,-12.713,38.9,25.756,-13.517,39.429,28.583,-13.453,38.78,29.215,-13.843,40.115,29.321,-13.779,39.465,29.953,-12.482,37.614,30.204,-12.564,37.41,29.929,-13.018,37.382,29.071,-13.359,36.613,29.047,-13.093,37.438,28.346,-13.434,36.669,28.322,-13.189,36.144,29.899,-13.404,35.586,30.4,-12.354,37.713,30.721,-12.576,38.529,30.613,-12.354,37.715,30.73,-12.576,38.53,30.621,-12.677,38.029,31.73,-12.776,38.729,31.247,-12.604,38.34,32.184,-12.699,39.058,31.729,-12.735,37.68,33.756,-11.989,38.652,34.026,-11.51,37.435,34.465,-11.854,36.328,34.255,-10.708,36.34,33.983,-10.593,36.898,35.059,-10.416,36.275,33.814,-10.289,36.233,33.733,-10.895,39.444,35.238,-11.26,40.105,35.398,-10.228,38.935,35.812,-10.078,39.888,35.49,-10.503,40.515,35.631,-11.29,40.684,36.182,-8.518,40.106,35.334,-8.511,40.101,35.338,-8.167,39.724,35.673,-7.587,40.331,36.122,-8.013,39.531,35.747,-7.457,40.167,36.185,-7.727,38.921,35.758,-8.235,37.881,35.87,-7.922,37.266,35.258,-7.111,37.71,34.554,-6.74,38.431,35.998,-6.464,37.89,35.461,-6.886,39.892,36.446,-6.306,38.992,36.382,-5.692,39.829,36.651,-6.415,40.16,37.376,-5.633,38.448,36.142,-5.764,37.969,35.694,-4.397,38.12,36.202,-4.547,37.574,35.692,-4.606,39.619,36.306,-5.117,40.143,36.647,-4.388,39.819,36.334,-4.914,40.329,36.673,-2.513,40.167,37.069,-2.565,40.813,37.674,-2.313,40.025,37.234,-2.353,40.663,37.848,-1.926,39.016,37.552,-1.645,39.008,38.286,-1.962,38.885,37.564,-1.683,38.871,38.298,-2.143,38.475,37.564,-2.385,38.113,37.44,-2.192,37.488,39.063,-2.018,38.229,39.81,-1.416,36.068,39.655,-0.879,35.55,39.43,-0.247,35.308,39.045,-1.042,36.235,40.163,-0.505,35.718,39.938,0.127,35.475,39.553,-0.291,35.102,38.083,-0.982,35.197,37.642,0.274,34.666,37.009,-0.333,34.75,36.622,1.17,35.51,37.807,1.969,35.847,37.295,1.582,35.686,39.635,1.753,36.101,40.279,1.841,36.755,40.703,0.959,35.649,39.824,1.13,36.063,40.468,1.218,36.717,40.891,2.203,38.341,40.528,1.38,38.876,40.956,2.699,39.667,39.206,2.704,39.664,39.207,3.043,39.132,39.623,3.689,39.615,39.695,3.355,38.71,39.84,3.975,39.228,39.894,3.69,38.288,39.907,3.02,37.372,40.316,3.144,36.615,39.88,3.952,36.694,38.987,4.711,37.716,40.202,4.835,36.96,39.766,3.931,36.572,38.602,3.644,36.508,37.859,3.15,36.525,37.352,3.69,36.36,36.66,3.081,36.511,37.302,3.625,36.346,36.612,5.286,34.901,35.632,5.891,34.983,35.811,6.417,35.141,36.833,6.983,34.71,35.901,6.309,35.469,37.396,6.574,35.685,38.062,6.891,35.635,38.244,6.451,36.18,38.509,7.264,35.811,38.469,6.852,36.369,38.751,7.848,34.384,38.623,8.075,33.718,38.207,8.245,33.403,37.472,8.32,34.463,38.865,8.578,33.705,38.392,8.771,33.346,37.555,7.67,36.006,38.627,7.087,36.501,38.825,7.775,36.104,38.694,7.193,36.598,38.892,8.537,34.682,39.076,9.201,34.089,38.998,10.029,33.92,38.707,8.866,34.923,39.424,9.45,34.402,39.355,10.176,34.253,39.1,13.287,35.168,37.213,14.151,36.11,37.432,13.843,35.899,36.159,14.019,36.407,35.62,14.592,37.972,38.093,14.064,38.736,38.694,14.161,39.182,37.356,14.156,39.207,37.137,15.024,38.627,36.239,15.59,39.109,35.757,15.158,37.812,36.931,15.15,38.066,35.884,15.732,38.479,35.358,16.701,38.961,35.664,14.9,37.87,35.67,15.251,38.22,35.036,14.752,37.774,35.539,15.09,38.115,34.893,16.342,37.979,33.761,16.917,38.12,34.085,15.399,40.034,35.656,14.711,40.144,35.914,14.234,40.131,36.483,15.412,40.204,35.655,14.715,40.2,35.914,14.245,40.286,36.483,15.733,40.944,35.697,16.815,40.843,35.792,16.655,41.822,35.34,15.858,41.942,36.023,19.066,40.294,35.378,18.903,40.039,35.645,18.607,39.834,35.807,17.365,39.786,35.945,17.029,38.927,35.663,17.109,38.307,34.927,17.57,38.218,34.084,18.782,38.495,34.218,18.733,38.976,36.684,18.416,38.167,36.418,18.492,37.584,35.726,18.925,37.499,34.932,19.09,38.942,33.795,19.14,39.213,33.496,20.758,38.153,33.825,20.277,37.498,34.509,22.177,38.817,33.121,21.402,38.347,33.526,20.717,38.485,33.346,20.458,39.163,32.669,21.81,38.552,32.221,21.082,38.699,32.03,23.152,39.156,32.409,23.575,39.783,32.309,23.189,39.303,33.492,23.612,39.931,33.393,23.512,41.856,31.352,23.827,42.536,31.159,23.52,41.845,31.323,23.835,42.525,31.13,23.731,41.398,30.952,23.764,40.202,31.13,23.433,40.144,29.968,24.283,40.933,30.042,22.729,38.807,30.739,21.836,38.493,31.06,22.387,38.653,29.728,21.547,38.357,30.03,23.223,40.022,29.394,23.212,40.035,29.014,22.896,39.158,28.233,22.256,38.247,28.404,23.203,39.613,27.893,23.386,40.18,28.389,23.673,39.376,27.001,23.229,40.295,27.178,23.41,40.81,27.727,24.123,40.843,28.416,23.068,40.887,25.986,23.184,40.691,25.389,23.251,42.004,26.653,23.408,41.834,27.431,23.4,42.281,26.689,23.545,42.088,27.464,24.065,42.654,25.445,24.187,43.037,24.898,24.061,43.453,24.378,24.175,43.173,25.834,24.297,43.556,25.287,24.171,43.973,24.766,22.036,44.072,22.928,21.713,44.572,22.414,21.97,43.996,22.895,21.652,44.502,22.383,23.195,42.586,21.007,22.598,42.348,21.542,23.181,42.589,20.992,22.584,42.351,21.528,22.861,42.965,20.471,22.853,43.013,20.436,22.362,44.306,20.264,23.971,44.679,19.793,23.64,45.491,19.725,24.304,44.808,19.599,23.941,45.608,19.549,25.855,44.547,18.869,26.174,45.247,18.46,25.986,44.458,18.819,26.305,45.158,18.41,26.291,44.21,18.738,26.802,44.764,18.286,26.368,44.137,18.736,26.879,44.691,18.283,27.813,45.955,18.531,28.226,46.516,18.422,27.317,46.34,18.641,27.729,46.902,18.533,29.263,47.539,17.77,29.865,48.178,18.064,29.521,46.406,17.559,29.571,47.539,17.233,30.129,48.179,17.603,30.943,48.121,18.374,29.746,45.427,16.698,29.293,44.833,17.339,29.949,44.558,16.082,29.523,44.0,16.685,29.7,44.969,14.582,29.299,44.699,14.012,28.738,44.303,13.717,28.134,43.864,13.758,29.394,45.546,14.555,28.968,45.259,13.949,28.372,44.839,13.636,27.73,44.372,13.68,26.772,43.642,14.367,25.926,43.562,14.094,26.744,43.491,14.495,25.898,43.411,14.223,25.801,43.705,13.868,26.446,43.958,14.107,25.199,44.123,13.066,25.314,44.844,13.87,25.944,45.134,14.109,26.943,44.867,13.694,24.972,45.301,14.203,25.434,46.035,14.511,24.711,45.416,14.312,25.157,46.157,14.626,23.497,45.321,12.899,23.148,45.907,12.485,23.558,45.056,12.484,23.211,45.632,12.054,23.209,45.401,11.974,23.013,45.108,11.547,22.938,44.742,11.441,22.924,44.699,11.411,21.581,45.487,9.06,20.592,45.027,9.055,19.796,44.678,9.204,19.124,44.462,9.975,19.335,44.462,10.713,18.876,44.51,9.985,19.071,44.728,10.885,18.638,44.749,10.14,18.278,45.136,12.021,18.225,44.967,12.323,17.328,45.499,11.003,17.562,45.23,10.209,17.303,45.491,10.999,17.539,45.223,10.205,16.98,45.351,11.136,16.796,45.258,11.181,19.753,44.92,8.371,19.746,44.916,8.233,17.847,43.652,7.205,17.537,43.198,6.731,17.324,43.401,7.844,16.976,42.929,7.416,17.752,43.456,6.148,18.306,44.055,6.238,17.773,43.53,5.525,18.326,44.129,5.614,17.792,43.796,5.241,17.731,43.815,5.06,17.523,43.56,4.829,17.893,44.186,4.575,16.899,42.901,4.182,16.605,43.968,4.311,17.042,44.564,4.096,17.975,44.578,3.595,15.316,43.33,4.114,15.194,43.926,4.346,14.621,42.314,4.208,13.674,42.293,4.541,11.846,45.037,4.393,11.738,44.984,4.387,11.355,44.049,4.7,11.361,43.993,4.712,11.023,44.72,3.811,10.914,44.675,3.612,10.518,44.079,3.037,10.5,43.993,3.015,10.491,43.345,3.136,10.743,43.067,2.409,10.503,43.285,3.163,10.754,43.01,2.434,11.327,43.989,1.401,11.312,44.756,1.66,11.34,44.0,1.368,11.325,44.768,1.627,11.908,44.837,0.63,11.376,42.769,-0.877,11.458,42.041,-0.937,11.386,41.346,-0.707,11.174,40.826,-0.232,10.866,40.586,0.391,10.523,40.674,1.036,10.846,42.765,-1.262,10.933,41.991,-1.326,10.856,41.253,-1.081,10.631,40.7,-0.577,10.303,40.445,0.085,9.939,40.538,0.77,10.026,43.559,-1.22,10.012,44.686,-0.695,11.487,45.31,0.271,12.195,45.704,0.147,11.364,45.486,0.125,12.072,45.88,0.001,11.168,45.562,0.009,10.433,46.214,-0.205,10.178,46.798,-0.232,10.179,47.071,-0.271,9.388,47.682,-0.848,8.675,46.813,-0.8,7.823,47.536,-0.936,8.625,47.879,-1.679,6.565,46.653,1.162,6.613,46.468,1.153,6.324,47.293,1.11,6.32,47.296,1.111,6.405,48.313,-0.938,5.958,48.899,-0.706,6.403,48.713,-1.952,5.956,49.3,-1.72,3.956,49.731,1.872,3.856,49.313,2.116,4.02,50.056,1.752,4.012,50.135,1.728,2.824,50.982,1.973,3.781,51.504,1.424,3.496,52.377,2.675,3.453,52.478,3.363,3.037,52.146,4.465,2.916,52.081,4.543,1.948,51.336,3.49,1.664,50.729,3.368,1.705,50.05,3.336,1.461,51.38,4.671,1.137,50.689,4.532,1.184,49.916,4.495,2.45,48.707,3.681,2.907,48.591,2.988,2.15,48.572,4.417,2.042,48.431,4.604,1.871,47.827,4.811,1.842,47.748,4.819,1.474,46.828,4.206,1.537,46.702,3.87,0.934,47.078,4.97,0.609,47.101,5.161,-0.411,46.807,4.973,-0.794,47.276,5.394,-0.989,47.968,5.559,-0.52,46.775,4.926,-0.802,47.274,5.391,-1.116,47.932,5.504,-0.946,46.772,5.016,-1.365,46.395,4.864,-1.455,45.617,3.395,-0.839,45.57,2.729,-0.473,45.478,2.659,-0.385,45.456,2.623,-0.871,45.316,1.235,-1.001,44.991,0.65,-1.437,45.599,1.228,-1.575,45.253,0.606,-2.424,45.514,3.628,-2.457,45.695,4.377,-2.36,46.228,4.926,-2.514,45.526,3.626,-2.472,45.697,4.376,-2.45,46.241,4.923,-3.494,45.958,3.369,-3.117,46.033,2.051,-4.426,45.813,2.403,-4.433,46.944,3.184,-4.128,44.972,1.008,-4.175,44.174,0.799,-4.02,43.377,0.946,-3.701,42.775,1.412,-5.003,44.842,1.604,-5.047,44.091,1.407,-4.901,43.34,1.545,-4.6,42.774,1.984,-1.823,42.56,3.067,-1.361,42.176,3.576,-1.811,42.555,3.052,-1.35,42.171,3.562,-1.078,41.912,2.989,-0.984,41.773,2.931,-1.567,42.189,3.873,-2.165,42.588,3.571,-1.665,42.182,4.06,-2.266,42.581,3.764,-1.867,42.298,4.233,-1.935,42.327,4.672,-3.348,42.566,5.384,-3.496,42.557,5.291,-4.395,41.751,5.423,-4.403,41.695,5.45,-4.358,42.165,4.671,-3.764,42.588,4.545,-4.392,42.154,4.472,-3.796,42.577,4.353,-4.28,42.313,4.063,-4.472,42.263,3.686,-4.769,42.106,3.586,-5.004,42.075,3.353,-7.205,40.378,3.072,-8.06,40.491,3.382,-7.352,41.486,2.426,-8.103,41.585,2.697,-8.478,40.141,3.821,-9.362,39.91,4.372,-8.865,41.076,4.382,-8.533,41.564,3.902,-8.93,41.396,4.654,-8.596,41.87,4.162,-9.873,40.625,4.711,-10.116,39.994,4.696,-10.836,41.013,4.967,-11.095,40.343,4.951,-8.949,41.626,4.927,-9.895,42.302,6.006,-9.359,42.835,6.045,-8.931,43.348,5.689,-10.008,42.433,6.094,-9.397,42.879,6.074,-9.045,43.479,5.777,-10.31,42.953,6.45,-10.798,43.123,6.654,-11.876,42.098,5.626,-12.38,41.479,5.459,-12.756,40.779,5.642,-12.668,42.631,6.042,-13.172,42.013,5.875,-13.548,41.312,6.058,-11.327,43.474,6.96,-11.78,44.052,7.673,-13.306,43.719,7.022,-13.905,43.388,6.764,-14.448,42.899,6.781,-13.938,44.351,7.616,-14.502,44.039,7.374,-15.013,43.579,7.389,-14.866,41.657,7.162,-14.683,41.025,7.392,-15.224,41.747,7.693,-15.04,41.115,7.924,-15.671,42.263,8.238,-15.832,42.226,9.039,-15.827,42.897,8.26,-15.979,42.861,9.014,-12.6,44.222,8.323,-11.732,44.389,8.161,-12.479,44.152,8.975,-11.604,44.316,8.849,-11.737,43.637,9.512,-13.946,43.185,10.849,-13.864,42.827,11.563,-14.167,43.266,10.917,-14.077,42.905,11.628,-14.522,43.718,10.745,-14.368,43.124,11.227,-14.318,42.961,11.988,-14.394,43.302,12.686,-14.563,43.993,13.005,-14.748,44.724,12.803,-14.618,43.153,10.922,-14.512,42.796,11.633,-14.801,42.931,10.84,-14.688,42.582,11.554,-14.615,43.435,12.953,-14.81,44.233,13.099,-14.816,43.33,13.265,-15.009,44.129,13.407,-14.994,42.985,13.698,-15.215,43.53,14.158,-15.037,42.537,14.178,-15.261,43.052,14.669,-16.574,44.466,14.859,-16.884,44.865,15.447,-16.874,45.326,16.07,-16.633,44.986,14.476,-16.943,45.385,15.064,-16.933,45.846,15.687,-16.082,46.021,17.012,-16.349,43.838,17.37,-16.513,43.364,17.937,-17.032,43.066,18.401,-16.293,43.635,17.258,-16.503,43.33,17.918,-16.982,42.885,18.302,-17.995,43.679,18.928,-18.427,43.556,18.903,-18.695,42.203,18.508,-18.926,41.463,18.768,-19.223,42.478,18.742,-19.469,41.693,19.018,-20.251,40.985,20.085,-20.703,41.464,20.302,-20.947,41.999,20.67,-20.948,42.512,21.137,-20.031,41.399,19.63,-20.483,41.878,19.847,-20.727,42.413,20.215,-20.728,42.926,20.681,-20.2,42.6,23.017,-19.702,43.729,23.229,-19.843,41.545,23.486,-20.188,40.907,23.232,-20.34,40.343,22.731,-19.374,41.189,23.745,-19.72,40.55,23.491,-19.871,39.987,22.99,-18.74,41.029,24.071,-18.273,40.31,24.095,-17.631,39.842,23.772,-18.292,41.265,24.247,-17.881,40.632,24.269,-17.317,40.221,23.985,-18.559,42.682,23.557,-18.433,42.745,23.621,-17.775,42.881,24.203,-16.875,42.487,24.502,-16.161,41.668,24.371,-16.021,41.035,24.246,-15.853,42.649,24.89,-15.542,42.856,25.221,-15.438,43.138,25.46,-15.18,43.621,25.793,-15.292,43.92,25.893,-15.018,44.283,25.949,-14.554,44.321,25.895,-14.982,44.891,26.085,-14.55,44.324,25.895,-14.978,44.894,26.085,-12.41,42.656,26.226,-11.809,42.383,26.605,-12.518,42.394,26.206,-11.921,42.112,26.585,-12.417,41.601,26.38,-12.13,41.152,27.11,-11.832,41.449,27.875,-11.792,41.53,27.943,-12.45,42.149,29.903,-11.539,42.329,29.379,-11.42,41.859,31.321,-10.875,42.167,31.833,-11.481,41.866,31.382,-10.938,42.175,31.895,-12.269,42.099,31.582,-12.262,42.546,32.233,-13.042,42.081,30.816,-13.618,41.433,31.306,-12.942,41.343,32.153,-12.905,41.823,32.779,-12.957,43.275,32.565,-13.494,42.67,33.021,-12.736,41.16,32.263,-12.579,41.507,32.982,-12.54,40.963,32.313,-12.375,41.303,33.033,-12.156,39.848,32.362,-12.282,39.454,32.203,-11.84,40.465,33.665,-11.85,40.367,33.966,-11.833,40.196,34.293,-11.394,39.885,35.04,-12.947,41.296,35.072,-13.114,41.815,35.564,-12.898,42.294,36.076,-12.359,42.603,36.467,-11.646,42.654,36.631,-13.061,41.597,34.639,-13.25,42.188,35.198,-13.005,42.734,35.781,-12.391,43.085,36.227,-11.579,43.144,36.413,-8.538,41.209,35.432,-7.898,41.323,36.004,-8.492,41.021,35.42,-7.855,41.144,35.992,-7.982,41.963,36.192,-8.687,42.236,35.744,-7.825,42.454,36.277,-8.514,42.778,35.837,-6.702,43.236,37.456,-6.601,43.93,37.652,-6.451,43.036,37.989,-6.339,43.72,38.211,-6.071,42.559,38.801,-6.096,42.475,38.847,-6.301,42.136,38.817,-7.037,41.595,38.231,-6.861,40.9,38.149,-6.356,40.439,37.918,-5.702,40.374,37.62,-4.94,40.892,38.194,-6.412,41.596,39.765,-6.226,40.861,39.679,-5.693,40.373,39.435,-5.001,40.306,39.119,-4.71,40.439,36.597,-4.748,40.388,36.595,-4.552,40.963,36.917,-4.669,41.183,37.657,-3.381,40.797,36.564,-3.084,41.253,37.344,-3.376,40.794,36.564,-3.078,41.25,37.344,-1.995,40.177,39.184,-1.923,40.182,39.043,-2.293,39.799,39.796,-3.092,40.309,39.85,-2.216,39.885,40.34,-3.021,40.388,40.355,-1.721,40.184,40.681,-2.136,40.877,40.761,-1.025,40.581,40.856,-1.441,41.274,40.935,-0.587,40.807,40.775,0.277,40.123,41.07,0.576,40.839,40.234,0.077,41.735,40.735,1.101,40.698,39.812,1.413,40.432,39.627,1.671,39.924,39.547,2.302,40.333,39.163,1.74,39.81,39.539,2.371,40.219,39.156,3.242,41.463,39.392,3.425,42.128,39.204,3.51,42.674,38.75,2.243,41.795,39.511,2.415,42.42,39.333,2.495,42.934,38.905,4.114,43.396,37.836,3.933,42.758,38.625,4.942,42.866,38.44,4.914,43.868,38.256,3.834,42.043,39.266,3.329,41.395,39.42,4.627,41.544,40.041,4.183,40.975,40.176,5.382,42.103,38.984,5.469,42.723,38.536,5.791,42.04,38.985,5.896,42.657,38.537,6.079,41.991,38.882,6.412,42.656,38.437,6.344,41.788,38.789,6.7,42.435,38.335,6.532,41.508,38.664,6.986,41.97,38.12,6.62,41.329,38.587,7.079,41.781,38.039,6.726,41.229,38.373,6.728,41.224,38.371,7.752,39.583,38.711,6.413,39.944,40.35,5.832,39.711,40.689,5.13,39.589,40.702,6.717,38.955,40.086,6.055,38.689,40.473,5.256,38.55,40.487,7.797,39.015,39.092,8.634,39.131,39.079,7.176,38.53,39.797,7.92,38.133,39.158,8.758,38.249,39.145,9.384,38.836,39.765,7.694,37.166,39.038,8.402,36.671,38.971,7.418,36.751,38.992,8.154,36.298,38.93,9.512,37.212,39.266,9.721,36.255,39.744,10.407,36.048,39.712,11.069,36.741,39.193,10.155,37.831,39.939,10.937,37.594,39.903,12.438,38.033,39.698,12.484,38.68,39.955,12.444,39.377,39.965,12.323,40.021,39.726,11.823,37.994,39.906,11.87,38.642,40.163,11.83,39.338,40.173,11.708,39.983,39.935,12.905,40.397,39.278,13.571,40.13,38.983,14.004,39.77,38.448,12.966,40.914,38.888,13.593,40.662,38.61,14.001,40.324,38.106,11.135,41.933,37.65,11.633,42.266,37.469,13.011,41.821,37.917,12.979,42.569,37.123,14.08,41.784,36.711,14.384,41.115,36.45,14.571,43.687,36.195,14.392,44.369,36.528,15.177,44.024,35.791,15.025,44.72,36.106,16.346,43.864,34.984,16.814,43.198,34.909,16.817,42.287,35.001,16.791,42.103,35.097,17.641,42.858,34.619,18.49,42.796,34.361,18.829,42.704,34.182,19.252,43.366,34.255,18.953,42.631,34.123,19.374,43.295,34.197,19.729,41.555,34.337,19.67,41.31,34.503,19.418,41.029,34.675,19.333,40.906,34.765,19.028,40.829,34.847,19.582,40.475,35.233,18.964,40.779,34.892,19.521,40.427,35.277,19.649,38.996,37.357,20.064,38.315,37.592,20.599,37.708,37.394,21.091,37.359,36.822,20.452,39.598,37.681,20.868,38.917,37.916,21.402,38.311,37.718,21.895,37.961,37.146,23.41,39.642,34.861,23.509,40.434,35.22,23.143,41.175,35.506,22.42,41.649,35.633,21.55,41.717,35.565,23.196,39.181,35.999,23.289,39.926,36.337,22.945,40.624,36.605,22.264,41.07,36.726,21.445,41.134,36.662,20.72,42.443,34.451,20.429,43.187,34.386,21.471,42.084,35.175,21.734,42.851,34.426,21.426,43.588,34.362,20.671,44.062,34.992,21.879,43.017,34.194,21.748,43.952,34.113,21.907,43.02,34.175,21.775,43.954,34.095,23.053,42.692,34.287,23.576,43.371,34.198,23.428,41.647,34.842,23.676,42.208,33.763,24.139,42.934,33.726,24.671,43.516,34.593,23.638,42.42,33.173,24.136,43.036,33.359,23.642,42.428,33.14,24.139,43.042,33.328,23.667,42.417,32.848,24.155,43.035,32.837,23.666,42.412,32.517,24.154,43.03,32.506,23.697,42.543,32.25,23.663,42.514,32.064,23.646,42.497,31.644,23.64,42.479,31.613,25.372,43.508,30.831,25.756,43.747,31.815,25.758,44.898,30.06,25.46,45.577,29.875,24.947,46.134,29.984,26.428,45.503,31.01,26.166,46.1,30.847,25.716,46.589,30.943,23.593,46.947,30.076,23.657,46.86,29.623,25.164,45.723,29.48,25.355,44.827,29.136,24.902,46.056,28.3,25.07,45.269,27.997,24.502,43.083,28.869,25.194,43.399,29.637,25.064,43.109,30.465,24.223,42.457,30.653,24.794,42.132,29.187,24.68,41.877,29.915,24.152,43.134,28.33,24.02,43.013,28.094,23.867,42.788,27.843,23.85,42.741,27.804,23.843,42.604,27.779,23.752,43.003,27.176,23.713,42.328,27.623,23.613,42.707,27.009,24.415,44.455,25.92,24.752,45.111,26.895,23.854,45.86,25.149,24.038,46.537,24.824,23.828,45.646,24.688,24.012,46.323,24.364,22.254,45.472,22.18,22.023,45.019,22.34,22.372,45.957,21.814,22.374,46.014,21.706,22.348,46.007,20.721,22.341,45.991,20.704,22.049,45.173,20.592,22.561,44.879,20.001,22.028,45.096,20.613,22.539,44.797,20.023,23.223,45.463,19.797,23.424,45.5,19.77,23.012,46.501,21.028,23.66,46.968,21.006,24.02,47.273,20.703,24.371,47.535,21.309,24.312,47.266,19.719,24.168,48.18,20.163,24.529,48.502,20.733,25.316,48.045,21.301,24.008,48.462,20.081,24.288,48.996,20.579,23.518,48.812,19.968,23.78,49.359,20.462,24.448,47.771,18.429,25.101,47.756,18.037,24.31,47.602,19.526,24.644,46.725,18.916,25.31,46.638,18.557,26.124,47.489,18.555,24.187,45.946,19.211,24.499,45.31,19.045,24.059,45.838,19.401,24.364,45.194,19.247,25.575,45.481,18.5,26.03,45.197,18.509,24.992,47.846,17.743,24.262,47.919,17.926,24.973,47.882,17.655,24.244,47.954,17.838,26.333,48.113,18.23,26.825,49.277,18.1,27.458,48.491,18.261,27.802,49.164,18.481,28.099,48.227,18.067,28.443,48.9,18.287,28.525,47.858,17.793,29.148,48.277,17.789,29.716,48.588,18.169,28.532,47.847,17.791,29.149,48.276,17.789,29.722,48.579,18.167,30.267,49.086,19.508,29.178,49.695,19.551,32.345,48.685,19.912,31.231,48.535,19.548,31.312,48.141,18.865,31.713,48.233,18.188,32.829,48.382,18.548,32.638,47.594,20.267,32.721,47.194,19.575,33.127,47.288,18.888,32.641,49.352,17.511,31.845,49.728,16.885,30.772,49.713,16.693,30.499,49.496,16.767,30.197,49.029,17.056,29.606,48.894,16.51,30.139,48.873,17.16,29.543,48.724,16.624,28.572,47.111,14.501,28.922,47.101,15.085,28.334,46.997,14.171,28.285,47.712,13.829,28.091,46.04,13.722,27.338,46.808,13.858,27.325,47.53,13.528,28.001,47.973,12.842,26.895,47.694,13.542,26.675,47.788,13.512,25.946,47.976,13.329,25.427,47.22,14.248,24.865,47.868,14.77,25.07,48.985,14.142,24.87,48.1,12.672,24.376,48.669,13.13,25.303,49.468,14.965,25.727,49.806,16.009,26.58,50.947,17.433,26.471,49.945,17.685,27.069,50.251,18.479,26.475,51.123,18.469,27.261,50.664,19.625,28.148,49.941,19.571,29.008,50.149,19.932,29.239,51.141,20.455,27.556,50.483,20.706,28.391,50.685,21.057,30.053,51.069,19.959,29.412,51.318,20.394,30.085,51.129,19.971,29.445,51.38,20.406,33.156,49.788,21.106,33.171,49.391,20.949,33.095,47.623,21.049,33.65,47.084,21.252,33.365,48.347,22.14,33.952,47.778,22.355,34.664,46.423,20.549,34.707,46.32,19.759,34.531,46.59,19.029,34.191,47.153,18.579,35.261,46.584,20.609,35.309,46.468,19.723,35.113,46.772,18.904,34.73,47.404,18.398,33.881,49.418,17.677,34.202,48.935,18.127,34.497,49.686,17.525,34.818,49.203,17.975,33.838,49.894,16.13,33.31,50.171,15.649,32.867,50.721,15.349,32.597,51.435,15.288,32.551,52.177,15.479,34.599,50.122,15.424,34.071,50.4,14.944,33.628,50.949,14.644,33.358,51.664,14.583,33.312,52.405,14.773,31.578,52.788,17.443,31.289,52.389,16.855,31.052,51.986,16.271,32.177,51.863,15.57,32.346,50.773,15.533,31.318,50.269,16.213,30.42,51.534,15.237,30.569,50.576,15.205,29.26,52.49,16.718,28.376,52.252,16.331,27.935,51.735,15.365,28.151,51.555,14.873,28.64,51.349,14.502,28.278,51.314,13.833,29.553,51.506,14.759,29.248,50.749,14.25,28.934,50.668,13.561,28.657,51.375,12.908,29.237,50.469,14.154,29.312,49.788,14.437,29.167,49.674,12.851,28.966,49.087,12.47,28.489,48.596,12.225,27.827,48.298,12.165,29.148,50.044,12.336,28.936,49.42,11.931,28.428,48.898,11.67,27.726,48.581,11.606,25.461,48.208,10.796,24.835,47.988,11.007,24.277,47.92,11.733,23.723,47.474,11.574,24.68,48.158,12.69,24.132,48.831,13.015,23.41,48.985,12.247,22.794,48.615,12.125,23.125,46.956,12.376,22.502,47.722,12.746,23.265,49.386,11.871,23.315,49.705,11.741,25.143,50.756,13.427,25.05,49.884,13.95,25.343,51.011,13.279,25.764,51.385,13.128,26.651,52.054,14.092,27.042,52.035,12.88,27.125,52.217,12.016,27.878,52.101,11.722,28.439,51.647,11.339,28.675,50.963,10.958,28.529,50.213,10.669,28.035,49.574,10.542,26.768,52.715,10.903,27.521,52.598,10.61,28.083,52.144,10.227,28.318,51.461,9.846,28.172,50.71,9.557,27.678,50.072,9.43,26.578,49.098,10.418,26.063,48.772,9.955,26.453,48.822,10.736,25.948,48.516,10.25,25.929,48.506,10.367,25.715,48.367,10.603,26.202,49.187,9.405,25.842,49.483,8.501,25.369,49.393,8.141,24.739,48.531,7.831,23.884,49.242,7.869,24.699,49.847,7.319,23.934,47.643,8.088,24.19,47.097,8.517,24.419,46.876,9.185,22.755,47.259,8.213,23.046,46.637,8.701,23.307,46.386,9.461,23.761,46.917,10.326,23.874,47.271,10.711,22.581,47.324,8.126,22.614,46.528,8.485,21.826,46.967,7.467,21.858,46.218,7.806,21.409,47.109,6.981,21.557,46.434,7.135,21.42,45.804,7.427,21.027,45.347,7.798,21.006,46.83,6.041,21.164,46.113,6.205,21.019,45.443,6.515,20.601,44.957,6.91,20.027,47.774,5.8,19.96,48.091,6.343,19.772,47.502,5.051,19.264,47.56,4.666,20.268,45.904,4.605,19.991,45.007,4.834,19.643,45.818,3.758,19.4,45.03,3.959,18.887,47.04,3.582,18.208,47.136,3.455,18.899,47.354,4.02,18.126,47.464,3.875,17.097,47.212,3.954,16.568,47.731,4.129,16.875,46.981,3.958,16.337,47.49,4.133,16.582,46.491,3.919,15.831,46.666,4.047,16.569,46.447,3.9,15.816,46.618,4.026,16.641,46.27,3.759,15.881,46.423,3.959,15.16,46.612,3.667,14.754,46.767,2.994,14.819,46.827,2.198,16.495,46.119,3.869,15.737,46.264,3.993,16.467,45.791,4.033,15.706,45.908,4.17,16.532,44.921,4.318,16.695,44.663,4.268,15.235,45.115,4.423,14.223,44.609,4.587,13.86,44.582,4.707,13.703,44.583,4.736,12.463,44.99,4.663,12.088,45.339,4.103,12.419,44.966,4.676,12.047,45.315,4.116,12.495,45.538,3.845,12.687,45.693,3.547,11.275,44.991,2.335,11.054,44.851,2.625,13.234,45.894,3.1,13.981,46.074,2.936,14.17,46.202,2.267,14.173,46.13,3.023,14.66,46.635,2.306,14.662,46.564,3.062,14.752,47.046,2.345,14.754,46.974,3.101,14.747,47.116,2.352,14.75,47.045,3.107,14.815,47.702,2.418,15.038,47.979,3.265,14.824,47.721,2.41,15.046,47.996,3.257,15.484,47.71,1.146,15.462,48.699,2.01,15.186,49.008,0.724,15.427,49.775,0.882,14.917,49.21,0.152,15.158,49.977,0.31,15.163,47.859,-0.871,14.873,47.104,-1.255,14.2,46.527,-1.388,13.347,46.302,-1.23,14.822,48.15,-1.3,14.563,47.477,-1.642,13.964,46.964,-1.761,13.205,46.763,-1.62,10.591,47.818,-0.457,10.092,48.214,-0.826,10.404,47.631,-0.402,9.899,48.021,-0.77,10.613,48.692,-1.066,11.526,48.422,-1.009,10.718,48.999,-1.13,11.614,48.681,-1.063,9.563,49.547,-2.505,9.203,48.886,-2.555,8.668,48.379,-2.397,8.049,48.111,-2.06,9.192,49.786,-2.996,8.832,49.125,-3.045,8.297,48.617,-2.888,7.678,48.349,-2.551,8.953,51.378,-2.558,8.346,51.88,-1.975,9.699,51.452,-1.754,9.159,51.899,-1.235,7.545,51.644,-0.561,7.279,51.678,-0.616,7.118,51.703,-0.445,6.901,52.134,0.316,6.832,51.651,-0.497,6.614,52.082,0.264,6.758,51.582,-0.711,6.022,51.041,-1.491,5.915,50.103,-0.749,5.838,51.111,-0.145,4.065,52.446,1.424,4.05,53.49,1.633,5.396,54.153,1.035,5.779,53.646,0.841,4.085,55.304,2.449,3.749,54.952,3.14,4.22,56.211,3.006,3.904,55.88,3.657,3.753,54.034,4.664,3.587,53.297,4.344,3.807,54.333,5.201,4.099,54.908,4.806,4.146,54.566,5.819,4.451,55.151,5.449,3.2,53.661,7.35,3.903,53.705,8.178,2.731,52.213,7.564,2.354,51.716,7.955,2.372,52.221,7.208,1.973,51.724,7.579,2.28,53.073,6.334,2.404,53.077,5.671,1.483,51.986,6.227,1.624,51.99,5.473,-0.075,50.68,6.55,0.666,51.245,5.754,0.681,50.769,5.1,0.807,50.013,4.839,0.081,49.307,5.531,-1.166,50.779,6.024,-1.153,50.331,5.408,-1.034,49.62,5.163,-0.005,48.615,5.789,-0.069,48.452,5.819,-0.276,50.606,7.246,-0.678,50.211,8.099,-2.302,50.62,7.567,-3.007,50.479,7.116,-2.82,50.267,8.434,-3.478,50.135,8.013,-3.661,48.528,5.754,-4.321,48.026,5.403,-3.23,48.27,5.346,-3.867,47.754,4.972,-3.567,47.381,4.947,-3.361,46.815,4.832,-4.547,47.927,5.644,-3.996,48.261,6.132,-4.753,47.596,6.12,-4.193,47.944,6.587,-4.82,47.491,6.16,-4.272,47.726,6.607,-4.056,48.13,7.195,-4.821,47.484,6.164,-4.273,47.725,6.608,-4.057,48.125,7.199,-4.836,47.141,6.599,-5.157,46.642,6.812,-6.644,47.274,5.811,-7.178,47.358,5.04,-7.38,46.659,6.254,-7.914,46.743,5.483,-7.122,46.94,3.405,-6.569,46.651,2.838,-7.468,46.41,3.338,-6.915,46.121,2.77,-6.49,43.897,2.22,-5.52,43.477,1.714,-5.787,42.544,2.372,-6.785,42.838,1.886,-7.911,43.764,2.44,-7.621,44.957,2.821,-8.311,44.121,3.657,-8.451,43.287,4.457,-8.545,45.668,4.208,-8.155,45.753,3.697,-5.916,46.001,6.837,-5.219,46.2,7.226,-5.944,45.916,6.931,-5.246,46.115,7.319,-7.283,46.064,7.377,-7.536,46.301,8.021,-7.542,46.604,6.359,-8.581,46.252,6.797,-8.834,46.489,7.44,-8.233,47.25,8.114,-8.913,46.037,6.643,-9.084,45.775,5.566,-9.27,44.938,5.276,-9.354,44.049,5.955,-9.938,45.582,6.672,-10.124,44.744,6.382,-10.184,46.06,7.443,-10.76,45.775,7.958,-11.007,45.325,8.601,-10.021,46.9,8.093,-10.597,46.615,8.607,-10.843,46.165,9.251,-9.843,45.302,12.058,-9.91,45.653,12.726,-9.823,44.689,12.381,-9.89,45.04,13.05,-9.792,43.807,12.642,-9.869,43.418,12.513,-11.033,43.233,10.199,-11.892,42.912,9.949,-11.119,43.573,10.057,-11.977,43.253,9.807,-12.857,41.971,10.985,-12.952,42.074,11.044,-13.161,42.307,11.269,-13.627,42.734,11.324,-11.454,42.01,13.81,-12.922,43.034,13.854,-13.542,43.474,13.501,-14.084,43.54,13.101,-14.285,44.337,13.246,-14.257,43.524,12.949,-14.456,44.322,13.095,-12.891,45.977,14.636,-12.041,46.035,14.778,-14.039,46.923,13.532,-14.688,47.273,13.41,-15.428,47.235,13.32,-16.049,46.822,13.287,-16.374,46.151,13.32,-16.31,45.413,13.41,-13.968,47.118,14.028,-14.706,47.515,13.889,-15.549,47.473,13.787,-16.256,47.003,13.749,-16.625,46.239,13.787,-16.552,45.398,13.89,-13.061,46.25,14.661,-11.437,46.321,14.586,-11.43,46.489,14.89,-13.054,46.419,14.965,-13.269,47.102,16.092,-13.52,47.434,16.145,-14.292,47.662,14.538,-14.964,47.715,14.101,-15.75,47.576,14.002,-16.448,47.28,14.269,-16.881,46.903,14.832,-16.938,46.541,15.547,-14.531,48.015,14.86,-15.122,48.061,14.475,-15.812,47.939,14.389,-16.426,47.679,14.623,-16.806,47.348,15.117,-16.856,47.03,15.746,-13.696,47.71,16.285,-14.758,48.321,16.005,-15.342,48.009,16.682,-14.593,47.231,17.324,-13.406,48.482,17.238,-13.997,48.165,17.924,-15.521,46.105,17.32,-15.546,45.692,18.016,-15.716,45.741,18.807,-18.511,48.196,20.618,-19.006,48.0,21.396,-19.1,47.412,22.126,-17.777,48.642,21.268,-18.211,48.47,21.951,-18.294,47.954,22.592,-18.125,46.193,23.013,-17.832,46.033,23.855,-18.189,46.077,23.013,-17.893,45.923,23.855,-19.638,46.134,22.21,-19.542,45.054,22.874,-20.313,45.843,20.435,-20.081,46.027,19.715,-19.55,46.131,19.155,-18.825,46.136,18.868,-20.276,45.231,20.267,-20.058,45.404,19.588,-19.558,45.502,19.061,-18.876,45.507,18.791,-20.102,44.5,19.649,-19.507,44.37,19.02,-20.288,43.455,19.727,-19.656,43.317,19.059,-18.292,45.346,23.959,-18.414,44.513,24.372,-18.485,44.256,24.176,-18.232,43.688,24.099,-17.849,43.884,25.299,-17.264,43.622,25.688,-16.558,43.639,25.938,-17.994,44.242,25.781,-17.427,43.988,26.158,-16.744,44.005,26.4,-17.614,46.506,24.138,-17.611,46.893,23.488,-17.568,46.643,24.219,-17.566,47.024,23.566,-18.137,46.536,25.536,-18.083,46.445,26.246,-17.777,46.195,26.846,-17.279,45.837,27.219,-16.687,45.438,27.292,-16.114,45.077,27.051,-17.854,47.058,25.57,-17.798,46.964,26.303,-17.482,46.706,26.922,-16.968,46.336,27.307,-16.356,45.925,27.383,-15.766,45.552,27.134,-17.43,47.205,23.913,-17.218,47.768,25.006,-16.592,47.947,23.942,-17.545,48.205,23.214,-15.835,48.247,25.371,-15.298,48.086,25.83,-14.86,47.643,26.2,-15.45,48.199,24.921,-14.929,48.044,25.366,-14.505,47.614,25.724,-13.894,46.375,26.089,-14.901,46.171,26.902,-14.39,45.171,26.229,-13.197,45.443,26.672,-13.63,46.469,25.885,-12.559,46.585,25.385,-13.301,46.55,24.458,-13.907,47.331,25.117,-13.064,46.22,23.932,-13.007,46.19,23.879,-12.504,46.067,23.594,-12.559,46.343,22.789,-12.339,46.039,23.573,-12.394,46.314,22.768,-11.442,46.042,23.715,-10.976,46.451,22.983,-11.233,45.915,23.772,-10.795,46.34,23.032,-10.609,44.897,24.227,-9.912,44.717,23.714,-10.53,44.725,24.391,-9.837,44.553,23.87,-10.733,43.953,25.773,-10.295,43.384,26.018,-11.109,44.79,26.345,-11.856,44.453,26.799,-11.92,43.417,26.495,-11.523,42.83,26.764,-9.945,43.259,27.062,-10.738,42.901,27.544,-10.232,43.284,25.342,-10.136,43.22,25.245,-8.969,43.003,26.455,-8.542,42.831,25.991,-8.462,43.001,27.752,-8.033,43.542,28.279,-9.465,43.2,27.209,-9.25,43.056,28.337,-8.821,43.597,28.864,-8.342,44.614,28.586,-9.442,42.841,28.458,-9.053,43.129,29.013,-9.444,42.839,28.459,-9.054,43.128,29.015,-10.962,42.674,27.668,-11.266,42.402,28.69,-9.523,42.832,29.409,-9.699,42.68,30.164,-10.335,42.21,30.705,-10.125,42.452,31.399,-10.61,42.084,30.83,-10.409,42.322,31.528,-9.43,43.156,31.354,-9.28,43.58,31.581,-9.277,43.713,31.799,-8.949,44.09,31.273,-9.268,43.746,31.829,-8.94,44.124,31.303,-11.24,43.086,32.62,-11.269,42.99,32.602,-12.059,43.991,32.835,-12.161,44.446,33.368,-10.994,44.139,32.849,-11.11,44.656,33.456,-12.731,44.408,34.588,-13.177,43.943,34.906,-13.497,43.299,34.924,-13.607,42.648,34.639,-13.477,42.162,34.125,-12.355,44.384,34.968,-12.862,43.854,35.33,-13.227,43.121,35.351,-13.351,42.38,35.026,-13.204,41.827,34.442,-11.663,44.525,35.116,-11.397,44.181,35.76,-11.088,43.603,36.175,-11.067,44.754,34.993,-10.801,44.411,35.636,-10.492,43.832,36.052,-9.414,44.038,32.254,-8.933,44.274,31.568,-9.407,44.08,32.273,-8.927,44.315,31.587,-9.308,44.485,32.348,-8.89,44.854,31.604,-9.234,45.637,31.236,-9.026,44.428,32.66,-8.546,44.664,31.974,-8.953,44.423,32.709,-8.472,44.658,32.023,-8.674,44.537,33.346,-8.385,44.512,34.385,-8.341,43.347,35.589,-7.612,43.185,35.856,-8.446,43.087,35.716,-7.716,42.925,35.982,-6.765,44.129,36.543,-6.717,44.083,36.75,-6.651,43.991,37.118,-6.625,43.87,37.303,-7.189,45.397,37.781,-7.149,46.121,37.955,-6.798,46.764,38.093,-7.223,45.544,37.181,-7.184,46.267,37.356,-6.833,46.91,37.493,-5.861,48.418,37.139,-5.284,47.228,38.78,-5.592,46.866,39.354,-5.814,46.262,39.73,-4.737,47.199,39.055,-5.046,46.837,39.629,-5.267,46.233,40.006,-5.532,44.834,40.176,-6.479,44.897,39.397,-6.01,43.778,39.207,-6.016,43.727,40.443,-5.268,44.861,40.405,-4.753,44.584,41.239,-3.995,45.042,40.736,-4.705,45.7,40.445,-3.927,44.165,41.841,-3.877,43.562,42.204,-3.828,42.867,42.312,-3.787,42.183,42.148,-3.274,44.208,41.822,-3.224,43.605,42.185,-3.175,42.911,42.293,-3.134,42.226,42.129,-4.545,41.829,42.022,-5.334,42.152,41.892,-5.934,42.499,41.379,-6.197,42.786,40.61,-4.762,41.27,41.778,-5.504,41.573,41.656,-6.069,41.9,41.174,-6.316,42.17,40.449,-3.618,45.049,40.699,-2.85,45.216,40.293,-2.566,45.248,40.066,-1.928,44.971,39.67,-1.342,44.096,40.95,-1.234,43.434,41.413,-1.336,42.643,41.582,-0.436,43.862,40.403,-0.327,43.199,40.865,-0.43,42.408,41.034,-1.43,44.757,39.255,-1.158,44.805,38.819,-0.17,44.459,38.482,0.652,44.04,38.483,0.873,43.312,39.823,0.892,42.543,40.211,1.768,43.032,39.279,1.787,42.308,39.645,2.801,43.272,37.448,2.998,43.165,37.757,3.166,43.126,37.806,3.937,43.452,37.603,3.19,43.1,37.858,3.961,43.426,37.655,4.368,44.488,36.788,4.721,44.441,35.915,3.567,43.749,36.536,3.942,43.699,35.608,6.707,44.265,35.02,7.185,44.494,34.272,6.687,44.463,35.069,7.165,44.698,34.322,6.902,45.547,34.84,6.425,45.271,35.419,6.74,45.943,34.815,6.441,45.489,35.673,6.756,46.171,35.081,5.816,45.448,37.095,5.86,45.221,37.766,5.943,44.733,38.275,6.048,44.077,38.525,6.392,45.59,37.093,6.438,45.356,37.786,6.524,44.853,38.312,6.632,44.175,38.57,6.841,45.801,35.742,6.925,46.398,35.187,6.938,45.87,35.831,7.022,46.468,35.276,7.281,46.19,36.228,7.064,45.706,37.395,7.965,45.36,37.713,8.78,45.614,36.756,7.901,47.158,36.738,8.727,46.841,37.029,9.294,44.322,36.981,9.115,43.405,37.571,9.112,41.673,37.757,8.582,41.32,37.816,8.292,41.009,37.75,8.291,41.007,37.751,9.916,41.749,37.716,10.383,41.714,37.739,9.793,44.782,36.33,9.521,45.587,36.226,9.859,44.801,36.306,9.587,45.606,36.201,11.027,44.827,36.549,11.822,44.183,36.797,12.481,43.913,36.709,12.852,43.86,36.703,13.038,43.668,36.682,13.313,44.414,36.866,13.471,43.557,36.507,13.729,44.308,36.698,13.083,45.427,37.759,12.814,46.087,37.842,12.757,46.788,37.696,12.922,47.393,37.348,12.577,45.243,37.386,12.291,45.945,37.475,12.23,46.689,37.319,12.406,47.332,36.95,14.46,47.991,35.444,14.628,48.677,34.801,14.579,47.901,35.38,14.752,48.583,34.734,14.84,47.531,35.412,14.981,47.841,34.742,15.362,48.345,34.333,14.919,47.374,35.334,14.995,47.815,34.729,15.446,48.178,34.25,15.599,45.892,35.35,16.272,45.61,34.739,15.602,45.481,35.557,16.275,45.166,34.962,16.132,45.923,34.102,15.367,46.303,34.312,16.137,45.965,34.044,15.371,46.345,34.253,16.88,46.663,33.544,16.574,47.456,33.429,16.985,46.705,33.557,16.676,47.497,33.441,18.2,44.889,35.061,18.416,44.136,34.968,19.237,45.154,35.233,19.447,44.421,35.142,20.073,46.088,35.267,20.607,45.458,35.437,21.112,44.83,35.193,20.563,46.494,35.234,21.097,45.865,35.404,21.602,45.236,35.16,20.8,47.213,34.967,21.553,47.303,34.953,22.245,47.228,34.652,20.73,47.757,34.671,21.483,47.846,34.657,22.175,47.772,34.356,23.426,46.597,33.772,23.425,46.184,34.156,23.456,45.912,34.337,22.37,45.624,34.968,22.966,44.71,34.284,24.045,44.945,34.894,25.178,45.81,34.546,25.878,45.466,34.365,26.25,44.823,34.068,26.172,44.092,33.751,25.669,43.513,33.519,25.2,46.182,34.168,25.996,45.79,33.962,26.42,45.058,33.624,26.331,44.225,33.263,25.759,43.567,32.999,23.338,46.868,33.512,24.426,46.973,32.916,23.326,47.045,32.336,22.801,47.894,33.071,23.659,46.767,31.431,23.127,47.227,30.881,23.742,46.753,31.339,23.209,47.213,30.79,24.715,47.032,32.702,25.237,46.826,33.395,25.855,46.281,33.734,26.376,45.567,33.613,26.635,44.909,33.07,26.551,44.514,32.274,25.174,47.168,32.466,25.633,46.988,33.075,26.176,46.508,33.373,26.633,45.881,33.267,26.861,45.303,32.789,26.787,44.956,32.09,22.518,47.871,31.397,22.465,48.81,30.703,21.529,48.786,31.403,22.224,48.539,32.309,21.204,48.904,31.252,21.164,48.925,31.231,22.381,49.369,30.168,22.896,49.229,29.454,23.041,48.828,28.672,22.065,49.972,29.837,22.594,49.829,29.104,22.743,49.416,28.301,22.4,48.128,26.479,23.147,47.339,27.863,23.281,48.098,28.656,23.611,47.061,28.855,24.131,46.885,27.919,23.71,46.939,26.479,23.715,47.482,25.795,24.478,46.537,27.094,24.057,46.433,26.123,24.103,46.917,25.397,24.599,47.902,25.272,22.805,48.715,25.869,22.325,48.86,26.69,22.736,49.016,25.776,22.256,49.162,26.596,23.722,50.051,25.143,24.248,49.182,25.326,24.967,49.771,24.879,24.57,50.549,25.399,25.208,48.383,24.848,25.288,47.75,24.499,25.173,47.252,23.982,24.881,46.966,23.38,25.699,48.645,24.486,25.778,48.012,24.137,25.663,47.513,23.62,25.371,47.228,23.018,26.487,50.485,23.289,26.933,51.095,23.179,26.765,50.178,22.679,27.207,50.793,22.578,26.776,50.025,22.399,27.191,50.54,22.091,26.487,49.058,21.867,26.079,49.922,21.244,26.504,50.438,20.953,27.626,50.473,21.054,26.126,50.484,20.886,25.948,50.661,20.715,25.791,50.821,20.583,26.415,51.154,19.933,25.638,51.045,20.556,26.249,51.398,19.904,25.535,51.268,20.643,25.506,51.325,20.663,22.789,50.657,20.901,22.765,50.384,20.871,23.205,49.666,20.68,22.71,49.236,20.297,22.287,49.134,19.674,23.249,49.63,20.659,22.716,49.231,20.294,22.336,49.094,19.65,23.51,49.271,20.425,23.11,48.775,19.697,23.57,49.251,20.405,23.176,48.753,19.676,22.701,49.099,17.946,22.418,48.914,17.135,22.151,49.438,18.061,21.868,49.253,17.25,21.403,48.154,16.194,20.948,48.195,15.619,21.608,47.498,15.957,21.14,47.578,15.397,22.905,46.765,16.091,23.149,46.896,16.169,23.593,47.554,16.381,24.286,47.627,16.002,23.069,48.554,17.01,24.165,48.113,17.535,24.858,48.186,17.156,24.927,48.75,15.995,24.311,46.947,15.632,24.507,46.626,15.249,24.478,46.016,14.901,23.862,45.599,14.57,23.219,45.715,14.578,22.784,45.831,14.812,22.16,45.898,14.744,22.152,46.123,15.446,22.07,45.924,14.735,22.059,46.149,15.436,21.276,46.611,14.171,21.283,46.655,14.078,22.084,46.587,13.334,22.837,45.973,13.567,23.056,46.089,12.599,22.766,47.051,12.743,21.286,47.414,13.577,21.97,47.958,12.832,20.908,48.271,13.136,20.933,48.237,14.264,20.704,48.627,12.587,20.671,48.82,12.276,21.156,49.193,11.502,20.49,49.154,11.954,20.819,49.455,11.019,20.146,49.421,11.461,22.283,50.655,9.003,22.325,50.776,9.239,21.809,50.391,10.323,22.078,50.179,10.987,22.51,51.184,10.266,22.796,50.959,10.971,22.788,51.781,9.839,22.834,52.088,9.258,26.263,52.983,10.641,26.769,53.223,10.211,27.187,53.246,9.64,27.453,53.047,9.016,27.526,52.657,8.43,27.397,52.133,7.973,27.085,51.555,7.71,25.817,53.365,10.33,26.324,53.606,9.899,26.741,53.628,9.329,27.007,53.429,8.704,27.08,53.039,8.119,26.951,52.516,7.661,26.639,51.938,7.399,25.317,51.423,6.857,24.795,51.96,6.758,24.249,52.439,6.967,23.772,52.776,7.446,23.446,52.915,8.113,23.327,52.831,8.855,25.781,51.896,6.984,25.259,52.434,6.886,24.713,52.913,7.094,24.235,53.25,7.573,23.91,53.389,8.241,23.791,53.305,8.983,22.178,50.441,8.765,21.413,49.953,8.902,22.28,50.177,8.472,21.501,49.724,8.648,22.503,49.904,8.319,21.885,49.292,8.445,22.679,49.707,8.241,22.051,49.105,8.372,22.83,49.691,8.181,22.923,49.61,8.169,19.131,48.678,7.096,19.525,49.415,8.004,17.526,48.277,6.824,16.883,48.574,6.44,17.807,48.237,6.307,17.154,48.536,5.942,17.32,48.405,5.486,18.007,47.912,4.457,16.727,47.709,4.149,16.713,48.978,4.476,16.446,48.642,6.803,16.746,48.339,7.403,16.164,48.716,6.981,16.464,48.413,7.582,15.308,49.732,7.19,15.671,50.163,5.978,14.434,50.385,6.433,14.977,50.977,7.481,14.139,50.287,4.597,13.611,50.693,4.19,14.323,50.31,4.385,13.801,50.717,3.97,15.133,50.423,4.003,15.14,50.985,3.357,16.066,50.079,4.663,15.778,49.831,3.531,15.815,50.368,2.863,16.156,51.541,2.956,15.689,49.278,3.326,15.327,48.301,3.267,15.788,50.099,2.3,15.608,49.828,1.333,14.179,51.597,3.202,13.95,52.24,3.065,15.407,52.991,2.903,16.033,53.309,2.476,16.454,53.451,1.785,16.583,53.387,0.975,16.391,53.13,0.218,15.919,52.735,-0.326,15.046,53.535,2.76,15.656,53.845,2.343,16.066,53.983,1.67,16.191,53.921,0.882,16.005,53.67,0.144,15.545,53.285,-0.386,14.614,50.353,-0.106,14.273,49.637,-0.435,14.921,50.114,0.073,14.555,49.418,-0.272,13.749,49.774,-0.725,13.705,50.536,-0.529,13.42,49.249,-1.492,12.885,49.708,-0.802,12.778,50.465,-0.613,13.22,51.298,-1.009,11.886,49.145,-0.862,11.108,49.651,-0.822,11.82,49.05,-0.921,11.043,49.556,-0.881,11.418,50.978,-0.711,10.359,51.301,-1.449,10.787,52.118,-0.489,12.018,52.147,-1.075,10.432,52.16,-0.29,9.803,52.124,0.454,8.447,51.839,0.48,7.923,52.256,1.004,8.209,51.812,0.254,7.663,52.226,0.757,8.53,52.649,1.793,9.474,52.534,1.636,8.574,52.797,1.949,9.518,52.682,1.792,7.305,53.763,1.245,7.677,54.971,1.589,8.901,53.849,2.746,9.559,53.367,2.555,8.725,54.376,2.906,9.274,53.789,3.058,8.752,54.488,3.241,9.301,53.901,3.392,8.666,54.878,3.943,8.372,55.9,3.599,7.961,55.582,4.589,8.954,55.208,4.988,7.581,56.712,3.438,7.193,56.88,2.777,6.788,57.104,4.036,6.372,57.285,3.327,7.423,55.727,4.977,7.127,55.69,5.429,6.584,55.763,5.849,5.858,56.629,5.569,5.105,56.414,5.628,4.993,55.307,5.974,6.268,55.671,6.98,5.469,55.442,7.043,7.414,55.371,7.197,8.254,55.322,6.553,8.142,54.692,8.524,7.87,54.85,8.72,7.438,55.048,8.82,6.343,55.396,8.137,5.92,54.755,9.231,6.749,55.623,9.799,5.042,54.839,7.957,4.662,54.394,8.254,5.678,54.474,9.42,5.406,53.838,9.913,4.158,53.229,9.076,4.085,52.528,10.091,3.486,52.0,8.51,2.847,51.518,8.587,3.4,52.079,8.297,2.762,51.596,8.378,2.778,51.763,8.034,2.76,51.771,8.011,2.79,51.277,9.185,3.403,51.515,9.497,2.679,50.89,9.74,3.298,51.149,10.022,1.187,50.951,9.689,0.477,50.801,9.397,1.075,50.566,10.16,0.365,50.416,9.868,-0.586,49.864,8.693,-1.377,49.659,8.683,-0.6,49.92,8.578,-1.39,49.711,8.575,-1.448,49.528,8.977,-0.712,49.587,9.161,-1.526,49.23,9.346,-0.794,49.271,9.553,-2.065,48.685,10.205,-2.5,48.682,10.373,-3.131,48.805,10.286,-3.251,48.638,11.121,-3.797,49.224,9.541,-3.63,48.308,10.096,-3.78,48.111,10.919,-4.178,48.773,11.716,-4.348,48.422,8.581,-4.559,47.215,8.391,-3.675,47.037,10.024,-3.767,47.313,10.901,-3.668,46.704,10.134,-3.76,47.001,11.004,-3.758,45.542,10.119,-3.911,45.28,9.969,-5.067,45.723,8.739,-5.809,45.588,8.712,-6.451,45.435,9.079,-5.126,45.936,8.679,-5.83,45.665,8.69,-6.51,45.648,9.018,-6.096,45.741,8.684,-7.45,46.398,11.154,-7.181,46.449,11.844,-7.495,47.162,10.452,-8.162,47.696,10.731,-8.517,47.252,11.6,-8.181,47.251,12.262,-6.744,47.204,12.325,-7.338,47.68,12.573,-9.05,47.113,11.782,-9.09,47.096,12.603,-9.987,47.182,11.056,-9.816,46.216,11.725,-9.856,46.199,12.546,-10.093,47.135,13.236,-8.769,48.015,14.04,-7.784,48.005,13.579,-7.846,47.871,15.445,-7.297,48.164,15.883,-8.179,47.91,15.836,-7.63,48.203,16.274,-9.143,48.051,16.141,-9.619,48.141,15.133,-10.407,47.815,14.98,-10.982,47.29,15.783,-10.065,48.579,16.489,-10.853,48.254,16.336,-11.122,47.073,15.85,-11.693,47.251,16.455,-11.145,47.022,15.843,-11.715,47.204,16.448,-12.776,48.922,17.854,-13.191,48.778,18.495,-12.274,49.123,18.166,-12.741,48.962,18.886,-13.829,47.625,19.446,-14.208,47.43,20.047,-14.136,47.302,19.131,-14.535,47.086,19.712,-14.274,47.056,19.116,-14.92,46.767,19.662,-14.298,46.9,19.004,-14.945,46.602,19.543,-15.929,48.499,21.652,-14.851,47.915,21.439,-15.614,47.91,23.195,-16.339,48.036,23.698,-14.936,47.622,23.129,-14.005,47.045,23.36,-13.902,46.918,23.305,-13.447,46.911,22.607,-13.884,46.892,23.318,-13.429,46.885,22.619,-13.216,46.768,22.608,-13.077,46.641,22.652,-13.108,47.782,21.716,-13.443,47.971,20.99,-14.057,47.652,22.15,-14.414,47.852,21.379,-12.95,48.15,20.792,-12.463,48.678,19.98,-11.534,47.982,21.312,-12.325,47.662,21.862,-11.554,47.098,22.208,-10.996,47.924,22.151,-11.225,48.278,20.855,-10.281,48.566,21.175,-10.046,48.397,20.178,-10.984,48.89,20.006,-9.777,48.274,19.941,-9.61,48.2,19.922,-8.714,48.041,20.253,-8.075,48.368,19.661,-8.561,47.956,20.372,-7.918,48.281,19.783,-8.745,47.587,22.072,-7.723,46.889,21.782,-8.888,46.02,22.583,-9.459,45.81,22.74,-10.339,45.998,22.763,-10.615,45.376,23.165,-10.358,46.01,22.769,-10.635,45.389,23.171,-9.932,44.831,23.488,-9.896,44.784,23.576,-7.791,44.652,23.653,-6.743,44.701,23.466,-8.087,43.223,24.086,-8.103,42.729,24.651,-8.812,43.437,24.218,-8.877,42.958,24.792,-9.642,44.023,24.033,-9.739,44.439,23.903,-9.845,43.084,24.909,-9.853,43.085,24.92,-7.667,42.485,24.37,-7.237,42.991,23.701,-7.613,42.446,24.375,-7.183,42.951,23.706,-6.979,42.037,24.873,-6.7,41.778,25.359,-6.578,41.494,25.91,-5.68,41.498,25.933,-6.579,41.487,25.946,-5.68,41.491,25.968,-7.171,41.988,26.784,-6.754,42.184,27.367,-7.744,42.382,27.067,-7.32,42.573,27.646,-8.167,42.525,27.235,-8.031,42.853,27.928,-7.756,43.464,28.324,-8.17,42.527,27.235,-8.031,42.853,27.928,-7.758,43.465,28.324,-6.211,46.079,28.597,-6.432,46.276,28.659,-7.751,46.644,28.653,-8.556,46.323,28.785,-8.708,46.109,28.981,-8.942,45.992,29.198,-9.149,45.838,29.42,-9.08,44.677,29.829,-9.324,45.516,30.7,-10.186,45.975,30.006,-10.458,46.826,29.171,-10.93,47.363,29.406,-11.148,47.837,29.949,-11.047,48.111,30.644,-10.204,47.134,28.808,-10.742,47.746,29.075,-10.989,48.286,29.693,-10.875,48.597,30.484,-10.109,47.507,31.774,-9.495,48.303,32.185,-8.564,47.02,31.599,-8.538,46.804,31.495,-8.715,46.081,31.244,-8.804,45.991,31.228,-7.807,44.882,32.303,-7.892,44.824,32.283,-7.404,45.183,32.623,-7.323,45.895,32.169,-7.18,45.276,32.815,-7.087,45.993,32.371,-6.586,45.42,33.847,-6.632,45.34,34.18,-7.013,44.929,34.584,-6.746,45.372,35.145,-7.142,44.812,34.736,-6.882,45.248,35.305,-6.248,47.248,35.188,-6.306,47.805,34.543,-6.158,47.494,35.386,-6.224,48.032,34.724,-6.013,48.043,36.192,-6.061,48.942,36.002,-6.039,48.084,36.394,-6.088,48.984,36.211,-6.129,47.934,36.801,-6.039,48.662,36.895,-6.321,49.346,36.877,-6.001,47.929,37.169,-5.983,48.66,37.056,-6.187,49.341,37.261,-7.696,50.319,37.142,-7.662,50.527,37.846,-7.457,50.938,38.42,-7.113,51.483,38.772,-6.686,52.076,38.846,-8.199,50.692,37.055,-8.166,50.901,37.759,-7.96,51.311,38.333,-7.616,51.857,38.685,-7.189,52.45,38.759,-6.354,53.432,38.372,-5.68,53.535,38.044,-4.636,53.3,37.66,-4.156,52.749,37.515,-4.182,52.371,37.444,-3.456,52.748,37.322,-4.034,51.968,37.05,-3.311,52.353,36.935,-4.628,50.627,37.362,-4.423,50.509,36.759,-5.112,49.071,36.446,-4.678,48.313,36.388,-5.685,49.41,37.149,-5.772,48.689,37.009,-5.52,47.995,37.062,-5.77,49.394,37.25,-5.807,48.682,37.051,-5.601,47.98,37.158,-2.561,47.513,35.776,-3.105,47.678,34.841,-1.383,45.384,35.406,-1.38,45.382,35.413,-1.018,45.565,36.152,-0.932,45.76,36.999,-1.865,47.172,37.262,-2.47,47.587,37.402,-3.203,47.71,37.477,-1.828,47.026,37.857,-2.433,47.44,37.997,-3.166,47.563,38.073,-0.902,45.672,37.391,-0.883,45.22,38.06,0.495,45.062,35.779,0.066,44.793,34.621,1.082,43.913,35.065,1.364,43.708,35.285,1.839,43.773,36.199,2.536,43.444,36.084,1.947,43.807,36.976,2.652,43.48,36.924,2.591,43.16,35.086,3.77,43.321,35.091,3.354,42.606,34.236,2.473,43.338,33.916,4.309,42.049,33.907,4.582,42.049,33.935,4.995,42.071,34.018,5.18,42.105,34.091,5.57,42.403,34.533,5.628,42.079,33.874,5.732,42.427,34.536,5.794,42.104,33.877,6.513,43.468,35.007,7.074,43.806,34.623,7.306,44.16,33.993,6.507,43.497,35.022,7.074,43.807,34.624,7.299,44.191,34.009,7.344,43.914,33.95,7.034,43.383,34.538,7.372,43.811,33.872,7.062,43.28,34.46,7.259,43.371,32.833,6.8,42.571,32.81,7.214,43.401,32.671,6.755,42.601,32.648,5.404,46.236,31.632,4.654,46.014,31.224,5.233,46.707,31.697,4.48,46.495,31.291,5.125,47.754,32.007,5.13,47.79,32.062,5.317,47.768,32.43,4.715,48.255,32.419,5.431,47.921,32.776,4.826,48.404,32.757,5.95,46.623,33.283,6.105,46.841,33.852,5.617,48.165,33.262,4.945,48.573,33.029,5.631,48.263,33.392,4.959,48.668,33.155,5.729,48.492,33.965,5.098,49.033,34.108,5.853,48.548,34.289,5.225,49.089,34.439,6.064,48.552,34.59,5.619,49.123,34.907,6.536,48.681,35.007,6.099,49.255,35.332,8.739,49.303,36.219,8.688,48.188,36.767,9.453,47.989,36.766,9.951,48.987,36.218,9.157,50.075,37.111,9.965,49.865,37.111,10.904,47.361,36.079,9.804,47.224,36.751,10.566,46.269,36.318,11.669,46.684,36.92,11.517,48.396,35.446,11.086,49.133,35.521,12.103,48.914,35.099,11.605,49.663,35.155,12.109,48.918,35.094,11.611,49.667,35.151,12.431,49.083,34.965,12.122,49.926,34.943,12.628,49.156,34.859,12.296,49.991,34.85,13.724,49.169,34.694,14.488,48.802,34.816,13.167,50.592,34.58,13.447,51.356,34.45,16.336,50.968,33.731,16.198,50.45,34.26,15.871,49.832,34.539,16.79,50.634,33.522,16.652,50.116,34.051,16.325,49.498,34.33,18.276,49.296,32.847,18.019,48.639,33.415,17.729,48.396,33.534,17.11,47.717,33.544,18.467,49.425,32.507,18.771,49.465,31.614,20.032,49.337,30.819,20.888,49.18,30.972,19.289,49.771,30.127,18.56,49.823,30.584,19.18,49.954,29.934,18.453,50.003,30.395,19.018,50.171,29.651,18.199,50.4,29.981,18.925,50.296,29.338,18.108,50.522,29.676,20.297,51.067,28.633,20.914,51.109,28.1,21.391,50.778,27.526,19.631,51.309,27.845,20.212,51.349,27.343,20.661,51.037,26.803,22.083,49.401,26.362,22.525,49.414,25.523,23.106,50.025,25.09,23.026,50.002,25.029,22.529,49.478,25.355,21.919,49.356,25.846,22.897,50.312,24.726,22.381,49.726,24.886,21.702,49.534,25.255,21.101,49.804,25.703,22.525,50.325,24.167,21.737,49.868,24.217,20.916,49.895,24.614,22.568,51.137,23.903,21.932,50.993,23.563,22.566,51.632,23.71,21.931,51.505,23.364,22.393,52.045,23.304,21.661,52.236,23.025,20.935,52.54,23.203,23.528,52.786,24.31,24.256,53.102,24.205,23.203,53.233,23.4,23.931,53.549,23.295,25.796,53.067,23.42,25.547,52.633,24.573,25.971,51.791,24.704,26.604,51.46,23.67,26.996,53.255,23.778,27.433,52.385,23.913,25.587,53.354,22.833,25.581,53.583,22.433,26.641,53.754,23.275,27.119,53.398,23.781,27.756,52.987,23.973,28.419,52.606,23.812,28.972,52.335,23.33,29.3,52.229,22.628,26.956,54.274,23.343,27.434,53.918,23.849,28.071,53.507,24.042,28.734,53.126,23.88,29.287,52.855,23.399,29.615,52.749,22.697,28.844,51.48,22.266,28.783,51.224,21.699,29.684,51.872,20.376,29.555,51.439,20.344,30.093,52.337,20.205,30.347,52.549,20.119,31.231,52.316,19.8,30.588,52.767,20.035,31.275,52.38,19.798,30.632,52.83,20.033,31.406,52.449,19.797,30.853,52.942,19.964,30.44,53.297,20.494,31.518,52.668,19.687,30.878,52.991,19.939,30.545,53.505,20.39,31.478,52.779,19.599,30.831,53.222,19.837,31.37,53.021,18.877,30.725,53.459,19.129,32.261,52.292,19.997,33.137,52.442,20.903,33.59,50.747,21.85,34.282,50.599,22.875,35.142,51.139,22.153,34.13,51.815,22.082,35.916,50.219,22.759,36.269,49.612,22.71,36.352,48.933,22.545,36.193,50.448,22.218,36.568,49.804,22.166,36.656,49.083,21.991,35.549,47.756,22.364,35.819,47.302,21.408,36.951,48.289,20.813,37.106,48.77,20.166,36.893,49.236,19.524,36.934,48.818,21.203,37.089,49.3,20.556,36.876,49.765,19.914,35.867,50.029,18.62,35.762,50.615,18.138,36.07,48.99,18.348,35.113,49.364,17.975,35.008,49.951,17.493,35.787,50.574,17.046,35.792,50.889,18.337,35.89,50.501,18.958,35.716,51.422,18.681,35.814,51.035,19.302,35.618,51.561,18.878,35.579,51.673,18.921,36.343,52.27,17.623,36.342,52.897,17.829,36.484,51.737,16.939,36.201,51.013,16.909,35.654,50.472,16.797,36.652,51.698,16.308,36.37,50.974,16.278,35.823,50.432,16.166,36.512,53.041,15.776,36.106,53.49,15.335,35.477,53.736,15.012,34.742,53.733,14.866,34.04,53.481,14.925,36.344,53.708,16.612,35.937,54.157,16.171,35.308,54.403,15.848,34.574,54.4,15.702,33.871,54.149,15.761,35.493,52.055,19.031,35.487,52.084,19.06,35.487,52.416,19.23,35.769,53.457,18.855,35.195,53.995,19.089,34.39,54.153,19.113,33.839,53.249,19.538,35.516,52.626,20.325,35.012,53.098,20.53,34.305,53.237,20.552,35.801,52.029,20.784,35.598,51.996,21.429,36.359,51.096,20.864,36.128,51.059,21.598,32.479,53.315,17.959,31.775,52.974,18.121,32.411,53.244,17.538,31.711,52.905,17.715,30.537,53.515,18.856,29.823,53.515,18.207,28.537,53.814,17.639,27.835,53.987,17.834,27.216,53.931,18.252,28.9,54.559,18.328,28.218,54.727,18.517,27.616,54.673,18.923,26.053,52.461,19.896,25.326,52.488,20.538,26.038,52.225,19.893,25.312,52.274,20.535,25.32,52.056,20.624,25.323,51.987,20.648,25.363,52.7,20.634,25.583,53.298,21.242,25.622,53.468,21.607,25.59,53.623,22.087,25.472,53.619,22.132,26.253,53.89,22.182,25.465,53.59,22.382,26.247,53.861,22.437,27.188,55.167,21.907,27.699,55.595,22.412,28.415,55.679,22.837,29.166,55.4,23.079,29.773,54.824,23.083,30.092,54.088,22.846,30.047,53.366,22.425,27.446,55.436,21.418,27.957,55.864,21.923,28.673,55.948,22.348,29.424,55.669,22.591,30.031,55.093,22.594,30.35,54.357,22.357,30.305,53.635,21.936,27.558,55.402,20.636,28.133,55.841,20.378,28.87,55.998,20.229,29.623,55.84,20.218,30.238,55.398,20.349,30.594,54.762,20.594,27.497,55.15,20.072,28.072,55.59,19.814,28.81,55.746,19.664,29.562,55.588,19.654,30.178,55.147,19.784,30.533,54.511,20.03,21.83,52.812,22.918,20.933,52.978,23.199,21.806,52.992,22.747,20.912,53.136,23.05,21.828,53.161,22.158,21.93,53.312,21.678,21.52,53.381,21.345,20.765,53.991,21.067,22.038,53.27,21.291,22.338,52.559,20.586,22.488,52.437,20.567,21.844,52.29,20.166,22.581,51.799,20.634,21.934,51.674,20.232,22.596,51.328,20.839,22.618,51.289,20.855,21.644,49.883,19.746,21.718,49.787,19.82,21.432,50.241,19.171,21.68,49.774,18.086,20.933,49.823,17.588,20.07,50.331,18.262,21.258,51.343,18.784,20.593,51.387,18.34,19.03,49.685,17.841,18.991,49.588,17.705,19.038,49.286,17.267,19.102,49.114,17.015,19.911,48.8,16.246,20.833,49.229,16.836,20.841,48.443,15.962,20.207,48.948,15.139,18.774,48.98,15.872,18.551,49.097,15.577,18.441,49.308,14.759,17.822,49.918,14.785,18.463,49.333,14.683,17.846,49.945,14.701,20.045,49.154,14.41,19.621,49.669,13.549,18.017,50.156,14.242,17.898,50.689,13.406,17.892,50.722,12.863,17.443,51.438,12.908,17.775,50.678,12.341,17.325,51.393,12.376,19.238,49.664,10.763,19.702,49.546,10.949,18.957,49.696,10.5,19.039,49.86,9.428,18.192,49.239,9.708,17.867,49.898,10.539,18.073,48.759,8.927,18.192,48.67,8.503,17.33,48.795,9.556,16.988,48.792,9.61,15.99,48.759,8.688,15.403,49.403,8.612,15.976,48.718,8.427,15.39,49.364,8.364,15.394,49.434,9.242,15.393,49.445,9.258,15.376,49.854,9.539,16.056,49.496,10.126,15.314,49.954,9.667,15.983,49.614,10.278,14.701,51.269,9.845,14.796,51.667,10.47,15.237,51.879,11.033,14.411,51.55,9.816,14.738,51.724,10.464,14.876,52.228,10.996,13.273,52.159,9.17,14.053,52.011,8.16,12.861,51.975,7.684,12.898,53.067,8.35,12.777,51.313,7.17,12.913,51.024,6.933,13.428,50.543,6.489,13.749,50.461,6.44,12.677,50.584,6.077,12.604,50.601,5.988,12.845,50.776,4.79,13.264,50.675,4.557,12.238,51.152,4.881,12.068,50.997,5.619,12.14,51.263,4.883,11.974,51.103,5.62,13.275,52.999,2.818,13.739,52.574,2.969,13.485,54.203,2.15,12.292,53.73,2.368,13.43,54.592,0.68,13.748,54.457,0.026,14.151,54.067,-0.457,14.563,53.495,-0.678,12.738,54.243,0.427,13.064,54.104,-0.244,13.477,53.704,-0.74,13.901,53.116,-0.968,12.042,54.001,0.525,11.649,53.567,-0.044,11.54,53.887,0.958,11.147,53.454,0.388,11.492,53.705,2.474,10.721,53.612,3.42,10.589,52.215,6.316,10.165,53.203,5.248,10.656,53.523,4.25,9.586,53.955,4.167,9.837,54.335,5.254,10.087,53.421,6.682,10.653,53.212,7.241,9.776,53.881,7.195,10.356,53.65,7.728,9.068,54.241,7.621,9.184,54.246,8.433,8.622,54.496,7.676,8.72,54.512,8.491,10.279,54.038,8.85,10.897,54.211,9.623,9.471,55.621,10.462,8.894,56.372,11.128,7.257,55.919,10.041,6.537,55.845,10.264,5.973,55.545,10.671,5.674,55.075,11.184,5.696,54.526,11.706,7.367,56.465,10.544,6.627,56.389,10.772,6.049,56.081,11.19,5.742,55.599,11.717,5.765,55.036,12.253,6.356,53.335,12.745,6.294,53.059,12.508,5.62,52.927,11.324,5.337,53.354,10.534,5.535,52.012,11.823,5.914,52.088,12.504,5.39,51.739,11.928,5.757,51.793,12.618,5.022,51.276,11.956,5.148,50.994,12.649,4.758,50.956,11.873,4.882,50.672,12.565,4.046,50.462,11.436,3.737,49.892,11.92,3.173,49.774,12.488,2.592,50.158,12.9,3.7,49.824,11.756,3.413,50.653,10.424,2.748,50.229,10.326,3.295,50.896,10.207,2.622,50.488,10.095,1.989,49.565,11.522,1.969,49.576,11.525,1.565,49.933,11.39,1.519,50.215,12.223,0.995,50.349,10.494,0.822,49.737,11.441,0.832,50.034,12.271,0.96,51.055,12.677,0.667,49.233,11.616,0.663,49.227,11.615,-0.31,48.782,11.109,-0.723,48.766,10.585,-0.197,48.678,12.306,-0.202,48.68,12.315,-0.484,48.775,12.595,0.031,49.419,13.024,-0.505,48.782,12.61,0.012,49.425,13.037,-3.885,49.347,12.386,-4.625,49.029,12.333,-4.037,49.652,12.874,-4.801,49.324,12.819,-5.835,47.916,12.82,-4.972,47.579,11.95,-5.443,46.626,12.647,-6.586,47.038,12.329,-4.036,45.85,11.952,-3.859,46.03,11.629,-4.891,45.331,12.886,-4.915,44.314,11.46,-4.89,44.228,10.981,-4.189,44.629,10.139,-4.14,44.704,10.121,-5.052,44.027,10.119,-5.093,44.022,10.078,-5.399,44.501,9.107,-6.279,44.72,9.255,-5.396,44.536,9.076,-6.275,44.757,9.222,-6.569,44.49,10.332,-6.795,44.637,10.732,-7.428,45.71,11.107,-7.218,46.005,11.869,-7.442,45.837,11.063,-7.231,46.121,11.828,-6.616,45.359,12.405,-6.446,44.651,11.991,-6.475,45.333,12.507,-6.306,44.626,12.092,-5.97,48.117,13.103,-7.009,48.135,13.449,-6.232,48.281,14.205,-5.621,49.023,13.645,-6.804,47.973,14.839,-6.588,48.268,15.468,-7.032,47.908,14.944,-6.831,48.2,15.58,-5.866,48.783,15.272,-5.921,49.562,16.219,-4.74,49.475,15.895,-5.143,49.616,14.753,-4.417,49.462,16.081,-4.524,49.557,17.232,-3.665,48.906,16.802,-3.287,49.653,16.017,-4.494,48.872,19.115,-4.581,48.843,19.193,-5.29,49.892,18.135,-5.913,50.067,17.4,-6.692,49.734,16.91,-5.766,50.047,18.504,-6.32,50.204,17.85,-7.015,49.907,17.413,-8.235,48.515,17.163,-8.223,48.375,17.009,-8.418,48.753,17.445,-9.537,49.062,17.674,-9.627,49.017,18.485,-8.582,48.67,18.918,-7.829,49.623,17.941,-7.909,49.582,18.662,-4.911,48.854,19.307,-5.303,48.419,19.745,-7.331,47.779,20.039,-7.387,47.79,20.022,-7.147,46.979,21.314,-6.418,47.395,20.654,-7.13,46.346,22.015,-6.406,45.726,22.522,-6.011,46.193,21.25,-5.723,46.117,21.172,-5.164,45.892,21.199,-4.709,46.447,20.776,-4.781,45.613,21.221,-4.36,46.193,20.796,-4.039,44.776,21.71,-4.002,44.592,22.075,-4.477,44.531,22.895,-3.944,44.404,23.374,-5.345,45.032,23.045,-5.861,44.58,23.521,-5.427,43.699,23.77,-4.88,43.585,24.236,-3.873,44.685,24.333,-4.375,44.246,24.796,-5.965,42.94,23.828,-6.29,42.845,23.801,-5.034,42.751,24.63,-4.97,42.552,24.962,-4.883,42.266,26.934,-5.325,42.454,27.494,-5.13,42.003,26.829,-5.568,42.194,27.391,-4.676,42.555,27.979,-4.226,42.369,27.426,-4.349,42.038,28.427,-3.894,41.844,27.88,-4.62,43.515,29.851,-4.705,43.089,28.915,-5.218,43.329,28.37,-5.883,44.105,28.507,-4.503,44.396,29.314,-5.029,44.642,28.755,-4.589,43.222,30.201,-4.554,43.243,30.48,-4.644,45.338,28.876,-5.375,45.424,28.525,-4.427,46.355,28.56,-5.069,46.431,28.252,-3.708,46.269,29.821,-3.685,47.509,29.456,-3.945,47.611,30.718,-2.872,46.905,30.574,-4.825,48.596,30.817,-4.841,48.698,30.726,-4.797,48.748,30.413,-4.904,49.371,30.86,-4.998,49.005,29.992,-5.114,49.639,30.421,-5.155,48.646,28.818,-5.933,49.482,29.406,-6.461,48.175,28.65,-7.154,48.359,28.532,-6.656,47.385,28.559,-7.349,47.57,28.441,-7.268,47.259,28.651,-7.293,47.222,28.664,-7.237,48.862,28.756,-7.681,49.555,28.999,-9.779,49.428,28.419,-10.178,48.793,28.267,-10.182,48.034,28.172,-9.789,47.378,28.162,-9.997,49.513,28.903,-10.451,48.79,28.73,-10.455,47.926,28.622,-10.007,47.179,28.611,-9.854,49.888,29.55,-10.311,49.641,30.129,-10.516,49.18,30.72,-9.543,50.281,29.964,-10.0,50.034,30.543,-10.205,49.573,31.134,-7.124,50.822,30.358,-7.614,51.16,31.064,-7.882,51.274,31.509,-7.602,51.983,31.921,-8.863,50.829,31.516,-8.045,50.978,32.202,-7.75,51.717,32.545,-8.062,52.705,32.507,-7.904,50.737,32.412,-7.498,51.314,32.86,-7.791,50.552,32.551,-7.389,51.138,32.992,-7.752,49.645,32.948,-8.574,48.876,32.75,-7.632,48.229,32.776,-7.403,48.866,33.648,-6.408,46.874,33.097,-6.4,46.706,33.046,-6.372,47.354,33.781,-6.355,47.632,34.28,-7.053,50.202,34.165,-7.176,49.138,34.056,-6.53,49.285,34.905,-7.197,50.098,35.26,-7.031,50.381,33.871,-7.028,50.493,33.819,-7.64,51.837,34.719,-7.666,51.88,34.711,-8.737,52.235,35.549,-9.014,52.861,35.981,-8.954,53.451,36.532,-8.531,52.645,35.088,-8.807,53.27,35.52,-8.748,53.86,36.071,-8.36,53.623,37.988,-7.661,53.28,38.543,-7.836,54.795,38.152,-7.221,54.494,38.64,-7.528,55.966,36.901,-6.86,56.352,36.955,-7.465,55.849,36.359,-6.726,56.276,36.418,-5.22,56.328,37.081,-5.945,56.204,38.02,-5.713,55.528,38.495,-4.76,54.989,38.021,-4.3,56.674,37.801,-4.043,55.926,38.326,-4.756,54.619,37.884,-4.822,54.359,37.795,-2.97,53.786,38.047,-2.432,53.473,38.037,-1.408,52.582,37.615,-1.329,52.179,36.863,-0.331,52.493,37.79,-0.25,52.078,37.016,-0.527,52.314,35.787,-0.714,52.54,35.209,-1.861,52.569,34.646,-2.529,52.391,34.949,-2.985,52.185,35.788,-3.617,51.763,35.664,-3.165,52.215,36.647,-3.8,51.794,36.537,-3.646,51.745,34.712,-3.705,51.597,34.538,-4.594,49.452,34.989,-4.386,48.676,34.808,-4.576,49.346,35.464,-4.368,48.57,35.283,-4.379,48.715,34.046,-4.493,49.58,33.765,-4.376,48.582,33.634,-4.49,49.447,33.353,-4.418,48.335,33.377,-4.445,48.25,33.248,-3.656,47.419,32.78,-2.867,46.812,33.118,-2.454,46.351,33.022,-2.107,45.963,32.712,-1.212,45.259,32.867,-0.902,45.125,33.336,1.994,43.821,32.285,2.276,44.458,31.649,2.21,43.558,32.117,2.491,44.195,31.48,3.066,42.397,32.242,3.237,42.29,32.493,3.393,42.185,32.849,3.469,42.132,33.122,6.304,42.627,31.915,6.55,43.448,31.564,6.384,42.634,31.987,6.632,43.454,31.638,6.262,43.453,31.304,6.059,43.519,31.112,5.943,43.78,30.961,5.543,43.127,30.89,5.839,43.856,30.848,5.441,43.201,30.779,5.349,44.877,30.832,4.625,44.958,30.728,5.368,45.382,31.095,4.643,45.463,30.991,4.023,44.042,30.522,4.361,43.293,30.557,3.886,43.982,30.581,4.228,43.235,30.615,3.591,43.818,30.711,3.793,42.962,30.915,3.399,43.789,30.782,3.605,42.934,30.984,1.872,44.742,31.759,2.17,45.935,31.552,1.557,46.283,31.096,1.099,46.211,30.395,0.965,45.745,29.708,1.205,45.057,29.29,1.729,44.4,29.294,1.604,43.808,30.384,0.883,44.912,32.498,0.27,45.26,32.041,-0.188,45.188,31.34,-0.322,44.722,30.654,-0.082,44.034,30.236,0.443,43.378,30.24,2.978,43.525,30.134,3.194,42.677,30.351,3.031,43.519,30.058,3.246,42.671,30.277,3.153,43.591,29.724,3.507,42.851,29.774,3.154,43.591,29.72,3.508,42.851,29.769,2.937,43.65,28.727,2.622,43.849,28.408,1.946,44.407,28.397,1.202,45.138,29.192,1.291,46.069,28.272,0.976,44.945,27.809,2.014,47.552,30.935,2.016,48.167,31.404,1.798,46.572,31.177,2.533,46.325,31.587,3.098,47.188,31.54,3.02,47.83,31.964,1.781,48.291,32.356,2.426,48.074,32.716,3.385,47.28,31.432,3.517,47.977,31.816,3.453,47.281,31.406,3.583,47.978,31.792,3.749,47.403,31.35,3.827,47.381,31.324,3.185,49.21,34.683,2.542,49.67,34.78,2.607,48.693,33.698,2.042,49.097,33.783,2.46,50.193,35.408,1.782,50.936,35.771,3.41,49.767,35.829,3.928,49.324,35.403,3.874,49.871,36.284,4.392,49.428,35.858,3.77,51.167,36.946,4.104,51.893,37.008,2.578,51.755,36.789,2.892,52.438,36.848,4.126,53.064,36.24,3.795,53.72,36.17,4.235,53.117,36.219,3.901,53.772,36.151,4.911,53.311,36.295,5.017,54.137,36.374,5.015,53.294,36.341,5.113,54.121,36.417,5.071,51.99,37.196,5.501,51.31,37.302,5.974,50.713,37.024,5.97,52.551,37.329,6.375,51.912,37.429,6.821,51.35,37.168,7.083,50.733,36.22,7.909,50.766,36.329,7.1,50.664,36.116,7.925,50.7,36.23,7.964,50.89,36.581,8.746,50.992,37.389,9.075,51.809,37.56,8.686,52.68,36.956,7.385,51.565,37.277,7.714,52.382,37.449,9.089,53.353,36.566,10.126,52.76,36.872,9.768,53.502,35.955,9.389,54.538,36.486,11.029,52.401,36.571,11.381,51.754,36.739,11.472,51.013,36.629,11.719,52.536,35.758,12.048,51.933,35.915,12.133,51.241,35.813,10.437,53.181,35.206,9.87,53.819,35.374,10.451,53.203,35.171,9.884,53.841,35.338,10.619,53.403,34.87,10.17,54.188,34.885,10.688,53.443,34.778,10.249,54.234,34.781,11.182,53.512,34.399,11.682,53.431,34.053,12.548,52.903,34.034,13.16,51.973,34.419,12.255,53.581,33.402,12.386,53.793,33.159,14.116,53.413,33.132,14.099,53.831,32.659,16.143,52.763,30.344,16.434,52.297,29.266,16.85,51.566,28.672,17.096,51.318,28.692,17.597,50.897,29.005,18.162,50.774,28.368,17.75,50.78,29.163,18.312,50.659,28.523,18.044,51.192,27.73,18.099,51.424,27.423,19.549,51.642,27.125,20.147,51.448,26.558,19.031,52.236,26.416,19.665,52.03,25.813,20.389,50.777,24.229,20.484,50.596,24.244,20.268,51.176,24.101,20.229,51.366,24.038,20.432,52.022,23.634,20.569,52.196,23.497,19.938,53.133,24.779,19.344,53.58,25.048,18.603,53.825,24.927,19.657,52.195,25.557,18.981,52.703,25.862,18.137,52.982,25.725,17.516,53.051,24.818,17.298,52.93,24.38,17.314,53.045,23.664,16.656,52.71,23.55,15.911,52.724,23.608,17.312,53.063,23.607,16.655,52.712,23.542,15.909,52.746,23.533,17.556,53.796,22.466,17.589,53.865,22.454,17.89,54.367,22.693,17.501,54.856,22.138,18.129,54.664,22.801,17.763,55.182,22.256,18.426,54.836,22.931,18.299,55.425,22.441,18.986,54.745,23.751,19.336,54.891,22.83,19.282,55.484,22.331,18.742,56.366,22.45,19.559,54.744,22.728,19.644,55.215,22.149,19.828,54.41,22.496,19.913,54.881,21.917,20.332,53.612,22.482,20.492,53.45,22.646,20.348,54.296,21.424,20.563,54.29,21.155,20.295,56.387,21.607,20.524,56.756,21.056,20.55,56.874,20.365,20.367,56.713,19.707,20.02,56.312,19.248,19.97,56.781,21.798,20.231,57.201,21.171,20.261,57.336,20.384,20.052,57.152,19.635,19.657,56.695,19.113,19.835,54.295,19.716,19.956,53.518,19.563,20.189,54.308,19.935,20.314,53.531,19.784,20.407,54.114,20.185,20.653,54.255,20.831,19.405,53.242,19.183,18.9,53.805,19.115,19.125,52.947,18.937,18.601,53.491,18.851,18.762,52.447,18.619,18.029,52.739,18.186,18.707,52.219,18.558,17.975,52.515,18.126,18.63,51.184,18.401,18.861,50.785,18.36,17.478,51.732,17.58,17.337,51.635,17.266,17.258,50.988,16.47,17.353,50.738,16.361,17.478,50.458,15.995,17.603,50.133,15.608,17.145,51.996,16.261,16.943,52.801,15.701,17.503,52.034,14.377,17.449,52.819,13.657,16.683,53.224,14.884,16.736,53.258,15.664,16.349,53.677,14.902,16.427,53.677,15.68,15.934,54.282,14.586,16.194,54.644,13.585,15.518,54.825,12.98,14.475,54.672,13.28,15.401,55.193,14.548,14.807,55.351,14.017,14.674,54.2,11.954,13.402,54.105,12.099,13.927,53.345,11.641,13.174,53.318,11.418,13.971,53.058,11.526,13.218,53.031,11.304,13.462,52.692,11.298,12.851,52.659,10.694,12.354,53.767,9.358,12.218,53.93,10.603,12.308,54.121,11.219,11.856,54.45,11.713,13.078,54.099,11.97,12.652,54.409,12.435,11.457,54.317,12.68,10.446,54.304,13.251,10.979,53.367,13.684,11.877,54.073,13.714,9.382,52.74,14.042,8.767,53.451,13.941,9.857,54.506,13.307,10.213,54.913,12.631,8.971,55.493,13.436,9.327,55.901,12.759,8.144,53.982,13.902,7.399,55.089,14.003,6.473,54.913,13.574,6.437,53.658,13.111,7.341,53.419,14.812,6.415,53.243,14.383,9.547,52.308,14.117,10.258,52.382,13.852,9.585,52.15,14.175,10.295,52.23,13.908,9.873,51.827,14.186,9.865,51.538,14.312,9.718,50.59,15.241,10.415,50.396,15.629,8.703,51.206,15.914,8.963,50.906,16.648,8.063,51.528,16.272,8.323,51.228,17.006,6.999,52.382,16.356,7.544,53.043,15.388,6.815,53.327,14.774,6.023,52.913,14.339,5.389,52.244,15.245,6.461,53.444,16.812,5.775,53.712,16.235,5.029,53.322,15.825,5.114,51.316,14.973,4.989,51.829,15.559,4.96,51.15,15.083,4.828,51.657,15.673,3.924,50.502,14.183,3.07,50.644,14.2,3.893,50.377,13.71,3.04,50.52,13.727,3.059,51.163,15.959,0.506,51.241,15.231,0.527,50.588,16.105,-0.554,50.16,14.678,-1.296,49.8,14.828,-0.665,50.239,14.297,-1.412,49.883,14.431,-0.795,50.12,14.119,-0.413,49.651,13.273,-3.611,50.105,14.008,-4.006,50.087,14.616,-3.119,50.132,14.342,-3.501,50.115,14.931,-1.331,49.565,15.355,-0.623,49.658,15.518,-1.387,49.421,15.677,-0.68,49.513,15.845,-1.695,49.19,16.417,-1.162,49.305,17.137,-1.861,49.148,16.55,-1.317,49.266,17.26,-1.724,49.032,17.019,-1.448,49.351,17.847,0.52,51.629,19.127,1.251,51.817,18.925,0.519,51.667,19.157,1.249,51.855,18.955,-0.98,51.927,18.891,-1.697,52.042,19.13,-2.22,52.078,19.686,-0.728,53.096,19.228,-1.358,53.198,19.438,-1.818,53.229,19.926,-2.286,52.363,21.639,-2.3,52.331,21.667,-2.701,50.969,21.265,-2.404,50.204,21.581,-1.747,49.638,21.726,-2.489,51.242,21.797,-2.209,50.521,22.094,-1.591,49.989,22.231,0.26,48.734,21.732,0.549,48.156,22.218,-0.43,48.789,21.237,-0.027,48.134,21.316,0.132,47.51,21.745,-0.516,48.689,21.08,-0.037,48.121,21.297,0.046,47.41,21.588,-1.3,48.319,20.31,-1.37,47.403,20.16,-1.379,48.326,20.304,-1.449,47.411,20.154,-2.201,48.461,20.478,-2.188,49.477,21.273,-2.814,50.06,20.842,-3.155,49.35,19.82,-3.33,47.992,20.793,-3.879,48.504,20.414,-2.217,46.98,20.427,-2.79,46.402,20.7,-3.094,46.18,20.734,-2.842,45.527,21.037,-3.386,46.069,20.725,-3.156,45.407,21.027,-1.233,45.35,21.995,-1.238,45.3,22.097,-2.021,44.9,22.758,-2.712,44.648,22.894,-3.036,44.456,22.93,-3.088,44.432,22.919,-3.342,44.964,24.484,-3.193,44.942,25.285,-2.868,44.594,25.947,-2.793,45.238,24.402,-2.648,45.217,25.178,-2.334,44.879,25.819,-1.481,40.703,26.961,-0.757,40.49,27.039,-1.491,40.673,26.969,-0.766,40.46,27.047,-1.922,40.072,27.483,-1.392,39.557,28.043,-2.282,39.855,27.628,-1.742,39.345,28.184,-2.618,39.592,27.602,-2.266,38.93,28.127,-2.674,39.561,27.6,-2.32,38.9,28.126,-3.78,40.625,28.115,-4.12,40.632,28.874,-3.813,41.494,28.092,-4.153,41.501,28.851,-3.304,39.374,30.36,-2.577,38.955,30.169,-3.268,40.156,30.713,-3.153,40.743,31.067,-4.391,42.976,31.03,-4.215,43.718,31.316,-4.407,42.991,31.002,-4.229,43.732,31.289,-2.95,44.239,31.588,-2.282,43.884,31.527,-2.886,44.379,31.479,-2.215,44.03,31.414,-2.294,44.451,31.246,-2.588,45.583,30.609,-2.115,46.243,31.141,-1.551,45.488,32.082,-1.069,44.364,30.649,-0.531,45.115,31.254,-1.457,41.748,31.456,-1.761,41.084,31.549,-0.966,41.506,31.337,-1.269,40.843,31.43,-0.16,40.477,30.98,1.339,41.96,31.16,2.044,41.527,31.012,1.635,42.486,31.005,2.334,42.042,30.859,2.13,40.227,30.534,1.566,39.763,30.409,2.209,40.185,30.331,1.646,39.721,30.206,2.566,40.412,29.663,2.255,40.114,29.057,2.847,40.711,29.375,2.541,40.417,28.764,2.767,40.63,28.417,3.332,41.61,29.266,3.33,41.963,28.564,3.398,41.939,29.433,3.397,42.298,28.734,3.456,42.333,28.851,3.463,42.35,28.858,2.36,41.773,27.528,2.013,42.303,27.227,2.158,43.604,27.443,2.272,43.698,27.632,1.632,43.449,26.973,1.516,42.619,26.858,1.498,43.477,26.904,1.382,42.647,26.789,0.663,43.828,26.717,0.716,44.901,27.382,0.146,44.954,26.256,-0.616,43.974,26.611,0.278,45.114,26.213,-0.404,44.902,25.813,0.285,45.133,26.191,-0.397,44.922,25.79,0.537,45.859,26.005,1.263,46.69,26.06,1.963,46.968,26.812,1.605,46.872,26.04,2.346,47.135,26.611,1.981,47.037,25.843,3.23,47.918,26.794,3.522,48.263,26.209,3.553,48.417,27.234,3.835,48.747,26.635,3.341,49.234,28.55,3.245,49.236,28.604,2.043,48.164,28.526,2.229,48.932,29.217,2.358,49.419,29.343,2.554,50.482,29.257,2.254,50.212,30.893,2.344,50.822,31.331,2.131,51.298,32.255,1.857,51.201,32.834,1.781,51.011,33.123,1.726,50.779,33.484,1.724,50.874,33.799,1.876,50.564,34.142,0.984,51.445,35.012,0.481,51.84,34.982,1.398,51.356,36.234,1.921,51.525,36.661,2.444,51.926,36.885,2.864,52.481,36.86,0.685,51.814,36.889,1.241,51.993,37.344,1.797,52.42,37.581,2.243,53.01,37.555,2.828,54.062,36.794,2.776,54.264,36.922,5.335,55.362,37.512,5.863,56.038,37.588,4.563,55.83,38.117,5.155,56.589,38.202,6.819,57.084,36.614,7.122,56.535,36.63,7.245,55.906,36.706,7.039,55.178,36.78,6.563,54.446,36.862,5.59,54.038,36.692,7.468,54.217,36.808,8.286,53.733,36.74,9.584,55.329,36.363,9.882,55.778,36.043,9.597,56.807,36.046,9.972,57.132,35.488,10.111,57.334,34.782,9.988,57.38,34.047,9.258,57.356,36.137,9.634,57.68,35.578,9.772,57.882,34.873,9.649,57.928,34.137,10.536,55.903,33.251,10.655,55.978,34.483,10.542,54.744,34.461,11.311,55.079,33.618,10.752,55.36,31.98,9.905,56.054,32.012,11.254,53.491,31.246,10.867,54.546,31.444,11.353,55.034,31.95,11.733,55.002,32.716,12.387,54.086,32.91,12.127,54.016,30.668,12.665,54.555,31.229,13.085,54.519,32.076,10.994,52.745,31.253,10.999,52.706,31.232,11.338,52.396,30.749,10.644,51.978,30.627,11.382,52.351,30.657,10.687,51.933,30.538,11.991,52.911,29.763,12.551,53.837,29.653,13.1,54.547,30.703,13.903,54.569,31.081,13.559,54.688,29.69,14.386,54.711,30.08,13.892,54.95,28.897,14.778,54.945,28.603,15.419,54.459,28.128,13.573,55.364,27.751,14.352,55.359,27.492,14.915,54.932,27.075,15.733,53.056,27.283,16.082,52.715,26.735,16.093,52.817,27.662,16.443,52.476,27.114,16.279,52.568,27.751,16.42,52.244,28.246,17.621,52.832,25.919,16.994,52.739,26.085,15.742,52.925,26.203,15.187,53.487,26.39,15.541,52.932,25.66,15.003,53.493,25.892,15.528,52.735,24.678,15.79,52.662,24.308,14.517,53.576,25.067,14.298,53.824,24.867,15.442,53.306,22.304,15.509,53.259,22.347,15.465,53.223,22.456,16.015,53.484,21.933,15.567,53.13,22.517,16.113,53.395,21.991,15.957,52.773,23.226,16.768,52.81,23.177,15.971,52.751,23.416,16.781,52.789,23.358,17.232,53.486,22.346,17.313,53.583,22.349,16.305,54.45,21.57,16.28,54.456,21.562,14.587,54.29,20.905,15.199,56.421,20.405,15.426,56.872,19.728,15.944,57.008,19.074,14.658,55.756,19.75,14.872,56.181,19.113,15.359,56.309,18.498,17.383,57.388,18.941,18.006,57.604,19.061,16.63,57.99,20.315,16.545,57.727,21.229,17.453,58.613,20.63,17.379,58.383,21.434,17.061,56.528,22.171,17.683,56.744,22.291,18.293,57.205,22.395,19.163,57.163,22.303,19.86,57.261,21.783,20.174,57.469,20.992,20.01,57.724,20.171,19.416,57.949,19.568,18.574,58.075,19.365,18.368,57.733,22.353,19.132,57.697,22.272,19.744,57.783,21.815,20.02,57.966,21.121,19.876,58.19,20.399,19.354,58.387,19.869,18.614,58.498,19.691,17.946,54.759,17.855,17.504,53.949,17.032,15.86,54.446,16.035,15.952,54.224,15.841,15.664,54.721,16.133,15.185,55.154,16.414,15.052,55.21,16.378,15.306,55.282,17.059,14.918,55.257,16.422,15.166,55.331,17.105,14.034,55.668,15.734,13.359,55.4,15.591,13.896,55.521,16.924,13.128,55.216,16.761,12.635,54.312,14.401,13.315,55.192,14.205,13.746,54.608,13.34,12.597,54.522,13.267,11.567,51.188,15.168,11.435,51.048,15.169,12.04,51.671,15.591,12.084,51.75,15.671,12.086,51.933,16.267,12.053,52.021,16.692,11.939,52.077,17.325,11.821,51.972,17.536,10.705,51.025,17.499,10.499,50.724,17.036,10.627,51.488,18.303,11.324,52.052,18.331,10.501,51.614,18.907,11.198,52.178,18.934,10.145,51.512,19.852,10.629,52.049,20.427,9.901,51.408,20.155,10.385,51.945,20.73,7.823,50.925,20.321,7.258,51.201,20.983,7.767,50.947,20.264,7.202,51.223,20.926,7.62,51.517,19.359,6.962,52.101,19.475,7.629,51.658,18.839,6.97,52.226,19.013,7.614,51.558,18.183,6.935,52.028,17.961,7.659,51.467,17.842,6.979,51.941,17.634,6.437,53.585,17.723,6.521,53.778,18.767,5.206,54.866,17.838,5.133,54.921,17.436,5.162,54.726,17.109,4.939,55.481,17.023,5.466,54.042,16.446,4.774,53.804,16.155,4.146,54.377,16.682,3.923,55.133,16.596,4.867,56.067,16.216,4.175,55.829,15.925,3.846,54.479,16.895,3.5,54.243,17.293,3.007,53.664,17.858,3.003,54.391,17.726,2.536,53.797,18.607,2.532,54.524,18.475,2.251,53.962,19.36,2.231,53.946,19.382,1.588,53.015,19.281,0.897,53.23,19.592,1.342,52.498,19.136,0.67,52.752,19.458,0.962,54.333,19.893,-0.356,54.484,19.82,0.223,55.129,20.827,0.999,55.703,19.853,-1.149,54.657,21.652,-1.675,54.236,20.739,-2.135,53.49,21.46,-2.261,54.52,22.019,-2.41,55.37,23.231,-3.1,54.847,23.547,-2.529,55.961,24.114,-3.135,55.502,24.392,-3.28,53.466,24.401,-2.914,52.831,24.608,-2.312,52.376,24.706,-3.193,53.709,24.993,-2.828,53.074,25.2,-2.225,52.619,25.298,-1.431,51.525,23.437,-2.415,52.012,23.616,-2.841,52.443,22.946,-2.39,52.494,21.931,-2.027,51.003,22.684,-2.428,51.408,22.054,-0.437,50.684,23.021,-0.173,51.441,23.713,0.988,51.366,22.53,1.009,51.339,22.49,0.386,49.732,21.923,0.882,49.081,21.84,0.355,49.709,21.925,0.851,49.058,21.841,0.274,49.057,21.901,0.593,48.233,22.299,1.155,48.016,22.84,1.704,48.014,23.007,2.514,48.053,23.796,2.538,48.033,24.231,2.368,47.909,24.473,3.028,48.353,24.642,2.432,47.644,24.937,3.09,48.093,25.097,3.796,50.963,23.388,4.183,50.616,24.149,4.603,50.893,24.567,4.89,51.067,24.749,5.364,51.037,25.158,5.538,50.4,26.405,5.888,50.919,27.054,5.45,50.33,26.509,5.8,50.849,27.158,4.632,49.947,26.91,4.497,50.328,27.789,4.416,49.72,26.97,4.262,50.08,27.854,4.096,48.955,26.814,3.964,48.766,27.54,4.068,48.924,26.801,3.936,48.735,27.527,3.626,49.553,28.489,3.496,49.537,28.556,5.075,51.388,28.112,4.981,52.06,28.335,3.887,52.745,28.606,3.462,51.682,28.467,2.762,51.519,28.94,2.41,51.55,29.725,2.515,52.572,30.248,2.919,53.215,28.237,2.26,53.062,28.683,1.929,53.09,29.421,2.59,52.1,31.412,2.541,51.8,31.559,2.361,52.998,31.549,2.345,53.274,30.868,2.222,53.273,31.667,2.2,53.56,30.99,1.051,53.201,32.655,0.149,53.428,32.426,0.977,53.045,32.823,0.058,53.236,32.634,0.106,52.936,33.553,-0.422,53.015,33.06,-0.267,52.78,33.928,-0.795,52.858,33.436,-0.513,52.751,34.145,-1.229,52.729,33.777,-0.686,52.72,34.484,-1.402,52.698,34.116,-3.688,50.478,32.899,-3.216,50.821,32.6,-4.614,48.186,32.555,-4.129,47.646,32.267,-4.61,48.179,32.574,-4.125,47.639,32.286,-4.144,47.759,31.972,-4.625,48.394,32.064,-4.179,47.785,31.575,-4.662,48.422,31.651,-4.528,50.274,31.036,-4.848,50.723,30.546,-5.309,51.268,30.359,-5.807,51.788,30.516,-3.688,50.926,31.12,-4.028,51.403,30.6,-4.517,51.982,30.401,-5.047,52.535,30.567,-6.47,52.651,31.474,-7.194,52.239,31.687,-6.045,53.096,31.521,-5.546,54.048,32.19,-5.332,54.199,32.458,-5.331,54.352,33.255,-6.145,54.645,34.194,-6.976,54.736,34.321,-7.822,54.312,33.451,-8.189,53.737,33.454,-8.228,53.057,33.464,-7.974,54.47,34.691,-8.391,53.816,34.694,-8.436,53.042,34.706,-7.963,54.889,35.391,-7.621,55.387,35.667,-5.292,54.756,34.559,-4.816,54.575,34.009,-4.964,54.917,34.793,-4.482,54.738,34.247,-4.648,55.644,35.476,-5.711,56.125,35.75,-5.119,56.36,36.765,-4.297,56.686,35.954,-3.732,55.433,34.961,-3.771,55.05,34.343,-3.602,55.511,34.905,-3.64,55.129,34.286,-3.121,55.846,34.555,-2.352,56.479,34.754,-3.132,57.406,36.058,-3.453,57.559,36.758,-3.621,57.39,37.506,-3.601,56.935,38.146,-3.397,56.289,38.543,-3.052,55.588,38.615,-2.608,57.683,36.238,-2.929,57.835,36.938,-3.097,57.666,37.686,-3.077,57.211,38.326,-2.873,56.566,38.723,-2.528,55.864,38.795,-2.02,56.743,35.231,-1.961,56.546,34.532,-1.206,56.676,35.327,-1.134,56.478,34.629,-0.579,56.567,35.572,-0.041,56.364,34.997,-0.564,56.574,35.584,-0.026,56.37,35.009,-0.768,57.598,36.492,-0.661,57.753,37.262,-0.74,57.593,38.035,-0.988,57.152,38.645,-1.352,56.523,38.963,-1.755,55.842,38.92,-0.234,57.283,36.481,-0.127,57.438,37.251,-0.206,57.278,38.024,-0.454,56.837,38.634,-0.818,56.208,38.952,-1.221,55.527,38.909,0.039,56.442,35.217,0.427,56.52,35.425,0.778,56.693,35.998,1.456,56.823,35.6,0.866,56.771,36.175,1.546,56.903,35.78,0.88,57.02,36.673,1.57,57.264,36.659,0.1,57.348,37.243,0.194,57.087,38.036,0.426,56.411,38.477,1.243,55.977,38.047,1.938,56.206,38.054,1.978,58.021,37.228,2.074,57.752,38.044,2.313,57.057,38.499,0.098,55.15,38.721,0.695,54.247,38.549,1.778,55.203,37.891,2.247,55.757,37.964,1.953,54.204,38.041,2.59,54.589,37.336,3.059,55.143,37.41,3.233,55.716,38.242,2.497,58.289,36.22,2.435,57.976,35.201,3.737,58.918,36.396,4.377,58.923,36.789,4.938,58.631,37.193,5.326,58.09,37.539,4.077,58.809,35.845,4.716,58.814,36.238,5.277,58.521,36.641,5.665,57.98,36.987,5.989,58.373,34.977,5.469,58.571,35.987,5.747,58.135,36.691,6.617,57.389,36.565,6.965,58.717,35.485,7.243,58.281,36.189,6.032,58.392,34.157,7.13,58.714,33.834,6.598,58.004,33.043,5.64,58.647,33.101,7.341,57.481,32.408,7.911,57.35,32.318,9.083,56.722,31.852,9.281,55.991,31.494,8.316,56.927,30.889,8.491,56.284,30.575,8.693,55.122,31.164,8.343,54.727,31.153,8.536,52.742,31.022,8.347,52.381,30.318,8.876,52.269,30.566,8.643,52.224,29.766,8.91,52.259,30.557,8.675,52.214,29.757,8.863,52.191,29.595,9.39,51.96,29.255,10.644,51.68,29.575,11.343,52.04,29.143,10.711,51.704,29.704,11.413,52.065,29.279,10.995,52.282,28.231,10.048,52.109,28.187,10.991,52.312,28.202,10.044,52.136,28.161,11.046,52.643,27.999,10.176,52.607,27.784,11.094,52.858,27.735,10.219,52.798,27.551,11.802,54.99,26.151,11.941,55.27,26.067,12.515,55.504,25.438,12.652,55.369,25.229,14.057,55.103,25.512,13.526,54.738,24.457,12.245,55.016,23.053,11.456,55.174,22.439,11.211,55.19,22.37,10.808,55.87,22.651,11.038,55.134,22.255,10.634,55.814,22.536,10.609,54.906,21.757,11.14,54.243,20.887,10.663,53.398,20.767,9.722,53.335,21.535,9.659,54.986,21.062,9.24,54.244,20.957,10.196,51.924,21.33,9.766,51.308,21.163,10.21,51.921,21.302,9.78,51.306,21.135,9.08,51.783,21.979,9.018,52.543,22.127,8.524,51.321,21.727,8.344,51.268,21.681,7.72,51.1,21.377,7.717,51.098,21.373,6.564,52.399,20.751,6.561,52.382,20.741,6.754,53.009,20.86,6.813,53.175,20.818,6.984,53.625,20.49,7.613,53.929,20.991,6.717,54.198,20.478,7.346,54.502,20.979,6.257,54.369,20.793,6.131,54.42,20.82,5.557,54.663,20.612,5.514,54.691,20.579,5.276,54.931,20.033,4.972,55.599,20.237,5.252,54.977,19.837,4.945,55.649,20.025,5.2,55.192,19.208,5.289,54.971,18.536,5.305,56.68,17.913,5.351,56.96,17.322,4.589,58.468,17.346,3.718,58.75,17.065,2.825,58.452,16.887,4.374,58.742,18.391,3.448,59.04,18.093,2.499,58.724,17.903,2.174,57.074,16.566,2.385,56.461,16.324,2.842,55.956,16.199,1.93,56.801,17.11,2.154,56.149,16.853,2.639,55.613,16.72,1.641,56.914,17.891,1.519,57.373,18.343,1.756,55.699,18.343,1.357,55.411,19.533,1.028,56.664,20.182,1.306,57.413,19.444,1.481,57.223,21.651,1.84,57.749,21.527,0.885,56.49,21.604,0.133,55.709,22.406,0.999,55.425,23.828,1.965,55.866,23.661,2.123,54.539,24.075,2.82,54.576,24.333,2.119,54.442,24.101,2.816,54.482,24.357,0.846,54.263,24.808,0.715,54.507,24.793,0.902,55.389,23.893,0.409,55.695,23.416,0.031,55.493,24.897,-0.493,55.817,24.391,-0.033,55.185,25.886,-0.637,55.14,26.455,-1.278,54.731,26.79,-1.783,54.071,26.799,-2.013,53.338,26.48,-1.906,52.734,25.919,0.19,54.783,26.163,-0.341,54.743,26.664,-0.905,54.384,26.958,-1.348,53.804,26.966,-1.55,53.161,26.685,-1.455,52.63,26.193,1.116,53.998,24.644,1.756,54.112,24.226,2.522,54.207,24.272,0.891,53.648,24.834,1.355,53.68,24.257,0.85,53.476,24.792,1.313,53.502,24.214,0.391,52.706,25.57,-0.178,52.351,25.575,0.66,52.345,24.357,0.013,51.941,24.363,0.882,52.019,23.864,2.018,51.943,23.39,3.129,53.238,23.919,3.352,53.043,23.836,3.56,52.104,23.442,3.435,51.721,23.302,4.271,52.636,24.099,4.492,52.592,24.306,6.193,52.252,25.805,6.291,52.161,26.68,6.186,52.014,25.783,6.284,51.934,26.659,6.365,52.705,26.34,5.986,53.134,25.641,6.836,53.376,28.082,7.584,53.565,27.354,7.117,53.822,29.354,7.146,54.615,29.782,6.929,53.839,29.339,6.971,54.631,29.768,6.171,53.748,29.086,5.756,54.459,29.382,5.862,53.629,28.927,5.433,54.335,29.216,5.427,53.267,28.613,4.73,53.715,28.735,5.092,52.787,28.46,4.395,53.234,28.583,3.851,55.095,28.213,4.544,55.796,28.623,1.511,55.095,28.834,1.156,55.86,29.493,1.064,54.901,30.004,0.479,55.157,30.465,1.063,54.697,30.116,0.479,54.953,30.578,-1.571,54.593,30.48,-2.157,55.117,30.647,-0.849,55.424,30.521,-1.401,55.917,30.678,-3.126,55.54,31.65,-2.835,56.024,31.964,-3.411,54.452,30.855,-2.945,53.891,30.482,-2.424,53.26,30.484,-1.962,52.699,30.86,-1.662,52.33,31.527,-4.228,53.776,30.849,-3.762,53.216,30.477,-3.241,52.585,30.478,-2.78,52.023,30.854,-2.48,51.655,31.521,-2.266,56.614,32.034,-1.946,56.964,32.69,-1.419,57.0,33.304,-1.777,56.87,31.687,-1.476,57.2,32.305,-0.98,57.234,32.883,1.06,56.928,33.957,2.053,57.544,34.351,1.815,56.841,33.407,1.138,56.719,32.95,1.84,56.826,33.373,1.163,56.704,32.918,2.459,56.907,32.947,2.226,56.785,32.229,2.599,56.974,32.889,2.356,56.846,32.175,3.023,58.118,34.035,3.699,58.43,33.247,3.015,57.225,31.991,3.198,57.338,31.714,3.73,57.66,31.663,4.538,58.373,31.94,5.259,57.728,31.39,4.341,57.82,30.692,5.966,57.569,31.55,6.354,57.568,31.966,6.662,57.342,30.184,6.774,56.87,29.676,6.859,56.202,29.476,5.44,57.404,29.925,5.568,56.866,29.347,5.665,56.106,29.118,3.41,57.539,30.249,2.345,57.39,30.342,2.742,57.011,32.143,2.697,56.98,32.183,1.173,56.882,31.9,1.402,57.289,30.928,1.017,56.984,30.226,0.835,56.244,29.837,0.387,55.431,30.385,0.204,57.315,31.61,-0.207,56.989,30.858,-0.402,56.195,30.44,7.194,54.421,29.762,7.223,53.765,29.351,7.543,53.405,28.745,7.276,54.556,29.886,7.258,53.759,29.466,7.31,54.471,30.049,7.294,53.667,29.642,7.317,53.692,25.922,7.741,54.005,25.988,8.309,54.057,26.387,8.437,54.656,25.931,9.122,53.961,26.55,9.314,54.553,26.107,9.71,53.742,26.435,9.905,53.563,26.521,10.23,53.003,27.097,11.12,53.183,27.05,10.239,52.974,27.151,11.129,53.152,27.108,11.324,53.908,26.546,11.554,54.344,26.418,11.579,54.624,26.205,11.608,54.657,26.2,10.631,56.318,25.834,10.911,56.385,25.767,9.784,57.123,26.369,9.05,57.391,26.191,9.471,56.1,26.122,8.737,56.368,25.945,8.286,58.213,25.34,8.007,57.817,24.908,10.353,59.196,26.413,10.997,58.849,26.362,11.547,58.522,26.002,11.895,58.28,25.403,11.973,58.169,24.681,11.767,58.21,23.979,10.861,60.122,26.226,11.468,59.795,26.178,11.985,59.488,25.839,12.312,59.26,25.275,12.386,59.155,24.596,12.192,59.194,23.935,11.491,56.88,23.8,11.694,56.704,24.909,9.43,58.224,22.225,8.666,58.19,22.405,8.089,58.196,22.939,7.852,58.239,23.686,9.346,59.484,22.314,8.675,59.455,22.472,8.169,59.46,22.941,7.96,59.498,23.598,10.04,60.913,22.811,9.702,61.356,23.334,9.345,61.397,24.009,10.998,61.109,23.223,10.636,61.585,23.784,10.253,61.629,24.507,7.504,56.431,24.572,7.57,57.322,23.893,7.464,56.454,23.189,6.703,56.076,23.897,8.157,56.468,22.278,8.86,57.249,22.052,9.726,57.047,21.99,10.037,56.029,22.145,8.592,56.05,21.433,9.353,55.873,21.379,5.565,55.704,22.255,5.074,56.231,21.877,5.696,55.359,21.606,5.205,55.885,21.227,4.988,56.174,22.194,4.503,56.298,22.637,3.34,57.532,22.482,3.14,56.683,23.153,3.312,56.228,23.648,2.733,55.756,23.976,4.103,55.79,24.54,3.594,55.375,24.827,5.316,55.331,25.232,6.63,55.437,25.053,7.087,55.446,25.213,7.943,56.026,25.476,3.003,53.528,24.086,2.828,53.871,24.225,1.991,58.33,20.836,2.608,58.757,20.909,3.343,58.918,20.87,4.071,58.788,20.726,4.668,58.387,20.502,5.033,57.784,20.236,1.91,58.552,20.223,2.527,58.978,20.295,3.262,59.14,20.256,3.99,59.009,20.112,4.587,58.609,19.888,4.952,58.006,19.622,8.323,53.0,22.032,8.412,52.979,22.049,3.655,50.674,22.917,2.046,50.898,22.065,1.616,50.996,22.158,2.427,49.609,21.798,2.966,49.235,22.135,3.352,49.09,22.748,2.382,49.548,21.808,2.951,49.214,22.139,3.304,49.026,22.759,2.888,48.612,22.751,2.768,48.427,22.911,-3.18,54.207,25.574,-2.707,54.279,26.322,-1.987,54.607,26.726,-1.244,55.089,26.658,-0.71,55.575,26.141,-0.551,55.913,25.336,-0.817,55.998,24.492,-3.282,54.727,25.652,-2.866,54.79,26.31,-2.234,55.078,26.664,-1.581,55.501,26.605,-1.112,55.928,26.151,-0.972,56.225,25.443,-1.205,56.3,24.702,11.353,52.997,19.945,10.968,53.75,20.652,11.442,54.392,20.88,12.158,54.68,21.184,13.117,54.377,20.735,11.531,53.832,19.25,12.005,54.474,19.478,12.721,54.763,19.782,13.491,54.258,20.875,14.123,54.524,20.326,13.596,54.214,20.974,14.224,54.482,20.421,14.782,55.977,18.256,14.028,55.626,17.628,12.948,55.216,18.047,12.492,54.857,17.639,12.233,54.308,17.271,12.63,55.002,18.591,12.175,54.642,18.183,11.915,54.094,17.815,-0.516,45.502,25.314,-0.517,46.657,24.62,-1.042,45.771,23.751,-1.766,45.608,24.86,-1.032,45.563,23.301,-1.106,45.419,23.107,0.472,42.445,26.61,0.395,42.392,26.637,-0.779,43.403,26.756,-0.993,42.87,26.916,0.259,42.115,26.796,-0.019,41.664,26.978,-0.123,41.388,27.045,-0.553,40.962,27.02,0.666,39.851,28.586,-0.319,39.825,28.067,0.924,39.691,28.826,0.949,39.679,28.852,1.179,39.605,29.113,1.332,39.6,29.191,-1.129,39.652,30.518,-1.778,39.307,30.281,-1.079,45.858,21.559,-0.736,46.437,21.166,1.152,51.569,18.788,1.262,51.257,18.49,1.905,51.159,17.612,1.572,50.7,17.095,2.179,51.309,17.299,1.842,50.849,16.787,0.688,50.378,17.616,0.559,50.357,17.58,0.482,50.3,17.282,-0.262,49.793,16.968,-7.157,50.889,33.288,-7.171,50.903,33.261,-5.977,51.087,30.235,-5.404,50.764,30.269,-6.435,50.261,29.729,-5.827,49.919,29.766,11.105,51.809,6.376,11.583,52.145,7.097,12.113,51.934,7.283,11.354,51.644,5.635,11.794,51.321,5.51,16.264,51.192,11.621,16.55,50.483,11.435,16.688,52.13,11.483,17.141,51.414,12.083,17.413,50.701,11.89,17.434,50.219,10.982,17.46,51.398,31.329,17.667,50.935,31.689,6.24,42.215,34.009,6.105,42.199,34.046,-10.051,49.06,18.677,-10.458,49.229,18.113,-10.896,49.121,17.557,-10.567,49.129,19.07,-10.973,49.299,18.506,-11.412,49.191,17.95,21.268,47.041,15.492,21.275,47.121,15.536,20.577,49.249,32.763,20.177,49.033,33.487,19.792,48.456,33.986,21.123,49.111,33.024,20.723,48.894,33.747,20.338,48.317,34.246,15.356,47.723,34.075,15.309,47.904,34.24,-2.902,46.831,39.452,-3.393,47.333,38.852,-3.415,46.712,39.772,-3.906,47.214,39.171,-9.079,44.433,30.053,-9.14,43.804,30.188,-15.91,45.728,18.94,-15.727,45.579,18.043,-15.882,45.744,18.944,-15.697,45.596,18.046,-11.411,45.69,14.481,-12.125,45.344,14.637,-11.102,45.054,14.485,-11.816,44.708,14.641,-10.123,44.37,13.986,-9.986,44.416,13.756,-10.809,43.519,14.478,-11.654,43.764,14.705,-10.861,43.348,14.46,-11.713,43.568,14.685,-10.042,42.636,12.832,-9.975,42.842,12.759,-10.886,41.652,11.809,-11.766,41.414,11.936,-10.892,41.631,11.729,-11.772,41.392,11.852,27.425,52.046,16.082,26.439,52.1,15.298,25.88,51.675,15.687,26.481,51.326,16.74,27.091,52.893,16.988,26.455,52.409,17.431,9.668,40.648,38.976,9.995,40.404,39.437,21.432,44.272,21.086,21.575,43.606,20.728,21.416,44.255,21.111,21.559,43.589,20.754,21.283,44.067,21.907,21.417,43.252,22.087,21.286,44.069,21.917,21.42,43.254,22.098,21.898,42.632,21.337,21.929,42.613,21.333,0.337,37.734,41.486,-0.41,37.507,41.406,-1.093,37.426,41.03,0.537,37.161,41.247,-0.21,36.934,41.166,-0.893,36.853,40.79,-12.692,38.692,30.96,-12.454,38.037,31.267,-12.678,38.68,30.923,-12.441,38.025,31.231,-12.636,38.215,5.628,-14.84,37.952,4.078,-14.973,37.723,3.409,-14.986,37.236,2.879,-14.877,36.584,2.591,-14.667,35.896,2.602,-14.396,35.303,2.909,-14.118,34.922,3.453,-15.463,37.871,4.254,-15.605,37.628,3.542,-15.619,37.11,2.979,-15.503,36.418,2.674,-15.279,35.686,2.685,-14.992,35.057,3.011,-14.696,34.652,3.589,-8.953,38.223,5.099,-8.834,38.307,4.979,16.673,43.646,8.157,16.487,43.849,8.253,15.859,44.254,8.52,15.775,44.254,8.529,15.114,44.358,9.286,14.592,43.772,9.149,15.11,44.357,9.304,14.588,43.772,9.166,14.901,43.212,8.346,14.917,43.092,8.317,23.788,41.429,22.575,-8.459,38.948,32.459,-8.519,38.863,32.398,-8.648,37.756,31.101,-8.189,37.661,30.507,-8.643,37.21,31.201,-8.184,37.096,30.611,-8.131,38.331,30.268,-8.495,38.9,30.784,-8.103,38.366,30.249,-8.469,38.932,30.767,-7.006,38.496,30.047,-6.668,39.146,30.39,-6.902,38.436,30.06,-6.564,39.085,30.402,-7.541,39.821,31.254,-7.506,39.869,31.433,-9.661,36.201,32.854,-9.76,36.156,32.937,-14.14,33.307,29.443,-14.638,33.868,29.785,-15.056,34.576,29.711,-15.271,35.219,29.242,-14.988,32.768,29.092,-15.487,33.33,29.434,-15.905,34.037,29.359,-16.119,34.681,28.89,-8.002,37.252,3.174,-7.583,37.075,2.6,-6.975,36.835,2.268,-8.22,36.676,3.192,-7.8,36.5,2.618,-7.193,36.26,2.286,-8.665,34.862,2.903,-7.961,35.864,2.55,-7.598,34.729,2.098,-8.766,34.55,1.701,13.471,39.969,12.985,13.477,39.973,12.992,13.822,37.594,8.966,13.876,37.6,9.027,1.721,31.345,31.483,1.62,30.922,31.018,-2.983,32.245,27.579,-2.215,32.279,27.477,-2.99,32.127,27.484,-2.222,32.16,27.381,-15.375,30.882,19.08,-15.979,30.87,18.48,-15.08,30.356,18.794,-15.685,30.344,18.194,14.581,37.089,2.589,15.338,37.196,2.574,16.071,37.016,2.697,16.651,36.579,2.934,16.979,35.962,3.246,16.995,35.274,3.577,14.61,36.808,2.004,15.366,36.916,1.989,16.099,36.735,2.112,16.68,36.298,2.349,17.007,35.682,2.661,17.023,34.993,2.992,14.681,32.971,20.881,14.773,33.0,21.246,-1.073,31.706,8.162,-1.062,31.722,8.152,18.322,33.584,14.949,18.243,33.616,15.027,-3.435,26.882,21.268,-3.437,26.847,21.26,-2.943,23.087,23.006,-2.289,22.661,23.452,-2.806,28.266,8.679,-2.149,28.649,8.598,4.662,30.789,5.227,4.785,30.845,5.143,11.643,27.365,22.382,11.558,27.699,22.306,6.329,29.35,8.268,7.121,29.37,8.055,6.329,29.322,8.266,7.121,29.343,8.054,8.167,29.907,8.805,8.109,30.264,9.484,8.18,29.893,8.814,8.122,30.25,9.492,1.939,22.857,14.557,1.937,22.857,14.552,1.788,22.807,10.996,2.423,22.234,10.695,1.844,22.887,10.963,2.479,22.313,10.663,9.516,40.587,0.95,9.469,40.606,0.977,9.417,40.593,0.956,9.412,40.56,0.909,9.459,40.542,0.883,9.482,38.278,2.532,9.435,38.297,2.558,9.383,38.284,2.537,9.379,38.252,2.491,9.426,38.233,2.464,6.664,55.876,13.828,6.716,56.241,13.751,6.487,56.416,13.508,6.207,56.226,13.343,6.155,55.861,13.421,4.98,56.564,15.876,5.029,56.907,15.802,4.814,57.072,15.574,4.55,56.893,15.419,4.501,56.55,15.492,0.388,53.151,26.6,0.74,53.616,26.163,0.577,54.327,26.18,0.062,54.572,26.634,-0.291,54.106,27.071,0.682,53.888,27.221,1.338,54.011,27.915,1.354,54.467,28.827,1.732,54.966,28.359,2.284,54.704,27.873,2.458,53.942,27.854,2.081,53.444,28.322,9.506,17.794,13.813,9.224,18.281,13.289,7.355,21.861,11.931,6.276,17.235,18.691,8.768,19.138,17.458,8.256,18.648,17.612,9.225,18.093,17.328,9.404,17.737,16.948,8.804,19.997,18.01,12.653,19.892,16.796,11.511,23.18,13.435,11.734,22.873,14.052,12.148,23.342,13.739,6.24,23.867,13.07,6.053,22.996,12.454,6.528,23.197,12.963,7.097,23.595,13.169,7.103,22.84,12.671,7.69,23.293,12.774,4.64,23.953,12.402,2.794,25.115,12.183,2.792,24.327,12.409,3.379,24.781,12.512,3.08,23.656,12.302,3.649,24.055,12.508,3.655,23.299,12.01,2.272,22.275,11.858,2.593,21.635,11.742,2.491,22.706,12.786,3.348,21.685,14.375,3.166,19.957,14.292,2.483,22.713,14.777,3.008,22.064,15.127,2.369,21.207,17.07,3.29,19.823,18.092,3.852,19.463,17.778,2.62,20.143,17.257,3.405,19.394,19.264,10.311,24.018,18.665,10.254,22.45,18.781,13.197,23.3,14.09,9.185,27.564,10.828,9.315,27.924,10.184,9.523,26.826,11.005,7.286,25.407,12.706,6.329,26.289,12.368,1.922,26.834,10.572,3.456,26.861,9.923,-2.505,23.324,14.485,-1.497,22.739,13.819,0.135,22.019,18.048,1.547,21.599,17.405,3.156,21.831,20.698,1.807,20.817,20.899,3.535,23.258,21.521,4.476,23.867,21.73,10.696,27.415,20.63,10.382,26.34,20.494,12.765,24.144,20.601,14.315,24.3,21.021,13.815,28.76,13.524,12.29,29.834,11.277,12.81,29.346,11.861,13.386,28.413,12.097,13.756,29.045,12.34,10.546,29.107,9.034,10.654,28.937,9.704,10.832,27.453,9.837,10.375,27.773,9.137,8.9,28.342,10.721,9.03,28.701,10.076,6.738,28.612,11.542,7.326,29.066,11.644,7.596,28.34,11.64,6.547,27.291,11.289,6.005,30.261,10.238,5.599,29.823,9.827,5.707,29.653,10.498,6.229,29.953,10.855,6.643,30.423,10.543,5.348,28.267,9.801,-7.112,25.432,15.574,-7.116,25.699,16.572,-6.883,25.62,17.279,-6.573,25.311,16.288,-5.432,23.742,18.138,-5.394,24.031,17.474,-4.192,22.639,15.743,-4.014,22.156,17.87,-2.56,22.361,20.511,-3.022,21.868,19.399,1.755,24.426,22.651,2.326,23.965,22.634,0.17,26.881,22.023,0.745,26.524,21.731,0.176,26.125,21.525,1.033,25.854,21.624,1.502,26.903,22.622,2.291,26.429,23.275,7.444,29.739,22.54,9.117,29.798,22.135,9.736,29.766,21.76,9.229,29.534,21.259,8.642,29.08,21.157,9.805,29.177,20.967,10.454,29.507,22.804,11.016,29.147,22.491,11.771,26.466,23.519,17.395,25.327,24.419,14.207,26.102,19.102,15.037,27.213,17.194,14.98,26.944,16.461,15.216,29.151,13.97,16.056,31.745,13.71,15.558,32.11,12.022,16.002,32.613,11.687,13.911,32.608,10.721,13.505,32.171,10.31,13.613,32.001,10.98,13.031,31.408,10.629,13.039,31.441,9.905,5.317,31.701,4.548,5.541,31.393,5.165,5.955,31.863,4.852,6.126,31.059,5.493,6.57,31.562,5.158,5.783,28.648,6.478,6.043,28.349,7.0,3.196,30.035,5.65,2.055,29.772,5.564,2.289,30.195,4.89,-1.005,29.001,8.558,-3.972,25.25,11.082,-4.459,28.251,12.561,-4.142,28.7,12.089,-3.933,27.962,11.984,-8.68,26.878,15.312,-8.55,27.238,14.668,-7.987,26.878,14.354,-7.556,26.991,12.888,-8.165,27.418,12.818,-7.855,26.66,13.291,-8.443,27.11,13.194,-10.156,27.598,14.834,-3.196,23.047,21.472,-3.703,22.815,20.972,-2.653,22.659,21.189,-2.401,22.608,21.866,-5.075,22.514,21.141,-2.171,24.025,22.201,-3.169,26.369,21.001,-1.238,26.852,21.447,-1.745,26.62,20.946,-0.905,25.943,21.893,-0.755,26.723,22.161,-2.657,27.697,21.365,0.589,27.711,24.904,7.115,30.145,23.987,13.545,26.381,25.109,15.165,25.414,26.351,15.094,24.181,26.156,15.431,23.857,25.842,13.973,31.872,18.393,13.529,31.369,18.728,16.822,32.531,16.661,15.995,31.52,18.0,16.557,31.651,17.54,16.941,33.327,15.617,17.471,33.659,15.25,16.535,32.89,15.206,16.642,32.72,15.876,17.578,33.489,15.921,15.15,33.636,9.748,14.628,33.336,9.39,15.769,33.604,9.373,15.262,33.372,8.872,14.674,32.918,8.769,16.002,33.525,10.08,16.564,33.165,9.767,12.453,33.646,4.491,13.198,33.705,4.153,11.503,33.998,3.851,4.97,33.528,2.797,0.576,33.284,6.755,0.706,33.644,6.111,1.23,32.995,6.461,1.268,33.284,5.797,1.439,32.257,6.357,1.569,32.616,5.712,-0.775,33.319,7.198,-0.161,33.018,7.505,0.177,32.279,7.682,-1.15,31.349,8.32,-3.661,28.18,5.827,-5.984,31.399,10.79,-5.675,31.09,9.799,-5.422,31.039,10.476,-9.686,30.933,11.985,-9.688,30.145,12.211,-9.1,30.599,12.314,-10.592,28.306,11.914,-11.589,28.347,18.722,-11.852,27.348,17.129,-11.061,26.056,19.401,-9.408,25.04,18.73,-7.911,28.046,22.395,-8.386,27.846,21.886,-7.591,27.407,22.28,-5.707,28.408,25.143,-5.088,28.376,24.767,-5.595,28.144,24.267,0.923,30.424,27.107,0.448,30.224,26.597,1.243,29.785,26.991,1.476,29.706,27.699,5.574,28.832,29.092,5.228,29.66,27.395,6.483,31.099,28.12,7.013,31.431,27.753,6.491,31.131,27.395,7.12,31.261,28.424,8.152,31.273,26.892,7.645,31.042,26.391,9.459,30.577,27.387,10.111,30.642,27.533,11.54,29.876,26.43,11.195,31.93,27.858,12.828,32.567,27.362,13.878,32.41,27.579,13.403,32.209,27.069,12.834,31.811,26.864,14.308,30.578,27.183,17.269,29.391,27.57,17.696,29.305,27.181,17.819,29.215,26.617,14.525,32.774,22.535,15.054,33.106,22.168,14.128,32.675,21.935,14.477,32.993,19.874,13.956,32.694,19.517,13.541,32.224,19.83,15.097,32.961,19.499,18.264,33.556,17.938,19.304,33.622,18.267,21.398,35.982,18.537,21.406,36.014,17.813,20.992,35.544,18.126,20.96,35.611,12.706,20.406,36.084,12.666,16.56,35.931,11.291,16.403,35.772,7.617,4.344,36.974,3.093,4.665,36.335,2.978,2.068,36.376,1.47,2.575,36.608,1.97,3.996,36.558,2.196,3.822,37.266,2.18,4.463,33.509,1.652,1.727,34.154,0.192,1.238,33.832,-0.024,-0.231,31.605,2.264,-2.92,31.736,1.895,-2.776,30.197,3.321,-1.964,30.963,2.324,-0.173,33.454,4.695,0.403,33.097,4.403,-2.816,32.085,6.148,-5.378,27.246,5.925,-6.919,29.921,3.72,-9.239,33.515,10.275,-8.677,33.156,9.961,-7.949,31.722,10.02,-9.959,32.557,11.449,-12.319,33.281,11.337,-11.876,33.784,11.002,-12.049,32.556,11.333,-13.382,32.672,11.374,-14.755,31.377,11.244,-16.429,30.378,15.206,-16.21,31.899,16.174,-13.334,29.826,19.228,-13.468,32.378,19.853,-13.179,31.708,19.746,-12.684,32.555,21.191,-12.383,31.887,21.105,-8.837,29.442,25.227,-8.923,31.386,26.369,-5.176,28.356,26.095,-4.601,29.262,27.459,-2.654,31.545,27.041,0.555,33.798,30.536,1.097,33.41,30.252,0.623,33.21,29.743,1.35,33.36,30.93,1.418,32.771,30.137,1.634,29.583,30.829,6.426,32.295,30.845,5.839,31.841,30.742,7.802,32.18,30.536,7.295,31.949,30.035,6.708,31.495,29.933,6.951,30.676,29.273,7.715,30.94,29.166,8.887,31.806,30.747,9.496,31.942,30.808,11.081,35.014,31.502,11.128,34.596,30.881,12.347,34.785,27.011,12.658,33.721,26.9,12.621,33.432,27.564,13.313,33.432,26.606,13.183,33.072,27.25,13.928,33.131,26.912,13.085,33.095,28.551,13.942,32.841,28.273,14.833,33.974,26.336,16.001,33.995,27.381,14.844,34.875,26.081,15.663,35.438,26.732,17.817,35.346,27.002,18.329,35.213,26.638,20.763,35.766,22.967,20.256,35.534,22.466,22.432,36.15,21.031,23.069,36.312,21.335,21.568,35.094,22.173,22.011,35.201,21.752,22.858,36.735,19.429,24.542,37.279,18.785,22.928,37.173,15.164,21.584,38.012,13.581,18.31,38.542,14.341,18.011,37.417,14.132,18.58,37.816,14.337,16.749,37.508,13.908,13.579,37.798,13.52,14.121,37.41,13.237,13.124,36.308,4.866,9.344,37.31,6.37,8.9,36.807,6.705,9.426,36.518,6.128,9.109,36.069,6.6,9.606,38.352,5.16,9.521,38.826,5.864,7.603,38.699,5.842,5.807,37.064,3.793,2.474,41.419,4.31,2.707,41.34,5.018,2.775,40.751,4.225,3.027,40.7,4.903,3.097,42.802,3.655,3.144,42.384,3.034,2.7,41.882,3.369,1.349,38.795,0.537,-3.396,27.957,0.958,-2.804,27.951,1.262,-6.247,28.636,2.478,-8.286,33.193,5.198,-8.642,31.589,5.01,-8.406,30.95,4.881,-8.878,34.811,8.057,-8.841,35.099,7.393,-9.821,34.589,9.274,-9.166,34.3,8.979,-12.545,34.571,10.07,-16.224,35.061,10.462,-15.647,33.554,10.203,-15.625,33.94,9.579,-16.156,33.906,10.402,-16.133,34.292,9.778,-16.624,35.136,11.942,-15.672,34.994,16.589,-16.329,34.915,17.815,-16.905,33.227,18.394,-17.452,33.772,18.595,-15.696,33.819,20.135,-14.876,32.783,20.202,-15.791,34.319,21.301,-15.527,34.756,21.73,-13.095,34.517,23.588,-11.888,33.12,23.246,-12.06,31.81,23.942,-12.148,32.314,24.538,-10.928,33.776,28.438,-10.385,33.388,28.154,-6.217,34.063,28.732,-3.649,34.68,28.892,-5.063,33.846,29.057,-2.4,34.017,28.145,-3.596,35.91,31.115,-2.054,36.439,34.261,2.573,34.691,33.053,2.579,33.935,32.555,2.01,32.996,32.476,1.51,33.572,32.746,10.541,34.079,34.002,11.296,34.672,32.86,16.85,37.2,28.005,17.817,36.99,28.714,19.555,36.248,25.843,24.287,36.263,21.785,27.139,40.055,18.342,25.464,40.127,17.052,25.567,38.614,17.114,25.291,38.095,17.27,22.336,40.64,12.483,15.132,40.445,14.117,15.877,40.504,13.78,16.778,41.147,12.46,16.329,40.626,12.74,15.333,39.569,14.82,15.603,38.843,14.817,16.114,39.333,14.663,14.043,40.642,9.402,14.101,39.698,11.32,14.269,39.9,10.724,12.949,39.966,7.713,13.835,39.453,8.555,14.247,39.886,7.959,10.491,35.324,8.826,11.061,35.722,9.032,10.56,34.735,8.033,11.067,34.967,8.534,11.654,35.42,8.636,11.179,34.703,7.658,11.701,35.002,8.016,9.226,37.615,8.155,8.928,37.007,8.415,9.449,37.307,8.772,8.707,36.367,7.79,8.94,36.288,8.498,9.447,36.519,8.998,10.035,36.973,9.101,9.009,35.699,7.705,9.261,35.648,8.382,9.735,35.849,8.892,8.548,41.52,5.88,6.544,40.846,6.067,3.28,42.891,4.972,3.503,42.583,5.589,3.917,43.053,5.276,3.501,41.795,5.815,4.088,42.249,5.918,4.532,42.752,5.583,4.358,41.524,5.914,4.87,42.013,5.76,4.733,43.17,4.783,5.719,43.662,3.152,5.827,43.492,3.822,6.338,43.63,2.777,6.441,43.192,4.129,6.571,43.551,3.485,6.881,43.242,2.493,7.133,43.191,3.171,5.31,44.437,1.275,5.957,44.31,0.939,3.82,42.599,2.454,3.568,41.743,2.267,-0.404,38.832,-0.018,-1.544,37.939,3.402,-1.13,38.409,3.089,-3.73,37.976,4.215,-3.155,37.619,3.922,-5.039,36.16,2.379,-4.446,35.859,1.983,-4.098,36.938,2.127,-4.805,37.1,2.501,-3.986,35.312,0.627,-3.522,34.816,0.378,-6.967,34.892,2.2,-6.961,34.137,1.702,-9.517,36.186,5.254,-10.08,36.609,5.549,-10.135,36.173,6.89,-16.637,36.28,10.025,-15.852,38.057,13.361,-16.573,38.139,11.614,-16.296,39.3,14.019,-16.036,40.874,17.102,-16.063,39.423,21.94,-16.65,38.969,21.838,-15.013,39.266,22.158,-15.488,39.066,21.648,-16.057,38.667,21.443,-14.693,38.627,22.042,-15.2,38.395,21.541,-15.787,37.941,21.439,-14.091,37.72,22.415,-14.598,37.489,21.914,-12.561,38.398,25.585,-12.548,37.679,25.668,-12.444,37.943,27.077,-13.361,36.441,27.837,-12.189,33.768,28.822,-12.856,33.356,29.787,-13.344,33.513,30.193,-13.674,33.982,30.507,-13.746,34.619,30.633,-5.422,36.259,31.305,-4.898,35.912,31.267,-5.886,38.578,30.703,-6.393,38.346,30.202,-7.176,38.944,33.339,-6.733,39.447,33.004,-6.603,39.806,32.359,-6.395,38.708,33.181,-6.078,39.158,32.709,-6.041,39.447,32.046,-6.227,37.786,34.017,-6.336,37.572,33.109,-7.227,37.649,33.407,-0.816,35.726,35.033,-0.149,34.61,34.753,0.551,34.391,34.722,3.871,35.043,33.807,5.714,34.843,33.598,5.207,34.612,33.097,6.257,34.456,33.314,14.688,37.851,34.607,15.542,37.954,32.277,15.046,37.474,33.449,18.892,39.74,32.406,19.0,39.57,33.076,23.193,41.362,23.599,23.21,40.911,23.0,23.08,40.551,23.645,23.736,40.622,22.424,23.419,40.172,22.896,23.382,39.884,23.559,24.074,39.883,22.601,23.944,39.524,23.246,25.226,39.192,22.974,24.4,42.03,21.666,28.022,43.864,17.31,27.579,43.362,17.644,27.299,43.566,18.612,27.597,44.254,18.178,27.129,42.358,17.055,26.003,43.078,14.695,27.17,42.367,15.415,23.849,41.785,13.332,22.536,44.11,10.686,22.015,43.753,10.485,21.429,43.474,10.621,17.302,43.07,13.368,17.89,43.523,13.47,18.159,42.798,13.467,18.671,43.288,13.313,17.029,44.49,12.871,18.058,44.659,12.865,16.464,44.99,11.583,14.95,44.182,9.846,14.651,43.575,10.105,14.801,41.617,9.614,15.001,41.557,8.791,11.876,42.157,4.857,9.63,41.919,2.242,10.674,42.293,3.451,10.829,42.182,2.623,3.825,48.694,2.412,2.957,46.181,1.375,-0.14,45.232,0.889,-0.646,41.061,2.914,-1.314,39.386,4.817,-0.87,39.889,4.482,-3.216,41.552,6.72,-3.218,40.764,6.946,-2.63,41.218,7.048,-2.187,41.721,6.713,-2.93,40.094,6.839,-2.361,40.492,7.045,-1.849,40.982,6.891,-1.532,41.432,6.419,-2.355,39.737,6.547,-1.767,40.191,6.649,-1.324,40.693,6.314,-1.194,41.053,5.67,-1.72,39.773,6.029,-1.306,40.242,5.716,-4.2,40.432,6.037,-3.88,39.792,5.921,-3.673,39.182,4.747,-7.465,38.889,3.408,-12.133,38.45,5.725,-12.979,36.297,5.6,-11.841,37.056,5.195,-12.398,36.82,4.732,-12.542,38.862,6.258,-13.461,37.642,5.615,-12.939,37.942,5.972,-14.011,39.212,8.676,-14.408,38.291,8.39,-14.924,39.575,9.828,-14.842,38.784,9.587,-15.563,40.723,9.706,-15.776,41.24,10.016,-14.95,42.379,14.518,-15.91,42.301,17.186,-17.189,40.49,18.45,-17.99,39.217,19.778,-19.633,38.658,20.756,-19.737,39.463,20.904,-19.323,38.111,22.097,-18.768,37.869,22.344,-13.318,39.855,26.436,-13.083,39.598,27.153,-12.786,36.881,29.457,-12.31,38.763,32.231,-11.158,36.75,34.457,-10.506,39.602,35.541,-10.9,40.25,35.678,-7.504,38.255,35.705,-7.265,37.785,35.237,-6.324,39.725,36.708,-3.115,40.149,36.464,-1.869,40.398,38.421,-1.801,39.809,37.628,-1.568,39.73,38.335,3.834,37.603,39.968,3.933,36.999,39.62,3.838,36.513,37.067,14.731,39.558,35.829,14.414,39.109,36.301,15.25,38.298,36.196,15.844,38.74,35.708,14.267,40.66,36.404,15.304,40.861,35.674,16.272,41.378,35.708,19.494,38.622,34.098,18.159,39.311,36.035,17.906,38.665,35.823,17.967,38.199,35.27,18.313,38.132,34.635,21.59,38.63,32.896,20.967,38.755,32.733,23.85,40.637,30.55,23.013,41.648,26.649,23.121,41.478,27.32,22.901,40.837,26.695,23.412,39.909,27.5,23.579,40.453,28.025,21.49,43.502,22.422,22.974,42.638,22.52,23.086,42.374,21.644,21.958,43.699,20.36,22.739,43.463,20.202,29.429,48.265,16.982,29.951,48.565,17.34,29.591,47.328,17.601,30.147,47.998,17.919,25.707,45.668,14.454,25.645,44.312,13.616,26.284,44.585,13.847,18.086,45.513,10.768,18.319,45.434,11.475,18.629,45.125,10.484,18.881,45.074,11.162,17.128,43.619,4.341,17.527,44.241,4.123,8.631,47.461,-1.099,6.686,47.186,0.827,3.573,52.551,3.82,2.121,49.083,4.238,1.592,47.375,4.888,-0.47,47.341,5.606,0.099,47.74,5.811,0.105,46.984,5.313,-1.805,45.758,4.561,-1.693,45.494,3.686,-3.366,45.985,4.33,-2.892,46.185,4.84,-3.883,46.136,2.775,-3.075,42.506,5.699,-2.33,42.565,5.362,-4.128,42.321,5.134,-8.919,42.124,5.642,-8.476,42.626,5.307,-8.346,42.986,4.662,-8.458,42.175,4.708,-9.555,43.556,6.313,-15.165,44.044,13.89,-17.511,43.626,18.926,-16.999,44.116,18.772,-16.683,44.566,18.3,-16.474,43.827,18.196,-16.344,44.187,17.551,-16.264,42.53,24.553,-12.016,42.993,26.335,-11.034,41.876,31.042,-11.84,41.932,31.601,-11.333,42.163,32.101,-12.83,42.132,31.576,-12.798,42.578,32.228,-13.155,41.767,31.852,-13.109,42.228,32.492,-12.075,41.058,33.339,-12.007,40.469,32.546,-11.774,40.39,33.254,-6.474,41.587,38.895,-6.332,41.028,38.83,-5.926,40.657,38.644,-5.399,40.605,38.404,-4.119,41.457,37.74,-4.011,41.287,38.41,-3.5,41.425,37.365,-4.007,41.193,36.864,-2.352,40.696,40.514,0.067,40.865,40.662,4.484,43.197,38.256,6.896,40.752,38.346,7.551,40.463,38.052,8.254,37.7,38.847,9.111,37.428,38.946,7.859,38.588,39.301,8.697,38.704,39.289,10.011,37.055,39.585,10.596,36.877,39.557,14.172,43.759,36.216,15.158,44.68,35.597,15.683,44.391,35.02,16.868,42.703,34.831,19.994,43.268,34.203,20.282,42.597,34.096,19.695,42.144,33.993,21.226,42.664,34.68,20.926,43.405,34.612,22.409,44.026,33.834,23.266,43.754,33.933,22.679,43.3,33.83,23.553,42.342,34.348,24.027,43.055,34.253,23.736,46.702,29.281,24.816,42.806,29.458,24.71,42.57,30.132,22.524,45.748,20.201,24.299,47.65,20.36,24.669,47.937,20.943,24.731,45.852,18.608,24.705,47.389,18.91,25.375,47.347,18.551,32.151,48.225,19.693,32.208,47.954,19.224,32.483,48.018,18.758,29.927,49.415,16.361,27.915,46.808,13.818,27.881,47.53,13.49,25.333,47.959,13.562,24.966,48.383,13.903,26.652,50.572,18.019,27.896,50.382,20.081,28.645,50.563,20.395,31.272,51.542,15.699,31.388,50.795,15.674,28.178,51.349,14.437,29.037,51.171,14.31,28.705,51.122,13.625,24.015,47.735,11.169,24.058,48.01,12.34,23.488,47.57,12.225,23.673,48.484,12.568,23.075,48.077,12.469,26.451,49.37,9.897,24.68,49.256,7.75,15.721,45.347,4.485,14.927,47.638,3.397,6.081,50.989,-0.793,4.642,54.678,6.146,-0.019,50.621,6.956,-0.146,50.668,5.999,-0.136,50.341,5.551,-0.05,49.823,5.372,-6.14,43.186,1.993,-7.097,45.943,8.516,-6.787,45.634,7.525,-6.554,45.555,8.233,-5.935,45.522,7.858,-5.413,45.822,8.215,-7.852,46.464,7.006,-8.105,46.701,7.65,-9.381,45.565,6.199,-9.545,44.825,5.943,-9.693,44.534,12.849,-11.06,42.807,10.083,-12.104,41.808,10.338,-12.234,41.449,10.982,-11.49,41.507,10.644,-11.382,41.337,11.315,-10.852,41.669,10.948,-11.7,41.563,13.064,-11.193,41.794,13.565,-11.081,41.531,12.689,-10.559,41.83,13.047,-12.302,43.234,14.554,-12.488,42.363,13.937,-12.014,42.564,14.447,-11.445,42.962,14.653,-11.439,42.207,14.155,-10.851,42.661,14.257,-13.105,46.617,15.841,-12.631,46.818,16.35,-12.562,46.229,15.557,-12.055,46.461,16.058,-11.421,46.497,15.54,-15.306,45.956,19.195,-14.365,46.631,17.693,-14.887,46.332,17.336,-15.194,45.692,18.319,-14.672,45.992,18.677,-14.257,46.461,18.364,-14.664,46.024,17.953,-14.087,48.061,16.671,-14.489,47.846,17.137,-16.838,46.011,19.31,-16.15,45.39,18.142,-17.782,46.462,23.257,-17.151,47.731,24.005,-14.104,45.789,26.435,-13.342,46.749,25.214,-13.013,46.219,23.256,-11.24,46.641,22.527,-11.655,46.172,22.84,-10.93,45.547,23.365,-10.494,43.501,25.552,-10.954,44.048,26.36,-10.524,43.482,26.625,-11.46,43.819,26.668,-11.047,43.246,26.944,-8.946,43.237,27.904,-8.516,43.778,28.431,-9.844,42.594,28.853,-9.753,42.523,31.055,-8.429,44.449,32.734,-7.813,44.397,34.949,-7.003,44.435,35.989,-8.097,43.749,35.386,-6.99,43.715,36.073,-6.008,44.306,39.808,-4.679,45.041,40.703,2.301,43.407,37.302,7.199,45.244,34.093,9.184,45.286,36.375,8.867,44.837,36.847,9.522,44.548,36.552,7.635,46.244,36.845,8.268,46.001,37.068,9.563,42.012,37.542,9.999,45.864,36.109,10.856,45.592,36.208,10.269,45.138,36.106,15.312,46.096,34.927,15.874,45.736,34.613,15.681,46.975,33.592,16.463,46.739,33.434,16.019,46.236,33.769,23.2,45.303,34.6,22.79,47.246,31.593,23.434,47.125,32.949,22.167,48.483,31.447,22.664,47.654,26.248,22.627,47.365,26.912,22.879,47.314,27.589,23.319,47.365,25.954,23.189,47.005,26.598,23.502,47.32,28.335,24.065,46.769,26.361,24.111,47.292,25.663,24.374,49.884,25.178,26.551,51.164,23.437,26.614,49.762,21.728,27.031,50.281,21.43,22.127,49.41,20.11,22.602,49.611,20.62,24.098,47.042,15.966,23.766,48.222,16.826,24.459,48.295,16.447,21.307,46.399,14.637,21.559,46.348,15.315,21.365,46.818,13.698,22.683,46.428,13.056,21.216,47.923,13.411,17.215,48.266,4.623,15.2,49.574,7.802,15.538,49.196,7.054,15.501,48.907,7.717,15.098,50.309,6.766,14.305,50.766,3.493,15.715,50.295,3.912,15.749,50.852,3.261,14.067,50.367,-0.258,11.347,50.159,-0.503,11.935,50.613,-0.4,12.205,49.887,-0.404,13.328,49.791,-0.928,13.253,50.555,-0.748,11.153,51.635,-0.903,8.591,51.843,0.883,9.098,52.075,1.384,9.211,51.811,0.508,8.467,53.883,2.608,8.755,53.213,2.501,9.33,52.856,2.209,8.467,55.367,4.283,6.029,55.891,6.109,5.428,55.719,6.156,6.609,55.22,8.992,3.457,51.623,8.971,-1.287,48.732,9.86,-3.512,47.931,10.138,-3.559,48.731,10.203,-3.704,48.559,11.032,-3.61,46.066,11.279,-3.48,46.426,10.635,-3.593,45.615,10.68,-5.408,45.137,8.722,-8.594,47.075,12.195,-7.555,46.975,11.168,-7.279,46.991,11.857,-7.991,47.324,11.35,-7.688,47.318,12.028,-9.67,46.867,11.746,-9.709,46.849,12.567,-8.766,47.944,16.307,-9.836,48.156,15.88,-10.516,47.874,15.747,-11.609,47.668,21.884,-10.64,48.545,20.545,-8.695,48.222,19.353,-7.984,47.786,20.078,-10.211,45.217,23.05,-9.536,43.335,24.318,-7.323,42.174,24.603,-5.915,41.616,25.424,-6.429,41.453,26.6,-5.922,41.685,27.1,-9.412,45.504,29.993,-6.46,45.913,32.961,-6.759,45.306,33.221,-6.11,48.627,34.878,-5.877,48.548,35.586,-5.989,47.737,35.631,-4.89,54.015,37.667,-5.285,48.638,36.513,-4.947,47.899,36.69,-4.319,48.291,35.791,-1.231,45.417,35.8,1.654,43.61,35.852,2.197,43.222,35.569,3.879,41.998,33.693,3.029,43.053,34.601,6.905,42.454,33.847,7.319,42.924,33.535,6.99,43.954,32.034,7.003,43.235,32.117,4.532,47.646,31.459,5.327,47.207,31.853,4.82,46.975,31.352,4.844,49.068,33.783,7.832,50.237,35.658,7.262,49.838,35.452,8.12,49.567,35.551,7.532,49.113,35.448,8.118,48.779,35.777,10.34,49.184,35.843,10.422,48.393,35.602,11.204,48.157,35.445,10.76,47.654,35.779,9.085,49.159,36.566,9.579,49.031,36.566,10.746,46.867,36.45,13.376,49.54,34.456,19.02,49.328,30.879,18.281,50.442,28.97,19.026,50.501,28.632,21.188,49.681,24.765,22.869,50.508,24.472,21.933,49.739,24.427,21.224,50.181,23.914,22.252,50.35,23.908,26.222,52.752,23.934,26.55,52.099,24.035,34.265,51.105,22.31,35.673,49.619,18.163,35.568,50.205,17.681,35.387,52.944,19.491,34.969,53.336,19.661,34.383,53.451,19.679,19.099,50.051,18.227,19.668,50.449,18.432,21.23,50.425,18.591,20.697,50.46,18.236,19.224,48.811,16.493,20.425,48.773,16.075,17.879,49.539,15.37,18.516,49.642,10.059,14.854,51.434,10.913,14.633,50.793,10.288,14.866,50.714,10.996,15.373,50.945,11.497,14.935,50.125,10.203,15.187,50.074,10.88,15.662,50.275,11.39,15.73,49.686,10.597,16.237,49.918,11.098,12.995,52.0,10.004,13.248,51.949,10.681,13.722,52.15,11.191,13.557,51.64,9.69,13.79,51.561,10.398,14.297,51.793,10.899,13.324,52.361,8.32,9.938,53.152,6.054,10.276,52.773,5.305,10.239,52.484,5.969,10.492,52.433,6.646,10.078,53.778,4.737,9.909,53.707,8.212,6.056,52.626,11.856,6.163,52.456,12.527,2.727,50.179,13.197,3.27,49.791,12.914,3.777,50.023,13.415,3.889,49.759,12.539,4.411,50.059,12.896,4.419,50.091,12.172,3.325,50.057,10.597,2.911,49.587,10.91,3.018,49.417,11.58,3.548,49.749,11.214,1.81,49.863,12.247,1.122,50.084,11.324,1.109,50.355,12.162,-0.175,48.601,11.805,0.355,48.933,11.439,-4.658,45.824,12.809,-4.133,45.535,12.232,-5.704,47.291,12.434,-6.068,45.539,12.864,-5.779,44.869,12.757,-5.711,44.28,11.964,-5.204,44.512,12.465,-4.57,44.548,11.947,-5.998,44.113,9.844,-5.254,44.172,9.506,-7.179,45.419,11.927,-7.111,44.83,11.134,-6.858,44.779,11.811,-6.146,48.29,15.006,-6.179,48.352,13.613,-5.414,49.349,15.54,-3.65,48.636,18.323,-3.176,48.837,18.833,-2.606,49.236,19.038,-3.34,48.328,17.332,-3.107,48.249,18.04,-2.6,48.48,18.541,-2.013,48.934,18.643,-2.596,48.386,16.994,-2.488,48.216,17.665,-1.966,48.516,18.022,-1.958,48.548,17.298,-3.995,49.339,16.513,-4.082,48.945,18.988,-8.596,49.033,17.903,-8.659,49.002,18.465,-3.726,45.719,20.723,-4.169,45.216,21.058,-4.215,44.444,22.519,-5.389,42.93,24.018,-4.864,44.574,23.344,-4.325,44.447,23.815,-5.232,44.253,23.682,-4.687,44.131,24.149,-4.765,43.742,29.2,-5.225,43.956,28.711,-4.558,47.996,31.013,-3.461,47.118,30.1,-8.151,51.199,31.842,-7.844,51.916,32.221,-7.862,48.902,33.035,-6.976,49.693,34.602,-5.077,56.199,37.741,-4.89,55.657,38.122,-1.451,52.748,34.554,-2.88,52.368,35.201,-4.561,50.074,34.465,-4.674,49.264,34.511,2.876,43.538,30.976,2.559,43.088,31.448,2.522,42.8,32.112,3.214,42.799,31.154,4.533,44.315,30.377,5.39,44.043,30.475,4.803,43.589,30.373,1.922,43.055,31.004,2.365,43.558,30.669,2.704,42.819,30.847,1.475,45.211,31.726,1.026,45.467,31.392,0.69,45.414,30.878,0.592,45.073,30.375,0.768,44.569,30.069,1.152,44.088,30.072,3.336,42.947,28.611,3.57,42.868,29.319,2.274,44.054,27.974,1.265,45.108,28.462,2.13,47.247,31.356,2.124,47.885,31.794,2.577,47.097,31.605,2.537,47.746,32.025,4.65,54.437,36.356,8.119,51.37,37.15,8.398,52.063,37.295,9.53,53.491,36.388,16.572,51.824,28.664,20.033,52.095,24.131,16.684,52.577,24.121,17.218,54.612,21.899,18.889,54.994,23.021,18.799,55.595,22.538,18.176,51.816,18.445,17.105,51.436,16.502,15.962,53.961,15.174,15.692,54.777,14.06,15.135,54.926,13.562,11.183,54.021,13.334,7.4,54.1,14.092,6.706,53.968,13.77,9.944,50.905,14.596,10.559,50.604,14.903,11.196,50.766,15.207,8.973,51.051,15.389,8.936,50.762,16.053,9.498,50.403,15.739,9.731,50.324,16.447,10.35,50.291,16.072,7.076,52.004,16.451,7.038,51.715,17.114,7.601,51.356,16.801,7.833,51.277,17.508,6.798,52.981,16.019,6.273,53.186,15.577,5.703,52.888,15.264,2.621,50.827,14.793,2.873,50.776,15.47,3.347,50.977,15.98,3.917,51.376,16.185,3.416,50.388,15.187,3.923,50.62,15.687,4.51,51.074,15.79,4.035,50.356,14.812,4.557,50.656,15.169,3.215,51.76,16.904,-1.018,49.185,16.48,-0.497,49.484,16.838,0.625,52.231,19.435,-0.183,47.948,20.797,-0.691,47.716,20.296,-0.171,47.228,20.88,-0.693,46.928,20.522,-1.885,48.018,20.169,-2.675,48.791,20.659,-3.07,49.158,20.387,-1.555,40.024,27.3,-0.941,39.723,27.607,-4.224,39.973,28.33,-4.354,39.613,28.974,-4.121,39.534,29.682,-3.699,39.684,27.753,-4.015,39.235,28.225,-4.053,38.946,28.889,-3.8,38.895,29.566,-3.36,38.945,27.931,-3.49,38.586,28.575,-3.257,38.507,29.283,-2.746,38.644,28.237,-2.638,38.475,28.908,-2.9,39.453,30.649,-2.324,39.096,30.357,-3.428,41.259,31.08,-2.921,41.491,31.581,-2.334,41.945,31.683,-3.754,43.231,31.805,-3.167,43.685,31.908,-3.94,42.36,31.189,-3.466,42.561,31.698,-2.897,42.959,31.904,-2.385,43.449,31.75,-1.865,44.941,31.02,-1.529,45.409,31.398,-0.866,40.631,31.39,-0.86,39.875,30.892,1.006,41.427,31.487,0.707,40.303,31.277,1.276,40.701,31.483,1.787,41.191,31.329,1.282,39.946,30.985,1.869,40.399,31.088,1.6,39.573,29.582,2.122,39.873,29.94,3.153,41.281,28.218,3.26,41.111,28.888,0.228,44.408,26.725,-0.08,45.298,25.583,2.362,47.22,25.368,2.991,47.35,26.396,3.406,47.819,26.083,3.0,47.382,25.672,2.437,51.466,31.881,10.815,55.464,33.99,11.564,54.156,31.251,11.982,54.575,31.686,12.308,54.547,32.344,11.459,52.039,30.091,11.873,52.508,29.778,14.983,53.146,25.54,14.147,53.634,21.805,15.306,54.163,21.155,14.891,53.693,21.468,15.781,52.881,22.803,16.526,52.94,22.465,13.038,54.708,13.78,11.374,51.328,17.561,10.398,51.482,19.387,10.92,51.782,19.744,11.334,52.251,19.431,6.549,52.103,20.494,6.888,51.724,19.745,6.851,51.435,20.409,7.413,51.075,20.095,4.985,54.625,16.685,4.761,55.381,16.599,4.571,54.483,16.511,4.348,55.239,16.425,2.229,54.74,19.185,1.352,53.763,19.864,1.945,53.461,19.469,0.108,55.075,21.232,0.465,54.927,20.092,-1.839,54.255,21.466,-2.092,51.63,23.07,-2.452,51.994,22.504,6.11,51.248,25.679,6.218,51.078,26.349,5.812,50.641,25.938,5.341,50.699,27.769,5.388,50.281,27.148,4.295,49.637,27.847,4.312,49.186,27.248,4.555,52.381,28.622,2.686,52.559,30.877,3.251,52.508,28.604,2.699,52.379,28.978,2.421,52.403,29.597,0.022,54.191,31.664,0.552,54.523,31.298,0.245,53.884,32.281,0.659,54.353,31.968,1.171,54.491,30.923,1.274,54.052,32.275,1.404,54.412,31.63,1.929,53.763,31.98,1.966,54.052,31.317,-5.784,54.383,33.898,-4.427,55.03,35.005,-4.949,56.22,35.975,-0.717,56.357,35.083,0.945,56.543,35.28,1.716,57.064,36.137,0.819,57.214,37.239,1.507,57.461,37.234,0.886,57.027,37.807,1.576,57.271,37.811,1.052,56.543,38.124,1.744,56.78,38.131,2.244,54.822,37.785,2.714,55.376,37.858,6.219,58.406,35.674,6.454,58.04,36.266,6.77,57.453,32.314,6.359,58.42,33.545,7.45,54.379,30.672,7.463,53.66,30.755,7.97,53.891,31.256,7.531,53.071,29.962,9.809,51.752,28.865,10.553,51.81,28.528,9.757,52.569,21.92,9.839,51.777,21.679,10.365,54.488,21.216,10.011,53.861,21.128,8.814,52.03,22.144,7.802,51.502,21.827,6.978,54.494,21.166,3.571,52.773,23.662,6.044,54.796,29.659,6.332,54.126,29.553,4.882,54.35,29.064,1.966,56.63,32.591,5.723,57.453,31.193,4.459,57.93,31.387,0.802,57.121,31.274,0.458,56.848,30.647,0.296,56.186,30.298,8.105,54.355,25.831,11.098,53.58,26.559,7.32,56.572,23.887,8.771,56.562,21.894,9.481,56.396,21.843,2.768,50.797,21.988,3.563,50.358,22.382,3.056,50.127,21.881,3.576,49.639,22.465,11.44,53.701,20.022,11.847,54.253,20.218,12.462,54.501,20.479,-0.988,45.93,24.653,0.89,50.65,18.163,1.524,50.686,17.644,16.77,51.375,11.69,17.047,50.663,11.503,-10.66,44.359,14.593,26.907,52.132,16.26,26.521,51.837,16.529,21.547,42.901,21.583,15.016,43.798,8.451,-8.091,39.608,32.303,-7.561,39.94,31.936,-8.676,38.461,30.865,-7.545,39.542,30.566,-8.133,39.088,30.464,-7.539,38.786,30.069,-8.239,35.003,2.324,7.358,30.65,9.111,6.851,30.418,8.61,6.264,29.964,8.508,7.901,30.262,8.828,7.427,30.061,8.318,0.769,53.847,27.144,1.44,53.963,27.826,0.829,53.925,27.07,1.509,54.055,27.74,0.802,54.046,27.073,1.477,54.195,27.743,0.714,54.087,27.15,1.375,54.243,27.833,0.655,54.008,27.224,1.306,54.151,27.919,8.314,17.826,12.266,8.607,17.146,12.158,8.011,16.685,12.054,9.134,16.651,12.75,8.605,16.347,12.387,9.243,16.478,13.43,8.831,16.035,13.013,5.238,15.669,15.73,5.598,15.029,15.631,5.887,15.01,16.305,6.126,14.613,15.32,6.415,14.578,16.036,6.908,14.774,16.598,6.87,14.4,15.339,7.259,14.48,15.974,7.826,14.82,16.327,8.39,15.31,16.286,8.774,15.796,15.865,7.645,14.514,15.292,8.181,14.822,15.659,8.607,15.305,15.337,8.159,14.892,14.929,6.925,15.671,12.667,6.684,15.247,13.236,4.371,17.044,13.682,4.714,16.66,12.922,4.676,16.367,13.595,4.137,17.76,16.866,4.497,17.121,16.767,8.006,17.515,18.217,7.538,16.205,18.053,8.124,16.708,18.026,8.421,16.352,17.444,10.781,18.474,17.711,11.38,18.943,17.799,11.122,18.066,17.193,11.743,18.546,17.301,12.046,18.824,15.642,11.516,18.52,15.279,11.204,17.869,16.278,11.734,18.174,16.642,12.156,18.651,16.324,11.725,18.228,15.914,9.788,23.289,10.364,9.269,22.792,10.52,10.062,22.553,10.36,9.612,22.043,10.7,10.656,22.214,10.694,10.236,21.738,11.011,10.882,21.902,11.32,5.37,23.122,10.961,5.899,22.69,10.692,6.283,20.637,10.716,1.702,20.312,9.855,1.565,19.931,10.536,1.811,19.848,11.285,1.864,19.685,9.51,1.717,19.309,10.16,1.858,19.143,10.894,2.716,19.649,8.884,2.314,19.149,9.302,2.167,18.773,9.952,2.308,18.607,10.686,2.964,18.811,9.272,2.826,18.431,9.954,3.072,18.347,10.702,4.002,19.046,9.318,3.581,18.569,9.636,3.691,18.396,10.317,4.212,18.754,9.953,2.962,19.283,15.749,4.677,18.652,20.165,4.232,17.82,18.853,4.488,17.768,19.54,4.97,17.972,20.057,5.547,18.376,20.265,5.039,17.375,19.252,5.553,17.61,19.76,6.149,18.07,19.864,6.481,20.357,20.88,7.085,19.998,20.589,8.07,22.401,20.995,8.527,22.92,20.65,8.339,21.654,20.976,8.839,22.152,20.776,9.191,22.62,20.333,8.957,21.345,20.585,9.415,21.864,20.239,9.254,20.989,20.003,14.112,20.679,17.15,14.352,22.342,14.982,13.242,21.647,14.37,14.365,21.612,15.067,13.835,21.308,14.704,14.062,20.996,15.33,13.774,25.237,13.171,11.281,25.005,10.318,12.007,24.72,10.48,12.985,24.663,11.315,12.448,24.355,10.947,0.742,23.568,10.469,0.273,23.036,10.824,3.885,22.935,9.24,3.355,22.631,8.877,4.513,22.902,8.859,3.999,22.667,8.352,3.403,22.207,8.248,5.063,22.509,8.572,4.582,22.305,8.055,4.005,21.901,7.847,3.486,21.404,8.003,5.389,21.86,8.455,4.874,21.625,7.947,4.279,21.165,7.843,5.402,21.13,8.539,4.872,20.826,8.176,-0.987,21.741,14.959,-0.896,21.53,15.699,-0.182,21.772,14.909,-0.065,21.587,15.64,1.017,20.358,18.325,1.549,19.7,18.679,1.785,19.62,19.397,4.809,21.868,21.594,5.386,22.272,21.803,5.905,22.769,21.646,9.107,25.633,20.426,13.753,22.195,19.529,15.321,23.582,16.826,14.357,21.836,19.238,14.943,22.339,19.211,15.401,22.857,18.865,15.639,23.288,18.27,15.61,23.547,17.542,15.456,22.861,16.834,14.676,21.493,18.669,15.24,21.983,18.629,15.624,22.469,18.207,15.704,22.796,17.538,15.346,22.153,16.991,15.031,21.495,18.001,15.457,21.978,17.68,13.2,27.585,10.943,12.707,27.389,10.381,12.108,27.001,10.084,13.335,26.864,10.951,12.837,26.645,10.436,13.583,26.799,11.655,8.991,27.253,8.161,9.619,27.22,7.78,10.156,27.557,7.409,2.595,26.894,7.681,2.683,26.69,8.396,3.347,26.978,7.66,3.458,26.804,8.349,-2.003,23.1,11.255,-2.141,22.72,11.937,-6.792,23.334,14.484,-6.651,23.168,15.217,-6.254,23.25,15.866,-6.342,22.798,14.276,-6.201,22.632,15.009,-5.804,22.714,15.658,-5.683,22.455,14.277,-5.437,22.372,15.026,-4.819,22.421,14.641,-2.915,21.901,16.934,7.221,27.696,22.097,7.839,27.387,21.707,11.68,25.04,22.669,11.964,24.608,21.87,12.04,24.4,22.57,12.568,23.984,22.259,16.904,25.847,22.079,17.181,25.804,22.791,17.122,25.152,22.034,16.585,24.907,21.504,17.368,25.069,22.782,17.065,24.436,22.159,16.534,24.131,21.796,16.113,23.654,22.114,16.222,23.481,22.795,16.753,23.786,23.159,17.174,24.263,22.841,16.744,23.839,22.431,15.849,28.49,17.51,16.146,28.135,16.928,16.53,28.621,16.506,16.252,28.304,15.29,15.716,27.996,14.923,15.937,27.647,16.301,16.363,28.13,15.979,15.915,27.717,15.571,14.582,30.202,11.807,15.56,30.145,12.642,15.023,29.837,12.274,15.222,29.557,12.923,11.888,30.753,5.756,11.298,30.321,5.594,11.74,29.955,6.061,11.961,29.606,7.439,11.939,29.676,6.709,6.607,28.863,5.18,8.023,29.336,4.464,7.459,28.827,4.554,7.057,28.327,4.972,6.91,27.951,5.622,8.797,29.0,4.696,8.175,28.52,4.587,7.707,27.989,4.942,7.569,27.608,5.623,8.745,28.224,4.987,8.324,27.746,5.305,5.254,27.868,8.321,0.729,28.97,6.129,0.378,28.503,6.572,0.229,28.137,7.19,1.041,28.203,6.255,0.803,27.772,6.851,0.832,27.513,7.579,2.224,28.437,6.072,1.73,27.928,6.313,-3.626,26.59,9.766,-3.05,26.301,9.23,-3.402,25.834,9.673,-2.281,26.053,9.01,-2.739,25.534,9.356,-2.977,25.103,9.951,-2.05,25.259,9.414,-5.11,24.493,11.596,-4.767,23.743,11.775,-6.289,26.439,12.134,-6.789,25.941,12.334,-7.141,25.474,12.777,-7.29,25.108,13.396,-5.578,22.19,18.699,-5.616,21.897,19.372,-5.36,21.845,20.06,-5.046,21.532,19.054,-4.809,21.452,19.772,-4.295,21.687,20.28,-4.181,21.419,19.392,-1.859,20.745,22.353,-1.284,20.379,22.013,-1.255,20.121,22.741,-0.599,20.112,22.044,-0.511,19.908,22.76,0.264,20.022,22.712,1.678,22.345,25.679,1.81,22.71,25.025,2.021,21.596,25.859,2.343,22.052,25.38,2.38,22.345,24.707,1.508,20.333,25.51,2.104,20.793,25.614,2.554,21.303,25.275,2.686,21.668,24.621,1.622,20.065,24.622,2.151,20.369,24.985,2.572,20.846,24.667,2.16,20.402,24.25,12.962,24.125,25.111,13.476,24.36,25.619,13.031,23.528,24.307,13.287,23.477,24.994,13.768,23.68,25.511,13.601,23.164,23.989,13.838,23.083,24.707,14.466,23.051,24.326,15.634,24.569,28.071,16.17,24.814,28.6,15.681,23.864,27.68,16.078,23.946,28.329,16.64,24.257,28.744,17.238,24.727,28.831,16.131,23.329,27.472,16.528,23.411,28.121,17.09,23.722,28.536,17.689,24.191,28.623,16.648,23.152,26.739,16.895,23.069,27.488,17.431,23.314,28.018,18.052,23.793,28.126,17.404,23.29,26.422,17.513,23.117,27.103,18.043,23.422,27.467,18.034,23.476,26.739,18.625,26.186,28.401,18.976,26.653,27.958,19.126,27.019,27.34,19.12,26.622,25.825,18.627,26.426,25.263,19.201,25.897,27.865,19.438,26.328,27.269,19.41,26.587,26.541,19.255,25.901,25.834,18.757,25.682,25.318,19.423,25.509,27.206,19.504,25.836,26.537,19.146,25.193,25.99,18.609,24.885,25.623,19.256,25.018,26.679,17.33,28.122,24.79,15.432,27.63,20.854,16.71,30.495,17.175,16.765,30.499,15.144,16.933,30.107,16.517,17.013,30.434,15.848,18.519,32.953,8.611,17.406,31.568,9.769,18.672,32.137,8.734,18.203,31.606,9.088,18.065,31.225,9.77,18.312,31.142,10.519,18.821,31.363,9.452,14.016,31.142,6.865,14.234,30.798,8.226,14.654,31.274,7.908,14.242,30.83,7.491,-8.803,28.634,11.961,-9.399,28.174,11.857,-9.981,27.3,12.851,-11.746,27.567,13.764,-11.87,25.793,17.66,-11.517,25.398,16.879,-11.556,25.097,17.571,-11.292,25.044,18.277,-10.834,25.097,16.572,-10.97,24.722,17.244,-10.727,24.639,17.982,-10.193,24.783,16.891,-10.081,24.606,17.591,-7.488,25.572,22.798,-6.076,24.929,23.927,-6.734,23.793,23.288,-6.241,23.989,23.85,-5.642,24.377,24.148,-5.056,24.88,24.121,-6.664,23.188,22.473,-6.375,23.169,23.147,-5.917,23.342,23.693,-5.359,23.68,24.028,-4.786,24.133,24.101,-4.286,24.631,23.901,-3.935,25.098,23.458,-6.136,22.772,22.162,-5.846,22.737,22.878,-5.353,22.933,23.441,-5.003,22.639,22.816,-1.922,22.791,25.745,-1.4,23.15,25.38,-2.242,22.195,26.016,-1.712,22.5,26.38,-1.291,22.977,26.062,-2.546,21.562,25.393,-2.299,21.478,26.142,-1.763,21.723,26.671,-1.142,22.203,26.78,-0.673,22.735,26.426,-0.536,23.115,25.744,-2.394,20.939,25.017,-2.252,20.773,25.751,-1.855,20.855,26.4,-1.293,21.166,26.815,-0.695,21.635,26.902,-0.197,22.155,26.641,-1.802,20.238,25.543,-1.405,20.32,26.192,-0.843,20.631,26.607,-0.244,21.1,26.694,-1.038,19.977,25.559,-0.502,20.222,26.089,-0.411,28.197,26.049,-0.659,27.515,25.127,2.169,26.756,28.496,2.744,26.391,28.157,3.671,26.547,27.619,3.429,26.124,28.188,5.501,27.642,28.76,5.143,26.999,28.213,4.607,26.691,27.845,4.181,26.208,28.167,4.292,26.033,28.856,5.254,26.824,28.902,4.806,26.411,28.494,6.572,29.871,26.008,9.628,29.481,25.87,10.121,29.677,26.432,13.886,28.899,27.757,13.227,27.763,27.118,13.72,27.959,27.68,13.586,27.139,26.977,15.902,27.676,28.627,16.466,28.166,28.587,15.736,26.735,28.551,16.335,27.123,28.848,16.922,27.626,28.821,17.379,28.145,28.476,18.233,30.797,27.076,18.365,31.162,26.422,18.142,30.512,25.788,19.519,32.803,16.119,19.921,32.886,16.776,20.508,33.237,17.142,21.093,33.744,17.1,20.281,34.131,9.714,21.099,33.68,10.119,20.606,33.484,9.557,19.536,31.545,12.234,20.135,31.933,12.531,21.388,33.645,10.835,21.234,32.959,10.128,20.736,32.74,9.613,19.887,31.251,11.61,20.453,31.591,11.963,21.018,32.081,11.922,21.402,32.567,11.5,21.482,32.894,10.831,21.124,32.251,10.284,20.588,31.943,9.917,20.273,31.285,10.927,20.809,31.593,11.295,21.235,32.076,10.973,20.787,31.663,10.565,19.877,35.858,11.481,19.384,35.662,10.919,20.406,35.426,11.212,15.446,32.978,4.647,15.982,33.286,5.014,16.408,33.769,4.693,12.896,35.428,1.041,13.555,35.278,0.543,12.991,34.769,0.632,12.589,34.27,1.05,14.005,34.743,0.335,13.441,34.234,0.424,13.039,33.734,0.842,12.892,33.358,1.492,13.033,33.192,2.226,14.158,33.927,0.458,13.689,33.395,0.812,13.551,33.015,1.494,13.797,32.932,2.242,14.306,33.153,1.176,9.094,34.079,2.715,9.325,33.285,3.119,4.396,35.642,1.602,4.688,34.962,1.494,4.632,32.359,1.055,4.139,32.163,0.493,2.287,30.064,1.892,4.767,31.638,1.064,4.269,31.42,0.549,3.679,30.988,0.386,3.185,30.479,0.627,2.944,30.055,1.195,3.031,29.851,1.911,5.015,31.574,1.768,4.657,30.93,1.22,4.121,30.622,0.853,3.695,30.14,1.174,3.806,29.965,1.864,4.768,30.756,1.909,4.32,30.343,1.501,0.512,31.724,0.511,2.219,32.445,-0.178,1.632,31.942,-0.151,1.175,31.424,0.194,0.937,30.992,0.79,0.966,30.734,1.518,-2.706,29.015,4.449,-5.684,25.553,5.4,-5.191,25.749,5.962,-4.592,26.137,6.259,-4.309,25.44,6.14,-3.737,25.893,6.213,-3.237,26.391,6.013,-2.885,26.858,5.57,-2.661,26.102,5.476,-7.093,29.256,7.841,-6.634,29.429,8.387,-6.564,28.824,7.572,-6.071,29.02,8.134,-11.927,31.15,10.453,-11.033,30.867,10.556,-12.448,29.17,10.661,-11.723,28.886,10.824,-12.217,28.377,11.065,-12.459,27.953,11.633,-12.371,27.749,12.349,-14.217,30.116,10.8,-14.717,29.618,11.0,-15.069,29.151,11.443,-15.218,28.785,12.061,-15.142,28.577,12.761,-14.854,28.558,13.434,-13.948,29.369,10.781,-14.405,28.851,11.126,-14.643,28.42,11.722,-14.615,28.161,12.45,-14.325,28.126,13.166,-12.93,29.195,20.679,-12.571,28.555,20.58,-11.422,26.86,21.396,-11.353,26.263,20.592,-11.097,26.211,21.279,-10.615,26.415,21.796,-10.038,26.819,22.004,-10.546,25.818,20.992,-8.122,28.844,26.818,-7.925,28.304,25.888,-7.64,28.269,26.595,-7.172,27.975,25.889,-6.769,28.058,26.546,-3.274,28.65,27.467,-2.701,29.103,27.54,-3.761,27.707,26.317,-3.268,27.903,26.879,-2.669,28.291,27.176,-3.307,27.529,25.619,-2.918,27.609,26.254,-0.603,31.781,28.962,0.866,28.42,30.87,0.975,28.247,31.55,1.504,28.551,31.912,0.883,27.962,30.262,0.751,27.597,30.916,0.988,27.517,31.634,1.502,27.752,32.142,1.095,27.213,30.156,1.057,26.92,30.83,1.313,26.869,31.517,2.437,25.909,30.347,2.726,25.874,31.063,3.181,25.696,30.366,4.143,27.534,32.622,3.839,26.394,32.41,4.417,26.798,32.618,4.936,27.295,32.462,5.257,27.751,31.983,4.423,26.032,32.113,5.019,26.492,32.217,5.468,27.002,31.877,5.6,27.367,31.224,4.537,25.764,31.225,5.066,26.068,31.588,5.486,26.544,31.27,5.074,26.101,30.853,9.211,30.492,29.073,9.747,30.737,29.602,10.368,31.217,29.711,10.359,30.846,29.051,12.079,32.755,29.856,15.437,33.504,28.268,15.61,32.689,28.919,16.06,33.199,28.579,15.307,31.549,28.707,15.884,31.953,28.915,16.403,32.45,28.759,17.525,32.586,27.656,18.46,33.563,25.723,16.893,31.619,24.063,16.833,32.532,20.997,18.337,32.667,20.732,18.904,33.006,21.085,18.612,32.876,19.36,18.723,32.701,20.05,19.259,33.009,20.417,19.237,33.079,19.687,21.311,34.504,20.615,21.736,34.986,20.294,21.288,34.573,19.885,22.392,34.6,15.652,22.157,34.236,14.366,21.823,33.539,15.439,22.275,34.051,15.097,21.813,33.596,14.657,22.365,36.368,13.87,15.254,37.467,10.487,14.974,37.198,6.698,15.633,37.054,6.354,14.536,37.495,3.924,15.148,37.605,3.535,14.65,37.387,3.02,15.397,37.54,4.239,15.766,37.431,3.179,16.055,37.396,3.895,16.658,36.772,4.284,16.583,36.98,3.584,16.971,36.082,4.213,16.942,36.34,3.485,15.339,36.577,1.246,16.36,36.342,1.54,15.902,36.169,0.994,15.344,35.83,0.658,16.719,35.718,1.399,16.226,35.522,0.836,15.627,35.133,0.539,17.009,35.683,2.114,16.854,34.997,1.407,16.356,34.778,0.892,15.767,34.346,0.729,17.103,34.932,2.111,16.745,34.288,1.563,16.208,33.98,1.196,15.783,33.498,1.517,15.893,33.323,2.207,16.43,33.631,2.574,16.856,34.114,2.253,16.407,33.701,1.844,9.374,38.582,3.357,9.991,38.408,3.001,8.899,37.824,2.142,10.281,38.373,3.717,10.52,37.976,2.732,10.062,37.803,2.186,9.504,37.464,1.851,8.931,37.011,1.778,8.431,36.513,1.979,10.809,37.957,3.406,10.879,37.352,2.591,10.386,37.156,2.029,9.787,36.768,1.732,9.201,36.265,1.759,7.602,38.309,3.656,0.746,36.768,-0.673,0.188,36.43,-1.008,-0.384,35.977,-1.081,-0.884,35.479,-0.881,1.563,36.318,-0.268,1.07,36.122,-0.83,0.471,35.733,-1.127,-0.115,35.23,-1.1,-0.573,34.712,-0.755,1.698,35.597,-0.26,1.2,35.378,-0.775,0.61,34.946,-0.938,0.116,34.437,-0.697,-0.844,33.538,0.209,-2.374,29.976,1.246,-2.888,29.741,0.738,-1.315,26.097,3.161,-1.39,26.305,2.462,-1.24,24.975,3.686,-1.002,25.406,3.09,-1.031,25.665,2.362,-1.185,24.979,1.655,-3.009,23.395,1.786,-1.401,24.101,3.449,-1.017,24.587,3.028,-0.937,24.914,2.359,-1.295,24.27,1.811,-1.831,23.962,1.444,-2.257,23.48,1.765,-2.146,23.305,2.455,-1.61,23.613,2.822,-1.184,24.096,2.501,-1.632,23.683,2.092,-5.625,24.275,3.975,-5.191,24.209,2.559,-5.341,23.844,3.177,-5.265,23.636,3.876,-4.976,23.617,4.55,-4.518,23.79,5.096,-4.766,23.478,2.837,-4.737,23.219,3.565,-4.448,23.185,4.281,-3.955,23.381,4.843,-3.356,23.769,5.14,-2.77,24.272,5.113,-3.993,23.006,3.584,-3.604,23.087,4.219,-3.037,23.426,4.572,-6.381,27.341,2.447,-6.619,26.909,3.042,-6.59,26.651,3.77,-6.157,26.585,2.353,-6.306,26.219,2.972,-8.882,31.122,6.131,-8.569,30.431,6.06,-8.494,30.223,6.76,-9.146,32.582,7.666,-9.05,31.696,8.016,-8.761,31.661,8.732,-8.402,31.037,8.591,-17.268,33.557,12.278,-16.963,33.36,11.304,-16.739,32.604,11.211,-16.075,32.304,10.894,-17.722,31.7,12.936,-17.859,31.32,13.617,-17.613,31.237,14.366,-17.56,31.074,12.591,-17.707,30.698,13.241,-17.566,30.532,13.975,-17.11,30.538,12.383,-17.257,30.162,13.033,-17.116,29.996,13.767,-16.689,31.977,17.504,-16.66,31.718,18.232,-16.371,31.684,18.948,-15.878,31.88,19.51,-15.554,31.233,19.353,-14.996,31.571,19.688,-15.322,29.828,18.138,-14.864,30.001,18.684,-14.794,29.396,17.869,-15.006,33.472,21.345,-12.584,30.612,23.263,-12.259,29.963,23.146,-10.025,29.317,24.156,-9.497,28.885,23.887,-9.674,32.129,28.041,-6.599,29.927,28.508,-6.149,29.391,28.3,-5.55,29.86,28.387,-5.213,32.287,28.937,-4.151,32.209,28.687,-2.001,34.295,32.544,-1.604,34.377,33.193,-1.551,33.759,32.336,-0.787,33.499,32.352,2.016,31.272,32.151,2.509,31.468,32.713,3.108,31.856,33.01,3.391,31.159,32.891,3.963,31.612,32.964,3.995,30.8,32.6,4.581,31.303,32.573,8.077,32.094,32.368,8.57,32.29,32.93,8.921,31.996,32.306,9.487,32.335,32.659,9.843,32.338,31.991,18.883,36.041,27.814,22.124,34.75,23.763,22.642,34.573,23.03,22.888,34.489,23.779,23.424,34.734,24.308,24.045,35.214,24.417,23.397,34.711,22.713,23.506,34.538,23.394,24.037,34.843,23.758,24.458,35.32,23.439,24.027,34.896,23.03,24.91,36.381,20.364,27.603,38.643,18.303,27.067,38.398,17.774,27.243,37.648,20.088,27.712,38.179,19.733,27.85,38.559,19.052,27.546,37.926,18.429,27.016,37.622,18.065,26.595,37.144,18.383,26.704,36.972,19.065,27.235,37.276,19.428,27.656,37.754,19.11,27.225,37.33,18.701,24.993,39.107,15.392,24.884,38.399,15.548,24.347,38.091,15.181,24.546,37.811,15.829,22.416,39.143,13.099,17.759,40.291,12.697,3.843,40.664,1.067,4.12,40.621,1.779,4.061,39.969,1.021,3.525,39.724,0.492,1.107,40.939,-1.194,0.521,40.436,-1.167,0.063,39.917,-0.821,1.836,40.584,-0.841,1.246,40.151,-1.004,-3.192,37.263,0.794,-3.166,36.652,0.284,-5.045,34.061,-0.176,-5.03,30.726,-0.031,-3.649,26.537,0.001,-4.213,26.028,0.091,-4.615,25.528,0.508,-2.107,26.605,0.6,-2.601,26.403,0.052,-3.199,26.001,-0.207,-3.763,25.492,-0.117,-4.165,24.992,0.3,-1.889,25.91,0.554,-2.425,25.665,0.024,-3.046,25.186,-0.084,-3.515,24.654,0.27,-7.515,32.839,-0.26,-6.91,32.48,-0.55,-7.483,32.027,-0.623,-7.983,31.529,-0.423,-8.334,31.061,0.02,-6.627,31.783,-0.67,-7.213,31.28,-0.643,-7.671,30.762,-0.297,-7.909,30.33,0.299,-7.88,30.072,1.027,-6.982,30.487,-0.239,-7.224,30.063,0.329,-9.376,31.247,1.751,-9.301,31.039,2.45,-9.14,34.525,5.246,-16.876,36.703,8.504,-17.125,36.02,8.292,-17.037,35.816,9.008,-17.029,35.134,8.642,-16.67,34.494,8.543,-14.623,33.979,8.203,-17.015,36.368,11.486,-17.121,38.989,15.494,-17.057,38.368,15.089,-17.295,37.937,15.684,-16.983,37.247,15.614,-19.121,35.946,18.143,-19.571,35.436,18.483,-19.039,35.143,17.898,-19.36,34.687,18.377,-19.398,34.394,19.05,-18.696,34.394,18.078,-18.827,34.029,18.732,-18.591,33.949,19.45,-16.377,36.594,22.264,-17.238,35.056,21.837,-16.68,35.395,22.172,-15.068,34.499,25.005,-15.019,33.464,25.215,-14.37,33.125,25.185,-12.255,32.303,26.496,-11.762,32.499,27.058,-13.089,33.735,32.387,-12.596,33.931,32.949,-13.019,33.13,31.572,-12.73,33.111,32.246,-12.272,33.284,32.792,-11.714,33.623,33.127,-11.142,34.076,33.2,-12.491,32.714,31.261,-12.202,32.679,31.977,-11.709,32.875,32.539,-11.11,33.263,32.836,-10.524,33.766,32.809,-11.834,32.705,30.564,-11.747,32.501,31.28,-11.358,32.581,31.915,-10.791,32.92,32.268,-10.227,33.411,32.227,-10.972,32.615,31.232,-10.436,32.923,31.6,-5.352,34.692,30.086,-5.426,36.416,32.756,-5.137,36.397,33.43,-4.609,35.965,33.161,0.498,33.747,33.493,7.094,33.581,33.648,10.125,33.165,36.082,10.9,33.279,36.035,13.854,34.417,33.748,13.325,34.113,33.385,12.905,33.637,33.702,13.014,33.465,34.382,13.543,33.769,34.745,13.963,34.245,34.428,13.551,33.802,34.011,16.496,36.845,29.913,16.899,36.928,30.571,17.485,37.279,30.936,21.529,35.577,26.01,22.022,35.773,26.572,22.621,36.161,26.869,22.939,35.818,26.301,23.504,36.309,26.26,25.038,38.648,24.844,25.249,37.899,24.738,25.267,37.442,24.131,26.195,41.971,22.189,26.579,42.457,21.767,26.651,41.432,22.423,27.108,41.95,22.078,27.346,42.382,21.482,26.92,40.685,22.404,27.42,41.183,22.204,27.771,41.65,21.761,27.921,42.016,21.143,27.538,40.376,22.013,27.995,40.894,21.668,28.233,41.326,21.072,27.835,40.02,21.431,28.218,40.506,21.009,28.298,40.833,20.34,27.872,42.329,19.047,24.319,40.323,14.359,22.035,42.396,10.593,21.634,41.896,11.01,23.91,42.814,11.264,23.373,42.569,10.735,22.752,42.089,10.626,22.283,41.558,10.98,23.853,42.097,11.39,23.322,41.793,11.026,22.901,41.315,11.344,23.532,41.501,11.661,16.387,42.259,11.494,16.002,40.91,7.911,14.691,39.849,5.666,14.778,39.645,6.381,15.167,39.725,7.016,15.734,40.064,7.37,16.298,40.555,7.329,15.442,39.934,5.645,15.553,39.759,6.334,16.089,40.067,6.702,6.523,42.199,0.292,6.552,41.94,1.02,6.985,41.874,-0.397,6.836,41.509,0.222,6.912,41.301,0.921,7.2,41.282,1.595,7.439,40.885,0.61,7.729,40.85,1.326,8.222,41.046,1.888,7.041,44.667,-0.554,6.584,44.149,-0.208,7.659,44.358,-0.945,1.259,46.189,1.005,1.373,45.921,0.117,0.777,45.461,0.013,1.957,45.559,-0.179,1.379,45.155,-0.388,2.249,44.879,-0.287,0.7,43.155,-0.802,-1.909,42.54,-1.08,-2.428,42.043,-0.923,-2.75,41.587,-0.445,-2.787,41.294,0.228,-2.531,41.243,0.915,-1.636,41.804,-1.083,-2.085,41.294,-0.744,-4.53,39.979,3.961,-5.023,39.782,3.399,-6.72,37.95,2.413,-7.299,37.453,2.439,-6.237,37.375,2.19,-9.599,34.232,1.647,-10.019,33.756,1.964,-9.91,33.584,2.644,-8.956,34.269,1.121,-9.552,33.808,1.017,-10.002,33.299,1.357,-10.134,32.934,2.01,-17.399,34.748,6.143,-17.115,34.317,5.344,-17.039,34.109,6.044,-16.511,33.693,5.733,-16.222,33.658,6.449,-15.855,33.684,5.036,-15.767,33.48,5.751,-15.378,33.56,6.386,-14.992,33.594,5.704,-14.456,33.902,6.071,-14.478,33.971,5.342,-15.708,38.029,7.125,-16.244,37.721,6.757,-16.67,37.238,7.079,-16.419,41.334,12.39,-16.442,41.403,11.66,-16.867,40.921,11.982,-16.757,40.746,12.671,-16.875,40.662,11.202,-17.116,40.238,11.77,-17.029,40.034,12.486,-16.811,40.042,10.796,-17.049,39.61,11.392,-17.021,39.352,12.12,-16.236,39.753,10.26,-20.35,37.529,20.754,-20.241,37.357,21.435,-19.938,37.635,19.776,-20.407,37.104,20.131,-20.544,36.724,20.812,-20.298,36.64,21.561,-19.761,36.885,22.09,-20.392,36.101,20.436,-20.251,35.935,21.17,-19.853,36.017,21.818,-19.291,36.328,22.234,-19.403,35.482,21.61,-14.665,40.027,25.331,-14.306,39.403,25.19,-14.882,35.88,29.05,-14.672,35.588,29.685,-16.724,34.711,28.286,-16.733,34.764,27.558,-17.154,34.287,27.876,-17.044,34.114,28.558,-16.514,34.419,28.921,-16.741,34.393,26.899,-17.21,33.861,27.253,-17.348,33.481,27.935,-17.101,33.397,28.683,-16.565,33.642,29.213,-17.049,33.234,26.909,-17.196,32.859,27.559,-17.054,32.693,28.292,-16.657,32.774,28.941,-16.095,33.086,29.357,-16.599,32.699,26.701,-16.746,32.323,27.351,-16.604,32.157,28.084,-16.207,32.239,28.733,-15.645,32.55,29.149,-15.949,32.36,26.671,-16.087,31.98,27.352,-15.84,31.897,28.101,-15.304,32.142,28.63,-15.222,31.945,27.716,-13.475,37.271,32.906,-13.366,37.099,33.586,-13.457,36.813,32.299,-13.589,36.449,32.952,-13.353,36.369,33.67,-12.838,36.603,34.178,-12.546,35.924,34.07,-10.722,38.279,35.635,-10.32,37.678,35.912,-9.721,38.066,36.209,-9.135,38.569,36.182,-9.996,37.031,35.755,-9.438,37.37,36.09,-8.865,37.822,36.163,-9.433,36.622,35.502,-8.834,37.01,35.799,-9.082,36.328,34.877,-8.515,36.667,35.231,-8.696,36.362,34.195,-8.16,36.67,34.563,-2.377,37.031,38.837,-2.369,36.348,38.471,-2.079,36.313,39.187,-2.009,35.709,38.372,-1.72,35.69,39.046,-1.481,35.292,38.061,-1.192,35.258,38.777,-0.488,34.72,35.96,0.318,34.275,36.36,0.832,34.51,36.868,0.946,34.243,35.979,1.475,34.547,36.342,2.235,36.323,40.383,1.987,35.641,39.461,2.554,35.98,39.815,2.373,35.675,38.779,4.408,35.07,35.856,4.775,34.728,35.224,7.05,33.908,37.249,7.307,33.857,37.936,7.621,33.543,36.931,9.258,33.634,38.574,9.608,33.34,37.95,10.175,33.679,38.303,12.75,35.045,37.817,12.482,34.199,37.276,13.047,34.69,37.235,14.615,36.78,38.009,15.065,37.29,37.67,14.662,36.356,37.38,15.083,36.832,37.062,17.176,40.449,35.933,22.58,38.547,31.379,23.116,38.855,31.747,23.542,39.338,31.425,23.094,38.925,31.017,23.699,38.522,27.272,23.937,38.953,26.676,24.166,42.781,24.556,24.954,44.036,20.573,25.722,43.961,20.288,28.415,45.647,18.449,28.915,46.145,18.249,29.033,45.337,18.059,29.49,45.856,17.713,30.0,44.102,14.458,29.464,43.857,13.928,28.843,43.377,13.82,28.374,42.845,14.174,29.019,42.626,16.134,29.64,43.106,16.242,30.109,43.638,15.888,30.246,44.018,15.206,29.943,43.385,14.583,29.412,43.08,14.22,28.991,42.603,14.538,29.101,42.43,15.22,29.631,42.735,15.583,30.052,43.212,15.265,29.622,42.788,14.855,25.178,42.936,13.05,15.363,42.66,3.845,16.218,42.417,3.798,15.632,41.914,3.825,17.446,42.28,4.666,16.947,42.062,4.151,16.358,41.629,3.988,15.864,41.12,4.229,17.613,41.888,6.039,17.694,42.215,5.37,17.336,41.572,4.823,16.8,41.264,4.455,16.374,40.781,4.777,17.447,41.397,5.512,16.998,40.984,5.103,11.976,42.247,1.716,12.258,42.698,1.166,12.202,42.326,-0.304,11.221,40.851,1.371,11.842,41.33,1.48,12.311,41.862,1.126,12.448,42.242,0.444,12.145,41.609,-0.179,11.303,40.654,0.457,11.833,40.959,0.821,12.254,41.436,0.502,11.824,41.013,0.093,10.141,43.212,-1.518,9.583,42.874,-1.853,9.011,42.421,-1.926,8.511,41.923,-1.726,10.465,42.565,-1.675,9.866,42.177,-1.972,9.28,41.674,-1.946,8.823,41.156,-1.6,8.585,40.724,-1.004,10.595,41.822,-1.62,10.006,41.39,-1.783,9.512,40.881,-1.542,9.27,40.457,-0.974,9.357,40.253,-0.258,10.447,41.024,-1.316,10.022,40.542,-0.994,6.082,48.212,-0.318,2.191,51.551,2.95,2.238,51.127,2.32,1.789,50.617,2.66,2.321,50.324,2.075,2.0,49.868,2.554,0.004,46.394,3.499,-2.63,46.109,1.602,-3.128,45.89,1.087,-3.717,45.458,0.924,-2.382,46.044,2.306,-2.012,45.935,1.246,-2.506,45.739,0.684,-3.105,45.351,0.387,-3.691,44.848,0.414,-2.5,44.991,0.096,-3.073,44.538,0.023,-3.573,44.04,0.223,-11.163,41.497,5.058,-11.735,41.044,4.985,-12.235,40.546,5.185,-14.11,38.037,3.812,-13.517,37.767,3.483,-14.012,37.565,2.934,-14.609,37.163,2.676,-13.067,37.231,3.275,-13.562,37.029,2.727,-14.159,36.627,2.468,-12.849,36.536,3.229,-13.385,36.291,2.699,-14.007,35.811,2.591,-12.906,35.82,3.354,-13.437,35.515,2.991,-12.797,35.647,4.036,-13.227,35.223,3.626,-16.256,37.771,4.68,-16.792,37.463,4.312,-17.218,36.981,4.634,-16.141,37.663,3.776,-16.731,37.231,3.613,-17.225,36.722,3.854,-17.467,36.298,4.422,-16.118,37.123,3.076,-16.704,36.62,3.103,-17.162,36.102,3.448,-17.4,35.67,4.044,-16.086,36.311,2.712,-16.586,35.813,2.912,-16.938,35.346,3.355,-17.087,34.98,3.973,-15.817,35.564,2.693,-16.274,35.046,3.038,-16.512,34.614,3.634,-15.585,34.771,3.097,-15.827,34.347,3.665,-15.075,34.432,3.644,-13.024,43.495,6.621,-13.623,43.107,6.324,-14.209,42.604,6.351,-14.667,42.086,6.696,-13.591,42.295,5.96,-14.091,41.797,6.16,-14.443,41.33,6.603,-15.43,41.175,8.466,-15.523,44.794,9.418,-15.002,45.152,9.054,-15.532,44.848,8.69,-15.953,44.37,9.009,-15.844,44.198,9.69,-14.384,45.201,8.669,-14.92,44.956,8.14,-15.541,44.476,8.031,-16.01,43.945,8.385,-16.147,43.565,9.067,-15.901,43.481,9.816,-14.137,45.118,9.418,-13.791,44.931,8.34,-14.285,44.729,7.792,-14.883,44.327,7.533,-15.447,43.818,7.623,-15.848,43.318,8.041,-13.516,44.609,9.765,-16.82,44.261,16.165,-16.536,43.83,15.367,-18.271,41.628,18.311,-21.013,42.539,21.786,-20.903,42.365,22.475,-21.262,41.857,21.574,-21.175,41.652,22.29,-20.786,41.733,22.925,-20.219,42.072,23.278,-21.195,41.229,21.196,-21.167,40.97,21.924,-20.877,40.935,22.64,-20.733,40.904,20.507,-20.883,40.539,21.125,-20.807,40.33,21.825,-19.286,40.297,23.808,-18.962,39.65,23.651,-13.648,41.83,30.061,-14.069,41.353,30.379,-13.96,41.18,31.061,-13.657,41.459,29.402,-14.125,40.927,29.756,-14.263,40.547,30.437,-14.017,40.463,31.186,-14.111,39.925,30.061,-13.97,39.759,30.795,-12.863,41.538,36.219,-12.349,41.773,36.727,-11.753,42.233,36.831,-12.794,40.941,35.415,-12.538,40.889,36.102,-12.057,41.093,36.619,-11.479,41.497,36.828,-7.485,41.998,37.673,-7.472,41.247,37.76,-7.138,40.58,37.639,-1.581,38.846,41.223,-1.014,39.185,41.577,-0.449,39.675,41.536,-1.672,38.048,40.938,-1.179,38.244,41.5,-0.58,38.632,41.797,0.006,39.136,41.77,0.464,39.654,41.425,-0.297,37.936,41.678,0.276,38.389,41.751,0.776,38.887,41.551,1.127,39.354,41.108,-0.386,36.255,40.781,0.172,36.594,41.116,0.177,35.846,40.528,0.776,36.234,40.825,0.528,35.552,39.904,4.68,41.137,40.589,5.1,41.614,40.271,4.678,40.338,40.818,5.273,40.799,40.922,5.723,41.308,40.582,5.547,40.063,40.918,6.066,40.559,40.762,6.387,41.015,40.284,5.593,37.489,40.406,6.165,37.942,40.479,6.665,38.44,40.278,5.598,36.741,39.818,6.197,37.129,40.115,6.783,37.632,40.088,9.162,35.438,39.801,9.454,34.758,39.693,10.031,35.163,39.901,10.633,34.856,39.5,12.965,40.014,39.588,13.277,39.246,39.714,13.628,39.714,39.271,12.809,37.936,39.55,13.395,38.439,39.523,13.852,38.958,39.178,14.09,39.389,38.582,12.749,41.487,38.568,13.507,41.358,38.234,13.957,40.823,38.026,15.741,42.571,36.198,18.6,38.102,36.822,19.136,38.347,37.351,18.647,37.397,36.431,19.044,37.479,37.08,19.606,37.79,37.495,18.956,37.028,35.489,19.097,36.862,36.223,19.494,36.944,36.872,20.057,37.255,37.287,19.752,37.065,34.809,19.615,36.685,35.49,19.861,36.601,36.239,20.397,36.846,36.769,20.37,36.823,35.173,20.479,36.65,35.854,21.01,36.955,36.218,21.001,37.008,35.49,23.811,40.994,34.554,23.796,40.174,34.491,23.876,40.501,33.822,23.629,39.683,33.964,25.419,43.805,29.516,25.53,43.63,30.205,24.606,41.325,28.59,24.715,41.153,29.27,24.424,43.998,25.467,26.983,47.297,18.727,30.832,48.763,19.669,27.258,45.498,13.572,28.712,45.643,13.823,28.113,45.255,13.526,27.527,44.752,13.553,20.396,47.354,5.356,20.755,46.73,5.215,20.89,46.009,5.223,20.781,45.301,5.38,19.929,44.336,6.023,20.466,44.644,6.39,20.891,45.126,6.069,20.443,44.713,5.66,18.625,46.622,2.949,18.048,46.218,2.74,19.432,46.177,3.348,18.917,45.942,2.84,18.322,45.482,2.736,17.872,44.972,3.076,19.445,45.447,3.433,18.915,45.143,3.07,18.495,44.667,3.387,15.626,47.82,0.062,15.471,47.134,-0.645,13.889,45.974,-1.082,13.648,45.551,-0.514,14.124,45.426,0.837,14.691,45.766,1.19,15.719,47.069,0.059,15.362,46.426,-0.489,14.825,46.118,-0.856,14.399,45.635,-0.535,14.51,45.46,0.154,15.046,45.768,0.522,15.472,46.251,0.2,15.024,45.838,-0.208,9.385,48.525,-2.195,6.91,51.942,-1.987,6.374,51.634,-2.355,5.948,51.151,-2.033,7.522,52.052,-2.376,7.024,51.833,-2.891,6.434,51.401,-3.054,5.94,50.892,-2.813,5.699,50.468,-2.244,8.139,51.877,-2.732,7.646,51.681,-3.294,7.047,51.293,-3.591,6.461,50.79,-3.564,6.004,50.272,-3.218,5.766,49.84,-2.623,8.668,51.446,-3.001,8.21,51.273,-3.547,7.652,50.934,-3.882,7.079,50.481,-3.955,6.579,49.983,-3.755,6.228,49.516,-3.312,6.078,49.15,-2.693,9.027,50.822,-3.142,8.534,50.626,-3.704,7.935,50.238,-4.001,7.349,49.734,-3.974,6.891,49.216,-3.628,6.653,48.785,-3.033,8.664,49.882,-3.649,8.074,49.45,-3.811,7.58,48.941,-3.57,7.338,48.517,-3.002,8.516,49.084,-3.344,4.284,52.142,1.013,3.727,54.691,2.254,3.486,54.267,2.822,4.834,55.092,1.476,4.248,54.589,1.503,3.791,54.07,1.848,5.439,54.733,1.185,4.866,54.28,1.112,2.812,53.944,6.658,2.82,53.977,5.923,2.4,53.501,6.241,2.509,53.329,6.921,1.095,51.75,5.782,1.156,51.517,5.083,-2.399,50.971,6.637,-2.93,50.666,6.273,-1.781,51.019,6.252,-2.317,50.774,5.722,-2.939,50.295,5.614,-1.682,50.547,5.375,-2.28,50.145,5.116,-1.83,49.61,4.908,-6.839,47.755,5.007,-6.325,48.132,4.644,-6.861,47.824,4.277,-6.214,47.958,5.333,-5.713,48.243,4.256,-6.211,48.024,3.741,-6.8,47.592,3.578,-5.095,48.068,3.9,-5.588,47.872,3.337,-6.187,47.484,3.04,-4.567,47.636,3.631,-5.025,47.463,3.085,-5.583,47.125,2.75,-8.172,43.34,2.22,-8.621,42.83,2.56,-7.57,43.034,1.819,-8.089,42.537,1.975,-8.41,42.081,2.454,-7.296,42.298,1.815,-7.746,41.788,2.155,-8.586,46.382,5.314,-9.019,45.641,4.856,-8.956,45.02,4.451,-10.525,45.697,7.205,-10.498,45.086,6.695,-15.265,47.055,12.908,-15.861,46.594,12.804,-14.2,46.896,13.129,-14.682,46.692,12.612,-16.099,45.335,13.038,-13.875,46.247,13.012,-17.055,46.365,14.917,-16.988,45.737,14.538,-16.335,48.221,15.94,-15.798,48.558,15.568,-16.327,48.254,15.206,-16.747,47.778,15.523,-16.638,47.605,16.203,-16.109,47.909,16.566,-15.689,48.386,16.248,-15.17,48.525,15.188,-15.684,48.29,14.68,-19.675,47.698,21.249,-19.697,47.767,20.519,-20.123,47.285,20.841,-20.012,47.11,21.53,-19.476,47.418,21.897,-19.046,47.967,19.983,-19.636,47.535,19.82,-20.13,47.026,20.061,-20.372,46.602,20.629,-20.284,46.398,21.345,-19.895,46.478,21.98,-19.328,46.817,22.333,-18.424,47.815,19.58,-19.023,47.427,19.283,-19.609,46.924,19.31,-17.861,47.406,19.327,-18.419,47.068,18.992,-18.991,46.615,18.919,-20.441,42.63,19.533,-19.866,42.342,18.997,-19.775,44.523,23.085,-18.236,46.069,26.406,-18.54,45.436,25.783,-18.293,45.353,26.531,-17.757,45.598,27.061,-18.246,44.648,26.14,-17.849,44.73,26.789,-17.287,45.041,27.205,-17.399,44.194,26.581,-16.837,44.505,26.997,-17.26,47.854,26.254,-16.701,48.238,25.863,-17.27,47.911,25.473,-17.036,47.541,26.936,-16.584,48.053,26.594,-16.845,46.875,27.35,-16.26,47.382,27.307,-15.864,47.885,26.871,-15.781,48.224,26.178,-15.774,46.773,27.453,-15.322,47.285,27.112,-15.291,46.198,27.23,-12.62,45.57,26.834,-12.151,46.102,26.479,-12.013,46.482,25.798,-12.771,44.534,26.869,-12.172,45.003,26.956,-11.675,45.522,26.695,-11.392,45.973,26.145,-11.389,46.252,25.432,-10.942,45.438,25.937,-10.939,45.717,25.224,-11.14,42.527,29.288,-13.387,44.223,34.314,-12.849,44.559,33.943,-13.379,44.255,33.58,-13.799,43.779,33.897,-13.69,43.607,34.577,-12.735,44.292,33.054,-13.331,43.831,32.95,-13.781,43.321,33.29,-13.913,42.957,33.944,-12.519,43.826,35.765,-12.093,44.309,35.443,-11.807,43.715,36.16,-10.808,45.02,34.464,-10.196,45.131,34.075,-10.028,44.739,35.448,-9.948,45.066,34.779,-9.956,43.713,36.104,-6.562,46.894,38.635,-6.906,46.254,38.927,-6.337,46.581,39.317,-5.885,47.093,38.975,-7.136,45.48,38.708,-6.733,45.563,39.365,-5.821,43.701,41.316,-5.285,44.009,41.683,-5.704,43.069,41.766,-5.137,43.408,42.119,-4.573,43.899,42.078,-4.704,42.856,42.34,-4.421,42.16,42.221,-6.458,41.53,40.281,-6.212,41.446,41.029,-6.165,40.742,40.638,-5.767,40.824,41.287,-5.714,40.206,40.43,-5.317,40.288,41.079,-4.755,40.599,41.495,-5.197,40.029,39.698,-4.95,39.946,40.447,-4.414,40.191,40.976,-4.442,40.167,39.38,-2.66,44.486,41.612,-2.588,43.46,42.268,-2.13,43.979,41.922,-1.892,44.41,41.327,-2.318,42.714,42.249,-1.818,43.212,42.048,-2.287,41.901,41.885,-1.7,42.404,41.858,0.231,43.861,40.043,0.305,42.663,40.765,0.656,43.13,40.322,4.848,45.022,37.384,5.369,45.38,37.02,4.839,45.075,36.656,5.058,44.73,38.019,5.479,45.207,37.701,7.079,44.84,38.454,7.565,44.231,38.6,8.017,44.743,38.258,10.048,39.454,40.228,10.612,39.944,40.187,10.996,40.43,39.765,9.882,38.514,40.152,10.481,38.902,40.449,11.068,39.405,40.422,10.764,38.205,40.33,11.337,38.658,40.402,11.369,37.846,40.039,13.203,47.234,37.842,13.624,47.711,37.524,13.152,46.457,38.133,13.773,46.937,38.241,14.242,47.469,37.887,14.379,47.849,37.206,13.622,45.901,38.277,14.22,46.37,38.364,14.718,46.889,38.103,15.0,47.34,37.553,15.003,47.619,36.84,14.072,45.365,38.069,14.67,45.834,38.156,15.168,46.354,37.895,15.45,46.805,37.345,15.453,47.084,36.632,15.034,45.437,37.659,15.503,45.968,37.305,20.003,44.919,35.475,20.722,40.723,37.128,20.932,40.431,37.763,21.353,40.908,37.445,20.881,39.654,38.055,21.502,40.134,38.163,21.971,40.666,37.809,22.108,41.046,37.127,21.351,39.098,38.198,21.949,39.567,38.286,22.447,40.086,38.024,22.729,40.537,37.474,21.801,38.562,37.99,22.399,39.031,38.078,22.897,39.551,37.816,23.179,40.002,37.266,22.142,38.154,37.472,22.763,38.634,37.58,23.232,39.165,37.226,22.754,38.262,36.921,23.175,38.74,36.603,21.201,46.943,35.229,21.688,46.334,35.374,22.139,46.846,35.033,24.815,45.05,35.138,25.088,44.314,35.134,25.607,44.811,34.978,25.69,44.008,34.733,26.14,44.518,34.394,25.738,43.584,34.104,24.957,46.632,33.795,25.467,43.399,32.465,26.429,44.19,32.511,26.011,47.236,31.832,26.247,47.155,32.55,26.561,46.842,31.544,26.779,46.498,32.904,26.817,46.791,32.231,26.886,46.194,31.427,26.991,45.749,32.799,27.123,46.113,32.145,26.899,45.463,31.511,23.248,48.535,29.923,24.796,46.445,27.797,25.102,45.767,27.711,24.706,48.621,25.282,26.43,48.946,23.898,26.269,48.071,23.661,26.653,48.557,23.239,26.375,48.241,22.023,25.839,47.933,21.656,25.413,47.45,21.977,26.06,47.584,23.034,26.486,48.066,22.712,26.038,47.653,22.304,32.867,47.304,20.731,32.938,46.69,19.904,33.201,46.637,20.61,33.66,46.69,18.905,33.524,46.315,19.577,33.767,46.232,20.315,33.026,49.752,16.212,25.581,51.842,15.133,26.118,52.179,14.762,25.589,51.875,14.399,25.169,51.398,14.716,25.278,51.226,15.396,26.383,53.203,18.63,26.869,53.453,17.609,26.375,52.944,17.85,26.134,52.52,18.419,28.081,53.733,17.369,27.482,53.345,17.072,33.439,49.797,22.933,33.969,50.101,23.296,33.136,49.163,22.309,33.382,49.08,23.058,33.918,49.325,23.588,34.539,49.805,23.696,35.008,50.336,23.342,33.429,48.375,22.667,33.826,48.457,23.316,34.389,48.768,23.731,34.987,49.237,23.818,35.484,49.757,23.557,34.276,47.921,23.108,34.839,48.232,23.523,35.437,48.702,23.611,35.934,49.221,23.349,35.179,47.824,23.005,35.801,48.304,23.113,36.764,48.974,18.949,35.085,47.887,18.116,36.899,48.253,18.957,36.401,48.035,18.442,35.811,47.602,18.279,36.119,46.885,20.792,36.683,47.375,20.752,37.067,47.861,20.33,37.147,48.189,19.661,36.789,47.545,19.113,36.253,47.237,18.746,35.827,46.754,19.068,35.938,46.58,19.757,36.474,46.888,20.124,36.9,47.37,19.803,36.452,46.957,19.394,33.904,53.17,14.509,35.116,53.45,14.268,34.517,53.062,13.971,33.931,52.559,13.998,36.138,53.214,14.562,35.68,53.041,14.015,35.122,52.703,13.68,34.549,52.25,13.608,34.049,51.752,13.808,33.698,51.285,14.251,36.497,52.59,14.421,36.004,52.394,13.858,35.405,52.006,13.561,34.819,51.503,13.588,34.361,50.985,13.934,36.815,52.297,15.864,36.786,52.556,15.136,36.632,51.869,14.429,36.134,51.651,13.914,35.544,51.219,13.751,35.05,50.71,13.992,34.808,50.286,14.56,36.8,51.477,15.802,36.88,51.805,15.133,36.522,51.161,14.585,35.986,50.853,14.218,35.56,50.371,14.539,35.671,50.196,15.229,36.207,50.504,15.596,36.633,50.987,15.275,36.185,50.573,14.866,33.471,54.896,17.896,33.985,55.273,17.534,33.448,54.965,17.167,33.022,54.483,17.488,33.669,54.616,18.545,34.095,55.099,18.223,34.597,55.383,17.145,34.099,55.165,16.63,33.509,54.733,16.467,34.765,54.992,18.518,34.845,55.319,17.849,35.214,55.209,16.789,34.721,55.013,16.227,34.122,54.625,15.93,35.294,54.485,18.829,35.532,54.916,18.233,35.504,55.175,17.505,35.742,54.777,16.52,35.957,54.185,18.512,36.107,54.55,17.894,36.031,54.758,17.194,36.181,53.429,18.419,36.419,53.86,17.823,36.391,54.119,17.095,27.524,52.151,12.582,28.183,52.006,12.238,28.71,51.59,11.927,29.07,50.951,11.828,28.916,50.264,11.121,29.164,50.2,11.825,28.806,49.556,11.277,28.27,49.248,10.91,27.844,48.765,11.231,24.565,47.902,7.848,25.688,47.867,8.544,25.159,47.563,8.182,24.739,47.086,8.499,24.848,46.914,9.179,25.377,47.218,9.542,25.797,47.694,9.224,25.385,47.251,8.807,23.273,51.68,11.005,27.375,52.913,10.36,27.95,52.547,10.021,27.874,52.755,9.321,27.945,52.151,8.506,28.234,52.116,9.222,28.08,51.43,8.515,27.582,51.211,8.0,28.328,51.365,9.219,27.97,50.721,8.671,27.434,50.413,8.304,27.633,50.134,8.952,22.734,52.266,8.586,23.221,52.516,7.566,22.727,52.007,7.807,23.248,51.905,7.055,22.79,51.386,7.401,23.866,51.596,6.665,23.366,51.098,6.865,23.014,50.631,7.308,24.721,51.352,6.618,24.135,50.849,6.645,23.678,50.331,6.991,24.861,50.565,6.808,18.677,47.923,4.722,16.268,49.778,6.042,16.271,50.057,5.329,15.573,52.443,3.124,16.343,52.194,2.904,16.694,52.661,2.461,16.843,53.027,1.843,16.838,52.63,0.329,16.345,52.434,-0.233,15.746,52.046,-0.53,16.918,51.905,2.368,17.156,52.337,1.773,17.127,52.595,1.045,16.973,51.909,0.337,16.475,51.691,-0.178,15.885,51.258,-0.341,16.758,51.031,2.132,17.141,51.517,1.71,17.221,51.844,1.041,16.863,51.201,0.494,16.327,50.893,0.126,16.974,51.026,1.183,16.526,50.613,0.775,13.828,48.726,-2.0,13.234,48.31,-2.215,12.7,47.799,-2.054,14.128,48.026,-2.112,13.516,47.553,-2.219,13.053,47.029,-1.869,6.335,53.544,0.732,7.538,56.809,2.502,8.088,56.416,2.215,7.607,56.212,1.698,7.03,55.808,1.49,8.344,56.364,2.902,8.414,55.767,2.098,7.899,55.532,1.59,8.65,55.687,2.816,4.464,57.325,4.525,4.986,57.683,4.16,4.455,57.379,3.797,4.034,56.901,4.115,4.143,56.728,4.796,4.674,57.033,5.16,5.095,57.51,4.842,5.604,57.732,3.775,5.068,57.487,3.246,4.446,57.007,3.138,3.978,56.476,3.492,3.84,56.095,4.173,5.713,57.268,5.205,5.85,57.648,4.524,6.471,57.139,4.871,6.474,57.419,4.158,5.222,55.181,7.678,6.596,55.604,7.631,4.332,54.139,8.373,3.995,53.551,8.654,0.449,51.141,8.863,1.008,51.525,8.472,1.126,51.34,9.203,-3.882,49.901,8.824,-4.294,49.457,8.407,-4.184,49.285,9.087,-3.235,50.065,9.133,-7.584,45.74,2.909,-6.966,45.43,2.519,-10.181,47.827,10.155,-9.667,48.204,9.793,-10.204,47.896,9.425,-10.629,47.414,9.747,-10.519,47.239,10.436,-9.556,48.03,10.482,-9.055,48.315,9.404,-9.553,48.096,8.889,-10.143,47.664,8.726,-10.637,47.155,8.967,-10.878,46.731,9.536,-10.791,46.527,10.251,-8.807,48.25,10.108,-8.438,48.14,9.048,-8.931,47.944,8.486,-9.53,47.556,8.189,-8.148,48.106,9.764,-7.909,47.708,8.779,-7.62,47.689,9.453,-10.452,47.788,14.533,-9.304,48.206,14.511,-9.802,47.987,13.996,-10.391,47.555,13.834,-13.616,48.547,18.456,-17.91,48.719,22.403,-17.373,49.056,22.031,-17.264,48.883,22.712,-16.745,49.023,21.651,-16.508,48.943,22.369,-15.187,48.184,24.467,-14.317,47.871,24.85,-10.624,47.941,22.5,-10.204,48.417,22.183,-10.031,47.602,22.834,-9.581,48.112,22.494,-9.449,48.477,21.84,-9.238,47.363,22.674,-7.975,42.646,25.921,-7.695,45.003,28.297,-11.08,47.74,31.051,-11.303,47.09,30.417,-11.067,47.01,31.135,-10.552,47.245,31.643,-10.96,46.706,29.657,-10.997,46.413,30.33,-7.101,46.77,36.842,-7.054,46.461,36.026,-6.637,51.475,38.94,-6.05,51.978,38.913,-7.37,50.267,37.939,-6.911,50.44,38.485,-6.354,50.779,38.82,-5.781,51.232,38.893,-5.281,51.729,38.693,-5.749,50.419,38.53,-5.163,50.922,38.503,-4.706,51.441,38.157,-4.866,50.567,37.921,-2.107,47.54,36.742,-2.689,47.467,38.459,-2.231,46.528,39.393,-1.996,46.954,38.804,-4.328,46.357,40.31,-3.931,46.86,39.874,0.475,45.481,36.461,0.711,45.401,37.179,1.025,45.087,36.174,1.281,45.036,36.861,8.8,47.677,37.043,15.326,50.346,34.787,15.778,50.858,34.446,16.013,51.285,33.857,21.44,48.673,34.124,21.523,49.012,33.432,22.216,48.499,33.777,22.188,48.755,33.058,20.349,50.866,29.409,21.019,50.758,29.704,21.099,51.086,29.035,21.786,50.683,29.419,21.757,50.941,28.691,22.361,50.317,29.08,22.285,50.525,28.38,22.645,49.886,28.281,23.163,52.094,24.795,23.694,52.398,25.158,24.115,52.876,24.84,24.264,52.102,25.558,24.733,52.633,25.204,24.87,53.013,24.522,24.711,51.534,25.681,25.209,52.054,25.419,25.161,50.998,25.473,25.659,51.518,25.211,27.993,51.945,23.728,28.371,51.508,23.196,23.3,54.019,22.183,23.409,53.847,22.864,23.918,54.068,21.798,23.382,53.823,21.268,24.164,53.985,22.546,24.017,53.596,20.921,23.869,52.658,20.454,20.95,49.599,17.207,20.701,48.704,14.59,19.581,50.062,12.671,19.583,50.149,9.238,19.054,49.845,8.876,19.697,49.881,8.35,24.269,53.789,9.294,24.783,54.167,8.932,24.247,53.859,8.564,24.468,53.509,9.942,24.894,53.992,9.621,25.395,54.277,8.543,24.897,54.058,8.028,25.18,53.399,10.337,25.563,53.885,9.916,25.643,54.212,9.247,26.013,54.102,8.187,25.52,53.906,7.625,24.921,53.518,7.328,26.302,54.068,8.903,26.541,53.671,7.918,26.083,53.498,7.372,25.525,53.159,7.037,26.407,52.851,7.215,25.808,52.463,6.918,14.763,51.556,7.728,15.027,51.503,8.435,15.341,50.806,8.346,14.023,54.968,1.19,14.141,54.782,1.926,14.69,55.021,0.775,14.172,54.794,0.238,14.466,54.107,2.643,14.865,54.613,2.204,14.949,54.954,1.507,15.33,54.73,0.42,14.841,54.535,-0.139,15.646,54.438,1.854,15.618,54.695,1.131,15.816,54.152,0.195,15.326,53.957,-0.363,12.469,54.032,-0.22,11.879,53.6,-0.383,12.492,53.492,-0.92,11.906,52.989,-0.893,13.096,53.133,-1.211,12.524,52.68,-1.284,13.379,52.436,-1.33,12.793,51.933,-1.303,11.178,53.874,1.697,10.703,53.333,0.631,8.712,55.421,6.217,9.333,54.912,6.564,9.336,55.191,5.852,9.786,54.655,5.644,9.003,55.332,9.506,4.142,52.504,10.589,4.368,52.192,11.215,-4.917,49.853,17.646,-10.224,48.863,16.77,-12.17,49.287,18.998,-12.059,49.113,19.687,-11.557,49.398,18.609,-11.309,49.333,19.313,-7.551,49.962,18.813,-6.998,50.308,18.431,-7.543,49.996,18.058,-7.318,49.642,19.456,-6.886,50.131,19.13,-6.708,49.293,19.799,-6.245,49.817,19.45,-6.11,50.192,18.778,-6.147,45.478,22.94,-5.38,45.402,22.655,-4.25,48.284,28.715,-4.731,48.08,28.198,-5.308,47.676,27.99,-3.993,48.232,29.402,-3.924,47.635,28.598,-4.439,47.4,28.09,-5.034,46.94,27.986,-3.911,46.905,28.682,-9.125,49.459,27.843,-9.721,48.999,27.739,-8.542,49.097,27.547,-9.119,48.693,27.339,-9.638,48.196,27.495,-8.25,48.417,27.439,-8.846,47.957,27.335,-9.295,47.447,27.675,-8.252,47.618,27.668,-10.733,49.162,30.051,-10.741,48.903,29.272,-9.556,50.497,31.43,-9.578,50.566,30.7,-9.893,49.909,31.711,-9.357,50.217,32.078,-8.928,50.766,30.164,-9.777,49.277,32.161,-9.21,49.616,32.514,-8.305,50.614,29.761,-9.375,48.676,32.438,-9.044,53.369,37.023,-8.933,53.195,37.712,-9.293,52.687,36.812,-9.205,52.483,37.527,-8.816,52.563,38.162,-8.249,52.902,38.515,-9.226,52.059,36.433,-9.197,51.8,37.161,-8.908,51.766,37.877,-8.415,51.962,38.439,-7.816,52.35,38.736,-8.764,51.734,35.744,-8.913,51.369,36.363,-8.837,51.161,37.062,-8.549,51.142,37.736,-7.482,56.105,37.899,-6.945,56.442,37.527,-7.894,55.662,37.482,-7.785,55.489,38.162,-7.256,55.793,38.525,-6.836,56.27,38.207,-7.258,54.994,38.754,-6.662,55.454,38.858,-6.212,55.964,38.518,-6.388,54.718,38.854,-2.099,52.569,37.636,-3.08,47.671,34.393,1.233,46.797,29.927,3.317,45.533,31.594,2.775,49.675,35.277,3.996,50.739,37.046,4.595,51.127,37.343,4.32,50.092,36.889,4.878,50.43,37.224,4.883,49.683,36.636,5.482,50.071,36.933,9.664,51.875,37.753,10.132,52.406,37.399,8.95,50.527,37.373,9.513,50.838,37.789,10.111,51.307,37.876,10.609,51.826,37.614,10.891,52.277,37.064,9.963,50.302,37.581,10.561,50.771,37.668,11.059,51.291,37.406,10.925,50.374,37.17,12.497,52.293,35.382,13.653,53.23,33.622,17.146,51.833,31.312,18.187,54.371,24.083,18.834,54.536,24.392,19.457,54.23,24.703,19.589,54.595,24.049,20.122,53.937,24.404,20.159,54.23,23.731,27.313,55.272,22.88,27.538,54.958,23.562,27.99,55.471,23.22,27.729,54.292,23.976,28.313,54.8,23.933,28.71,55.303,23.497,28.8,54.19,24.079,29.252,54.703,23.738,29.283,53.616,23.856,29.734,54.128,23.515,29.667,53.189,23.308,28.455,56.263,21.386,27.886,55.936,20.996,29.119,56.315,20.973,29.376,56.249,21.701,29.755,56.026,20.62,30.069,55.736,22.046,30.041,55.991,21.327,30.552,55.161,21.823,30.524,55.417,21.104,30.646,54.299,21.768,28.466,55.521,19.166,27.855,55.074,18.997,29.13,55.264,18.791,30.1,54.883,19.123,29.613,54.689,18.568,33.523,52.869,21.092,33.75,52.557,21.718,34.17,53.033,21.401,34.793,52.728,21.712,34.925,53.093,21.058,35.457,52.435,21.413,36.729,50.611,21.376,36.653,50.819,20.677,37.042,49.921,21.305,37.013,50.18,20.577,20.693,56.205,19.763,20.929,56.124,20.481,20.706,55.474,19.847,21.044,52.661,19.057,20.549,52.452,18.525,21.378,51.994,18.936,17.66,51.465,15.028,15.212,54.61,12.149,16.327,54.654,12.308,15.834,54.458,11.746,15.235,54.07,11.449,16.617,54.62,13.024,16.856,54.222,12.039,16.397,54.049,11.493,15.84,53.711,11.158,17.22,53.995,13.412,17.144,54.203,12.713,17.215,53.599,11.898,16.722,53.402,11.336,16.123,53.014,11.039,17.533,53.305,13.342,17.504,53.564,12.614,17.35,52.878,11.906,16.852,52.659,11.391,17.598,52.813,12.61,11.867,54.087,8.41,12.417,53.694,8.122,11.936,53.49,7.605,12.673,53.642,8.809,6.4,56.975,12.735,6.913,57.352,12.373,6.377,57.044,12.005,5.951,56.562,12.327,7.024,57.178,13.062,7.526,57.462,11.984,7.028,57.244,11.469,6.438,56.812,11.306,5.944,56.303,11.547,5.702,55.879,12.115,5.79,55.675,12.831,7.31,56.584,13.778,7.694,57.07,13.356,7.774,57.398,12.687,8.143,57.288,11.628,7.65,57.092,11.066,7.18,55.542,14.04,7.766,56.045,14.013,8.223,56.563,13.667,8.461,56.995,13.072,8.433,57.253,12.344,8.671,56.856,11.359,8.535,55.796,13.793,8.886,56.264,13.35,9.036,56.629,12.732,8.96,56.837,12.033,8.751,52.352,15.247,0.261,51.726,14.482,0.814,52.073,14.1,0.27,51.76,13.727,0.926,51.895,14.799,1.46,52.039,13.709,0.931,51.797,13.187,0.318,51.324,13.08,1.703,51.957,14.447,-4.568,50.077,14.222,-5.137,49.751,13.832,-4.419,49.904,13.276,-2.569,50.103,15.296,-2.734,51.638,20.41,-2.741,51.379,19.63,-2.983,50.955,20.199,-2.895,50.751,20.914,-2.22,51.277,18.879,-3.74,47.779,20.922,-3.986,44.576,25.272,-4.331,43.936,25.563,-3.761,44.263,25.953,-2.986,44.105,26.325,-2.612,47.068,30.967,-2.356,47.017,31.654,-7.765,54.39,32.714,-8.185,53.913,33.031,-6.607,54.661,32.696,-7.121,54.426,32.188,-7.717,53.966,32.084,-8.167,53.456,32.424,-8.299,53.091,33.077,-7.115,53.66,31.683,-8.56,54.328,35.943,-8.568,54.07,35.164,-6.621,56.086,35.577,-5.956,55.829,35.202,-4.147,57.198,36.594,-2.394,58.149,37.391,-2.729,57.451,38.464,-2.277,57.964,38.123,-1.731,58.201,36.978,-2.246,57.975,36.445,-2.538,56.785,38.878,-1.954,57.293,38.836,-1.557,57.796,38.399,-1.474,58.135,37.707,-1.094,57.912,36.625,-1.582,57.718,36.07,-2.046,56.186,39.008,-0.262,55.972,38.957,0.029,52.601,38.14,0.587,52.94,38.475,1.16,53.392,38.548,1.66,53.89,38.348,0.099,51.996,37.325,0.593,52.192,37.887,1.192,52.58,38.184,1.778,53.083,38.157,0.041,45.236,32.503,-0.65,43.73,30.221,-1.15,43.233,30.421,-0.381,42.984,30.202,-0.838,42.465,30.547,0.345,42.699,30.364,2.178,47.988,27.771,1.264,50.072,32.5,1.281,49.614,31.893,1.15,49.25,32.546,1.386,49.169,33.264,1.711,48.521,33.147,6.708,53.118,37.51,7.156,52.551,37.633,9.172,55.214,36.77,10.104,56.7,35.694,10.328,55.944,35.601,10.566,56.375,35.006,13.638,54.252,32.478,13.721,54.591,31.786,14.415,54.078,32.131,14.632,54.953,29.52,15.319,54.55,29.904,15.291,54.809,29.176,15.894,54.184,29.565,15.819,54.393,28.865,16.178,53.753,28.766,18.255,52.67,26.301,15.9,57.539,20.863,15.877,57.609,20.133,15.452,57.126,20.455,15.562,56.952,21.144,16.099,57.26,21.512,16.528,57.809,19.597,15.938,57.376,19.434,15.679,56.32,21.594,16.246,56.659,21.947,16.551,57.269,18.897,16.68,56.107,22.168,18.615,57.416,18.887,19.497,57.108,19.065,17.986,55.33,17.936,17.513,53.529,16.672,13.919,55.857,15.025,13.39,55.553,14.662,14.547,55.824,14.644,14.033,55.589,14.136,14.784,55.744,15.362,15.354,55.379,15.044,9.003,51.691,18.431,-1.452,54.408,20.291,-0.809,54.445,19.765,-1.404,53.984,19.661,-0.803,53.678,19.26,-2.726,54.924,22.69,-3.22,54.416,22.931,-3.461,53.992,23.499,-3.156,53.795,22.525,-3.394,53.364,23.12,-3.366,53.105,23.848,-3.006,52.466,23.749,-1.812,50.568,22.686,-0.001,47.541,24.511,-0.465,47.084,24.069,0.225,47.226,25.197,0.68,47.741,24.854,-2.229,45.555,24.676,-2.12,45.382,25.358,3.927,50.134,25.482,3.497,49.71,25.072,3.606,49.537,25.754,2.622,51.08,29.006,3.197,50.791,28.47,2.524,58.61,37.759,3.038,58.988,37.397,2.502,58.68,37.029,2.723,58.331,38.408,3.149,58.813,38.086,3.65,59.098,37.008,3.152,58.88,36.493,2.87,57.73,38.843,3.435,58.22,38.803,3.818,58.706,38.381,3.898,59.033,37.712,3.304,57.178,39.064,3.89,57.681,39.037,4.348,58.199,38.692,4.586,58.631,38.096,4.557,58.889,37.368,3.587,56.481,38.945,4.159,56.934,39.018,4.659,57.432,38.818,5.011,57.899,38.375,4.191,56.122,38.654,4.778,56.625,38.627,7.338,59.072,34.929,7.449,58.898,35.618,7.95,59.182,34.54,7.452,58.964,34.025,7.735,58.305,36.335,8.118,58.79,35.913,8.198,59.118,35.244,8.567,59.008,34.184,8.074,58.812,33.622,8.19,57.765,36.569,8.648,58.283,36.224,8.885,58.715,35.628,8.857,58.973,34.9,9.096,58.576,33.915,8.638,58.403,33.369,9.311,57.984,35.907,9.46,58.349,35.289,9.385,58.557,34.589,9.623,56.724,32.285,13.417,55.63,27.403,13.936,55.769,26.342,14.173,55.689,27.06,14.487,55.376,26.055,14.743,55.324,26.742,14.812,54.727,25.937,17.737,58.905,21.365,18.275,59.242,20.994,17.745,58.938,20.631,17.964,58.593,21.991,18.384,59.069,21.674,18.903,59.209,20.613,18.389,58.974,20.105,18.557,58.254,22.325,19.007,58.764,21.985,19.139,59.129,21.331,19.453,58.816,20.326,19.672,58.471,21.686,19.709,58.764,21.013,13.362,55.505,17.714,12.825,55.197,17.346,12.081,54.694,18.62,11.656,54.212,18.942,11.648,53.953,18.162,11.406,53.529,18.73,3.916,58.735,16.571,3.38,58.49,16.041,2.759,58.011,15.933,2.29,57.479,16.287,4.509,58.465,16.242,4.015,58.263,15.694,3.418,57.861,15.435,2.853,57.352,15.525,2.452,56.852,15.942,4.787,58.422,16.954,4.959,57.93,16.034,4.465,57.727,15.486,3.868,57.326,15.227,3.303,56.817,15.317,2.902,56.317,15.734,5.237,57.886,16.746,3.551,55.978,15.704,5.424,57.151,16.737,1.663,56.148,17.707,1.975,55.458,17.636,0.909,56.783,21.083,-2.872,53.639,25.952,-2.379,53.835,26.514,-2.513,53.015,25.811,-2.917,56.348,25.68,-2.379,56.684,25.309,-2.909,56.381,24.946,-3.329,55.904,25.264,-3.22,55.732,25.944,-2.69,56.036,26.306,-2.27,56.512,25.989,-1.751,56.652,24.928,-2.265,56.417,24.42,-2.096,55.697,26.64,-1.647,56.207,26.3,-1.515,56.572,25.646,-0.977,52.94,26.905,-0.908,52.343,26.101,-0.393,52.578,26.609,0.25,52.614,26.083,2.532,55.145,27.944,2.982,54.609,27.737,3.756,54.273,27.968,3.135,53.793,27.86,-3.266,55.243,31.285,-2.621,54.323,30.384,-1.765,54.08,30.338,-1.626,53.292,30.527,-1.184,52.926,30.994,-0.985,52.647,31.643,-4.568,53.553,30.734,-4.536,52.741,30.371,-3.681,52.497,30.324,-3.541,51.709,30.514,-3.099,51.344,30.981,-2.878,50.995,32.359,-2.901,51.064,31.629,-2.644,56.61,32.722,2.355,57.946,34.643,4.436,58.902,33.086,3.907,58.598,32.723,5.064,58.869,32.705,7.396,57.529,30.527,7.947,57.136,30.239,7.465,56.932,29.722,8.272,56.487,30.122,7.758,56.252,29.614,8.72,58.344,26.116,9.287,58.683,26.469,9.122,57.743,26.393,9.721,58.131,26.69,10.307,58.634,26.663,10.004,57.434,26.571,10.577,57.887,26.643,11.077,58.385,26.443,10.426,57.698,22.294,9.124,55.588,21.003,8.546,55.184,20.795,2.397,58.15,21.849,2.822,58.632,21.528,3.109,58.039,22.244,3.492,58.525,21.823,4.021,58.018,22.133,4.259,58.449,21.538,4.685,57.718,21.817,4.834,58.084,21.198,5.147,57.393,21.128,5.212,56.901,20.396,2.007,58.948,19.764,2.521,59.326,19.402,1.985,59.018,19.034,1.559,58.535,19.356,3.133,59.436,19.013,2.635,59.218,18.498,2.046,58.785,18.335,1.552,58.277,18.576,1.31,57.853,19.144,3.382,59.371,19.717,3.751,59.262,18.657,4.04,59.227,19.373,4.568,58.811,19.062,3.936,55.194,25.408,4.356,55.67,25.09,3.934,54.395,25.637,4.53,54.855,25.741,4.355,57.819,30.274,3.857,57.6,29.759,4.972,57.645,29.918,4.479,57.449,29.356,5.042,57.04,29.103,4.484,56.701,28.768,1.778,57.151,29.764,1.182,56.691,29.66,-0.994,57.465,32.154,-0.376,57.514,31.769,-0.912,57.269,31.24,-1.533,56.789,31.131,-0.129,57.43,32.518,-0.874,56.639,30.633,8.4,61.075,24.026,8.937,61.412,23.655,8.408,61.108,23.292,7.988,60.632,23.61,8.097,60.459,24.29,9.051,61.144,22.767,8.455,60.684,22.663,8.006,60.174,23.002,9.635,60.782,22.47,9.057,60.378,22.262,8.538,59.881,22.418,10.746,61.885,24.746,10.435,61.235,25.745,10.856,61.713,25.427,11.365,61.934,24.361,11.005,60.939,26.145,11.473,61.47,25.791,11.611,61.851,25.11,11.958,61.664,24.032,11.463,61.462,23.484,11.452,60.371,26.268,11.95,60.891,26.007,12.232,61.342,25.457,12.235,61.621,24.744,12.408,61.129,23.824,11.914,60.926,23.276,12.4,60.355,25.799,12.682,60.806,25.249,12.685,61.085,24.536,12.626,60.434,23.778,12.09,60.189,23.249,12.735,59.97,25.208,12.872,60.35,24.527,12.569,59.717,23.904,12.678,59.544,24.585,6.433,45.256,7.579,6.615,44.74,6.507,5.889,43.937,6.326,6.626,44.791,6.485,6.443,45.3,7.559,4.697,45.973,5.737,6.462,45.877,7.184,5.316,46.372,5.952,4.559,46.442,6.053,6.322,45.712,7.838,5.511,47.319,7.612,5.469,47.312,7.714,6.28,45.705,7.938,4.905,46.94,8.536,4.887,46.906,8.565,6.265,45.675,7.964,4.249,45.017,8.296,4.363,44.525,8.011,6.379,45.183,7.68,5.834,43.864,6.427,4.182,44.465,7.868,5.653,43.804,6.284,4.418,45.772,5.711,4.682,45.936,5.717,5.885,43.948,6.289,6.611,44.754,6.465,3.715,45.684,6.485,3.648,45.108,7.402,4.101,45.073,8.245,4.326,46.464,6.139,4.719,46.97,8.507,4.804,46.991,8.488,4.411,46.485,6.121,5.379,47.357,7.672,6.132,46.301,6.413,6.18,46.668,7.861,6.151,46.663,7.932,5.826,46.442,8.528,5.815,46.421,8.546,5.78,45.169,8.358,5.025,44.923,8.482,5.839,44.916,8.212,5.084,44.669,8.336,6.438,44.359,7.082,6.473,44.406,7.017,5.325,43.588,7.066,4.764,43.84,7.671,5.253,43.565,7.01,4.692,43.817,7.614,5.447,44.344,5.545,4.963,45.115,5.321,5.515,44.387,5.547,5.044,45.166,5.323,6.309,45.272,5.751,5.555,45.734,5.459,6.315,45.287,5.759,5.561,45.749,5.467,4.295,47.08,6.545,4.367,47.414,7.2,4.523,47.374,7.92,4.33,47.089,6.538,4.384,47.418,7.196,4.558,47.382,7.912,4.748,47.084,6.409,5.105,47.405,6.98,4.844,47.057,6.365,5.195,47.379,6.939,4.424,46.353,8.787,4.197,45.655,8.69,4.533,46.311,8.825,4.299,45.617,8.726,6.143,46.151,6.11,6.697,45.432,6.702,5.902,46.968,6.662,5.428,46.767,6.152,6.155,46.917,7.339,6.456,46.25,7.254,4.607,45.217,8.675,5.176,45.616,8.881,5.688,46.106,8.727,4.833,44.24,8.11,5.408,43.883,7.817,5.996,44.337,7.92,6.042,43.919,7.299,4.02,45.501,5.745,3.576,44.998,6.08,3.446,44.639,6.724,3.679,44.56,7.432,4.101,44.71,5.503,3.785,44.26,5.975,3.747,43.971,6.639,4.0,43.92,7.316,4.883,44.474,5.346,4.44,43.971,5.681,4.31,43.612,6.325,4.543,43.533,7.033,5.054,43.67,5.988,3.803,47.095,7.837,3.811,47.127,7.113,3.397,46.658,7.426,3.505,46.488,8.096,4.027,46.787,8.454,3.858,46.709,6.492,3.415,46.207,6.827,3.285,45.847,7.471,3.518,45.768,8.179,6.187,43.968,13.582,6.095,42.345,14.884,6.795,43.982,15.316,6.078,42.337,14.873,6.17,43.96,13.57,5.142,44.346,13.628,5.153,44.372,13.642,6.181,43.986,13.584,6.789,44.001,15.318,5.025,44.726,13.845,6.661,44.355,15.522,5.793,44.809,16.345,5.787,44.681,16.41,6.655,44.227,15.587,5.348,43.522,16.546,5.416,43.287,16.471,6.733,43.96,15.502,6.033,42.323,15.07,5.306,43.23,16.462,5.907,42.258,15.059,4.505,42.655,14.211,4.616,42.706,14.048,6.033,42.317,14.874,5.097,44.325,13.63,5.825,42.769,13.69,5.636,43.176,13.438,4.397,42.794,14.148,4.847,44.426,13.743,3.815,44.424,15.271,3.973,44.729,15.379,5.005,44.731,13.851,5.773,44.814,16.351,5.306,45.398,14.296,5.761,45.447,15.774,3.941,44.614,15.448,5.742,44.7,16.42,5.308,43.538,16.554,3.791,44.343,15.375,5.176,43.299,16.49,4.376,42.724,14.239,4.704,42.484,15.925,4.465,42.313,15.255,6.417,43.25,13.751,6.383,42.648,14.234,6.406,43.245,13.743,6.372,42.643,14.227,6.793,44.101,14.342,6.797,44.087,14.341,6.625,44.521,14.57,5.986,44.666,13.916,6.571,44.67,14.656,5.932,44.815,14.002,6.203,43.821,16.302,6.258,43.633,16.242,6.686,42.996,15.344,6.733,43.013,15.203,5.813,42.561,15.977,5.726,42.516,15.97,5.202,42.198,14.521,5.295,42.242,14.385,4.695,43.498,13.583,4.516,43.57,13.665,4.109,44.645,14.358,4.228,44.875,14.439,5.58,45.65,15.013,5.037,44.986,16.339,4.372,44.955,15.98,5.015,44.907,16.387,4.35,44.875,16.028,4.623,43.871,16.514,4.117,44.27,16.105,4.536,43.715,16.472,4.024,44.101,16.06,3.819,43.199,14.455,3.603,43.798,14.875,3.833,43.245,14.395,3.617,43.848,14.811,6.711,43.211,14.123,6.819,43.041,14.794,6.144,45.22,14.514,6.397,45.169,15.191,6.033,44.207,16.44,6.251,42.95,16.051,4.936,42.152,15.429,5.053,42.693,13.754,3.754,43.895,14.352,4.419,45.316,15.549,4.948,45.648,15.182,4.427,45.348,14.825,5.056,45.478,15.853,5.172,44.475,16.615,3.582,43.395,15.177,3.815,43.316,15.885,3.884,42.728,15.092,4.136,42.677,15.769,6.645,46.31,13.966,6.096,46.255,16.267,6.189,46.895,16.357,5.994,46.127,16.24,6.543,46.181,13.938,5.226,46.044,13.739,5.219,46.351,13.569,6.536,46.489,13.768,5.689,48.474,14.323,5.745,48.485,14.368,6.599,46.502,13.818,6.719,48.023,14.23,6.841,47.979,14.356,6.721,46.458,13.944,6.265,47.043,16.336,6.784,48.046,14.371,6.208,47.109,16.351,6.395,48.449,14.717,6.332,48.48,14.735,6.145,47.14,16.369,5.747,48.533,14.51,5.696,48.54,14.525,6.088,47.147,16.387,5.58,47.507,16.427,5.433,47.305,16.478,5.923,46.921,16.445,5.831,46.282,16.354,5.305,47.253,16.509,5.686,46.223,16.388,3.886,46.138,15.416,3.927,46.019,15.35,5.728,46.104,16.322,4.96,46.021,13.822,5.761,45.447,15.774,5.306,45.398,14.296,3.787,46.257,15.255,4.819,46.259,13.727,3.636,47.015,14.474,3.668,47.169,14.371,4.852,46.417,13.62,5.363,48.533,14.369,3.597,47.26,14.56,5.297,48.616,14.543,5.18,47.584,16.444,3.959,47.481,16.134,3.726,47.435,15.872,3.598,47.196,14.57,5.182,47.525,16.453,3.514,47.023,15.179,3.53,46.924,15.197,5.197,47.431,16.47,3.765,46.337,15.373,3.529,46.91,15.15,3.763,46.322,15.322,3.614,47.078,14.54,6.356,48.455,14.667,5.769,48.511,14.448,6.745,48.052,14.32,6.88,45.895,14.755,6.666,45.873,15.651,6.836,45.839,14.743,6.622,45.818,15.64,6.536,47.315,13.588,6.215,48.068,13.799,6.568,47.322,13.614,6.244,48.074,13.822,6.848,47.289,13.871,6.951,47.252,13.978,7.091,46.298,14.594,7.129,46.366,15.355,6.823,46.642,16.0,7.066,46.25,14.601,7.123,46.355,15.357,6.798,46.594,16.007,6.798,47.61,15.959,7.018,47.967,15.202,6.767,47.646,15.967,6.987,48.003,15.21,6.465,47.812,16.093,6.535,48.312,15.484,6.424,47.832,16.105,6.494,48.332,15.496,6.157,48.02,16.113,6.002,48.562,15.39,6.136,48.023,16.12,5.983,48.564,15.396,4.977,45.963,16.365,4.312,45.931,16.006,5.006,45.88,16.319,4.341,45.849,15.96,5.554,45.186,15.036,4.194,45.849,14.417,4.088,46.029,14.345,4.071,46.569,13.922,4.098,46.699,13.834,5.071,47.231,13.349,5.267,48.045,13.637,5.23,47.202,13.327,5.411,48.019,13.617,4.575,48.429,14.173,3.938,47.916,14.174,4.538,48.475,14.27,3.899,47.965,14.276,5.44,48.654,15.343,5.397,48.266,16.057,5.644,48.615,15.334,5.6,48.227,16.048,4.389,47.366,16.411,3.764,47.178,15.934,4.398,47.314,16.421,3.772,47.124,15.943,4.546,46.991,16.486,4.013,46.583,16.077,4.614,46.88,16.51,4.085,46.464,16.103,5.893,45.389,14.253,6.0,45.219,14.923,6.53,45.551,14.557,6.01,47.853,13.522,5.71,46.729,13.313,7.23,46.922,15.577,7.36,47.282,14.932,4.684,45.291,14.734,4.917,45.212,15.442,3.913,46.355,14.219,4.207,47.873,13.802,4.288,47.081,13.561,4.023,48.422,15.487,4.553,48.754,15.121,4.031,48.454,14.763,3.617,47.984,15.076,3.724,47.814,15.747,4.246,48.114,16.104,4.66,48.584,15.791,-2.598,39.205,13.153,-1.921,37.641,12.205,-3.006,36.96,14.376,-1.997,37.647,12.141,-2.674,39.211,13.089,-4.303,37.914,13.244,-4.302,37.919,13.302,-2.672,39.216,13.147,-3.081,36.97,14.37,-2.74,38.981,14.088,-2.94,37.878,14.689,-4.308,37.853,13.25,-3.087,36.904,14.318,-2.001,37.585,12.147,-3.013,37.655,11.804,-3.941,37.763,12.248,-2.057,38.659,12.435,-2.111,38.663,12.39,-3.444,39.126,13.128,-4.049,38.644,13.185,-3.443,39.129,13.167,-4.047,38.648,13.224,-3.966,37.306,14.027,-3.971,37.257,13.988,-2.514,36.587,13.906,-2.063,36.618,13.277,-1.873,36.989,12.624,-2.49,36.603,13.923,-2.06,36.62,13.279,-1.849,37.005,12.641,-2.385,38.713,14.31,-2.255,39.072,13.665,-2.559,37.485,14.641,-2.047,37.974,14.487,-1.73,38.424,14.015,-1.693,38.713,13.351,-1.625,38.124,12.558,-1.965,37.183,14.246,-1.522,37.685,13.911,-1.392,38.045,13.266,-1.504,37.234,13.312,-3.128,38.93,12.346,-3.715,38.476,12.243,-2.553,38.573,12.053,-3.122,38.174,11.848,-3.767,38.87,13.689,-4.066,38.263,13.948,-3.544,38.562,14.306,-3.13,39.032,13.993,-3.546,37.774,14.532,-3.958,37.127,12.484,-3.995,36.839,13.147,-3.743,36.788,13.825,-3.303,36.838,12.189,-3.433,36.479,12.834,-3.2,36.4,13.542,-2.274,37.007,12.183,-2.689,36.537,12.496,-2.581,36.368,13.167,-10.727,43.102,19.671,-9.372,43.221,21.122,-11.058,43.079,22.18,-9.261,43.061,21.029,-10.629,42.961,19.589,-9.824,41.895,19.587,-9.89,41.846,19.569,-10.687,42.918,19.574,-10.281,41.318,19.709,-10.998,41.126,19.454,-11.361,42.737,19.334,-13.102,41.205,20.177,-13.254,41.435,20.273,-11.496,42.939,19.418,-13.253,42.316,19.628,-13.353,42.636,19.727,-11.589,43.238,19.511,-13.123,43.878,20.167,-13.082,43.933,20.21,-11.547,43.294,19.554,-11.937,43.284,22.054,-11.12,43.655,20.245,-11.295,43.663,21.488,-13.217,43.86,20.268,-12.082,43.206,22.116,-13.453,42.617,19.835,-12.472,43.3,22.15,-13.695,42.774,20.115,-13.494,42.512,19.886,-12.123,43.1,22.168,-13.51,41.643,20.548,-12.735,42.479,22.321,-13.485,41.692,21.474,-13.322,41.398,20.61,-11.946,42.869,22.226,-12.948,42.072,22.25,-12.922,42.04,22.263,-11.921,42.838,22.238,-12.497,41.096,21.971,-11.41,40.676,22.551,-10.898,42.443,22.784,-10.467,40.321,22.968,-10.211,40.388,23.144,-10.642,42.51,22.96,-9.192,42.759,22.472,-9.365,42.968,22.048,-10.825,42.731,22.513,-9.125,42.851,21.476,-9.014,42.707,22.275,-8.73,42.557,21.73,-8.405,40.688,21.492,-8.461,40.696,21.342,-8.795,42.567,21.559,-9.563,40.518,20.659,-9.885,40.805,20.267,-9.137,42.872,21.143,-10.103,41.188,19.832,-10.134,41.231,19.8,-9.17,42.918,21.109,-9.733,41.753,19.666,-10.4,40.534,20.284,-10.614,40.919,19.849,-11.893,40.715,21.948,-12.238,40.716,21.735,-10.937,40.92,19.65,-13.036,40.985,20.387,-12.503,41.095,21.967,-13.301,41.363,20.619,-12.928,42.038,22.26,-9.933,40.366,20.713,-11.397,40.536,22.404,-10.454,40.189,22.829,-9.613,40.339,20.79,-10.134,40.163,22.906,-8.508,40.529,21.464,-8.314,40.628,21.706,-9.926,40.268,23.165,-8.766,40.314,23.292,-8.767,40.321,23.301,-9.927,40.275,23.174,-8.922,42.653,22.5,-9.965,40.692,23.531,-9.149,42.601,22.969,-8.356,41.885,23.315,-8.328,41.531,23.442,-8.761,40.319,23.295,-8.916,42.651,22.494,-8.309,40.633,21.708,-10.093,43.359,19.922,-9.597,43.403,20.453,-10.024,43.261,19.864,-9.523,43.297,20.392,-10.475,42.097,19.371,-11.016,41.952,19.179,-12.026,42.521,19.075,-12.644,42.112,19.16,-13.04,41.628,19.566,-12.064,42.578,19.099,-12.651,42.122,19.164,-13.089,41.702,19.597,-12.46,42.76,19.198,-12.526,42.971,19.263,-12.369,43.773,19.599,-12.34,43.812,19.629,-12.464,43.892,21.735,-12.901,44.14,21.031,-12.526,43.858,21.762,-12.96,44.108,21.056,-13.341,43.443,21.758,-13.825,43.235,20.952,-12.213,41.915,22.452,-11.439,41.616,22.864,-10.959,41.777,23.253,-10.797,40.979,23.322,-10.817,41.814,23.352,-10.655,41.016,23.421,-9.935,42.86,22.778,-10.081,43.035,22.422,-10.214,43.095,22.341,-9.591,43.139,21.961,-10.38,43.342,22.105,-9.761,43.394,21.717,-8.23,41.701,21.46,-8.272,41.707,21.35,-8.712,42.029,20.815,-9.011,41.23,20.464,-8.845,42.148,20.653,-9.136,41.342,20.312,-9.018,42.407,20.372,-9.393,41.754,19.863,-9.032,42.426,20.357,-9.406,41.772,19.85,-9.144,42.449,20.176,-9.209,42.55,20.119,-10.97,40.355,20.182,-11.375,40.104,20.755,-11.715,40.236,21.405,-11.079,40.356,20.115,-11.41,40.104,20.733,-11.837,40.237,21.33,-11.725,40.65,19.514,-12.522,40.675,19.794,-11.758,40.762,19.407,-12.556,40.792,19.682,-12.828,40.72,21.148,-13.051,41.038,21.343,-13.397,41.57,21.558,-13.413,41.596,21.55,-11.431,40.166,21.485,-10.864,40.097,20.852,-11.171,40.073,21.724,-10.614,40.008,21.081,-10.246,39.784,22.143,-10.05,39.85,21.345,-10.071,39.769,22.185,-9.875,39.836,21.387,-9.429,39.865,22.578,-8.814,40.004,22.033,-9.326,39.917,22.706,-8.717,40.053,22.154,-9.707,41.414,23.797,-9.399,42.135,23.585,-8.323,42.23,22.042,-8.091,41.461,21.743,-8.363,42.253,21.951,-8.132,41.484,21.652,-8.346,40.27,22.514,-8.35,40.266,22.513,-10.826,43.758,21.662,-10.315,43.895,20.617,-10.082,43.816,21.324,-12.588,41.695,19.102,-11.806,41.459,18.945,-12.563,44.309,20.759,-11.944,44.277,20.384,-11.841,43.838,21.736,-11.711,44.197,21.092,-11.401,43.889,20.101,-13.361,43.831,21.24,-13.735,43.029,21.595,-13.955,42.388,20.97,-13.722,42.309,21.678,-13.215,42.541,22.179,-10.469,42.234,23.422,-10.471,41.446,23.648,-9.883,41.9,23.751,-8.443,41.728,20.981,-12.266,40.213,20.29,-11.521,40.271,19.952,-9.353,39.738,21.932,-8.913,42.194,23.471,-9.086,40.966,23.802,-8.208,42.191,22.501,-8.037,41.163,23.061,-7.907,41.523,22.416,-8.02,40.712,22.462,2.655,33.489,7.69,1.59,32.856,8.642,2.315,34.325,9.448,1.371,32.682,8.274,2.449,33.325,7.344,0.09,34.451,6.906,2.287,33.462,6.815,0.484,34.327,6.441,0.117,34.508,6.909,2.473,33.377,7.346,0.421,35.017,7.095,2.464,33.81,6.934,0.952,35.051,6.717,0.543,35.185,7.208,2.584,33.529,7.448,2.322,35.343,7.515,2.425,35.347,7.764,2.677,33.533,7.674,2.336,34.368,9.431,2.233,35.595,7.902,2.163,34.592,9.556,0.454,35.436,7.596,2.112,34.931,9.586,0.559,35.729,7.813,0.357,35.436,7.68,2.075,34.592,9.633,0.842,35.579,9.704,0.706,35.394,9.838,1.956,34.43,9.75,1.551,34.125,10.051,1.592,34.031,10.01,1.995,34.342,9.712,1.249,32.874,8.922,1.522,34.018,10.046,1.179,32.861,8.959,-0.543,34.285,9.141,-0.641,34.202,8.839,1.087,32.783,8.677,0.099,35.065,7.512,0.979,32.705,8.364,0.068,34.798,7.282,0.338,35.019,7.223,1.316,32.739,8.399,0.034,34.511,7.036,0.554,32.702,8.0,-0.165,33.67,7.245,-0.561,34.479,9.063,0.177,35.335,7.73,0.657,35.474,9.755,-0.537,34.385,9.157,0.681,35.379,9.849,1.528,34.111,10.061,0.507,32.718,7.972,-0.159,33.586,7.287,2.231,32.962,8.147,2.059,32.824,7.858,1.468,33.879,6.197,1.864,34.557,6.467,2.778,34.487,7.386,2.848,34.489,7.556,2.865,33.812,8.688,2.853,33.786,8.698,2.667,35.077,8.741,2.547,35.232,8.828,1.789,35.805,9.218,1.164,36.126,8.505,1.531,35.16,9.889,1.427,35.018,9.993,1.835,33.408,9.488,2.067,33.396,9.296,1.527,33.274,9.622,1.471,33.264,9.651,0.347,32.926,9.134,-0.308,33.467,9.203,0.299,32.885,8.985,-0.359,33.424,9.046,-0.529,34.792,8.135,-0.467,35.007,8.308,0.163,35.755,8.38,0.341,35.807,9.132,0.282,35.823,8.347,0.462,35.875,9.098,-0.151,35.09,9.595,-0.131,35.015,9.67,1.157,34.817,10.168,1.178,34.829,10.159,0.678,34.11,10.24,-0.111,34.215,9.894,0.675,34.064,10.232,-0.114,34.166,9.886,1.36,35.76,7.524,1.427,35.571,7.232,2.446,33.142,8.58,0.455,33.726,6.38,0.138,33.276,6.852,1.236,33.49,6.223,0.793,32.987,6.558,0.663,32.628,7.202,1.822,33.156,6.552,1.407,32.686,6.865,1.515,32.517,7.535,2.045,32.848,7.169,2.277,35.22,7.15,1.803,35.019,6.64,2.598,34.58,7.034,3.016,34.508,8.189,1.574,36.059,8.129,1.807,35.98,8.837,0.782,36.091,8.656,1.504,35.621,9.633,0.47,33.472,9.983,1.045,33.115,9.691,-0.6,34.205,7.711,-0.73,33.845,8.356,-0.391,33.466,7.607,-0.428,33.177,8.27,-0.071,35.577,9.112,7.219,36.044,18.73,8.023,36.281,20.574,8.761,34.808,18.843,7.856,36.945,20.562,7.052,36.708,18.718,7.74,38.562,19.526,7.789,38.691,19.19,7.101,36.836,18.382,9.19,37.144,17.642,9.361,36.428,17.817,7.277,36.1,18.562,8.816,34.863,18.68,9.57,36.419,17.931,9.025,34.853,18.794,10.039,36.208,18.262,10.088,36.193,18.316,9.074,34.837,18.847,10.262,36.216,20.015,10.197,36.172,20.132,9.012,34.795,18.961,8.282,36.267,20.695,10.307,37.111,20.347,8.392,37.206,20.91,8.276,38.823,19.874,8.659,38.978,20.26,10.302,37.592,20.642,10.567,37.377,20.192,8.537,39.089,19.72,10.581,38.86,18.837,10.438,38.787,18.524,8.393,39.016,19.407,9.777,37.46,17.852,8.351,38.89,18.518,9.127,38.02,17.661,10.582,38.665,18.623,9.917,37.341,17.948,10.568,37.181,19.978,10.272,36.447,20.011,9.63,36.628,17.98,10.098,36.418,18.311,7.122,36.137,19.463,7.418,36.225,20.142,7.004,36.605,19.455,7.3,36.692,20.134,6.871,37.462,18.909,7.128,38.156,19.211,6.902,37.545,18.694,7.16,38.238,18.996,7.657,36.634,17.771,8.451,36.75,17.49,7.753,36.231,17.87,8.546,36.356,17.586,7.814,35.178,18.473,7.776,35.141,18.586,9.253,35.45,17.998,9.405,35.443,18.081,9.692,35.336,18.337,9.73,35.324,18.378,9.747,34.943,19.289,10.193,35.46,19.728,9.709,34.916,19.359,10.154,35.434,19.798,8.537,34.789,19.767,8.251,35.365,20.447,8.442,34.794,19.723,8.153,35.371,20.401,8.994,36.285,20.869,9.697,36.25,20.662,9.073,36.96,21.023,9.776,36.925,20.817,8.027,38.122,20.593,7.641,37.934,20.343,9.23,38.745,20.819,9.856,38.216,20.965,9.143,39.476,19.265,9.921,39.389,18.93,9.063,39.435,19.089,9.84,39.348,18.753,10.28,38.136,17.993,10.397,38.037,18.073,10.429,37.004,18.462,10.672,36.945,19.221,10.247,36.554,18.482,10.487,36.487,19.242,10.472,36.396,19.132,10.464,36.214,19.136,10.946,37.677,19.583,10.951,38.222,19.085,10.945,37.817,19.736,10.95,38.362,19.238,7.359,35.818,20.012,7.428,35.229,19.219,7.68,35.178,19.897,7.054,37.695,19.908,6.834,37.054,19.283,7.446,38.558,18.338,8.08,38.594,17.82,7.492,38.14,17.718,7.049,37.638,18.053,8.655,38.237,17.528,8.086,37.839,17.322,7.574,37.349,17.476,8.356,37.113,17.319,8.663,35.829,17.633,8.22,35.326,17.968,10.234,35.749,18.621,10.341,35.579,19.291,9.935,35.142,18.88,8.606,35.354,20.618,9.175,35.753,20.824,9.181,34.997,20.326,9.768,35.451,20.429,8.511,38.45,20.873,8.509,37.662,21.099,9.096,38.116,21.202,9.366,37.391,21.198,9.271,39.553,19.62,9.379,39.383,20.291,9.994,39.083,20.597,10.124,39.442,19.953,10.332,38.344,20.775,10.648,38.793,20.303,10.686,39.082,19.639,10.857,38.055,20.198,9.134,39.162,18.198,9.709,38.805,17.906,10.768,37.433,18.555,10.876,37.263,19.226,-7.719,33.976,18.102,-7.853,32.43,16.38,-7.409,32.477,19.007,-7.864,32.433,16.378,-7.731,33.979,18.1,-8.959,32.812,18.785,-8.954,32.81,18.789,-7.726,33.977,18.105,-7.415,32.477,19.01,-8.959,32.786,18.789,-7.42,32.454,19.01,-7.864,32.405,16.382,-6.999,32.229,18.628,-7.314,32.182,16.632,-8.486,32.434,16.446,-9.308,32.729,18.313,-7.608,33.882,17.22,-7.659,33.285,16.555,-7.613,33.883,17.219,-7.664,33.287,16.554,-8.446,33.632,18.663,-8.442,33.63,18.667,-7.438,33.397,18.793,-7.434,33.396,18.791,-8.22,32.642,19.145,-8.224,32.622,19.144,-6.773,32.016,17.574,-9.311,32.557,17.201,-7.179,33.59,17.128,-6.964,33.25,18.469,-6.927,33.539,17.805,-6.858,32.951,17.012,-7.366,32.719,16.511,-6.756,32.512,18.364,-6.626,32.872,17.72,-8.891,33.684,18.149,-8.361,34.016,17.783,-8.883,33.716,17.425,-9.297,33.246,17.738,-8.249,33.752,16.907,-8.836,33.298,16.805,-8.243,32.996,16.409,-8.074,33.038,19.104,-9.177,32.309,18.499,-9.072,32.009,17.043,-9.109,31.72,17.706,-8.856,31.669,18.384,-8.382,31.87,18.893,-8.417,31.72,16.748,-8.547,31.36,17.393,-8.314,31.281,18.1,-7.807,31.513,18.601,-7.802,31.419,17.055,-7.695,31.249,17.725,-7.173,31.549,18.083,-7.165,31.581,17.359,-7.83,38.923,15.891,-9.568,37.65,16.195,-7.948,37.01,17.603,-9.589,37.682,16.209,-7.852,38.955,15.905,-8.949,38.751,18.048,-8.915,38.747,18.065,-7.815,38.951,15.923,-7.933,37.037,17.634,-7.172,38.211,16.23,-7.233,37.364,16.991,-8.948,38.73,18.06,-7.967,37.019,17.629,-9.587,37.66,16.222,-8.518,38.623,15.564,-9.171,38.145,15.678,-8.531,38.643,15.573,-9.184,38.165,15.687,-8.137,39.495,16.636,-8.57,39.415,17.48,-8.125,39.494,16.641,-8.559,39.413,17.485,-8.256,37.478,18.137,-8.617,38.107,18.295,-8.279,37.466,18.133,-8.64,38.095,18.291,-8.66,36.763,17.205,-9.276,37.006,16.67,-8.649,36.758,17.191,-9.265,37.001,16.656,-9.85,38.037,16.927,-9.608,38.443,17.623,-9.851,38.05,16.92,-9.608,38.455,17.617,-7.776,38.166,15.615,-8.364,37.712,15.513,-8.807,37.209,15.848,-7.256,37.678,16.199,-7.778,37.378,15.842,-8.192,36.908,16.155,-8.085,36.738,16.825,-7.555,37.07,16.459,-9.319,39.181,17.281,-8.789,39.513,16.915,-9.311,39.214,16.557,-9.725,38.744,16.87,-8.676,39.25,16.039,-9.264,38.796,15.936,-9.707,38.293,16.271,-8.003,39.035,17.924,-7.873,39.394,17.279,-7.563,39.086,16.288,-7.665,38.296,18.101,-7.348,38.746,17.629,-7.311,39.035,16.965,-7.583,37.505,17.86,-7.14,38.007,17.525,-7.01,38.367,16.88,-9.601,37.815,17.646,-9.094,38.046,18.146,-9.281,37.175,17.53,-8.806,37.376,18.04,2.478,42.331,6.402,3.856,41.039,6.593,5.15,42.58,6.316,3.851,41.037,6.611,2.473,42.329,6.421,3.675,43.239,7.917,3.677,43.261,7.901,2.476,42.354,6.403,5.148,42.601,6.317,2.714,42.388,5.909,4.917,42.589,5.887,3.685,43.239,7.918,5.156,42.578,6.334,3.863,41.037,6.613,3.745,41.2,7.459,3.648,42.478,8.175,2.928,41.417,6.405,2.924,41.415,6.418,2.497,42.783,7.07,2.946,43.123,7.628,2.499,42.798,7.059,2.947,43.137,7.619,3.392,42.472,5.425,4.225,42.548,5.417,5.053,43.087,7.023,4.492,43.34,7.628,5.056,43.079,7.03,4.495,43.331,7.634,5.016,41.844,6.295,4.539,41.276,6.398,5.011,41.846,6.284,4.535,41.278,6.386,2.785,41.83,6.039,3.884,42.044,5.409,3.44,41.541,5.744,4.469,41.71,5.738,4.055,41.24,6.051,2.672,42.126,7.528,3.179,42.357,8.029,2.992,41.486,7.413,2.962,43.497,7.155,3.492,43.829,6.788,2.97,43.53,6.431,2.556,43.06,6.744,3.6,43.659,7.459,4.111,43.797,6.413,3.604,43.565,5.913,3.017,43.111,5.81,4.344,43.718,7.121,4.654,43.409,6.13,4.179,43.208,5.62,4.906,43.358,6.808,4.057,42.086,8.131,4.568,42.575,7.977,4.65,41.784,7.735,5.094,42.287,7.4,4.697,41.366,7.114,5.111,41.835,6.802,2.364,27.419,17.959,3.957,28.527,17.43,3.773,25.966,16.752,3.883,28.592,17.34,2.289,27.484,17.87,2.263,26.984,16.049,2.273,26.918,16.067,2.299,27.416,17.888,3.708,25.963,16.681,2.643,26.94,15.213,4.09,25.985,15.802,4.603,26.178,14.885,5.243,26.179,15.225,4.77,25.986,16.164,6.311,26.521,16.08,6.321,26.526,16.272,4.782,25.991,16.383,4.966,28.553,17.06,4.391,26.287,16.899,4.522,28.096,17.378,5.857,28.297,17.171,6.542,27.2,16.731,6.437,26.677,16.076,5.098,28.725,16.836,6.692,27.72,15.452,6.579,28.071,15.068,4.986,29.076,16.452,6.102,29.329,15.295,5.908,29.511,15.147,4.792,29.258,16.305,4.806,28.442,13.7,4.686,29.587,16.027,4.701,28.859,13.737,4.629,28.435,13.701,4.609,29.25,16.306,3.708,29.612,15.414,3.18,29.264,15.807,4.081,28.902,16.699,2.455,27.286,15.426,3.288,28.799,16.83,2.271,27.774,16.02,3.211,29.324,15.43,2.486,27.344,15.061,3.659,27.774,13.751,3.814,27.42,13.774,2.641,26.99,15.083,4.601,26.227,14.759,4.12,27.564,13.705,4.897,26.366,14.693,4.608,27.945,13.672,4.954,28.005,13.669,5.233,26.425,14.69,6.537,27.804,14.889,6.64,27.642,15.304,5.33,26.273,15.081,6.392,26.608,15.945,4.972,28.284,13.69,6.556,28.091,14.91,6.079,29.349,15.137,3.871,27.882,13.707,4.359,28.263,13.673,3.43,29.436,15.385,2.765,28.035,18.039,3.351,28.442,17.844,2.712,28.081,17.975,3.298,28.488,17.78,1.915,27.175,16.981,1.923,27.126,16.994,2.498,26.528,17.784,3.046,25.962,17.315,2.527,26.529,17.816,3.075,25.964,17.346,2.887,26.17,16.195,3.17,26.186,15.543,5.627,26.006,16.144,5.636,26.01,16.308,4.656,27.036,17.672,5.931,28.841,16.501,6.548,28.452,15.965,5.879,29.004,16.323,6.496,28.615,15.787,5.618,29.422,15.993,5.457,29.573,15.871,4.666,29.944,15.15,4.673,29.657,14.247,2.545,28.496,16.454,2.281,28.067,15.466,2.553,28.807,15.608,2.301,28.103,15.236,2.572,28.844,15.374,2.879,27.407,14.183,2.996,27.141,14.2,3.087,26.369,14.866,3.819,26.084,14.745,3.088,26.339,14.945,3.82,26.054,14.822,4.271,26.662,14.02,4.505,26.771,13.968,4.836,26.969,13.87,5.074,27.011,13.869,6.156,26.871,14.699,6.227,26.76,14.984,5.945,26.274,15.474,5.873,26.197,15.594,6.267,27.916,14.211,5.685,27.99,13.764,6.28,28.117,14.226,5.699,28.188,13.778,6.483,28.784,15.016,6.503,28.766,15.157,5.891,29.262,14.379,5.479,28.865,13.84,5.781,29.366,14.386,5.371,28.968,13.847,3.957,29.007,13.878,3.602,29.455,14.533,4.098,29.096,13.893,3.745,29.546,14.548,3.265,29.254,14.519,3.435,28.653,13.87,3.165,29.203,14.539,3.338,28.603,13.89,2.783,27.22,18.298,3.37,27.674,18.4,3.813,28.176,18.065,3.071,26.55,18.191,3.64,26.948,18.397,4.152,27.438,18.243,3.646,26.192,17.899,4.233,26.646,18.001,4.28,26.228,17.381,2.431,28.428,17.298,2.025,27.991,16.887,2.132,27.821,17.557,2.231,26.394,16.879,2.794,26.034,16.566,5.13,27.717,17.755,5.4,26.992,17.751,5.912,27.482,17.598,5.406,26.236,17.254,5.994,26.69,17.356,6.041,26.272,16.735,6.459,28.231,16.736,6.797,27.853,15.987,5.166,29.889,14.751,5.399,29.81,15.459,4.228,29.908,15.128,4.34,29.644,14.252,2.776,28.969,16.179,2.886,28.688,14.178,2.443,28.185,14.513,2.968,27.896,13.937,3.585,26.522,14.155,6.307,27.358,14.379,5.785,27.059,14.022,6.328,28.578,14.334],[0.4,-0.913,0.083,0.635,-0.539,-0.553,0.665,-0.735,-0.13,0.985,0.109,-0.135,0.807,-0.159,0.569,0.371,-0.924,0.093,-0.205,0.071,-0.976,0.23,0.835,-0.5,-0.127,-0.748,-0.651,-0.136,-0.746,-0.652,0.219,0.838,-0.5,0.605,-0.575,-0.551,0.198,-0.686,-0.7,-0.22,0.717,-0.661,0.832,-0.425,-0.356,0.726,-0.543,-0.423,-0.344,0.58,-0.739,0.026,0.548,-0.836,0.583,-0.656,-0.479,-0.116,0.435,-0.893,0.265,0.381,-0.886,-0.526,-0.829,0.193,-0.796,-0.604,0.035,-0.826,-0.409,-0.388,-0.727,-0.352,0.59,-0.999,0.001,-0.047,-0.663,-0.637,-0.393,-0.478,-0.857,0.193,-0.813,-0.22,0.539,-0.823,-0.537,0.186,0.958,-0.266,-0.105,0.968,0.052,0.247,-0.178,-0.983,-0.034,-0.154,-0.911,-0.383,0.99,0.119,-0.075,0.377,-0.912,0.162,0.271,-0.475,-0.837,0.835,-0.442,-0.328,0.54,-0.647,-0.539,0.358,-0.069,-0.931,0.641,0.176,-0.747,0.601,-0.658,-0.454,0.383,-0.052,-0.922,0.623,-0.642,-0.446,0.345,-0.506,-0.79,0.545,-0.171,-0.821,0.824,-0.307,-0.476,0.609,-0.733,0.304,-0.587,-0.783,-0.205,-0.204,-0.351,-0.914,0.532,-0.148,-0.834,-0.714,-0.639,-0.287,0.415,-0.015,-0.91,0.978,-0.088,-0.188,0.782,-0.619,-0.071,0.203,-0.588,-0.783,0.837,-0.333,-0.433,0.339,-0.877,-0.342,0.394,-0.591,-0.704,0.887,-0.462,-0.003,0.7,-0.695,0.165,0.221,-0.807,-0.548,-0.157,0.205,-0.966,0.053,-0.808,0.587,-0.855,0.083,-0.512,-0.379,-0.912,-0.158,-0.453,-0.759,0.467,-0.941,0.26,0.215,-0.653,-0.696,-0.298,-0.65,-0.711,-0.269,-0.938,0.245,0.246,-0.33,-0.789,-0.518,-0.291,-0.89,-0.351,-0.899,0.144,0.413,-0.812,-0.21,-0.545,-0.445,-0.6,0.664,-0.944,0.039,0.327,-0.896,-0.082,-0.436,-0.217,-0.967,-0.131,-0.36,-0.722,0.59,-0.705,-0.403,0.583,0.899,-0.318,0.301,0.254,0.156,0.955,0.653,-0.443,0.615,0.826,-0.257,0.501,0.414,0.326,0.85,0.552,-0.831,0.077,0.65,-0.76,-0.012,0.512,0.397,0.762,0.722,-0.566,0.399,0.812,-0.505,0.294,0.596,0.453,0.664,-0.569,-0.208,0.795,0.825,-0.471,0.311,-0.556,-0.174,0.813,0.354,-0.93,-0.1,0.807,-0.589,0.053,-0.067,0.194,0.979,-0.508,-0.56,0.654,0.398,-0.875,0.274,0.774,-0.098,0.626,0.041,-0.913,0.405,0.212,-0.874,-0.437,0.958,-0.056,-0.282,0.156,-0.985,-0.075,-0.226,-0.757,-0.613,0.604,0.156,-0.782,0.876,-0.01,-0.483,-0.229,-0.752,-0.618,0.873,-0.006,-0.487,0.795,-0.464,-0.391,-0.316,-0.022,-0.948,0.719,0.164,-0.675,0.811,-0.343,0.474,0.937,-0.35,-0.015,0.175,-0.133,-0.976,-0.288,0.041,-0.957,0.84,-0.281,0.465,0.015,-0.998,-0.059,0.15,-0.9,-0.41,0.977,-0.181,0.11,0.389,-0.921,-0.03,-0.399,-0.322,-0.859,0.062,0.516,-0.854,0.053,-0.246,-0.968,-0.7,-0.366,-0.613,-0.815,0.376,-0.441,-0.684,0.1,-0.723,-0.804,-0.108,-0.585,-0.943,0.154,-0.294,0.781,0.594,-0.194,-0.391,0.748,-0.537,-0.034,0.851,-0.524,-0.958,0.077,-0.275,0.639,0.764,0.09,0.509,-0.298,-0.808,-0.112,-0.049,-0.992,0.063,0.995,-0.081,0.437,-0.867,-0.24,-0.675,0.63,-0.383,-0.402,-0.768,-0.498,-0.057,-0.961,-0.272,-0.412,0.904,-0.112,0.962,0.07,-0.265,0.82,-0.103,-0.563,-0.544,0.744,-0.388,-0.433,0.821,0.374,0.897,-0.442,-0.017,0.599,-0.341,-0.724,0.9,-0.223,-0.374,0.629,-0.778,-0.014,0.35,-0.85,-0.393,0.899,-0.433,-0.058,0.348,-0.637,-0.688,0.622,-0.294,-0.726,0.308,-0.884,-0.352,-0.975,0.221,0.023,-0.568,0.731,-0.377,-0.853,0.399,-0.336,-0.88,0.441,-0.178,-0.594,0.773,-0.221,0.291,-0.616,-0.732,0.307,-0.937,0.168,-0.578,0.453,0.679,-0.964,0.257,-0.072,0.379,-0.795,0.474,-0.897,0.389,0.211,-0.566,-0.778,-0.273,-0.555,-0.811,-0.184,-0.888,0.36,0.287,0.402,-0.763,-0.506,-0.806,-0.221,0.549,0.106,-0.994,0.0,0.489,-0.831,-0.264,-0.806,0.297,0.512,-0.46,-0.884,0.077,-0.458,-0.885,0.08,-0.805,0.296,0.515,-0.742,0.454,-0.494,-0.345,-0.764,-0.545,-0.463,-0.751,0.471,-0.664,-0.687,-0.295,-0.459,-0.885,0.081,-0.742,0.454,-0.493,0.491,-0.831,-0.26,-0.791,-0.284,-0.542,-0.253,-0.855,-0.452,0.377,-0.918,-0.126,-0.865,0.361,-0.348,0.699,-0.652,-0.294,-0.951,-0.28,0.131,0.111,-0.984,0.142,0.598,-0.799,0.069,-0.979,0.196,0.059,-0.528,-0.796,-0.297,-0.52,-0.835,-0.179,-0.969,0.15,0.196,-0.266,-0.127,-0.956,0.247,-0.848,-0.469,-0.456,-0.571,0.683,-0.907,-0.052,-0.418,0.631,-0.365,0.684,-0.523,0.431,0.736,-0.495,-0.688,0.531,-0.307,-0.705,0.64,-0.322,0.413,0.852,-0.657,-0.372,0.655,0.403,-0.883,0.239,0.912,-0.181,0.368,0.665,-0.315,0.677,-0.236,-0.632,0.738,-0.593,-0.306,0.745,-0.19,-0.892,0.411,0.664,-0.319,0.676,0.141,0.186,0.972,-0.251,-0.071,0.965,0.337,-0.939,-0.071,0.729,-0.681,-0.064,0.807,-0.481,0.343,0.765,0.367,0.529,-0.164,0.519,0.839,0.289,-0.582,0.76,0.755,-0.375,0.538,0.302,0.726,0.618,0.078,-0.734,0.674,0.39,-0.79,0.473,0.614,0.67,0.416,0.235,-0.518,0.823,0.37,-0.6,0.709,0.75,0.588,0.303,-0.083,-0.632,0.77,-0.016,-0.699,0.715,0.812,0.527,0.252,-0.818,-0.17,0.549,-0.68,-0.499,0.538,0.95,0.198,0.24,-0.341,0.354,0.871,-0.402,-0.658,0.636,-0.018,0.169,0.985,-0.597,-0.264,0.757,-0.193,-0.797,0.572,0.452,-0.451,0.77,0.087,-0.548,0.832,0.627,-0.501,-0.596,0.907,-0.252,-0.337,0.964,-0.262,0.041,0.367,0.321,-0.873,0.662,0.695,-0.28,0.698,-0.334,-0.633,0.588,-0.3,-0.752,0.533,0.735,-0.418,0.824,-0.313,0.472,0.6,0.233,-0.765,0.839,0.297,0.456,0.626,-0.514,-0.587,0.606,-0.338,-0.721,0.817,0.483,0.315,0.873,-0.257,-0.414,0.814,-0.107,-0.571,0.759,0.631,0.161,0.846,-0.042,0.531,0.92,-0.39,-0.031,0.844,0.231,-0.484,0.993,0.065,-0.094,-0.558,-0.257,-0.789,-0.485,0.198,-0.852,-0.033,0.274,-0.961,-0.617,-0.191,-0.764,-0.091,0.34,-0.936,0.151,-0.808,0.569,-0.678,0.183,-0.712,-0.488,-0.706,0.513,-0.172,-0.682,0.711,-0.369,0.448,-0.814,0.295,-0.117,-0.948,-0.378,-0.882,-0.282,-0.947,-0.209,-0.242,0.514,-0.105,-0.851,0.53,-0.188,-0.827,-0.933,-0.286,-0.219,-0.937,0.188,-0.294,-0.717,-0.569,-0.402,0.199,0.185,-0.962,0.737,-0.643,-0.211,-0.708,-0.539,-0.456,0.744,-0.615,-0.259,0.396,-0.888,-0.235,0.128,-0.594,-0.795,0.476,-0.321,-0.819,0.703,-0.654,0.279,-0.202,-0.889,0.411,-0.464,-0.565,-0.682,0.539,0.481,-0.692,0.481,0.075,-0.873,-0.082,-0.996,-0.029,-0.28,-0.892,0.355,0.455,0.478,-0.752,0.887,-0.068,-0.456,0.189,-0.73,-0.657,-0.243,-0.184,-0.952,0.15,-0.378,-0.914,-0.123,-0.844,-0.523,-0.514,-0.645,-0.565,0.235,-0.666,-0.707,0.406,-0.885,0.226,-0.343,-0.864,0.368,0.019,-0.54,-0.841,0.403,-0.55,-0.732,0.057,-0.874,0.482,0.07,-0.811,-0.581,0.378,-0.728,-0.572,0.366,-0.791,0.491,-0.58,-0.773,-0.255,-0.414,-0.714,0.565,-0.77,-0.375,-0.516,0.752,-0.627,-0.205,0.727,-0.675,-0.124,-0.794,-0.422,-0.438,-0.096,-0.562,-0.822,0.355,-0.932,0.078,-0.326,-0.805,0.495,-0.012,-0.809,-0.588,0.395,-0.791,-0.467,0.066,-0.789,0.611,-0.872,-0.069,-0.485,-0.325,-0.091,-0.941,0.553,-0.808,0.204,-0.571,-0.804,-0.167,0.371,-0.833,-0.411,-0.898,-0.114,-0.425,-0.21,-0.555,-0.805,0.236,-0.955,0.181,-0.38,-0.579,0.721,0.116,-0.956,-0.271,0.839,-0.528,-0.132,0.462,-0.082,0.883,-0.635,-0.667,0.39,-0.526,-0.796,0.3,0.571,-0.21,0.794,-0.552,-0.543,0.633,0.953,0.137,0.271,-0.503,0.107,0.858,0.201,-0.842,0.5,0.855,-0.355,0.379,0.23,0.653,0.722,-0.171,-0.337,0.926,0.889,-0.135,0.438,-0.138,-0.125,0.982,0.768,-0.533,0.355,0.875,-0.313,0.369,-0.039,0.078,0.996,-0.151,-0.663,0.733,0.472,-0.691,0.548,0.584,0.05,0.81,-0.093,-0.309,0.946,0.871,-0.04,0.49,0.305,0.342,0.889,-0.643,-0.472,0.604,-0.505,-0.629,0.592,0.444,0.185,0.877,-0.783,0.208,0.587,-0.631,-0.762,0.145,0.575,-0.65,0.497,-0.03,-0.393,0.919,-0.076,-0.452,0.889,0.532,-0.705,0.469,0.377,-0.433,0.819,-0.501,-0.861,0.093,0.09,-0.484,0.871,-0.72,0.029,0.694,-0.436,-0.887,0.156,-0.664,0.007,0.748,-0.734,-0.422,-0.532,0.026,-0.912,-0.41,0.097,-0.483,0.87,-0.098,-0.089,0.991,0.368,-0.824,-0.431,0.244,-0.001,0.97,-0.357,-0.691,-0.628,0.959,0.274,0.076,0.651,-0.069,-0.756,0.075,-0.283,-0.956,0.643,0.378,0.666,0.838,-0.016,0.545,0.862,0.29,-0.416,0.667,0.684,-0.295,0.998,0.029,-0.055,0.86,0.348,-0.373,0.996,0.087,-0.012,0.928,-0.365,-0.067,0.604,-0.178,-0.776,0.696,0.26,-0.669,0.73,-0.484,-0.482,0.646,-0.136,-0.751,0.772,-0.442,-0.457,0.127,-0.921,-0.367,-0.022,-0.78,-0.626,0.61,-0.287,-0.738,0.878,-0.203,-0.433,-0.074,-0.662,-0.746,0.817,-0.066,-0.573,0.849,-0.007,0.529,-0.024,-0.416,-0.909,0.899,0.239,0.366,0.188,-0.977,-0.102,-0.186,-0.464,-0.866,0.525,0.752,-0.398,0.797,-0.6,-0.065,0.367,-0.787,-0.495,0.111,0.572,-0.813,0.4,-0.681,0.614,0.287,0.147,-0.946,0.515,-0.839,0.177,0.316,-0.774,0.549,0.027,0.479,-0.878,0.899,-0.029,0.437,0.16,-0.9,-0.406,0.718,-0.176,-0.673,0.818,-0.442,-0.368,0.459,-0.743,-0.487,0.334,-0.497,-0.801,0.75,-0.638,-0.176,-0.39,-0.556,0.734,-0.894,-0.409,0.18,0.819,-0.571,0.059,0.915,-0.025,0.403,-0.783,0.226,0.58,-0.588,-0.066,0.806,-0.576,-0.05,0.816,-0.77,0.243,0.59,-0.463,-0.737,-0.492,-0.404,-0.824,-0.397,-0.703,0.145,0.696,-0.745,-0.565,-0.354,-0.634,-0.732,-0.249,-0.579,-0.042,0.814,-0.112,0.523,-0.845,-0.832,0.32,0.454,-0.559,0.65,-0.515,-0.719,-0.669,-0.189,-0.207,0.594,-0.778,0.844,0.123,-0.522,-0.76,-0.606,-0.234,0.802,0.186,-0.567,-0.419,-0.865,-0.277,-0.54,-0.753,-0.377,0.682,0.298,-0.668,0.852,-0.026,0.522,0.352,-0.854,0.384,0.163,-0.561,-0.811,0.737,-0.623,0.263,-0.201,-0.555,-0.808,0.183,-0.324,-0.928,0.521,-0.51,-0.684,-0.344,-0.917,0.202,-0.681,-0.731,-0.042,0.455,0.106,-0.884,-0.56,-0.817,0.14,0.222,0.214,-0.951,0.592,-0.003,-0.806,0.065,-0.885,-0.461,-0.347,-0.737,-0.579,-0.392,-0.385,-0.835,-0.002,-0.911,-0.413,-0.465,-0.414,-0.783,-0.103,-0.241,-0.965,-0.522,-0.83,-0.196,-0.664,-0.154,-0.731,0.208,-0.307,-0.929,0.275,-0.949,0.156,-0.602,-0.749,0.275,0.563,-0.662,-0.495,-0.585,-0.786,-0.202,-0.234,-0.511,-0.827,-0.299,-0.806,-0.51,-0.888,-0.386,-0.249,-0.817,-0.096,-0.568,-0.604,-0.747,-0.278,-0.726,-0.487,0.486,-0.949,0.185,0.256,0.364,-0.728,-0.581,-0.276,-0.603,0.748,0.064,-0.849,0.524,0.605,-0.781,-0.157,-0.688,0.128,0.714,-0.222,-0.603,-0.766,-0.15,-0.705,-0.693,-0.617,0.026,0.787,-0.361,-0.315,-0.878,-0.145,-0.595,-0.79,-0.384,-0.276,0.881,-0.694,0.122,-0.71,-0.333,-0.327,-0.884,-0.049,-0.693,0.719,-0.815,-0.578,-0.04,0.505,-0.742,-0.441,-0.095,-0.935,0.341,-0.498,-0.812,-0.304,0.593,-0.625,0.507,-0.415,-0.704,0.576,-0.751,-0.227,-0.62,-0.665,-0.313,-0.679,-0.322,-0.796,0.512,-0.852,-0.522,0.051,0.379,-0.753,-0.538,0.192,-0.962,0.192,0.072,-0.963,-0.26,0.745,-0.664,-0.067,0.438,-0.874,0.211,0.275,-0.654,-0.705,0.071,0.997,-0.025,0.262,0.545,0.796,0.471,0.879,0.077,0.051,0.998,0.022,-0.123,0.655,0.745,0.184,0.865,0.467,-0.09,0.966,0.242,-0.397,0.756,0.52,0.154,0.209,0.966,0.551,0.436,0.711,-0.056,0.952,0.301,-0.847,0.003,0.532,0.533,0.506,0.678,-0.863,0.065,0.502,0.209,-0.961,0.181,0.302,-0.902,0.307,-0.773,0.122,0.623,-0.499,-0.814,-0.299,0.433,-0.893,0.121,0.059,0.051,0.997,-0.094,-0.339,0.936,0.958,-0.278,0.072,0.392,0.231,0.891,0.407,-0.889,-0.208,0.471,-0.846,-0.252,0.46,0.278,0.843,-0.023,-0.83,0.558,0.266,-0.904,0.336,0.772,0.198,0.604,-0.246,-0.189,0.951,0.793,-0.516,0.324,0.281,0.198,0.939,-0.607,-0.782,-0.142,-0.063,-0.844,-0.532,0.825,0.136,0.549,-0.689,-0.296,0.662,0.085,-0.899,-0.43,-0.541,-0.351,0.765,-0.863,0.068,-0.5,-0.779,-0.183,-0.6,-0.468,-0.566,0.679,-0.909,0.005,0.418,-0.942,-0.061,0.331,-0.499,-0.627,0.599,-0.776,0.211,0.595,-0.847,-0.258,0.466,-0.674,0.001,0.739,-0.939,0.341,-0.031,-0.844,-0.25,0.475,-0.937,0.349,-0.022,-0.71,-0.454,-0.539,-0.221,-0.847,0.483,-0.516,0.011,0.856,-0.844,0.443,0.302,-0.402,-0.716,-0.571,-0.136,-0.985,0.105,-0.488,-0.853,-0.185,0.028,-0.732,-0.681,0.337,-0.874,-0.35,-0.39,-0.745,-0.541,0.256,-0.967,-0.007,-0.164,-0.978,0.127,0.392,-0.837,-0.381,0.803,-0.567,0.183,0.217,-0.728,0.651,-0.207,-0.608,-0.766,0.303,-0.326,-0.895,0.727,-0.446,0.522,0.09,-0.7,-0.708,0.17,0.201,-0.965,0.814,0.526,0.245,0.716,-0.257,-0.649,0.472,0.029,-0.881,0.551,0.835,-0.006,0.995,-0.098,-0.012,0.928,-0.127,-0.35,0.484,0.805,-0.344,0.988,0.151,0.005,0.582,-0.548,-0.601,0.045,0.051,-0.998,0.811,0.292,0.506,0.496,-0.204,-0.844,0.725,0.636,0.263,0.783,-0.054,0.619,0.454,0.161,-0.876,0.737,0.34,0.584,0.777,-0.53,0.338,0.79,-0.524,0.318,0.749,0.346,0.564,0.223,-0.474,0.852,0.902,0.147,0.406,0.327,0.148,0.933,0.204,-0.305,0.93,0.535,-0.383,-0.753,0.658,0.07,-0.75,0.869,-0.491,0.058,0.661,0.175,-0.73,0.995,0.067,0.08,-0.153,-0.896,0.416,-0.219,-0.975,-0.034,0.929,-0.012,-0.371,-0.438,-0.611,0.66,-0.293,-0.018,-0.956,-0.763,-0.213,-0.61,-0.93,-0.338,0.145,0.473,0.24,-0.848,0.454,-0.835,-0.311,0.157,-0.886,-0.437,0.217,0.196,-0.956,0.499,-0.103,0.86,0.075,-0.659,-0.748,0.225,-0.862,0.455,0.187,-0.529,0.828,-0.051,-0.17,-0.984,0.937,-0.294,-0.188,-0.181,-0.871,0.456,0.609,-0.6,-0.519,0.633,-0.5,0.591,0.009,-0.369,-0.929,0.797,-0.068,-0.6,0.257,-0.641,-0.724,0.134,-0.49,-0.861,0.683,0.07,-0.727,0.576,-0.381,-0.723,0.491,-0.362,-0.792,0.598,0.089,-0.796,0.672,-0.591,-0.446,-0.094,-0.748,-0.657,-0.112,-0.056,-0.992,0.339,-0.004,-0.941,0.378,-0.496,-0.782,-0.073,-0.548,-0.833,0.854,0.04,-0.519,0.868,0.005,-0.496,-0.06,-0.581,-0.812,0.578,-0.095,-0.81,-0.26,0.099,-0.96,0.166,0.682,-0.712,0.573,-0.749,-0.332,-0.231,-0.94,-0.253,-0.58,0.506,-0.639,0.921,-0.343,0.185,-0.881,-0.265,-0.393,0.302,-0.923,0.237,0.636,-0.676,0.371,-0.887,0.146,-0.438,-0.162,-0.623,-0.765,-0.205,-0.697,-0.687,-0.933,0.067,-0.354,0.315,0.006,-0.949,-0.255,-0.665,-0.702,0.265,0.038,-0.963,0.543,-0.718,0.434,0.08,-0.9,0.428,-0.199,-0.144,-0.97,0.523,-0.099,-0.846,-0.8,-0.433,0.416,-0.356,0.368,-0.859,-0.473,-0.087,-0.877,-0.96,0.014,-0.279,-0.844,0.469,-0.261,0.831,0.265,-0.489,0.713,-0.656,-0.247,-0.945,-0.323,-0.053,0.173,0.026,-0.985,0.347,-0.287,-0.893,-0.771,-0.636,0.038,0.381,0.178,-0.907,-0.284,-0.241,-0.928,-0.249,0.224,-0.942,0.182,-0.966,-0.181,-0.366,-0.915,0.171,-0.72,0.268,-0.64,-0.755,-0.196,-0.626,-0.985,-0.158,0.071,-0.95,0.306,0.057,0.19,0.416,-0.889,0.144,0.029,-0.989,-0.996,-0.08,-0.043,-0.343,0.565,-0.75,-0.276,-0.502,-0.819,-0.832,-0.053,-0.553,-0.531,-0.12,-0.839,-0.983,0.023,0.182,0.191,0.597,-0.779,-0.425,-0.902,-0.08,-0.619,-0.785,-0.007,0.024,0.697,-0.716,0.208,-0.179,-0.962,-0.252,-0.276,-0.928,-0.402,0.608,-0.685,0.824,-0.152,-0.546,0.137,-0.913,0.384,-0.992,-0.047,0.114,0.097,-0.287,-0.953,-0.433,-0.785,0.442,-0.393,-0.177,-0.902,0.287,-0.941,0.176,0.032,-0.941,0.338,-0.648,-0.176,-0.741,-0.379,0.115,-0.918,0.602,-0.794,0.081,0.207,-0.97,0.13,-0.218,-0.832,-0.511,0.094,-0.721,-0.686,0.497,-0.867,-0.033,-0.34,-0.697,-0.631,0.098,-0.769,-0.632,-0.336,-0.745,-0.576,-0.532,-0.352,-0.771,-0.27,-0.831,0.486,-0.873,-0.409,0.266,-0.84,-0.506,-0.197,-0.499,-0.861,-0.099,-0.532,-0.765,0.364,-0.757,-0.562,-0.335,-0.492,-0.733,-0.47,-0.267,-0.936,0.229,-0.836,-0.274,0.476,0.543,-0.826,-0.15,0.368,-0.382,0.848,-0.945,-0.018,-0.327,-0.355,-0.5,0.79,-0.842,-0.38,0.383,0.532,-0.715,0.454,-0.956,0.093,0.278,-0.858,0.164,-0.487,-0.009,-0.922,-0.387,-0.17,-0.913,0.371,-0.334,-0.939,-0.083,0.314,-0.908,-0.278,0.425,-0.884,0.192,-0.096,-0.91,-0.404,0.143,-0.896,0.421,-0.279,-0.897,0.343,0.463,-0.879,0.113,0.627,0.708,0.326,-0.102,0.814,0.572,0.309,0.707,0.636,0.116,0.971,-0.207,-0.207,0.974,0.098,-0.053,0.842,0.537,-0.558,0.741,-0.375,-0.678,0.628,0.382,0.81,-0.18,0.558,0.926,-0.006,0.378,-0.562,0.802,0.201,-0.394,0.018,0.919,0.832,0.552,0.06,-0.504,0.667,0.549,0.961,-0.193,0.199,0.989,-0.107,0.103,-0.471,0.766,0.437,0.144,-0.266,0.953,0.163,-0.254,0.953,-0.452,0.778,0.437,-0.704,-0.709,-0.042,0.146,-0.237,0.961,-0.721,-0.693,-0.035,0.991,-0.082,0.109,-0.062,-0.996,0.059,0.639,-0.76,0.119,0.99,-0.082,0.112,-0.721,-0.692,-0.032,0.172,-0.93,-0.324,0.283,-0.959,0.021,-0.6,-0.723,0.341,-0.351,-0.853,-0.386,0.313,-0.934,-0.171,0.117,-0.811,0.574,-0.699,-0.715,-0.011,0.59,-0.533,0.606,-0.377,-0.249,0.892,-0.809,-0.562,-0.17,-0.54,-0.815,-0.21,-0.087,-0.521,0.849,-0.552,-0.306,-0.776,-0.263,-0.403,-0.877,0.249,-0.634,0.732,-0.229,-0.92,-0.318,0.352,-0.646,-0.677,0.875,-0.339,0.345,0.336,-0.941,0.027,0.732,-0.398,-0.553,0.688,-0.711,0.142,-0.013,-0.996,0.09,0.002,-0.986,-0.165,0.703,-0.702,-0.113,0.21,-0.686,0.697,0.519,-0.774,-0.363,0.726,-0.473,0.498,-0.674,-0.738,0.032,0.656,-0.753,0.047,-0.537,-0.718,0.443,-0.706,-0.708,0.001,-0.17,-0.963,-0.21,-0.001,-0.973,0.232,-0.963,-0.018,0.27,0.271,-0.906,0.325,-0.45,0.048,0.892,-0.684,-0.663,0.304,-0.562,-0.747,0.355,-0.318,-0.042,0.947,-0.984,-0.138,0.117,-0.702,-0.707,-0.087,0.009,-0.704,0.71,-0.614,0.586,0.529,-0.335,-0.909,0.247,-0.187,0.35,0.918,-0.689,-0.63,0.359,-0.562,-0.723,0.403,-0.039,0.243,0.969,-0.989,0.143,-0.037,-0.55,-0.665,0.505,-0.976,0.205,0.073,-0.811,-0.571,0.128,0.066,-0.401,0.914,-0.03,0.389,0.921,-0.219,-0.037,0.975,0.665,0.335,-0.667,0.38,0.699,-0.606,0.926,0.241,-0.29,0.594,0.581,-0.557,0.855,0.487,-0.18,0.602,-0.658,-0.452,0.095,-0.405,-0.909,0.419,0.705,-0.573,0.932,0.167,-0.323,0.867,0.025,-0.497,0.354,0.562,-0.747,0.868,0.478,0.133,0.406,0.421,-0.811,0.37,0.906,-0.206,0.903,-0.163,-0.397,0.769,-0.189,-0.61,0.246,0.881,-0.404,0.776,0.556,0.298,0.976,0.218,-0.009,0.446,0.544,-0.711,0.541,0.774,-0.33,0.926,-0.021,-0.378,0.495,0.552,-0.671,0.822,-0.109,0.559,0.691,0.638,-0.342,0.587,0.549,0.595,0.991,-0.045,-0.128,0.964,0.085,-0.251,0.558,0.689,0.462,-0.442,-0.755,0.485,0.183,-0.076,0.98,0.126,-0.157,0.98,-0.42,-0.77,0.48,0.579,0.675,0.458,-0.096,0.184,0.978,0.732,-0.503,-0.461,0.894,0.414,0.17,-0.548,-0.821,0.159,0.718,0.234,-0.656,-0.34,-0.662,-0.668,-0.639,-0.707,-0.301,0.807,0.524,-0.274,0.123,-0.842,0.526,0.122,-0.876,0.467,0.806,0.49,-0.333,-0.008,-0.581,0.814,0.174,-0.862,0.476,0.044,-0.568,0.822,-0.586,-0.729,-0.354,-0.218,-0.815,-0.537,0.399,-0.651,0.646,-0.048,-0.673,0.738,-0.076,-0.817,0.572,0.371,-0.795,0.479,-0.177,-0.475,0.862,-0.613,-0.677,0.407,-0.065,-0.998,0.024,-0.271,-0.635,0.723,-0.224,0.76,-0.61,0.149,0.915,-0.374,-0.122,0.418,-0.9,-0.206,0.437,-0.876,0.059,0.936,-0.348,0.982,0.189,0.014,0.619,-0.508,-0.599,-0.278,0.289,-0.916,0.97,-0.239,0.034,0.522,-0.779,0.347,-0.761,-0.293,-0.578,0.978,-0.004,0.207,-0.978,-0.143,0.151,0.524,0.118,0.844,0.751,0.143,0.645,-0.973,-0.156,-0.172,0.408,-0.639,-0.652,0.253,-0.847,-0.468,0.665,-0.083,-0.742,0.135,-0.944,0.3,-0.17,-0.977,0.127,0.311,-0.121,-0.943,0.54,-0.408,-0.736,-0.514,-0.855,-0.066,0.165,-0.276,-0.947,0.795,-0.4,-0.456,0.755,-0.497,-0.429,0.125,-0.373,-0.919,0.568,-0.274,-0.776,-0.647,-0.695,-0.315,0.651,-0.227,-0.724,-0.41,-0.686,0.601,-0.723,-0.57,0.391,0.339,-0.111,-0.934,0.74,-0.524,-0.421,0.076,-0.975,-0.211,-0.378,-0.597,-0.708,0.076,0.136,-0.988,-0.203,-0.96,-0.191,-0.203,0.151,-0.968,0.639,-0.69,-0.34,-0.572,-0.357,-0.739,0.211,0.012,-0.977,0.187,-0.391,-0.901,-0.179,-0.381,-0.907,-0.179,0.022,-0.984,0.812,-0.534,-0.236,0.743,-0.633,-0.218,-0.248,-0.076,-0.966,0.906,0.423,0.031,0.969,-0.081,0.234,-0.175,-0.661,-0.729,0.969,-0.104,-0.224,-0.687,-0.677,0.264,-0.687,-0.7,-0.195,-0.284,-0.881,0.378,-0.512,-0.58,0.633,-0.915,-0.399,0.06,0.553,-0.807,0.208,0.582,-0.493,0.647,-0.89,-0.128,0.438,-0.745,-0.559,0.365,-0.723,-0.558,0.407,-0.868,-0.128,0.48,-0.541,0.218,-0.813,-0.762,-0.248,0.599,-0.58,0.528,-0.621,0.465,-0.879,-0.104,-0.857,-0.328,-0.398,-0.45,-0.872,-0.192,0.232,-0.964,0.133,-0.804,0.447,-0.392,0.669,-0.339,-0.662,0.511,-0.683,-0.522,-0.962,0.103,-0.253,-0.517,-0.138,-0.845,-0.522,-0.164,-0.837,-0.966,0.08,-0.246,0.825,0.342,-0.451,-0.563,0.404,-0.721,0.318,0.517,-0.795,-0.527,-0.151,-0.836,0.819,0.355,-0.45,0.503,-0.694,-0.515,0.354,-0.643,-0.679,0.647,0.414,-0.64,0.936,0.069,0.345,0.812,-0.562,0.16,0.522,-0.216,-0.825,0.781,0.208,0.589,0.636,-0.192,0.747,0.354,-0.681,-0.641,0.55,0.564,0.616,-0.384,-0.728,0.568,-0.336,-0.502,0.797,-0.019,0.367,0.93,-0.308,-0.911,-0.275,0.35,-0.539,0.766,0.183,-0.486,0.854,-0.488,-0.854,-0.18,0.365,-0.903,0.224,0.153,-0.549,0.821,-0.735,-0.442,0.514,-0.487,-0.773,0.406,-0.427,-0.758,0.493,-0.67,-0.426,0.608,-0.464,-0.668,-0.582,-0.396,-0.729,-0.558,-0.602,-0.488,0.632,-0.958,0.171,-0.229,-0.6,-0.614,0.513,-0.649,-0.514,-0.561,-0.202,-0.702,0.683,-0.427,-0.387,0.817,-0.892,-0.175,-0.417,0.275,-0.809,-0.52,0.234,-0.942,-0.24,-0.94,-0.33,-0.091,0.426,-0.3,-0.853,0.456,-0.381,-0.804,-0.905,-0.424,-0.034,-0.057,0.155,-0.986,0.261,-0.566,-0.782,-0.268,-0.044,-0.962,0.806,0.098,-0.583,-0.101,-0.247,-0.964,0.386,0.469,-0.795,-0.293,-0.889,-0.35,-0.501,-0.79,-0.354,0.145,0.584,-0.799,0.929,-0.204,-0.308,0.728,-0.503,-0.466,-0.059,0.28,-0.958,0.799,-0.08,-0.596,0.309,-0.951,0.003,-0.629,-0.732,-0.261,0.119,-0.896,-0.429,-0.33,-0.898,0.292,-0.521,-0.842,-0.14,0.127,-0.958,0.255,-0.147,-0.545,0.826,-0.794,-0.428,0.431,0.242,-0.925,-0.292,0.281,-0.931,-0.231,-0.76,-0.434,0.484,-0.625,-0.753,-0.206,-0.618,-0.76,-0.202,-0.754,-0.44,0.488,-0.791,-0.45,-0.415,-0.154,-0.909,-0.388,-0.206,-0.834,0.511,-0.652,0.237,-0.72,-0.288,-0.64,0.713,-0.784,0.502,0.366,-0.458,-0.713,-0.531,-0.451,-0.767,-0.457,-0.776,0.44,0.451,-0.941,-0.201,-0.272,-0.938,-0.287,-0.197,-0.772,0.35,0.53,-0.844,-0.05,-0.533,-0.043,-0.972,-0.231,0.018,-0.56,0.828,-0.768,-0.611,0.193,0.335,-0.866,0.37,-0.417,-0.513,0.75,-0.976,-0.211,0.048,0.532,-0.169,0.83,-0.808,0.389,0.443,-0.937,-0.056,0.346,-0.429,-0.312,0.848,-0.3,0.133,0.944,-0.558,0.432,0.708,0.538,-0.02,0.843,-0.931,0.072,0.357,-0.395,-0.908,-0.14,-0.043,-0.947,0.317,-0.579,0.032,0.814,-0.228,-0.864,-0.449,0.472,-0.842,-0.263,0.095,0.054,0.994,-0.67,-0.717,-0.194,-0.07,-0.876,-0.476,0.695,-0.106,0.711,-0.123,-0.954,0.275,0.165,-0.873,-0.459,0.111,-0.95,0.292,-0.523,-0.844,-0.116,0.757,0.078,0.648,0.069,0.107,0.992,-0.341,-0.94,0.011,-0.081,-0.996,-0.035,0.309,0.055,0.95,-0.965,0.089,-0.248,-0.723,-0.454,-0.52,0.55,-0.489,0.677,-0.853,-0.514,-0.093,-0.614,-0.601,-0.511,-0.735,-0.673,-0.083,-0.732,-0.174,-0.658,-0.875,-0.482,0.045,-0.993,-0.055,-0.103,-0.626,-0.074,-0.776,-0.532,-0.486,-0.694,-0.912,-0.408,-0.032,-0.81,-0.34,-0.478,0.569,-0.789,-0.23,0.467,-0.857,0.216,0.347,-0.768,-0.539,0.854,0.408,-0.322,0.903,0.154,0.402,0.523,-0.785,0.332,0.463,-0.616,-0.638,0.851,0.299,-0.432,0.973,-0.162,0.162,0.484,-0.51,-0.711,0.993,-0.065,0.094,0.229,-0.687,0.69,0.785,-0.155,-0.6,0.488,-0.382,0.785,-0.655,-0.668,-0.352,-0.484,-0.709,-0.512,0.647,-0.42,0.637,-0.715,-0.375,0.59,0.779,-0.584,-0.229,0.455,-0.258,0.852,-0.486,0.036,0.873,0.397,-0.125,0.909,0.732,-0.289,0.618,0.892,-0.405,-0.2,-0.372,0.215,0.903,0.329,-0.911,-0.248,0.658,-0.714,-0.241,-0.044,0.412,0.91,-0.928,-0.293,0.23,-0.709,-0.634,0.309,0.159,0.096,0.983,-0.315,0.643,0.698,-0.058,-0.865,0.499,0.245,0.445,0.861,-0.211,-0.628,0.749,-0.101,-0.673,0.733,0.355,0.4,0.845,-0.259,0.773,0.579,-0.853,-0.492,0.177,-0.238,-0.865,0.443,-0.592,-0.586,0.554,0.083,-0.65,0.755,-0.075,0.795,0.602,-0.175,-0.409,0.895,0.97,0.092,-0.225,0.856,0.455,-0.245,0.821,-0.555,0.135,0.724,-0.671,-0.16,0.743,0.319,-0.588,0.953,-0.269,-0.137,0.368,-0.817,-0.445,0.062,-0.318,-0.946,0.903,0.241,-0.354,-0.092,-0.551,-0.829,0.444,0.507,-0.739,0.948,-0.063,-0.313,-0.16,-0.302,-0.94,0.868,0.227,-0.442,-0.404,-0.881,-0.248,-0.41,-0.875,-0.257,0.861,0.233,-0.452,-0.362,-0.786,0.502,0.65,-0.319,-0.69,-0.102,-0.991,-0.083,-0.482,-0.816,0.319,0.721,0.198,-0.664,0.725,-0.689,0.003,0.635,-0.766,-0.096,0.616,0.108,-0.78,0.938,0.135,0.319,0.946,0.063,0.319,0.625,0.024,-0.78,0.642,0.754,0.141,0.663,-0.708,-0.242,0.966,0.193,0.173,-0.545,-0.835,0.074,0.78,-0.533,-0.328,0.241,-0.9,-0.364,-0.537,-0.82,-0.197,0.973,0.208,-0.098,-0.432,-0.612,0.663,0.802,-0.319,0.504,0.314,-0.586,0.747,0.26,-0.905,-0.337,0.495,-0.71,0.5,-0.199,-0.946,-0.256,0.158,-0.69,-0.707,0.911,-0.412,-0.024,-0.388,-0.74,0.549,0.815,-0.402,-0.418,0.293,-0.441,0.848,0.189,-0.857,-0.479,0.65,-0.304,-0.696,0.771,0.133,0.623,-0.084,-0.996,0.026,0.009,-0.994,-0.109,0.854,0.135,0.502,0.568,0.023,0.822,-0.256,-0.934,-0.248,0.029,-0.823,-0.568,0.19,-0.68,0.708,0.013,-0.927,-0.374,0.45,-0.673,0.587,0.348,-0.331,0.877,0.506,-0.505,-0.7,0.823,0.076,0.563,0.925,-0.266,0.273,0.556,-0.046,-0.83,0.973,0.176,0.148,0.51,-0.477,-0.716,-0.489,0.375,-0.788,0.011,0.997,0.078,0.588,0.724,-0.361,0.235,0.612,-0.755,-0.342,0.885,-0.316,0.105,0.907,-0.408,0.06,0.744,-0.666,-0.387,0.722,-0.573,0.771,0.521,0.366,-0.134,0.846,-0.516,0.546,0.64,0.541,0.7,0.34,-0.628,0.558,0.473,-0.682,0.392,0.783,0.482,0.946,0.32,-0.047,0.611,0.491,-0.621,0.002,0.983,-0.186,0.382,0.924,-0.026,0.441,0.88,-0.177,0.066,0.935,-0.347,0.389,0.704,0.595,0.892,-0.349,0.289,0.65,-0.288,-0.703,0.997,-0.05,-0.055,0.802,-0.596,0.047,0.908,-0.297,-0.297,0.789,-0.394,0.471,0.974,-0.008,-0.227,0.961,0.194,0.197,0.845,-0.112,0.523,0.807,-0.588,0.063,0.923,-0.282,-0.263,0.786,-0.387,0.481,-0.112,-0.966,0.235,0.025,-0.86,-0.509,0.314,-0.865,0.392,-0.684,0.719,-0.121,-0.303,0.953,0.008,-0.664,0.519,-0.538,-0.795,0.453,-0.403,-0.445,0.882,0.154,0.699,0.472,-0.538,0.598,0.427,-0.678,-0.553,0.833,0.002,0.865,0.11,-0.49,0.567,-0.305,-0.765,-0.874,0.386,-0.295,0.3,0.012,-0.954,0.271,-0.733,-0.624,-0.906,-0.418,0.061,0.57,-0.383,-0.727,-0.221,-0.391,-0.893,0.078,-0.042,-0.996,0.046,-0.708,-0.705,-0.529,-0.624,-0.576,-0.496,0.043,-0.867,-0.11,-0.181,-0.977,-0.199,-0.361,-0.911,-0.579,-0.124,-0.806,0.178,-0.137,-0.974,-0.379,-0.064,-0.923,-0.003,0.163,-0.987,-0.39,-0.5,-0.774,-0.435,-0.471,-0.767,-0.053,0.194,-0.98,0.946,0.079,-0.313,-0.742,0.137,-0.656,0.59,0.786,-0.184,0.024,0.552,-0.834,-0.039,0.601,-0.798,0.517,0.844,-0.143,0.825,-0.542,-0.16,0.104,-0.732,-0.674,-0.291,0.632,-0.718,0.953,0.303,0.005,0.951,-0.237,-0.2,-0.293,0.004,-0.956,0.418,0.765,-0.489,0.682,0.536,-0.497,0.014,-0.263,-0.965,0.279,0.741,-0.611,0.085,-0.808,-0.583,-0.448,0.195,-0.873,0.167,-0.45,-0.877,-0.298,-0.898,-0.324,-0.913,-0.254,-0.319,0.087,-0.427,-0.9,-0.568,-0.74,-0.36,-0.228,-0.243,-0.943,-0.006,-0.572,-0.82,-0.076,-0.609,-0.789,-0.303,-0.282,-0.91,0.849,-0.263,-0.459,0.841,-0.318,-0.437,-0.311,-0.341,-0.887,0.448,0.756,-0.477,0.715,0.137,0.686,-0.044,-0.96,0.276,0.906,0.423,-0.017,0.86,0.49,0.142,-0.097,-0.882,0.461,0.904,-0.233,-0.359,0.985,0.164,0.054,-0.016,-0.485,0.874,0.565,-0.809,0.164,0.763,-0.606,0.224,0.215,-0.249,0.944,0.154,-0.985,-0.081,0.421,-0.891,-0.169,0.514,-0.145,0.846,-0.804,-0.259,0.536,0.712,-0.615,0.338,0.101,-0.994,0.037,0.543,-0.368,-0.755,0.534,-0.779,0.328,0.365,-0.532,-0.764,0.949,0.198,0.246,0.742,-0.58,0.338,0.929,-0.193,-0.316,0.41,0.907,0.099,0.437,0.81,0.39,0.957,-0.29,-0.024,0.871,0.467,-0.156,0.499,0.154,0.853,0.933,-0.19,0.307,0.826,0.21,0.523,-1.0,0.017,-0.019,-0.893,-0.383,-0.235,-0.705,-0.708,0.044,-0.718,-0.173,0.674,-0.906,0.151,0.396,-0.607,-0.772,0.19,-0.908,0.418,-0.029,-0.812,-0.134,-0.568,-0.754,-0.614,0.233,-0.818,-0.48,0.318,-0.875,0.0,-0.484,-0.069,-0.994,0.079,-0.175,-0.913,0.369,-0.974,0.076,-0.215,-0.368,-0.672,-0.643,-0.359,-0.899,-0.252,-0.964,-0.169,0.207,-0.698,-0.61,-0.376,-0.449,-0.621,0.643,-0.788,-0.331,0.519,-0.389,-0.874,0.29,0.116,-0.684,0.72,-0.283,-0.141,0.949,-0.56,-0.419,0.714,-0.199,-0.714,0.671,0.052,-0.415,0.908,-0.597,-0.627,0.501,0.132,-0.643,0.755,-0.543,-0.374,0.752,0.167,-0.797,-0.58,-0.753,-0.009,0.658,-0.718,-0.164,-0.677,0.166,-0.911,-0.379,0.121,-0.94,-0.319,-0.762,-0.193,-0.618,0.629,0.481,-0.611,-0.598,-0.719,-0.353,-0.196,0.734,-0.65,0.607,-0.678,-0.414,0.257,-0.879,-0.402,-0.568,0.521,-0.637,0.635,-0.301,-0.711,0.544,-0.437,-0.717,-0.673,0.365,-0.643,0.034,0.616,-0.787,0.18,0.174,-0.968,-0.506,-0.142,-0.851,-0.277,0.235,-0.932,-0.229,-0.8,-0.555,-0.738,0.253,-0.625,0.02,-0.229,-0.973,0.077,-0.929,0.361,-0.685,-0.396,0.612,-0.376,-0.754,-0.538,-0.451,0.107,0.886,-0.938,0.346,0.02,-0.667,-0.533,0.521,-0.665,-0.53,0.526,-0.937,0.349,0.024,-0.821,-0.196,-0.536,-0.748,-0.651,-0.128,-0.853,-0.173,0.493,-0.958,-0.276,0.076,-0.036,-0.971,-0.238,0.205,-0.97,0.132,-0.875,-0.481,-0.051,-0.799,-0.446,-0.404,0.281,-0.935,-0.215,-0.626,-0.756,-0.191,0.22,-0.875,0.431,-0.578,-0.37,0.728,-0.707,-0.481,-0.519,-0.064,-0.257,0.964,-0.991,0.136,0.014,0.147,-0.633,0.76,0.329,-0.208,0.921,-0.809,0.562,0.175,0.122,-0.988,0.099,-0.894,-0.148,0.423,-0.477,-0.791,0.382,0.142,-0.978,0.152,-0.791,0.57,0.221,-0.832,0.266,-0.486,-0.442,-0.881,0.171,-0.456,-0.416,0.787,-0.659,-0.628,0.415,-0.368,-0.843,0.393,-0.189,-0.613,0.767,-0.543,0.221,0.81,-0.862,-0.005,-0.507,-0.463,-0.808,-0.365,-0.954,-0.246,-0.172,-0.037,-0.846,0.531,-0.191,0.217,0.957,-0.453,-0.78,0.431,-0.261,-0.848,0.461,0.017,0.143,0.99,-0.395,-0.918,0.036,-0.08,-0.997,-0.021,0.383,0.052,0.922,-0.528,-0.846,-0.072,-0.092,-0.848,0.523,-0.539,-0.697,0.472,-0.743,-0.604,-0.288,-0.328,-0.183,0.927,-0.988,0.085,0.131,-0.252,-0.818,0.517,-0.175,-0.663,0.728,-0.913,0.234,0.334,-0.325,-0.934,-0.146,-0.063,-0.961,0.268,-0.679,0.21,0.703,-0.92,0.007,0.392,0.332,-0.925,0.183,0.525,-0.687,0.502,-0.619,-0.568,0.543,0.779,-0.063,0.624,-0.204,0.231,0.951,0.376,-0.764,0.524,0.822,-0.433,0.371,0.225,0.55,0.804,-0.656,-0.496,0.569,-0.596,-0.55,0.585,0.285,0.497,0.82,-0.85,-0.488,0.196,-0.65,-0.399,0.647,-0.908,-0.326,0.263,0.828,-0.332,0.452,0.817,-0.052,0.575,-0.92,-0.034,0.391,-0.447,-0.525,0.724,-0.348,-0.332,0.877,-0.813,0.175,0.555,-0.181,-0.974,-0.139,-0.014,-0.999,0.052,-0.64,0.149,0.754,-0.311,-0.705,-0.638,0.305,-0.868,-0.392,-0.024,-0.014,1.0,-0.981,0.171,-0.089,-0.994,-0.006,-0.109,-0.038,-0.205,0.978,-0.926,0.32,0.201,-0.925,-0.307,-0.223,-0.037,-0.832,0.553,-0.924,0.241,0.297,-0.905,-0.41,-0.113,-0.905,0.146,0.399,-0.661,0.656,-0.364,-0.636,-0.306,0.708,-0.371,0.768,0.522,-0.726,-0.586,0.361,-0.233,-0.764,0.602,0.202,0.561,0.802,-0.179,0.56,0.809,0.302,-0.777,0.552,0.356,0.546,0.758,0.099,0.786,0.61,0.628,-0.734,0.257,0.479,0.836,0.268,0.147,-0.357,0.922,0.963,-0.216,0.158,0.537,0.245,0.807,-0.614,-0.789,-0.033,-0.349,-0.894,-0.28,0.845,0.122,0.52,-0.6,-0.411,0.687,0.74,-0.651,-0.171,0.576,-0.148,0.804,0.013,-0.654,0.756,0.999,0.051,0.009,0.292,0.103,0.951,0.058,-0.993,-0.102,0.273,-0.94,-0.204,0.504,0.155,0.849,0.173,-0.964,0.203,0.537,-0.556,-0.634,0.843,0.534,0.073,0.785,-0.465,0.409,0.82,-0.55,0.156,0.876,0.454,-0.165,0.516,-0.745,0.424,0.482,-0.859,0.175,0.839,0.331,-0.433,0.291,0.138,0.947,0.327,0.022,0.945,0.872,0.224,-0.434,-0.696,0.717,0.021,0.502,0.155,0.851,-0.522,0.85,-0.072,-0.76,0.2,0.619,0.278,0.03,0.96,0.685,0.652,0.325,0.427,0.677,0.6,0.505,0.195,0.841,-0.757,0.234,0.61,-0.355,-0.765,0.538,0.363,-0.494,0.79,-0.039,0.505,0.862,-0.744,-0.517,0.423,0.413,-0.818,-0.401,0.957,0.246,0.154,0.506,-0.503,0.701,0.387,-0.92,-0.067,0.855,-0.112,-0.506,0.939,-0.242,0.245,0.653,-0.737,0.175,0.59,-0.571,-0.571,0.819,-0.168,-0.548,0.434,-0.855,-0.283,0.982,-0.182,0.045,0.471,-0.185,0.863,-0.065,-0.823,0.564,0.404,-0.871,-0.278,0.394,-0.782,0.483,0.483,-0.821,-0.305,0.513,-0.155,0.844,-0.112,-0.611,0.784,0.737,-0.647,-0.192,0.106,-0.462,0.881,-0.835,-0.546,-0.062,0.092,-0.321,-0.942,0.965,-0.253,0.064,-0.37,-0.927,0.054,-0.404,-0.844,-0.352,0.934,-0.176,-0.312,0.246,-0.847,0.472,0.114,-0.609,-0.785,0.805,-0.594,0.006,-0.476,-0.804,-0.357,-0.432,-0.682,-0.591,0.852,-0.462,-0.246,0.462,-0.832,0.307,0.081,-0.996,-0.03,0.409,-0.653,-0.638,0.879,-0.104,0.465,0.831,-0.183,0.526,0.355,-0.742,-0.569,0.877,0.248,0.412,-0.004,-0.469,-0.883,0.791,0.444,-0.421,0.57,-0.787,-0.235,-0.573,-0.571,-0.588,-0.229,0.637,-0.737,0.011,0.326,-0.945,-0.28,0.108,-0.954,-0.52,0.418,-0.745,0.558,0.766,-0.32,-0.555,0.293,-0.779,0.294,0.944,-0.151,0.235,-0.896,-0.378,-0.299,0.673,-0.676,-0.361,-0.489,-0.794,-0.213,-0.864,-0.457,-0.091,0.971,-0.219,0.606,0.793,0.065,0.729,0.375,-0.573,0.023,0.585,-0.811,-0.107,0.879,-0.465,-0.112,0.994,0.015,-0.816,-0.404,-0.414,-0.646,-0.678,-0.352,0.204,0.965,0.163,0.176,0.672,-0.719,-0.207,0.68,-0.704,-0.151,0.972,0.178,0.549,-0.38,-0.744,0.429,-0.397,-0.811,-0.281,0.954,0.105,0.59,0.639,0.494,0.631,0.655,0.417,-0.237,0.971,0.022,0.664,-0.016,0.748,0.732,-0.003,0.682,-0.164,0.985,-0.049,0.278,0.795,0.54,0.76,-0.218,-0.613,0.306,0.58,-0.755,0.389,0.837,-0.385,0.479,0.793,-0.376,0.389,0.54,-0.747,0.141,0.977,-0.163,0.474,0.793,-0.384,0.135,0.976,-0.171,0.108,0.792,0.601,0.35,0.833,-0.429,-0.007,0.829,0.559,0.724,-0.222,-0.654,-0.004,-0.453,-0.891,-0.734,0.598,0.321,-0.435,0.583,-0.686,-0.556,0.419,-0.718,-0.846,0.446,0.292,-0.343,0.939,-0.011,-0.385,0.916,-0.116,-0.885,0.424,0.194,0.48,0.338,0.809,0.765,0.607,0.215,-0.6,0.693,-0.4,-0.729,0.588,0.35,-0.687,0.725,0.053,0.2,0.162,0.966,0.437,0.76,0.482,0.34,0.803,0.489,0.111,0.202,0.973,0.618,0.768,0.167,0.443,0.885,0.143,-0.04,0.303,0.952,0.386,-0.904,-0.181,0.674,-0.375,-0.637,0.248,0.832,0.497,0.515,0.515,0.686,0.053,0.05,-0.997,-0.106,0.94,0.325,0.282,0.956,0.077,-0.229,-0.523,-0.821,-0.617,-0.539,-0.573,-0.205,-0.089,-0.975,-0.459,0.049,-0.887,-0.229,0.955,0.187,0.8,0.463,-0.382,0.366,0.189,-0.911,-0.647,0.691,-0.323,0.989,-0.02,0.149,-0.306,-0.139,-0.942,0.504,-0.498,-0.706,0.856,-0.501,-0.128,-0.775,0.227,-0.59,-0.009,0.641,-0.768,0.206,0.657,-0.725,0.829,0.449,0.335,0.511,0.353,-0.784,-0.011,0.743,-0.669,0.307,0.839,0.449,0.563,-0.825,-0.044,0.595,-0.791,-0.142,0.337,0.872,0.356,-0.019,-0.953,0.301,0.745,0.391,0.54,0.543,-0.662,0.516,0.1,-0.974,0.204,0.46,0.851,0.255,0.549,0.597,0.584,0.055,-0.816,-0.575,-0.015,-0.51,-0.86,0.838,0.517,-0.175,-0.224,-0.587,-0.778,0.578,0.73,-0.364,0.385,-0.857,-0.343,0.01,-0.814,-0.581,0.203,0.773,-0.601,0.482,0.437,-0.759,-0.432,-0.276,-0.859,-0.711,0.061,-0.7,-0.052,-0.051,-0.997,-0.047,-0.642,-0.765,-0.707,-0.53,-0.468,-0.624,-0.173,-0.762,-0.136,-0.752,-0.645,-0.713,-0.283,-0.642,0.819,-0.048,-0.572,0.852,-0.369,-0.372,-0.684,-0.558,-0.47,0.793,-0.028,-0.609,0.824,-0.101,-0.558,-0.656,-0.625,-0.423,-0.101,-0.447,-0.889,0.609,-0.542,-0.579,0.565,-0.191,-0.803,0.744,0.222,-0.631,0.91,0.068,-0.409,0.746,-0.358,-0.561,0.346,0.713,-0.609,0.067,-0.889,-0.453,-0.635,-0.4,-0.661,-0.28,-0.368,-0.887,-0.219,-0.531,-0.818,-0.57,-0.574,-0.588,-0.097,0.244,-0.965,-0.073,0.227,-0.971,-0.542,-0.593,-0.595,-0.589,0.723,-0.362,0.648,0.712,0.273,0.791,-0.606,0.089,0.452,0.885,-0.116,-0.63,-0.768,-0.117,-0.732,-0.487,-0.477,-0.405,-0.43,-0.807,-0.974,-0.227,0.013,-0.724,0.071,-0.686,-0.43,-0.653,-0.624,-0.554,-0.449,-0.701,-0.405,0.319,-0.857,-0.211,-0.721,-0.66,-0.524,-0.417,-0.743,-0.181,-0.689,-0.702,-0.157,-0.934,-0.321,-0.33,-0.9,-0.285,-0.367,-0.652,-0.663,0.115,-0.982,-0.148,-0.357,-0.823,0.441,-0.877,-0.48,-0.027,-0.085,-0.991,0.102,-0.091,-0.974,0.207,-0.883,-0.462,0.086,-0.139,-0.976,-0.17,-0.614,0.292,0.734,-0.747,0.497,0.442,-0.733,-0.67,-0.121,-0.655,-0.754,0.05,-0.661,0.403,0.634,-0.785,0.459,-0.415,-0.689,-0.688,0.229,-0.817,0.523,-0.242,-0.757,0.269,-0.595,-0.735,-0.445,0.511,-0.802,0.503,-0.323,-0.671,-0.721,0.17,-0.672,-0.638,0.376,-0.803,0.583,-0.125,0.218,-0.793,-0.569,0.13,-0.949,-0.288,-0.89,0.428,0.157,0.028,-0.474,-0.88,-0.278,-0.938,-0.209,-0.38,-0.463,-0.801,0.483,-0.853,-0.196,0.229,-0.97,0.081,-0.615,-0.571,-0.544,0.589,-0.518,-0.62,-0.039,-0.997,-0.073,0.321,-0.545,-0.775,0.651,-0.742,0.159,0.24,-0.932,0.273,-0.123,-0.749,-0.651,0.283,-0.181,-0.942,-0.713,-0.273,0.646,-0.669,0.478,-0.569,-0.707,-0.621,-0.339,-0.619,-0.327,0.714,-0.594,0.731,0.336,-0.886,0.375,0.272,-0.843,0.309,0.441,-0.551,0.665,0.505,-0.533,0.808,-0.251,-0.793,0.532,-0.296,-0.775,0.427,0.466,-0.719,0.69,0.085,-0.951,0.148,-0.271,-0.988,-0.069,0.14,-0.799,0.559,-0.224,-0.9,0.056,0.431,-0.748,0.467,0.471,-0.987,-0.144,0.074,-0.733,0.393,0.555,-0.405,0.907,-0.118,-0.88,-0.475,-0.011,-0.881,-0.47,0.05,-0.406,0.912,-0.056,-0.413,-0.773,-0.482,-0.491,-0.834,-0.25,-0.497,0.841,0.213,-0.591,-0.551,-0.588,-0.57,-0.805,-0.162,-0.475,0.567,0.673,-0.434,-0.415,-0.799,-0.435,-0.418,-0.798,-0.475,0.565,0.675,0.442,-0.188,-0.877,-0.778,0.121,0.617,0.069,-0.573,-0.816,0.283,-0.488,-0.826,-0.634,0.264,0.727,-0.794,0.487,-0.364,0.384,-0.837,0.391,-0.707,0.187,0.682,-0.194,-0.978,-0.075,0.018,-0.995,0.095,-0.495,0.17,0.852,-0.836,-0.548,0.018,0.481,-0.231,0.846,-0.298,0.341,0.892,-0.831,-0.423,0.362,-0.78,-0.483,0.397,-0.243,0.276,0.93,-0.6,0.078,-0.796,-0.627,-0.115,-0.77,-0.275,0.052,0.96,-0.266,0.098,-0.959,-0.182,-0.577,0.796,-0.192,-0.533,-0.824,-0.092,-0.23,-0.969,-0.087,-0.302,0.949,-0.466,-0.419,-0.779,-0.223,-0.512,-0.83,0.196,-0.41,0.891,-0.663,-0.414,0.623,-0.634,-0.57,0.522,0.229,-0.591,0.773,-0.745,0.653,0.135,-0.559,-0.527,0.641,-0.657,0.703,0.272,-0.488,-0.335,-0.806,-0.006,-0.983,-0.186,-0.097,-0.05,0.994,-0.813,-0.556,0.175,-0.756,-0.631,0.172,-0.036,-0.132,0.991,-0.795,-0.01,0.606,-0.757,-0.608,0.238,0.008,-0.827,0.562,-0.237,-0.578,0.781,-0.582,-0.81,0.074,-0.047,-0.797,0.602,-0.462,-0.732,0.501,0.285,-0.901,0.328,-0.499,-0.468,0.73,-0.675,-0.723,-0.144,0.139,-0.472,0.871,-0.844,-0.224,0.487,0.123,-0.587,-0.801,0.791,-0.49,-0.367,-0.067,-0.112,0.991,0.27,-0.962,-0.042,0.426,-0.904,-0.04,0.1,-0.049,0.994,-0.066,-0.827,0.558,0.384,-0.845,0.373,0.623,-0.069,0.779,-0.646,0.099,0.757,-0.691,-0.216,0.69,0.572,-0.422,0.703,-0.33,0.508,0.796,0.538,-0.711,0.454,-0.486,0.238,0.841,-0.4,-0.873,0.279,0.559,-0.794,0.239,0.509,0.32,0.799,-0.591,-0.803,-0.073,0.48,-0.669,0.567,0.295,-0.858,0.42,-0.378,-0.9,-0.218,0.722,0.223,0.655,-0.538,-0.26,0.802,0.421,-0.49,0.764,-0.735,-0.487,0.472,0.044,-0.938,-0.345,0.123,-0.958,-0.259,-0.653,-0.508,0.561,-0.975,-0.195,-0.108,0.317,-0.843,0.434,-0.765,-0.071,0.64,-0.039,-0.979,0.198,0.158,-0.913,0.377,-0.553,0.001,0.833,-0.276,-0.84,-0.467,-0.209,-0.88,-0.427,-0.486,-0.039,0.873,-0.803,-0.128,0.582,0.012,-0.984,-0.178,0.362,-0.929,0.084,-0.929,0.115,0.352,0.757,-0.57,0.319,-0.211,0.514,0.831,0.071,-0.981,-0.182,-0.03,-0.277,0.96,0.066,-0.785,0.616,0.149,-0.974,-0.17,-0.134,0.521,0.843,-0.432,-0.183,0.883,0.53,-0.496,0.688,0.693,0.251,0.675,-0.745,-0.643,0.176,-0.666,-0.737,0.116,0.772,0.158,0.615,-0.805,-0.415,0.424,0.292,-0.764,0.576,0.154,-0.442,0.884,-0.332,-0.823,-0.461,0.189,-0.706,-0.683,0.675,-0.325,0.663,-0.639,-0.753,-0.158,-0.262,-0.316,-0.912,0.999,0.05,0.014,0.058,-0.994,-0.096,0.195,-0.175,-0.965,0.487,-0.861,-0.146,0.13,-0.881,-0.456,0.134,-0.878,-0.46,0.491,-0.858,-0.151,0.405,-0.876,0.26,0.571,-0.472,-0.672,0.914,-0.405,0.014,0.124,-0.948,0.292,-0.127,-0.935,-0.331,0.644,-0.39,-0.658,0.577,-0.528,0.623,0.551,-0.56,0.619,0.614,-0.427,-0.663,0.861,-0.338,0.38,0.068,-0.862,-0.503,0.757,-0.46,0.464,-0.285,-0.755,0.59,-0.279,-0.809,0.518,0.763,-0.513,0.392,-0.257,-0.468,0.845,-0.398,-0.732,0.553,0.622,-0.776,0.1,0.455,0.233,0.859,0.336,-0.811,0.48,0.357,-0.47,0.807,-0.751,-0.489,0.443,0.343,-0.78,0.523,-0.742,-0.454,0.493,-0.075,-0.856,-0.512,0.75,-0.654,-0.098,0.182,-0.228,0.957,0.41,-0.912,-0.014,0.617,-0.785,-0.059,0.414,-0.085,0.906,-0.317,-0.583,0.748,-0.012,-0.958,0.288,0.769,-0.521,0.371,-0.392,-0.484,0.782,-0.678,-0.726,0.113,0.436,-0.802,-0.407,0.529,-0.488,0.695,-0.471,-0.827,-0.307,0.769,-0.605,0.205,-0.806,-0.507,0.307,0.726,-0.67,0.155,0.486,-0.338,0.806,0.457,-0.698,0.551,0.917,-0.392,0.077,0.941,-0.035,0.336,0.673,-0.726,0.142,0.688,-0.529,-0.498,0.955,0.148,-0.257,0.493,-0.458,0.74,0.861,-0.148,-0.487,0.654,-0.105,0.749,0.342,-0.39,0.855,0.527,-0.762,0.376,0.837,-0.473,0.275,0.247,-0.667,0.703,0.852,-0.18,0.492,0.568,-0.091,0.818,0.456,-0.831,0.319,0.717,-0.297,-0.63,0.85,0.485,-0.206,0.819,-0.523,-0.235,0.296,-0.515,-0.805,0.285,0.495,-0.821,0.611,-0.772,0.173,0.45,-0.89,0.074,0.136,0.386,-0.913,0.988,0.157,0.009,0.323,-0.838,-0.44,0.878,0.202,-0.433,0.932,-0.235,-0.275,0.327,-0.5,-0.802,0.273,-0.062,-0.96,0.892,-0.315,-0.324,0.299,-0.117,-0.947,0.861,0.131,-0.492,0.55,-0.81,0.202,-0.609,-0.772,-0.181,-0.389,0.172,-0.905,0.25,-0.431,-0.867,-0.056,-0.777,-0.626,-0.745,-0.231,-0.625,0.316,-0.516,-0.796,0.294,-0.676,-0.676,-0.769,-0.402,-0.497,-0.164,0.477,-0.863,0.089,-0.753,-0.652,-0.36,0.404,-0.841,0.453,-0.771,-0.447,0.216,-0.429,-0.877,0.588,-0.426,-0.687,-0.148,-0.698,-0.701,-0.568,0.164,-0.807,0.1,0.576,-0.811,0.977,-0.011,-0.211,0.176,-0.941,0.289,-0.832,-0.506,-0.229,0.719,-0.239,-0.653,0.728,-0.261,-0.634,-0.821,-0.531,-0.208,0.001,0.818,-0.575,-0.012,-0.989,0.144,0.531,-0.287,-0.797,0.326,-0.85,0.413,0.216,-0.904,0.37,0.421,-0.341,-0.84,0.775,-0.248,-0.582,0.773,-0.286,-0.566,0.42,-0.379,-0.825,0.581,0.657,0.481,0.767,-0.268,-0.583,0.574,0.675,0.463,0.607,0.004,0.794,0.77,-0.251,-0.586,0.611,0.021,0.791,0.212,-0.907,0.365,0.5,-0.559,-0.662,0.899,0.369,-0.236,0.124,-0.446,0.886,-0.528,-0.835,0.153,0.247,-0.02,-0.969,0.47,-0.858,-0.208,-0.018,-0.976,-0.218,-0.172,-0.121,-0.978,0.888,-0.363,-0.283,0.793,-0.571,-0.211,-0.267,-0.33,-0.906,-0.032,0.05,-0.998,0.2,-0.088,-0.976,-0.035,-0.468,-0.883,-0.469,0.567,-0.677,0.04,-0.26,-0.965,-0.642,0.382,-0.665,-0.429,0.902,0.042,-0.228,-0.468,-0.854,-0.717,0.678,0.161,0.689,0.67,0.276,0.692,0.68,0.242,-0.715,0.687,0.13,0.409,0.721,0.559,0.239,0.949,-0.208,-0.294,0.27,-0.917,-0.458,-0.308,-0.834,0.421,0.856,0.299,0.367,-0.929,-0.047,0.852,0.382,0.358,0.855,-0.479,0.201,-0.375,-0.421,-0.826,0.581,0.114,-0.806,0.264,-0.964,0.032,-0.656,-0.747,-0.107,-0.222,0.304,-0.927,0.229,-0.793,-0.564,0.185,-0.809,-0.558,-0.261,0.289,-0.921,0.545,-0.762,-0.348,0.312,-0.905,-0.29,-0.462,0.167,-0.871,0.132,-0.303,-0.944,0.099,-0.346,-0.933,-0.495,0.124,-0.86,0.762,0.542,-0.354,0.075,-0.321,-0.944,0.737,0.568,-0.366,0.246,-0.924,-0.291,-0.264,-0.758,-0.596,0.282,0.717,-0.638,0.587,0.413,-0.696,-0.832,-0.309,-0.46,0.08,0.814,-0.575,0.658,-0.751,0.053,-0.807,-0.288,-0.516,0.681,-0.732,0.002,0.061,-0.899,0.434,-0.155,-0.153,-0.976,0.621,-0.783,0.039,-0.689,-0.073,0.721,-0.99,0.124,-0.062,0.32,-0.586,-0.745,-0.936,-0.339,-0.091,-0.849,0.475,-0.231,0.407,0.229,-0.884,0.255,-0.215,-0.943,-0.195,-0.056,-0.979,-0.043,0.388,-0.921,0.807,0.472,-0.355,0.831,-0.426,-0.357,-0.022,-0.385,-0.923,0.717,-0.182,-0.673,0.728,-0.494,-0.475,-0.012,-0.671,-0.741,0.863,-0.075,-0.5,0.903,-0.178,-0.391,0.025,-0.767,-0.641,0.469,0.82,-0.327,0.821,-0.205,-0.532,0.387,0.794,-0.469,0.989,-0.04,-0.14,0.957,-0.115,-0.267,0.352,0.714,-0.606,0.919,0.348,-0.184,-0.293,-0.093,-0.952,-0.33,0.37,-0.868,0.473,-0.034,-0.88,-0.143,-0.975,-0.17,-0.861,-0.439,-0.258,-0.388,0.812,-0.437,-0.719,0.446,0.533,-0.577,-0.439,0.689,-0.182,-0.871,0.457,-0.421,0.901,0.102,-0.894,-0.349,0.281,-0.892,-0.349,0.285,-0.42,0.901,0.107,-0.925,0.138,-0.354,-0.99,-0.092,0.109,-0.482,0.68,0.553,-0.102,0.904,0.414,-0.988,-0.097,0.119,-0.1,0.9,0.424,0.045,0.417,-0.908,-0.264,0.327,-0.907,-0.398,0.814,0.424,0.8,-0.191,-0.568,-0.309,0.87,-0.384,0.294,0.364,-0.884,0.596,-0.239,-0.767,-0.602,0.766,0.226,0.749,0.465,-0.471,0.367,-0.186,-0.911,-0.97,0.138,-0.198,-0.152,0.987,-0.052,0.071,-0.291,-0.954,-0.484,0.869,-0.1,0.226,0.12,-0.967,-0.087,-0.176,-0.98,-0.835,0.537,-0.115,0.55,0.736,-0.396,0.528,0.614,-0.586,-0.857,0.416,-0.305,-0.072,0.963,-0.258,0.547,0.288,-0.786,-0.138,-0.369,-0.919,0.102,0.371,-0.923,-0.435,-0.437,-0.787,-0.9,0.06,-0.431,-0.628,-0.108,-0.771,-0.471,0.113,0.875,-0.658,0.364,0.659,-0.779,-0.594,-0.199,-0.405,0.855,0.325,-0.72,0.068,-0.69,-0.939,-0.07,-0.337,-0.835,0.55,-0.031,-0.616,0.687,-0.384,-0.99,0.139,-0.018,-0.99,0.14,-0.017,-0.616,0.688,-0.383,-0.553,0.412,-0.724,-0.675,0.314,-0.667,-0.739,0.59,-0.326,0.373,-0.179,-0.91,0.1,-0.93,-0.355,-0.982,-0.079,0.17,-0.919,-0.355,-0.172,0.117,-0.993,-0.03,-0.904,-0.412,0.118,-0.005,-0.575,-0.818,-0.267,-0.963,0.031,-0.336,-0.55,-0.765,0.421,-0.435,-0.796,-0.37,-0.929,-0.033,0.325,-0.403,-0.856,0.925,-0.355,-0.132,0.702,-0.707,0.088,0.084,-0.782,-0.618,0.765,-0.543,-0.346,0.596,-0.802,0.037,0.659,-0.639,-0.397,0.772,-0.521,0.365,-0.813,0.352,0.464,-0.925,0.235,-0.298,-0.988,0.072,0.137,-0.48,0.745,0.463,-0.417,0.909,0.029,-0.673,0.681,-0.29,-0.902,0.425,0.078,-0.646,0.652,0.396,-0.629,0.455,-0.63,-0.833,0.542,0.112,-0.549,0.592,-0.59,-0.58,-0.516,-0.63,-0.602,-0.646,0.47,-0.575,0.441,0.689,-0.527,-0.136,-0.839,-0.482,-0.529,-0.699,-0.522,-0.016,0.853,-0.961,-0.186,-0.202,-0.918,-0.345,-0.195,-0.479,-0.175,0.86,-0.766,0.505,0.398,-0.401,0.321,0.858,-0.326,0.831,-0.451,-0.829,0.557,0.051,-0.822,0.566,0.063,-0.319,0.839,-0.44,-0.725,-0.159,-0.67,-0.985,-0.167,-0.037,-0.543,0.833,0.105,-0.542,-0.123,-0.832,-0.712,-0.331,-0.619,-0.714,0.624,0.317,-0.381,0.781,-0.495,-0.606,-0.402,-0.687,-0.907,-0.393,0.152,-0.836,-0.086,-0.541,-0.726,-0.298,-0.62,-0.805,-0.587,0.08,-0.93,-0.285,-0.232,-0.711,-0.349,-0.611,-0.915,-0.336,-0.223,0.07,0.321,-0.945,0.44,-0.184,-0.879,-0.572,-0.804,-0.162,-0.436,-0.414,-0.799,-0.86,-0.123,-0.496,-0.088,0.562,-0.822,-0.63,-0.442,-0.638,-0.938,-0.209,-0.277,-0.396,0.795,-0.46,-0.168,0.259,-0.951,-0.339,-0.938,0.075,-0.581,-0.495,0.646,-0.641,-0.707,0.297,0.058,-0.959,0.276,0.165,-0.764,0.624,-0.382,-0.916,0.125,-0.135,-0.558,0.819,-0.559,-0.547,0.623,0.162,-0.79,0.592,0.439,0.153,0.886,-0.302,0.327,0.896,0.237,-0.822,0.517,0.851,-0.428,0.303,0.226,0.666,0.711,-0.897,-0.424,-0.122,-0.714,-0.7,-0.008,0.41,0.389,0.825,-0.908,0.246,0.34,-0.62,-0.759,0.199,-0.806,0.182,0.563,-0.91,-0.406,0.082,-0.854,-0.491,0.172,-0.745,0.091,0.66,-0.568,0.61,-0.552,-0.703,-0.193,0.684,-0.417,0.908,-0.04,-0.323,-0.835,0.446,-0.486,0.33,0.809,-0.473,0.088,0.876,-0.157,-0.782,0.603,-0.252,0.961,0.117,-0.989,-0.139,0.054,-0.984,-0.145,0.103,-0.248,0.956,0.159,-0.584,-0.33,-0.741,-0.756,-0.521,-0.397,-0.407,0.778,0.478,-0.114,0.929,-0.352,-0.383,0.797,-0.466,-0.656,0.656,0.372,-0.153,0.979,-0.138,-0.196,0.962,-0.19,-0.695,0.641,0.325,-0.339,0.914,0.222,-0.672,0.63,-0.389,-0.811,0.585,0.025,-0.291,0.837,-0.464,0.633,-0.72,-0.283,0.113,-0.972,0.205,0.261,-0.943,-0.207,0.407,-0.901,-0.151,0.259,-0.93,0.261,-0.511,-0.778,0.366,-0.638,-0.42,-0.645,0.121,-0.543,-0.831,-0.269,-0.71,-0.651,-0.53,-0.278,-0.801,-0.161,-0.568,-0.807,-0.601,-0.471,0.646,0.625,-0.75,0.216,-0.311,-0.64,0.702,0.388,-0.914,-0.116,0.663,-0.746,0.068,-0.056,-0.484,0.873,-0.073,-0.599,-0.798,-0.183,0.455,0.872,-0.856,0.514,-0.053,-0.992,0.088,0.086,-0.99,0.094,0.106,-0.854,0.52,-0.033,-0.791,-0.211,-0.574,0.587,-0.603,0.541,0.331,0.183,0.926,0.241,-0.587,0.773,0.34,-0.59,0.732,0.422,0.18,0.888,-0.272,-0.962,-0.015,0.09,-0.945,-0.315,0.784,0.197,0.589,0.648,-0.228,0.727,0.71,-0.273,0.649,0.846,0.152,0.511,0.33,-0.269,0.905,0.721,-0.195,0.664,0.342,-0.185,0.921,0.164,-0.912,-0.377,0.533,-0.559,-0.635,0.741,0.196,0.643,0.891,-0.452,0.032,0.952,-0.271,-0.144,0.801,0.376,0.466,0.063,-0.052,0.997,0.142,-0.236,0.961,0.886,0.177,0.428,-0.577,0.012,0.817,-0.56,-0.417,0.716,0.904,-0.286,0.319,0.377,-0.255,0.89,0.184,-0.105,0.977,-0.535,0.143,0.833,-0.912,-0.305,-0.276,0.177,0.389,0.904,-0.918,0.189,-0.349,-0.465,-0.849,0.252,-0.492,-0.763,0.42,-0.944,0.274,-0.182,0.677,0.134,-0.724,0.862,-0.506,-0.003,-0.759,-0.366,0.539,-0.161,-0.961,-0.225,0.142,-0.989,0.048,-0.498,-0.389,0.775,-0.718,-0.686,0.112,-0.153,-0.986,0.059,0.067,-0.69,0.721,-0.289,-0.826,0.485,0.005,-0.994,0.112,-0.13,-0.833,0.538,-0.587,-0.755,-0.294,-0.142,-0.135,0.981,-0.745,0.172,0.644,-0.572,-0.203,0.795,-0.509,-0.152,0.847,-0.683,0.222,0.696,-0.905,0.424,-0.021,-0.436,-0.69,-0.578,-0.176,-0.98,0.095,-0.938,-0.331,0.105,-0.888,-0.278,-0.366,-0.13,-0.931,-0.342,-0.727,-0.177,0.663,0.539,-0.725,-0.428,0.547,-0.576,0.608,-0.131,-0.987,0.096,0.884,-0.21,0.418,0.164,-0.544,0.823,0.418,-0.733,-0.537,0.475,-0.702,-0.53,0.221,-0.513,0.829,-0.532,-0.398,0.747,-0.433,-0.863,-0.261,0.313,-0.944,-0.105,-0.242,-0.148,0.959,0.173,-0.928,-0.33,0.411,-0.219,0.885,-0.847,-0.404,0.345,0.358,-0.933,-0.039,-0.675,-0.408,0.614,-0.083,-0.988,-0.134,0.109,-0.994,0.023,-0.483,-0.415,0.771,-0.541,-0.471,-0.697,-0.039,-0.721,-0.692,-0.051,-0.63,0.775,-0.676,-0.689,-0.262,0.107,-0.889,-0.445,-0.55,-0.834,-0.049,-0.274,-0.863,-0.425,0.71,-0.646,0.281,0.434,-0.616,0.657,0.007,-0.804,0.595,0.19,-0.969,-0.159,0.617,-0.781,-0.097,-0.141,-0.841,0.523,0.966,-0.253,-0.052,0.762,-0.008,0.648,0.853,-0.332,0.403,0.998,0.016,-0.053,0.917,0.364,0.161,0.75,-0.417,0.513,0.996,0.091,0.004,0.748,-0.349,0.565,0.518,-0.474,-0.712,0.62,-0.227,-0.751,0.836,-0.136,0.531,-0.024,-0.877,0.479,0.077,-0.937,-0.34,0.937,-0.196,-0.288,-0.293,-0.627,0.722,-0.416,-0.746,0.521,0.819,-0.311,-0.482,0.392,-0.774,0.497,-0.462,-0.813,-0.355,0.344,-0.843,-0.413,-0.029,-0.738,0.674,0.593,-0.777,-0.213,0.242,-0.461,0.854,0.182,-0.877,-0.444,0.549,-0.637,-0.541,0.623,-0.211,0.753,0.283,-0.469,0.837,0.688,-0.493,-0.532,0.427,-0.32,0.846,-0.595,-0.413,-0.69,0.231,-0.821,0.522,-0.351,-0.866,-0.357,-0.535,-0.427,-0.729,0.484,-0.334,0.808,-0.771,-0.6,0.214,-0.553,-0.819,-0.156,0.711,-0.561,0.425,-0.385,-0.71,0.589,-0.423,-0.895,0.143,0.674,-0.738,-0.004,-0.262,-0.538,0.801,0.516,-0.855,-0.057,0.608,-0.501,0.616,0.218,-0.435,0.873,0.074,-0.691,0.719,0.464,-0.756,0.462,0.084,-0.283,0.956,0.924,-0.363,0.116,0.935,0.045,0.352,0.426,-0.221,0.878,0.444,-0.366,0.818,0.95,-0.08,0.301,0.702,-0.055,0.71,0.738,0.6,-0.309,0.208,0.9,0.383,0.688,-0.717,0.114,0.656,-0.658,-0.37,0.171,0.969,-0.18,-0.33,0.277,0.902,0.327,-0.7,0.635,0.88,-0.085,-0.468,0.36,-0.331,0.872,0.774,-0.544,0.324,0.811,-0.173,0.558,0.419,-0.825,0.379,-0.195,0.486,0.852,-0.479,0.129,0.868,0.781,-0.465,-0.417,-0.147,0.896,0.42,0.734,0.48,-0.48,0.755,-0.003,-0.656,-0.505,0.59,0.63,-0.009,0.109,0.994,0.638,0.479,0.603,0.143,0.961,0.239,0.244,0.734,0.634,0.727,0.683,0.069,0.334,0.937,0.1,-0.224,-0.348,0.91,0.272,-0.829,0.488,0.829,0.456,-0.322,0.072,-0.253,0.965,-0.203,-0.875,0.439,0.574,-0.121,-0.81,0.935,-0.314,0.167,-0.647,-0.538,-0.541,0.456,0.05,-0.889,0.92,-0.39,-0.036,0.572,-0.818,-0.054,0.081,-0.412,-0.908,0.724,0.131,-0.677,0.285,-0.916,-0.281,0.458,0.04,-0.888,0.721,-0.64,0.265,0.347,0.229,-0.91,0.783,0.505,-0.363,0.715,0.201,-0.67,0.439,0.401,-0.804,0.51,0.703,-0.496,0.96,-0.228,-0.161,-0.269,-0.934,-0.234,-0.816,-0.059,-0.575,-0.191,-0.732,-0.654,-0.294,-0.86,-0.416,-0.927,-0.198,-0.318,-0.045,0.101,-0.994,-0.83,-0.545,-0.122,-0.58,0.417,-0.7,0.965,0.242,-0.104,0.77,0.452,-0.45,-0.846,-0.257,-0.466,-0.913,-0.352,-0.205,0.881,0.435,-0.187,0.333,-0.899,-0.285,0.224,-0.838,-0.497,0.776,0.494,-0.391,0.428,-0.753,0.5,0.41,-0.82,0.399,0.759,0.427,-0.492,-0.251,-0.422,0.871,0.138,-0.094,-0.986,-0.666,-0.745,0.038,-0.65,-0.629,0.426,0.415,0.249,-0.875,0.067,-0.998,0.017,-0.026,-0.999,-0.022,0.322,0.247,-0.914,0.659,0.386,-0.645,-0.033,-0.999,-0.029,0.652,0.387,-0.652,0.965,0.12,0.234,0.98,0.024,0.2,0.666,0.298,-0.684,0.29,0.411,0.864,0.98,0.032,0.196,0.29,0.418,0.861,0.094,-0.266,0.959,0.27,-0.324,0.906,0.467,0.359,0.808,-0.545,-0.794,0.27,-0.194,-0.98,0.037,0.769,0.199,0.608,0.485,-0.059,0.873,-0.605,-0.438,-0.665,-0.321,-0.18,-0.93,0.072,-0.423,-0.903,-0.291,-0.933,-0.213,-0.683,-0.69,-0.24,0.29,-0.689,-0.665,-0.652,-0.611,-0.45,-0.13,-0.314,-0.94,0.506,-0.859,-0.081,-0.391,0.378,-0.839,0.804,0.275,-0.527,0.126,-0.304,-0.944,0.066,-0.212,-0.975,0.745,0.366,-0.557,0.916,-0.006,-0.401,0.831,-0.112,-0.544,0.648,0.244,-0.721,0.355,0.411,0.84,-0.316,-0.458,0.831,-0.065,-0.679,-0.731,0.469,-0.524,0.711,0.086,-0.505,0.859,-0.504,-0.657,-0.561,-0.173,-0.898,-0.404,-0.33,-0.941,-0.074,-0.684,-0.706,-0.182,0.564,-0.704,-0.431,0.57,-0.717,-0.401,-0.678,-0.719,-0.152,0.208,-0.767,-0.607,-0.507,-0.777,-0.373,0.358,-0.514,-0.78,-0.248,-0.383,0.89,0.19,-0.979,-0.077,0.075,-0.967,0.244,-0.364,-0.698,0.617,0.425,-0.746,0.513,0.067,-0.618,0.783,-0.656,0.386,-0.649,-0.298,0.258,-0.919,-0.244,-0.205,-0.948,-0.073,0.779,-0.622,0.339,0.189,-0.922,-0.064,-0.026,-0.998,-0.253,0.301,-0.92,0.15,0.516,-0.844,0.023,-0.439,-0.898,-0.924,-0.299,-0.238,-0.728,0.646,-0.231,-0.081,-0.036,-0.996,-0.119,-0.079,-0.99,-0.766,0.602,-0.225,0.339,-0.088,-0.937,-0.116,0.09,-0.989,0.342,0.081,-0.936,-0.587,-0.809,-0.031,-0.836,-0.548,-0.03,0.093,0.342,-0.935,-0.305,-0.619,-0.724,-0.915,-0.23,-0.331,-0.431,0.676,-0.597,0.014,-0.685,-0.728,-0.314,-0.805,-0.503,-0.713,0.573,-0.404,-0.517,0.368,-0.773,-0.617,0.234,-0.752,-0.813,0.439,-0.382,-0.201,0.902,-0.382,-0.153,0.838,-0.523,-0.765,0.375,-0.523,0.144,0.974,0.175,-0.661,0.681,-0.315,-0.448,0.791,0.418,0.038,0.623,-0.781,-0.176,0.496,-0.85,-0.662,0.664,0.349,0.313,0.947,0.066,0.235,0.441,-0.866,-0.746,0.117,-0.656,0.122,0.781,-0.612,0.221,0.661,-0.717,-0.64,-0.011,-0.768,-0.248,0.724,-0.644,0.905,0.241,-0.351,0.7,-0.573,-0.427,0.594,-0.319,-0.739,0.978,0.092,-0.188,0.673,-0.481,-0.561,0.809,-0.062,-0.585,0.104,0.242,-0.965,-0.355,0.34,-0.871,0.401,0.47,-0.786,-0.297,0.567,-0.768,-0.027,0.816,-0.577,0.253,0.078,-0.964,-0.019,-0.964,0.264,-0.343,-0.396,0.852,-0.593,-0.569,0.57,-0.43,-0.737,0.522,-0.169,-0.576,0.8,-0.915,0.401,-0.052,-0.925,0.141,-0.351,-0.181,-0.867,0.465,-0.893,-0.346,0.288,-0.383,-0.648,0.658,-0.871,0.486,0.078,-0.698,-0.319,-0.641,-0.731,-0.603,-0.318,-0.9,0.229,0.37,0.132,0.742,-0.657,-0.89,-0.322,0.323,-0.011,0.997,-0.077,0.667,-0.588,-0.457,0.364,0.351,-0.863,0.376,0.321,-0.869,0.499,-0.624,-0.602,-0.162,0.965,-0.206,0.899,0.424,0.107,0.417,-0.468,-0.779,0.829,0.558,-0.045,0.982,-0.187,-0.038,0.589,-0.241,-0.772,0.465,0.508,-0.725,0.664,-0.567,-0.487,0.288,-0.672,-0.682,0.119,0.411,-0.904,0.426,0.063,-0.903,-0.027,-0.336,-0.941,-0.334,0.012,-0.943,-0.215,0.725,-0.654,-0.641,-0.572,-0.512,-0.852,0.48,-0.208,0.002,-0.438,-0.899,-0.123,-0.694,-0.709,-0.972,0.234,-0.025,-0.691,0.097,-0.716,-0.709,0.007,-0.706,-0.989,0.144,-0.015,-0.552,0.417,-0.722,-0.769,0.033,-0.638,-0.613,0.443,-0.655,0.443,-0.035,-0.896,-0.769,0.042,-0.638,0.444,-0.025,-0.896,-0.204,-0.751,-0.628,-0.695,-0.339,-0.635,-0.085,0.42,-0.903,0.01,-0.56,-0.828,-0.332,-0.597,-0.73,-0.484,0.378,-0.79,0.622,0.777,0.096,0.696,-0.391,0.603,-0.404,-0.882,-0.243,0.896,-0.315,-0.313,0.596,-0.571,0.564,0.804,-0.482,-0.348,0.979,-0.201,-0.021,0.215,-0.976,0.021,0.626,-0.577,-0.524,0.618,-0.779,-0.107,-0.694,0.521,0.496,-0.686,0.723,0.078,-0.861,0.443,-0.249,0.206,0.946,0.25,0.039,0.868,-0.496,-0.229,0.885,0.405,0.146,0.847,0.511,0.387,0.832,-0.398,-0.773,-0.532,-0.345,-0.83,-0.482,-0.282,0.33,0.883,-0.334,-0.558,-0.527,-0.641,-0.742,-0.44,-0.505,0.145,0.969,-0.198,-0.448,-0.776,-0.443,-0.626,0.711,0.32,-0.951,-0.245,0.186,-0.634,-0.774,-0.014,-0.04,0.972,0.23,-0.378,-0.838,-0.394,-0.394,0.857,0.332,-0.685,-0.699,-0.204,-0.399,-0.871,-0.285,-0.061,0.939,0.339,-0.254,0.874,-0.413,-0.518,-0.849,-0.109,-0.372,0.897,-0.238,-0.119,-0.161,-0.98,-0.896,0.066,0.44,-0.497,0.753,-0.431,-0.783,-0.384,0.49,-0.48,-0.147,0.865,-0.216,0.973,-0.083,-0.695,0.519,-0.497,-0.848,-0.055,0.527,-0.35,0.472,0.809,-0.673,0.007,-0.74,-0.714,-0.143,-0.685,-0.386,0.343,0.856,-0.813,0.581,0.049,-0.822,0.174,0.542,-0.646,0.24,-0.725,-0.388,-0.825,-0.411,-0.641,-0.739,0.206,-0.941,0.339,-0.007,-0.503,0.312,-0.806,-0.72,-0.612,0.327,-0.582,0.439,-0.685,0.12,0.302,-0.946,-0.043,-0.525,-0.85,-0.733,-0.328,-0.596,-0.405,0.785,-0.468,-0.479,-0.849,-0.224,-0.876,0.436,0.207,-0.11,0.857,-0.503,-0.5,-0.841,-0.206,-0.131,0.865,-0.485,0.03,-0.669,-0.743,-0.464,-0.883,0.073,-0.665,0.634,0.395,-0.953,-0.304,-0.011,-0.46,-0.861,0.219,-0.947,-0.278,0.159,-0.795,-0.606,0.034,0.7,-0.616,0.36,0.792,-0.29,0.538,-0.949,-0.305,0.08,0.184,-0.633,0.752,-0.458,-0.655,0.601,0.695,-0.52,0.496,-0.954,-0.209,0.216,0.526,-0.798,0.294,0.528,-0.79,0.31,-0.952,-0.202,0.23,-0.862,-0.491,-0.125,-0.457,-0.848,0.268,-0.547,-0.56,0.623,-0.837,-0.207,0.506,0.436,-0.36,0.824,-0.941,-0.121,0.317,-0.728,-0.506,0.463,-0.318,-0.097,0.943,-0.531,0.288,0.797,-0.444,-0.493,0.749,0.084,-0.429,0.9,-0.042,0.347,0.937,-0.532,0.53,-0.66,-0.73,0.274,-0.626,-0.223,0.112,0.968,-0.66,0.64,-0.393,-0.59,-0.295,-0.752,-0.158,-0.755,0.636,-0.99,-0.108,0.092,-0.777,0.252,-0.577,-0.706,0.619,-0.345,-0.473,0.129,-0.871,-0.37,-0.917,0.147,-0.603,-0.428,0.674,-0.787,0.614,-0.056,-0.847,0.467,-0.255,-0.667,-0.587,0.459,-0.025,0.863,0.504,-0.369,-0.916,0.156,-0.787,0.616,-0.048,-0.828,0.349,-0.438,-0.851,0.321,-0.417,-0.807,0.59,-0.028,-0.578,0.366,-0.729,-0.841,0.361,-0.402,-0.568,0.409,-0.714,-0.382,-0.904,0.192,-0.278,-0.457,0.845,-0.455,0.89,-0.01,-0.978,0.171,-0.119,-0.631,-0.325,0.705,-0.051,0.313,0.948,-0.912,-0.172,0.373,-0.352,-0.935,0.037,0.599,-0.575,0.557,0.252,-0.56,0.789,-0.53,0.144,0.836,-0.811,0.297,0.504,-0.107,-0.974,0.197,0.721,-0.526,0.452,-0.099,0.683,0.724,0.022,-0.186,0.982,0.275,-0.158,0.948,0.135,0.709,0.692,-0.558,-0.332,0.761,-0.552,-0.336,0.763,0.14,0.706,0.694,-0.912,-0.394,-0.119,-0.576,-0.816,0.043,0.433,0.337,0.836,-0.661,0.02,0.75,0.441,-0.87,0.219,0.371,-0.035,0.928,0.087,-0.339,0.937,0.111,-0.361,0.926,0.396,-0.059,0.916,-0.5,0.113,0.859,0.158,-0.298,0.941,-0.457,0.171,0.873,0.515,-0.828,0.223,0.749,-0.612,0.253,-0.253,0.359,0.899,-0.057,-0.038,0.998,0.042,0.012,0.999,-0.161,0.405,0.9,-0.593,0.386,0.707,0.066,0.051,0.996,-0.569,0.425,0.704,-0.473,-0.775,-0.418,-0.227,-0.95,-0.216,-0.3,0.235,0.924,-0.838,0.251,-0.484,-0.871,0.134,-0.474,-0.336,0.108,0.936,-0.746,0.663,0.06,-0.738,-0.627,0.25,-0.613,-0.098,0.784,-0.88,-0.218,0.421,0.25,-0.953,-0.169,0.517,-0.834,0.194,-0.194,-0.98,-0.034,-0.152,-0.973,-0.171,0.56,-0.827,0.056,0.22,-0.49,0.843,0.5,0.079,0.862,0.055,0.052,0.997,0.643,-0.33,0.691,0.878,0.447,0.172,0.29,0.829,0.478,-0.311,-0.322,0.894,-0.307,-0.324,0.895,0.294,0.827,0.478,-0.935,-0.093,0.342,-0.589,-0.561,0.582,0.592,0.425,0.685,-0.616,0.179,0.767,-0.441,-0.884,0.153,0.766,-0.638,0.071,-0.429,-0.705,0.565,-0.656,-0.755,-0.019,0.556,-0.685,-0.47,-0.444,-0.379,0.812,-0.142,-0.989,-0.044,0.07,-0.613,0.787,-0.35,-0.691,0.632,-0.063,-0.998,-0.016,-0.278,-0.7,0.658,-0.991,-0.128,0.042,0.166,-0.811,0.561,-0.744,0.073,0.664,0.11,-0.983,0.149,0.443,-0.825,0.351,-0.356,0.257,0.899,-0.672,0.122,0.73,0.529,-0.745,0.405,-0.586,0.202,0.784,-0.847,0.102,0.522,0.708,-0.693,0.138,0.75,-0.481,0.454,0.047,-0.64,0.767,0.927,-0.029,0.373,0.235,-0.069,0.969,0.28,-0.499,0.82,0.448,-0.46,0.766,0.391,-0.033,0.92,0.102,-0.722,0.684,0.338,-0.769,0.543,0.608,-0.075,0.79,-0.051,-0.719,0.694,0.375,-0.884,-0.277,0.975,-0.218,-0.044,0.863,-0.294,0.412,0.544,-0.227,0.807,0.169,-0.141,0.976,0.601,-0.614,0.513,0.966,0.184,-0.181,0.594,0.787,0.169,0.973,-0.227,0.035,0.969,-0.208,-0.133,0.59,0.808,-0.012,-0.461,-0.089,0.883,-0.283,-0.88,0.382,0.796,-0.112,-0.595,0.127,-0.779,0.614,0.989,0.059,-0.133,-0.442,0.159,0.883,0.183,-0.673,0.717,0.899,0.009,0.439,0.173,0.745,0.644,-0.006,0.398,0.917,0.479,0.112,0.871,0.658,0.459,0.597,-0.596,0.793,0.128,-0.737,0.573,0.359,0.528,0.257,0.809,-0.424,0.865,0.269,-0.291,-0.157,-0.944,0.651,-0.69,-0.315,-0.634,-0.625,-0.455,0.641,-0.48,-0.599,0.297,-0.948,-0.11,0.338,-0.786,-0.518,0.822,-0.461,-0.335,0.776,-0.627,0.071,0.418,-0.89,0.181,0.273,-0.921,-0.279,0.619,-0.66,-0.426,0.299,-0.816,0.495,0.904,0.015,-0.428,0.93,0.121,0.346,0.985,-0.174,-0.005,0.944,0.158,-0.29,0.889,0.453,0.062,0.283,-0.855,0.434,0.289,-0.865,0.411,0.895,0.444,0.039,0.512,0.003,0.859,0.285,-0.952,0.109,0.7,-0.378,-0.606,0.967,-0.234,0.103,0.276,-0.942,-0.191,0.959,-0.225,-0.175,0.628,0.148,0.764,0.303,-0.246,-0.921,0.651,0.747,0.137,0.601,-0.571,0.56,0.47,0.063,-0.88,0.744,-0.305,0.594,0.666,-0.676,0.317,0.661,0.116,-0.741,0.74,0.487,-0.463,0.857,-0.448,-0.253,0.231,-0.613,-0.756,0.159,0.334,-0.929,0.779,-0.624,0.057,0.71,-0.704,0.022,0.1,0.266,-0.959,0.458,0.83,-0.318,0.498,0.806,-0.32,0.135,0.245,-0.96,-0.63,0.357,0.689,-0.474,0.69,-0.547,-0.687,0.721,-0.088,0.48,0.809,-0.338,-0.645,0.36,0.674,0.458,0.559,0.691,0.451,0.596,0.664,-0.651,0.393,0.65,0.726,-0.687,-0.026,0.018,0.718,0.695,0.982,-0.025,0.187,0.926,-0.351,-0.138,-0.479,0.682,0.553,-0.039,0.213,0.976,0.142,0.344,0.928,-0.311,0.803,0.509,0.306,-0.708,0.636,0.762,-0.532,0.37,0.087,0.957,0.276,0.169,0.723,0.67,0.598,0.614,0.515,0.516,0.848,0.122,-0.08,-0.459,0.885,0.052,-0.549,0.834,0.648,0.758,0.071,-0.303,-0.273,0.913,0.678,0.303,0.67,0.323,0.579,0.749,-0.778,-0.592,0.211,-0.213,-0.591,-0.778,0.809,0.58,-0.101,0.92,-0.308,0.242,0.821,-0.512,-0.253,0.71,0.376,-0.596,0.772,0.602,-0.203,0.972,0.233,-0.022,0.91,0.007,-0.415,0.761,0.649,-0.009,-0.296,-0.662,-0.689,-0.607,-0.316,-0.729,0.96,-0.168,-0.224,-0.684,0.246,-0.687,0.541,0.811,-0.223,-0.307,-0.535,-0.787,-0.682,-0.37,-0.631,0.137,0.989,-0.054,0.772,0.623,0.127,0.811,0.576,-0.104,0.176,0.942,-0.285,0.843,-0.178,0.507,0.899,-0.419,0.13,0.235,0.682,-0.692,0.602,0.659,-0.45,0.758,-0.628,-0.175,0.449,0.431,-0.783,0.969,-0.201,-0.142,0.719,-0.594,-0.361,0.93,-0.167,-0.327,0.621,-0.781,0.063,0.198,-0.881,-0.43,0.507,-0.267,-0.82,0.725,-0.684,0.08,0.054,-0.996,0.076,-0.115,-0.556,-0.823,0.91,-0.414,0.018,0.284,-0.614,0.736,-0.654,-0.728,-0.206,-0.576,-0.526,-0.626,-0.062,-0.265,0.962,-0.873,-0.225,-0.432,0.374,-0.768,-0.52,-0.098,-0.277,0.956,0.342,-0.778,-0.526,0.542,-0.695,0.472,0.049,-0.998,-0.026,0.904,-0.417,-0.092,0.379,-0.712,0.591,-0.117,-0.981,0.155,0.327,-0.73,-0.6,0.933,0.156,0.325,-0.1,-0.916,-0.388,0.951,0.221,-0.218,0.263,-0.958,-0.113,0.219,-0.944,-0.246,0.906,0.235,-0.351,0.194,-0.971,0.137,-0.734,-0.559,-0.386,0.109,0.589,-0.801,0.196,0.164,-0.967,-0.54,-0.036,-0.841,-0.627,0.389,-0.675,0.05,0.405,-0.913,-0.561,-0.006,-0.828,0.029,0.435,-0.9,-0.129,0.012,-0.992,-0.259,0.056,-0.964,-0.092,0.476,-0.875,0.046,-0.262,-0.964,-0.205,-0.309,-0.929,-0.322,0.432,-0.842,0.207,-0.241,-0.948,-0.228,-0.186,-0.956,0.182,-0.109,-0.977,0.493,-0.861,0.127,0.372,-0.92,0.12,0.062,-0.168,-0.984,0.912,0.032,-0.409,0.28,-0.959,-0.048,0.833,-0.002,-0.554,0.744,-0.286,0.605,0.732,-0.342,0.59,0.821,-0.058,-0.568,0.343,0.47,0.814,0.945,-0.164,0.283,0.573,0.662,0.483,0.601,-0.799,-0.01,0.616,-0.787,-0.045,0.587,0.674,0.448,-0.095,-0.987,0.129,0.957,-0.014,0.29,0.679,-0.716,0.166,0.015,-0.999,-0.052,0.706,0.662,0.253,-0.276,-0.911,0.305,0.214,0.463,-0.86,-0.349,-0.459,-0.817,-0.514,-0.795,-0.321,0.449,0.787,-0.423,0.83,-0.047,-0.556,0.608,-0.117,-0.785,0.21,0.712,-0.67,0.599,0.688,-0.41,-0.622,-0.642,-0.448,0.722,0.106,-0.683,0.091,-0.663,-0.743,-0.404,-0.223,-0.887,0.263,0.513,-0.817,0.58,-0.21,-0.787,-0.404,-0.032,-0.914,0.58,-0.019,-0.814,0.578,-0.791,-0.199,-0.396,-0.882,-0.254,-0.471,-0.118,-0.874,-0.132,-0.767,-0.628,-0.584,-0.811,-0.032,-0.959,-0.165,-0.231,-0.113,0.088,-0.99,-0.518,-0.796,-0.313,-0.254,-0.681,-0.687,-0.253,-0.967,0.037,-0.919,-0.093,0.383,-0.92,0.193,-0.341,-0.796,-0.186,-0.576,-0.823,-0.23,-0.519,-0.946,0.152,-0.288,-0.522,-0.186,-0.832,-0.563,-0.451,-0.693,-0.983,-0.091,-0.16,-0.476,-0.087,-0.875,-0.891,-0.241,-0.384,-0.827,0.137,-0.545,0.102,-0.318,-0.943,-0.898,-0.177,-0.404,0.095,-0.25,-0.964,-0.625,-0.538,-0.565,-0.902,0.405,-0.15,-0.227,0.847,-0.481,-0.891,-0.341,-0.3,-0.927,-0.257,0.275,-0.268,0.945,0.187,-0.491,0.085,-0.867,-0.627,0.012,-0.779,-0.404,0.872,0.276,-0.109,0.803,-0.585,-0.366,-0.554,-0.748,-0.703,-0.706,0.086,-0.851,0.453,-0.266,-0.437,-0.647,-0.625,-0.922,0.36,-0.143,-0.336,0.068,-0.939,-0.355,0.017,-0.935,-0.94,0.311,-0.138,0.197,0.969,-0.146,0.255,0.854,-0.454,-0.891,0.212,-0.403,-0.475,0.879,-0.033,-0.64,0.037,-0.768,-0.122,0.992,0.041,0.59,-0.437,-0.679,0.325,-0.514,-0.794,-0.408,0.909,-0.083,0.433,0.233,-0.87,0.096,-0.07,-0.993,-0.799,0.557,-0.226,0.174,0.796,0.579,0.646,0.76,0.069,-0.25,0.515,-0.82,0.244,0.965,0.094,0.439,0.241,-0.866,0.021,0.405,-0.914,-0.094,0.745,-0.661,-0.059,-0.048,-0.997,0.018,0.818,0.575,0.958,0.167,-0.234,0.251,0.058,-0.966,-0.688,0.708,-0.157,-0.054,0.826,-0.561,0.288,-0.928,-0.238,-0.372,-0.917,0.142,-0.149,-0.949,-0.278,0.342,-0.939,0.013,0.079,-0.909,0.41,-0.806,-0.172,-0.566,-0.794,-0.178,-0.581,0.09,-0.914,0.397,-0.474,-0.513,0.715,0.235,-0.947,0.218,-0.919,-0.18,-0.35,0.047,-0.987,-0.151,-0.02,-0.959,0.281,-0.985,-0.153,0.076,0.571,-0.416,-0.708,-0.666,-0.536,-0.519,-0.169,-0.619,-0.767,-0.168,-0.968,0.189,0.423,-0.424,-0.801,0.988,-0.147,-0.057,-0.202,-0.979,-0.018,0.956,-0.157,-0.249,0.002,-0.939,0.343,-0.172,-0.985,0.001,0.783,-0.202,-0.588,0.265,-0.963,0.038,0.091,-0.987,-0.134,0.609,-0.226,-0.76,0.685,-0.552,-0.475,-0.243,-0.826,-0.508,0.347,-0.39,-0.853,0.681,-0.407,-0.608,0.543,-0.704,-0.458,0.218,-0.668,-0.712,0.362,0.067,-0.93,-0.853,-0.519,0.048,-0.839,0.226,-0.495,-0.212,0.423,-0.881,-0.924,-0.174,0.342,-0.277,0.744,-0.608,0.397,0.443,-0.804,-0.021,0.887,-0.461,-0.827,0.487,0.281,-0.843,0.027,0.538,0.467,0.615,-0.635,-0.708,-0.661,-0.248,-0.877,-0.465,-0.117,0.298,0.811,-0.504,-0.268,-0.327,-0.906,-0.615,-0.206,-0.761,-0.05,0.932,-0.359,0.516,0.551,-0.656,-0.318,-0.699,-0.64,-0.884,-0.318,-0.343,-0.612,-0.363,-0.703,-0.947,0.217,-0.238,0.185,0.974,-0.133,0.659,0.527,-0.537,-0.525,-0.324,-0.787,-0.913,0.185,-0.364,-0.657,0.121,-0.744,-0.792,0.128,0.598,0.826,0.43,0.364,-0.962,0.239,-0.13,0.338,0.426,0.839,-0.779,0.323,0.537,-0.996,0.077,0.05,0.79,0.255,0.558,0.562,0.657,0.503,0.26,0.546,0.797,0.465,0.134,0.875,0.308,0.818,-0.486,0.049,0.912,-0.407,0.22,0.223,0.95,0.425,-0.594,-0.683,-0.461,-0.417,0.783,-0.35,-0.91,-0.224,-0.112,-0.728,-0.676,-0.278,0.099,0.956,-0.481,0.78,-0.401,-0.414,-0.886,-0.209,-0.779,0.624,0.06,-0.35,-0.433,-0.831,-0.588,-0.793,-0.163,-0.5,-0.352,-0.791,-0.457,-0.723,-0.517,-0.747,0.109,0.655,-0.79,0.48,0.381,-0.777,-0.262,0.573,-0.572,-0.191,0.798,-0.613,0.541,0.575,0.44,0.098,-0.893,-0.492,0.87,0.03,0.576,0.135,-0.806,0.245,-0.148,-0.958,-0.808,0.296,0.509,0.314,0.298,-0.902,-0.696,-0.663,-0.276,-0.419,-0.668,-0.615,0.309,-0.317,-0.897,-0.813,-0.274,0.514,0.02,0.668,-0.744,0.001,-0.404,-0.915,-0.288,0.58,-0.762,0.07,0.353,-0.933,-0.29,-0.797,-0.53,-0.676,-0.66,-0.327,-0.133,-0.501,-0.855,-0.849,0.426,0.312,-0.692,0.722,-0.013,-0.99,0.003,0.14,-0.904,0.033,0.426,-0.613,0.75,0.25,-0.999,-0.023,0.022,-0.248,-0.506,0.826,0.034,0.335,0.942,-0.633,0.492,0.597,-0.647,0.458,0.609,0.022,0.305,0.952,-0.313,0.56,0.767,-0.138,-0.451,0.882,-0.524,0.547,0.653,-0.788,-0.607,0.106,-0.038,-0.934,0.354,0.316,0.18,0.931,-0.831,-0.041,0.555,0.179,-0.791,0.585,-0.622,0.097,0.777,-0.772,-0.283,0.57,0.356,-0.461,0.813,-0.588,0.06,0.806,0.503,-0.716,0.484,0.75,-0.389,0.535,-0.342,0.386,0.857,0.491,-0.722,0.487,0.494,-0.72,0.488,-0.338,0.389,0.857,-0.732,-0.219,0.645,-0.089,-0.668,0.739,0.305,-0.06,0.951,-0.857,0.467,0.218,-0.948,0.248,0.201,0.207,-0.297,0.932,-0.408,0.664,-0.627,0.045,-0.014,0.999,-0.481,0.808,-0.34,-0.922,0.301,0.245,-0.38,0.721,-0.579,-0.731,0.465,-0.5,-0.758,0.546,-0.356,-0.408,0.803,-0.434,-0.108,0.675,-0.73,-0.236,0.747,0.621,0.414,0.876,0.248,-0.624,0.288,-0.726,-0.681,0.295,-0.67,0.353,0.883,0.308,0.339,0.028,-0.94,-0.444,-0.853,-0.275,-0.374,0.067,0.925,-0.672,-0.595,-0.441,-0.487,-0.779,-0.394,-0.174,-0.133,0.976,-0.882,0.472,0.002,-0.494,-0.852,-0.172,-0.889,0.399,0.224,-0.526,-0.678,-0.514,0.408,0.09,0.909,0.524,0.418,0.742,-0.018,-0.074,0.997,0.281,-0.605,0.745,0.871,-0.199,0.45,0.161,0.117,0.98,0.321,-0.595,0.737,0.205,0.127,0.97,-0.991,-0.087,-0.098,-0.924,-0.365,-0.116,0.269,-0.135,0.954,-0.564,-0.309,0.766,0.527,0.052,0.848,-0.755,0.655,0.03,-0.869,0.362,0.337,-0.734,0.463,0.497,-0.6,0.771,0.212,-0.795,-0.581,-0.171,-0.57,-0.762,0.308,-0.352,0.572,0.741,-0.901,0.087,-0.425,-0.922,0.017,-0.386,-0.376,0.492,0.785,-0.831,0.464,-0.307,0.259,-0.533,-0.805,0.783,-0.568,0.255,-0.026,0.004,1.0,0.32,-0.248,0.914,0.544,-0.67,-0.505,0.341,-0.48,-0.808,0.057,0.057,0.997,-0.482,-0.77,-0.417,0.559,-0.677,-0.479,-0.28,-0.953,-0.112,-0.891,0.247,-0.38,0.696,-0.526,0.488,-0.764,0.388,0.516,0.027,-0.931,0.364,0.621,-0.592,0.514,-0.169,0.727,0.665,-0.026,-0.424,0.905,0.728,-0.403,0.555,0.584,0.748,0.315,0.081,-0.271,0.959,0.329,-0.481,0.813,0.814,0.553,0.179,-0.374,-0.217,0.902,0.609,0.781,0.143,-0.115,0.953,0.281,-0.835,0.17,0.523,-0.257,-0.201,0.945,0.421,0.609,0.672,-0.089,0.993,0.082,0.181,-0.269,0.946,0.383,0.92,0.083,-0.239,-0.323,0.916,0.128,-0.604,0.787,0.794,0.605,-0.061,-0.061,-0.266,0.962,0.06,-0.512,0.857,0.924,0.34,-0.175,0.361,-0.196,0.912,0.363,-0.2,0.91,0.926,0.335,-0.176,-0.72,0.55,0.423,0.605,-0.04,0.796,0.051,0.035,0.998,-0.663,0.11,0.74,0.983,-0.112,0.145,-0.841,0.347,0.415,0.868,0.036,0.495,-0.54,0.406,0.737,-0.844,0.334,0.42,0.98,-0.126,0.152,0.733,0.553,0.397,-0.729,-0.486,0.482,0.847,-0.268,0.458,-0.477,0.657,0.584,0.376,-0.821,0.43,0.809,0.268,0.524,0.17,-0.224,0.96,0.415,-0.804,0.426,0.213,-0.206,0.955,-0.136,-0.465,0.875,0.445,-0.779,0.442,-0.104,-0.438,0.893,0.006,-0.806,0.591,0.353,0.812,0.465,-0.086,0.784,0.614,-0.163,0.42,0.893,-0.011,0.986,0.164,-0.555,0.609,0.567,0.289,0.844,0.452,0.269,0.883,0.384,-0.574,0.646,0.503,0.158,-0.227,0.961,0.594,0.065,0.802,-0.163,0.921,0.353,-0.107,0.386,0.916,0.687,0.191,0.701,0.693,0.711,0.12,-0.136,0.029,0.99,0.616,0.471,0.631,-0.219,0.355,0.909,0.126,-0.955,0.269,0.791,-0.586,-0.175,0.499,0.752,0.43,-0.429,-0.015,0.903,-0.067,-0.53,0.845,0.919,0.154,0.363,0.012,0.523,0.852,0.453,-0.568,0.687,0.532,0.485,0.694,-0.278,-0.784,0.554,-0.171,-0.847,0.503,0.635,0.424,0.645,-0.726,0.573,0.38,-0.771,0.389,0.505,0.591,0.24,0.77,-0.506,0.753,0.42,-0.572,0.659,0.489,0.53,0.153,0.834,-0.539,0.838,0.087,-0.437,0.727,0.53,-0.403,0.906,0.129,-0.706,0.364,0.607,-0.655,0.377,0.655,-0.347,0.92,0.181,-0.612,0.779,-0.138,-0.887,0.384,0.257,-0.625,0.522,0.581,-0.313,0.815,0.489,0.283,-0.943,-0.176,0.857,-0.513,0.055,0.556,-0.819,0.143,0.584,-0.556,-0.592,0.861,-0.428,-0.277,0.454,-0.86,0.235,0.731,-0.485,0.481,0.143,0.922,0.359,0.381,-0.775,0.505,0.423,-0.771,0.475,0.184,0.926,0.33,-0.796,-0.345,0.497,0.022,-0.981,-0.192,0.888,0.379,-0.262,0.969,0.189,0.161,0.026,-0.973,-0.23,0.972,0.196,0.128,0.037,-0.988,0.149,0.037,-0.992,-0.12,0.971,0.192,-0.14,0.408,-0.903,0.135,0.385,-0.923,0.009,0.948,0.172,-0.266,0.288,-0.841,0.457,0.48,-0.877,0.022,0.383,-0.796,0.469,0.109,-0.966,-0.233,0.707,-0.346,-0.617,0.981,-0.175,0.086,0.503,-0.662,-0.555,-0.373,0.674,-0.638,0.227,0.974,0.015,0.946,-0.053,0.318,0.993,-0.116,-0.013,0.273,0.913,-0.305,0.396,0.726,0.563,0.702,-0.712,0.01,0.536,-0.323,-0.78,0.923,-0.373,-0.097,0.853,-0.518,-0.07,0.472,-0.456,-0.755,0.724,0.479,-0.497,0.75,-0.611,-0.253,0.614,0.378,-0.693,0.939,-0.342,0.046,0.926,-0.378,0.016,0.6,0.34,-0.724,0.778,-0.438,0.451,0.944,-0.328,0.03,0.795,-0.392,0.464,0.755,-0.597,-0.269,0.857,-0.398,-0.328,0.888,-0.209,0.41,0.632,-0.738,-0.236,0.536,0.184,-0.824,0.806,0.585,-0.096,0.452,-0.718,0.529,0.431,-0.887,0.166,0.785,0.416,-0.459,0.991,-0.125,0.051,0.317,-0.89,-0.328,0.867,-0.128,-0.482,0.677,-0.734,-0.051,0.244,-0.878,-0.413,0.399,-0.283,-0.872,0.961,-0.268,-0.069,0.245,-0.84,-0.483,0.963,-0.225,-0.151,0.149,-0.723,0.675,0.142,-0.739,0.658,0.956,-0.241,-0.167,-0.012,0.315,0.949,0.699,-0.513,-0.499,0.669,-0.348,0.657,-0.012,-0.856,-0.517,0.118,-0.06,-0.991,0.818,0.565,0.114,0.28,-0.461,-0.842,-0.25,-0.082,-0.965,0.255,0.967,-0.017,0.459,0.817,0.349,0.833,0.547,0.086,0.683,0.658,-0.319,-0.579,0.687,0.439,-0.402,-0.258,0.879,0.885,-0.426,0.186,0.277,0.815,0.509,0.818,0.574,0.018,-0.593,0.715,0.371,-0.509,0.435,0.743,-0.428,0.485,0.762,-0.513,0.764,0.391,-0.886,-0.06,0.459,-0.176,-0.306,0.936,0.145,0.536,0.832,-0.514,-0.754,0.41,0.005,-0.968,0.252,0.665,0.322,0.674,-0.792,-0.571,0.215,0.372,-0.355,0.858,-0.366,0.142,0.92,-0.394,-0.27,0.878,0.055,-0.325,0.944,0.114,0.083,0.99,-0.693,-0.192,0.695,-0.589,-0.47,0.657,0.226,-0.217,0.95,-0.782,0.449,0.433,-0.293,0.143,-0.945,0.722,-0.527,-0.448,-0.129,-0.758,-0.639,-0.13,-0.721,-0.681,0.721,-0.487,-0.493,-0.005,-1.0,0.022,-0.531,-0.752,-0.391,0.11,-0.198,-0.974,0.73,-0.678,-0.089,0.478,-0.878,-0.021,-0.142,-0.399,-0.906,0.981,-0.142,0.132,0.371,-0.613,-0.697,0.889,0.085,-0.45,0.956,-0.123,0.267,0.645,-0.759,0.084,0.601,-0.505,-0.619,0.552,0.609,-0.57,-0.285,-0.936,-0.208,-0.31,0.445,-0.84,0.067,-0.336,-0.94,-0.433,-0.872,-0.228,-0.071,-0.276,-0.958,0.408,-0.903,0.136,-0.421,0.053,0.906,-0.784,0.545,-0.297,-0.897,-0.442,-0.004,-0.57,-0.182,0.801,-0.503,0.769,0.394,-0.967,0.247,0.062,-0.446,0.095,0.89,-0.852,0.504,0.145,-0.851,-0.357,-0.385,-0.544,-0.794,0.271,-0.521,0.032,0.853,-0.834,-0.44,0.333,-0.52,-0.785,0.336,-0.809,-0.432,0.398,-0.401,-0.812,-0.423,0.854,-0.51,0.103,0.4,-0.14,0.906,-0.364,-0.036,0.931,0.886,-0.448,0.116,-0.33,0.028,0.944,0.009,-0.257,0.966,0.261,0.039,0.965,-0.076,0.327,0.942,-0.499,0.133,0.856,-0.354,-0.241,0.904,0.082,-0.08,0.993,-0.667,0.051,0.744,-0.334,-0.212,0.918,-0.646,0.082,0.759,-0.905,-0.034,0.424,-0.84,-0.285,0.462,-0.581,-0.167,0.797,-0.96,0.208,-0.189,-0.949,-0.085,-0.305,-0.57,-0.46,0.681,-0.761,0.459,0.458,-0.006,-0.999,0.04,0.24,-0.512,0.825,-0.165,-0.666,0.727,-0.54,-0.086,-0.837,-0.19,0.153,-0.97,-0.033,-0.749,-0.662,-0.48,-0.05,-0.876,0.032,-0.709,-0.704,0.145,-0.989,0.001,-0.023,0.149,-0.989,0.602,-0.791,-0.112,0.179,-0.982,-0.059,0.166,-0.977,-0.136,0.589,-0.785,-0.189,0.046,-0.948,0.314,-0.812,0.572,-0.119,-0.268,0.735,-0.623,-0.691,0.095,-0.717,-0.979,0.191,-0.07,-0.556,0.831,0.023,0.36,0.839,-0.408,0.164,0.569,-0.806,-0.737,0.58,-0.346,0.49,0.871,-0.036,-0.162,0.678,-0.718,0.139,0.989,0.06,0.562,0.432,-0.705,-0.024,0.274,-0.961,-0.543,0.805,-0.238,0.516,0.828,0.22,0.712,0.665,-0.225,-0.347,0.643,-0.683,0.352,0.71,0.61,0.912,0.158,0.378,0.304,0.001,-0.953,0.894,0.447,0.03,-0.182,-0.966,-0.183,-0.286,-0.766,-0.576,0.567,-0.789,-0.238,-0.191,-0.949,-0.252,0.555,-0.768,-0.318,0.257,-0.962,-0.097,0.18,-0.963,-0.199,0.474,-0.77,-0.427,0.688,-0.376,0.62,0.128,-0.574,0.809,-0.087,-0.967,-0.238,0.993,-0.096,0.071,0.246,0.822,0.514,-0.956,0.1,0.277,-0.023,0.247,0.969,0.017,0.503,0.864,-0.912,0.376,0.165,-0.516,-0.036,0.856,-0.154,0.361,0.92,-0.492,0.837,0.238,-0.725,0.543,0.425,-0.58,0.539,0.61,-0.338,0.834,0.436,-0.814,0.339,-0.473,-0.246,0.836,0.49,-0.457,0.656,-0.601,-0.653,0.701,0.286,-0.188,0.936,0.297,-0.599,0.793,0.109,-0.08,0.732,0.677,0.02,0.806,0.591,-0.506,0.862,0.03,-0.251,0.507,0.825,0.257,-0.967,0.003,0.002,-0.611,-0.791,0.995,0.018,0.101,0.87,-0.258,0.419,-0.105,-0.849,-0.518,0.351,-0.853,-0.387,-0.008,-0.748,-0.664,0.687,0.272,-0.674,0.642,-0.683,-0.35,-0.331,-0.782,-0.528,-0.445,0.157,-0.882,-0.167,-0.142,-0.976,-0.265,-0.25,-0.931,-0.55,0.041,-0.834,0.313,0.246,-0.918,0.812,-0.544,0.211,0.031,-0.877,0.479,0.909,-0.357,-0.212,-0.441,-0.039,-0.896,0.151,0.439,-0.886,-0.021,0.036,-0.999,-0.043,0.045,-0.998,0.13,0.448,-0.885,0.568,0.435,-0.698,0.589,0.245,-0.77,0.149,0.273,-0.95,0.673,0.561,-0.482,0.207,0.442,-0.873,0.295,0.757,-0.583,0.654,0.688,-0.312,0.737,0.495,-0.461,0.383,0.548,-0.744,0.689,0.721,-0.073,0.09,0.73,-0.678,0.042,0.956,-0.29,0.405,0.914,-0.015,0.751,0.353,-0.557,0.388,0.395,-0.833,0.813,0.538,-0.225,0.363,-0.92,0.146,0.002,-0.858,-0.513,0.365,-0.9,-0.238,-0.38,0.514,-0.769,-0.503,0.724,-0.472,0.518,-0.278,-0.809,0.286,-0.52,-0.805,-0.753,0.463,-0.468,0.69,0.127,-0.713,0.677,0.084,-0.731,-0.768,0.414,-0.489,0.682,-0.054,0.73,-0.916,-0.151,-0.371,0.384,-0.549,0.743,0.61,-0.371,0.7,-0.851,0.046,-0.524,0.606,-0.232,-0.761,0.578,-0.549,-0.603,-0.883,-0.323,-0.34,0.068,0.367,-0.928,-0.052,-0.864,-0.501,-0.562,0.052,-0.825,-0.131,0.074,-0.989,-0.152,-0.863,-0.482,-0.239,0.075,-0.968,0.066,-0.243,-0.968,-0.382,-0.788,-0.484,-0.184,-0.161,-0.97,0.54,-0.834,0.112,-0.251,-0.682,-0.687,0.691,-0.712,-0.124,0.044,-0.908,0.417,-0.07,-0.961,0.267,0.558,-0.774,-0.299,0.643,-0.759,0.105,0.542,-0.83,0.131,0.451,-0.85,-0.272,0.891,-0.192,0.412,0.229,-0.567,-0.791,0.524,-0.792,0.312,0.233,-0.705,0.669,0.674,0.139,-0.726,0.678,0.0,0.735,0.269,-0.507,-0.819,0.281,-0.48,-0.831,0.69,0.025,0.724,0.677,-0.72,0.153,0.84,-0.119,-0.53,0.829,0.542,0.136,0.371,-0.914,-0.163,0.137,-0.738,-0.661,0.595,0.718,-0.361,0.825,0.565,-0.014,-0.648,-0.698,-0.306,-0.689,-0.383,-0.615,0.019,-0.384,-0.923,-0.926,-0.152,-0.346,-0.242,0.129,-0.962,0.728,-0.642,-0.243,-0.694,0.53,-0.487,0.93,-0.047,-0.366,0.727,-0.396,-0.561,0.431,0.039,-0.901,0.671,0.332,-0.663,0.936,0.161,-0.312,-0.539,0.842,0.03,0.09,0.861,0.5,0.293,0.844,-0.45,0.116,0.866,-0.487,-0.074,0.882,0.466,0.327,0.086,-0.941,0.004,0.027,-1.0,-0.397,0.823,0.407,-0.233,0.802,-0.55,-0.256,-0.078,-0.963,-0.514,0.689,-0.511,0.006,0.306,-0.952,-0.31,-0.181,-0.933,-0.856,0.164,-0.491,-0.555,0.212,-0.805,-0.603,0.154,-0.783,-0.341,0.538,-0.771,-0.33,-0.208,-0.921,0.139,0.688,-0.713,0.413,0.325,-0.851,-0.196,-0.147,-0.97,-0.424,0.15,-0.893,0.217,0.58,-0.785,-0.019,0.209,-0.978,-0.594,0.464,-0.658,-0.311,0.814,-0.491,-0.379,0.174,-0.909,-0.908,-0.378,0.179,-0.801,0.301,0.517,-0.345,0.734,-0.585,-0.558,-0.137,0.818,0.032,0.994,0.104,-0.793,0.581,-0.182,-0.865,0.483,0.134,-0.051,0.88,0.471,-0.594,0.801,-0.078,-0.96,0.06,0.272,-0.477,0.019,0.879,-0.72,0.259,0.644,-0.733,0.238,0.637,-0.491,-0.003,0.871,0.243,0.964,0.11,-0.091,0.971,-0.221,-0.866,0.005,0.5,-0.314,0.798,0.514,-0.597,0.674,-0.434,-0.802,0.512,0.309,0.512,0.846,0.15,0.643,-0.303,-0.703,-0.68,-0.553,-0.482,-0.589,0.166,-0.791,-0.902,0.374,0.213,0.195,0.534,0.823,0.599,0.771,0.218,-0.633,0.524,-0.57,-0.948,0.305,0.092,-0.778,0.601,-0.185,-0.791,0.255,-0.557,-0.961,-0.037,-0.276,0.259,0.891,0.373,0.815,0.558,-0.154,-0.36,-0.396,-0.845,-0.202,0.343,-0.917,-0.994,-0.07,-0.089,0.073,0.593,0.802,-0.863,-0.192,-0.467,-0.865,-0.204,-0.458,0.071,0.582,0.81,-0.725,0.644,-0.243,-0.952,0.291,-0.092,-0.156,0.229,0.961,0.37,0.669,0.644,-0.399,0.79,-0.466,-0.925,0.35,-0.15,-0.677,0.729,-0.102,0.142,0.3,-0.943,-0.105,-0.078,-0.991,-0.438,0.68,-0.588,-0.16,-0.167,-0.973,-0.764,0.176,-0.62,0.119,0.673,-0.73,-0.894,-0.166,-0.417,-0.734,0.674,-0.083,-0.615,-0.105,-0.782,-0.976,0.217,-0.01,0.346,0.594,0.726,0.839,0.132,-0.527,-0.118,0.271,-0.955,-0.612,0.733,0.298,-0.002,0.871,-0.491,-0.895,-0.423,0.138,-0.779,0.176,0.602,-0.949,0.288,-0.126,-0.642,-0.179,0.746,-0.696,0.533,0.482,-0.566,-0.146,-0.811,-0.55,-0.617,-0.562,-0.68,0.061,0.731,-0.732,0.497,-0.466,-0.8,0.153,-0.581,-0.738,-0.234,0.633,-0.815,0.475,0.332,-0.958,0.276,-0.074,-0.871,-0.419,0.256,0.686,0.162,0.709,0.018,0.443,0.896,-0.678,0.485,0.552,-0.963,0.262,-0.067,0.682,0.149,0.716,0.652,0.7,-0.292,0.591,0.765,-0.255,0.621,0.214,0.754,0.722,0.438,-0.535,0.66,0.73,-0.178,0.801,0.397,-0.447,-0.954,0.295,0.056,0.551,0.819,0.158,-0.458,0.773,0.44,-0.864,0.326,0.385,0.897,0.43,-0.098,-0.852,-0.008,-0.523,0.478,0.876,-0.063,-0.742,0.569,-0.356,-0.939,0.138,-0.314,0.811,0.574,0.108,0.631,-0.267,-0.729,0.189,0.048,-0.981,0.304,0.935,-0.181,0.684,-0.571,-0.454,0.452,0.548,-0.703,0.991,0.012,-0.131,-0.907,-0.11,-0.406,0.843,0.412,-0.346,-0.733,0.304,-0.609,-0.928,0.087,-0.363,0.967,0.242,-0.08,0.879,0.166,-0.446,0.077,0.966,0.246,-0.137,0.957,0.256,-0.917,0.371,0.149,0.891,0.45,0.065,0.154,0.028,-0.988,-0.079,0.335,-0.939,0.688,0.717,0.108,0.893,0.445,-0.064,-0.983,-0.148,0.109,-0.024,-0.045,0.999,0.216,0.403,-0.889,-0.497,0.002,0.868,-0.27,0.426,-0.864,-0.053,0.329,-0.943,-0.314,-0.124,0.941,-0.392,0.599,0.698,-0.478,0.578,0.661,-0.414,-0.148,0.898,0.576,0.135,-0.806,-0.636,-0.24,0.734,0.668,0.124,-0.734,-0.434,0.575,0.693,0.619,0.131,-0.774,-0.099,0.303,-0.948,-0.062,0.563,-0.824,0.653,0.372,-0.659,0.266,0.291,-0.919,-0.026,0.819,-0.573,0.385,0.857,-0.342,-0.078,0.516,-0.853,-0.677,-0.282,0.68,-0.131,0.172,0.976,-0.671,0.467,-0.576,-0.757,0.31,-0.575,-0.21,0.027,0.977,-0.216,0.819,0.532,-0.914,0.403,-0.043,-0.811,-0.331,0.483,-0.824,0.432,0.366,-0.916,0.387,0.106,-0.895,-0.373,0.244,-0.917,0.055,0.396,-0.975,0.138,-0.176,-0.975,-0.191,0.116,-0.835,0.55,0.023,-0.869,-0.455,-0.195,-0.336,-0.006,0.942,-0.965,-0.21,0.159,-0.628,-0.135,0.767,-0.625,0.603,-0.495,-0.832,0.232,-0.504,0.179,0.58,0.794,-0.112,0.871,-0.479,-0.399,0.901,-0.168,0.645,0.255,0.72,0.893,0.249,0.375,-0.318,0.787,0.529,0.888,0.315,-0.334,-0.075,0.847,-0.526,0.617,0.734,0.285,0.653,0.714,0.251,-0.035,0.826,-0.562,0.068,0.308,0.949,0.27,0.273,0.923,0.167,0.791,-0.588,-0.676,0.053,0.735,0.031,-0.377,0.926,0.823,0.392,-0.412,0.562,0.813,0.155,0.611,0.762,0.215,0.872,0.341,-0.352,-0.423,0.677,0.602,-0.296,0.397,0.869,0.992,0.078,-0.101,0.731,0.499,0.466,0.718,0.234,0.656,0.978,-0.186,0.09,0.132,0.914,-0.384,0.798,0.181,0.575,0.207,0.864,-0.459,-0.098,0.987,-0.128,0.381,0.85,0.363,0.686,0.727,0.032,-0.116,-0.283,-0.952,-0.901,-0.228,-0.369,-0.099,0.782,0.615,-0.857,0.221,-0.465,-0.858,0.22,-0.464,-0.101,0.781,0.617,0.155,0.983,-0.099,-0.989,0.107,0.099,0.014,0.861,0.508,-0.392,0.394,-0.831,-0.894,0.376,0.243,-0.297,0.663,-0.687,-0.938,-0.073,0.339,-0.931,-0.049,0.361,-0.291,0.688,-0.665,-0.034,0.391,-0.92,-0.404,0.064,-0.912,-0.661,0.36,-0.658,0.363,0.104,-0.926,-0.574,0.818,-0.028,0.165,0.981,0.103,-0.149,0.982,-0.116,-0.925,-0.007,0.379,-0.028,0.433,-0.901,-0.125,-0.933,0.338,0.752,0.656,-0.07,0.7,-0.142,0.699,0.318,-0.527,0.788,0.353,0.782,-0.514,-0.544,0.342,0.766,-0.471,0.336,0.816,0.427,0.776,-0.464,-0.537,0.804,-0.255,-0.319,0.785,0.531,0.615,0.76,0.211,-0.82,-0.056,-0.569,0.024,-0.195,0.98,-0.518,-0.509,0.688,-0.822,-0.569,-0.016,0.613,0.266,0.744,-0.783,0.576,0.233,-0.79,-0.601,0.126,-0.752,0.546,0.37,-0.814,-0.496,-0.302,-0.388,0.806,0.447,-0.412,0.911,0.019,-0.159,-0.929,0.333,0.579,0.772,0.261,0.743,-0.469,0.478,0.404,-0.858,0.319,0.172,0.985,0.003,0.196,0.88,0.432,0.325,0.849,0.417,0.3,0.954,-0.011,-0.431,0.785,0.445,-0.43,0.785,0.446,0.301,0.954,-0.011,-0.457,0.889,0.021,-0.457,0.889,0.022,0.301,0.954,-0.01,-0.09,0.974,-0.206,-0.635,-0.021,0.772,-0.245,-0.041,0.969,-0.587,0.781,0.212,0.169,0.093,0.981,0.188,0.891,0.414,-0.279,0.86,0.427,-0.167,-0.721,0.672,0.299,-0.691,0.658,0.487,-0.3,0.82,0.666,0.201,0.719,0.2,0.964,0.174,0.299,0.116,0.947,0.731,-0.071,0.679,0.616,0.784,-0.084,-0.032,0.951,0.308,0.936,-0.035,0.349,0.166,0.986,-0.01,-0.11,0.553,0.826,0.51,0.237,0.827,0.7,0.714,-0.009,0.051,0.935,0.351,0.934,0.184,0.305,0.444,0.886,-0.134,-0.421,0.813,0.403,-0.297,0.745,0.597,0.578,0.813,0.076,-0.866,0.202,0.457,0.227,0.675,-0.702,-0.301,0.127,-0.945,-0.216,0.553,-0.805,0.105,0.505,-0.857,0.017,0.079,-0.997,-0.861,-0.341,0.378,-0.891,-0.036,0.453,-0.014,0.396,-0.918,-0.474,-0.66,0.582,-0.466,0.256,-0.847,-0.812,-0.526,0.253,-0.519,-0.592,0.617,-0.06,0.467,-0.882,-0.629,-0.748,0.211,-0.596,-0.287,0.75,-0.025,0.947,-0.322,-0.437,0.846,-0.304,-0.502,-0.22,0.836,-0.343,0.914,-0.217,-0.971,-0.128,0.2,0.368,-0.643,0.672,0.869,0.448,0.21,-0.141,0.868,0.476,-0.285,0.133,0.949,0.739,-0.218,0.638,0.574,0.136,0.807,-0.282,-0.194,0.939,0.577,-0.172,0.798,-0.171,0.916,0.362,-0.718,0.552,0.423,0.063,-0.514,0.855,0.364,-0.198,0.91,0.474,-0.612,0.633,-0.035,0.899,0.437,-0.835,-0.152,0.528,-0.212,-0.657,0.723,0.679,0.32,0.661,-0.033,0.608,0.794,0.042,-0.693,0.72,0.222,0.572,0.79,-0.3,-0.846,0.44,-0.09,0.919,0.383,-0.442,0.893,0.077,-0.148,0.649,0.746,0.573,0.67,0.472,0.335,0.916,-0.219,0.031,-0.325,0.945,0.28,-0.514,0.811,0.594,0.721,-0.358,-0.045,-0.275,0.96,0.11,-0.58,0.807,0.754,0.403,-0.518,0.961,0.195,0.195,0.99,0.023,0.138,0.786,0.218,-0.579,-0.434,0.73,0.528,0.995,0.066,0.077,-0.429,0.773,0.468,0.145,-0.714,0.685,0.253,-0.67,0.698,-0.325,0.815,0.48,-0.658,0.16,0.735,-0.363,0.088,0.928,-0.041,0.746,0.665,-0.425,0.501,0.753,-0.237,0.286,0.928,0.133,0.548,0.826,-0.611,0.374,0.698,-0.107,0.569,0.815,-0.487,0.644,0.59,-0.06,0.153,0.986,0.12,0.282,0.952,-0.307,0.773,0.555,-0.657,0.482,0.579,0.12,0.283,0.952,-0.657,0.483,0.579,-0.217,-0.004,0.976,-0.215,-0.002,0.977,-0.655,0.485,0.579,-0.605,0.097,0.79,0.877,0.113,0.467,0.827,0.501,0.256,-0.281,0.777,0.562,-0.282,0.505,0.816,0.826,0.218,0.519,-0.345,0.763,0.546,0.868,0.248,-0.431,-0.29,0.908,-0.303,0.695,0.056,0.717,0.792,0.039,0.609,-0.196,0.892,-0.407,-0.547,0.778,-0.311,0.035,0.986,0.161,0.445,0.777,0.445,0.177,0.887,-0.426,0.006,0.693,0.721,0.567,0.788,-0.24,0.54,0.802,-0.255,-0.021,0.707,0.707,0.219,0.279,0.935,0.844,-0.233,-0.482,0.626,0.177,-0.759,-0.023,0.03,0.999,0.946,0.096,-0.311,0.524,0.002,0.852,-0.007,-0.051,0.999,0.643,0.093,-0.76,0.003,0.961,-0.277,0.735,0.247,-0.631,-0.133,0.51,0.85,-0.395,-0.459,0.796,0.446,-0.647,0.618,0.647,0.335,0.685,0.297,0.148,0.943,0.038,-0.975,-0.22,0.388,-0.788,-0.478,0.748,-0.632,-0.201,0.942,-0.317,0.108,0.757,0.454,0.47,-0.104,-0.723,0.683,0.126,-0.975,0.181,0.977,0.211,-0.014,0.169,-0.792,0.586,-0.374,-0.873,-0.314,0.454,0.133,-0.881,0.643,-0.252,-0.723,-0.509,-0.738,-0.443,0.503,-0.112,-0.857,-0.624,-0.714,0.317,-0.925,-0.272,0.265,0.178,0.365,-0.914,-0.822,-0.279,-0.497,-0.844,-0.236,-0.483,0.155,0.41,-0.899,0.361,-0.321,-0.876,-0.256,-0.493,-0.832,-0.462,0.238,-0.854,0.715,0.108,-0.691,0.698,-0.078,-0.712,-0.48,0.038,-0.877,0.639,0.685,0.349,0.724,0.617,0.308,-0.388,-0.036,-0.921,0.332,0.859,0.39,0.308,0.345,-0.887,-0.085,0.587,-0.805,0.802,0.509,0.313,0.991,-0.096,0.095,0.08,0.06,-0.995,0.184,0.493,-0.85,0.293,0.462,-0.837,0.189,0.029,-0.982,-0.36,0.757,-0.545,-0.175,0.857,-0.486,0.348,0.115,-0.93,-0.978,-0.024,-0.205,-0.007,0.583,-0.812,-0.835,-0.259,-0.486,0.608,0.742,0.283,-0.83,0.155,-0.536,0.33,0.94,0.085,-0.411,0.691,-0.594,0.233,0.842,0.486,0.25,0.406,-0.879,0.178,0.427,-0.887,0.156,0.865,0.477,0.984,-0.172,0.053,0.991,-0.126,-0.043,0.163,0.908,0.386,0.242,0.13,0.961,0.664,0.615,-0.425,-0.043,0.776,0.629,0.934,0.278,0.222,0.912,0.41,0.01,-0.064,0.903,0.424,-0.358,0.335,0.872,0.58,0.668,-0.466,-0.703,0.603,0.377,0.154,0.709,0.688,0.408,0.897,-0.172,-0.467,0.778,-0.422,-0.997,-0.0,0.08,-0.97,0.077,0.231,-0.438,0.861,-0.258,-0.937,0.297,-0.184,-0.482,0.66,0.577,-0.449,0.879,0.162,-0.813,0.321,0.486,-0.289,0.236,0.928,0.076,0.793,0.604,-0.364,0.808,0.463,-0.436,0.573,0.694,0.008,0.575,0.818,-0.547,0.776,0.314,-0.07,0.284,0.956,-0.128,0.86,0.494,-0.389,0.557,0.734,0.405,-0.541,-0.737,0.086,-0.268,-0.96,0.736,-0.202,-0.646,0.586,0.435,-0.684,-0.844,-0.397,-0.36,0.307,0.743,-0.595,0.522,0.501,-0.69,-0.646,-0.618,-0.447,-0.088,0.111,-0.99,-0.024,0.055,-0.998,-0.586,-0.67,-0.455,-0.444,-0.021,-0.896,0.313,0.269,-0.911,0.051,0.587,-0.808,0.512,0.821,-0.253,-0.79,0.354,-0.501,-0.437,0.894,0.099,0.212,0.922,-0.325,0.101,0.864,-0.494,-0.539,0.84,-0.058,0.686,0.274,0.674,0.956,0.235,0.177,-0.289,0.805,-0.518,0.026,0.989,0.144,-0.154,0.931,-0.332,0.431,0.341,0.836,0.938,-0.273,-0.214,0.109,0.346,-0.932,-0.349,0.923,0.16,0.413,0.903,0.114,0.398,0.912,-0.101,-0.363,0.931,-0.039,0.651,0.151,0.744,0.812,0.171,0.558,-0.19,0.952,-0.239,-0.205,-0.103,0.973,0.488,-0.738,0.466,0.558,0.268,-0.786,0.975,0.086,0.202,0.667,0.577,0.471,-0.35,0.303,0.886,-0.105,-0.093,0.99,0.202,-0.247,-0.948,-0.053,0.155,-0.987,0.669,0.036,-0.743,0.521,-0.594,-0.613,-0.201,-0.475,-0.857,0.437,0.867,-0.239,-0.308,-0.657,-0.688,-0.514,0.794,-0.325,0.908,-0.131,-0.398,-0.819,0.265,-0.508,0.322,0.927,-0.192,-0.461,0.347,-0.817,-0.898,0.321,-0.3,-0.18,0.898,0.401,0.804,0.115,-0.583,0.527,0.082,-0.846,-0.498,0.861,0.1,0.331,0.862,-0.384,-0.828,0.559,-0.048,0.875,0.353,-0.332,0.66,-0.536,-0.526,0.965,0.093,-0.244,-0.231,0.968,0.102,-0.598,0.779,0.189,0.926,-0.281,-0.251,-0.116,0.834,-0.539,-0.077,0.995,-0.057,0.966,-0.12,0.231,0.537,0.405,-0.74,-0.033,0.976,-0.217,0.351,0.495,0.795,0.908,0.243,0.34,0.233,0.536,-0.812,-0.378,0.811,-0.447,0.024,0.829,-0.559,-0.284,0.944,0.166,0.657,0.211,0.723,0.333,0.903,-0.27,0.149,0.639,0.755,0.734,0.621,0.275,-0.037,0.61,-0.791,-0.228,0.721,-0.654,0.543,0.732,0.412,0.273,0.565,-0.779,-0.794,0.359,-0.49,-0.488,0.533,0.691,-0.217,0.85,0.48,-0.986,-0.087,-0.143,-0.402,0.419,0.814,-0.299,0.947,0.115,-0.86,0.421,-0.289,-0.884,-0.033,0.467,0.335,0.886,0.319,0.258,0.958,0.129,-0.958,0.035,0.284,-0.717,0.232,0.657,-0.968,0.047,0.248,0.239,0.553,0.798,0.319,0.828,0.462,-0.808,0.59,-0.001,-0.888,0.315,0.335,0.615,0.704,0.355,-0.884,0.298,0.36,0.529,0.377,0.76,0.05,0.922,-0.383,-0.306,0.92,-0.246,0.115,0.374,0.92,0.338,0.687,-0.643,-0.389,-0.038,-0.92,-0.669,-0.407,0.621,-0.557,0.469,0.685,-0.379,-0.533,-0.757,-0.547,0.01,0.837,-0.659,0.714,-0.236,-0.796,0.479,-0.37,-0.665,-0.192,0.722,-0.585,0.566,0.581,-0.656,0.559,0.508,-0.731,-0.198,0.654,0.959,0.155,0.239,0.872,0.466,0.151,-0.817,0.113,0.565,0.998,0.029,0.048,-0.404,0.196,0.894,0.828,0.139,0.543,0.771,0.346,0.534,0.898,-0.09,0.431,0.374,-0.189,-0.908,-0.623,0.609,-0.491,0.029,0.606,0.795,0.104,0.639,-0.762,-0.171,0.867,0.469,0.498,0.864,0.075,-0.563,0.298,-0.771,-0.82,0.328,-0.469,0.241,0.894,0.377,0.56,0.581,-0.591,-0.573,0.112,-0.812,-0.891,0.426,0.156,0.183,0.091,-0.979,-0.523,0.736,-0.43,0.24,0.806,-0.541,-0.154,0.686,-0.711,-0.828,0.453,0.329,-0.534,0.539,0.652,-0.507,0.818,-0.274,-0.605,0.737,-0.301,-0.638,0.453,0.623,0.1,0.832,-0.546,-0.164,0.555,-0.816,-0.94,0.135,0.313,0.256,0.669,-0.698,-0.225,0.664,-0.713,0.19,0.787,-0.586,0.521,0.517,-0.679,-0.206,0.817,-0.538,0.542,0.684,-0.489,0.529,0.371,-0.763,0.031,0.904,0.427,0.805,0.472,0.359,0.181,0.8,-0.572,0.616,0.541,0.572,0.813,0.409,-0.415,-0.047,0.423,0.905,-0.026,0.393,0.919,0.834,0.379,-0.401,0.566,0.793,0.223,-0.095,0.548,0.831,0.285,0.92,0.268,-0.66,0.751,0.028,0.676,0.626,0.389,0.237,0.841,-0.486,0.307,0.676,0.67,0.425,0.623,0.656,0.374,0.78,-0.501,-0.794,0.182,0.58,-0.33,-0.076,0.941,0.844,0.519,-0.136,0.117,0.982,0.15,-0.077,0.376,0.923,0.619,-0.185,0.763,0.104,0.92,0.378,-0.453,0.716,0.531,0.054,-0.392,0.918,0.583,0.799,0.148,0.173,0.299,0.938,0.391,0.831,0.396,-0.344,0.742,0.576,-0.234,-0.122,0.965,0.517,-0.159,0.841,0.548,0.797,-0.253,-0.091,0.986,-0.137,-0.217,0.058,0.974,0.805,0.18,0.565,-0.159,-0.177,0.971,0.623,0.742,-0.247,-0.425,0.833,0.355,-0.189,0.614,0.766,0.826,0.554,0.107,-0.835,0.546,0.066,-0.836,0.538,0.106,0.825,0.546,0.146,0.016,0.166,-0.986,-0.438,0.478,-0.762,0.386,0.848,0.363,-0.111,-0.286,-0.952,0.137,0.701,-0.7,0.445,-0.07,-0.893,0.016,-0.241,-0.971,-0.174,0.234,-0.957,0.254,0.404,-0.879,-0.459,-0.461,-0.759,-0.637,-0.303,-0.709,0.102,0.54,-0.836,-0.35,-0.099,-0.932,-0.416,-0.055,-0.908,0.041,0.58,-0.814,0.644,-0.617,-0.453,-0.152,-0.934,-0.322,-0.643,0.307,-0.701,-0.062,-0.757,-0.651,-0.216,-0.834,-0.507,-0.797,0.23,-0.558,0.024,-0.658,-0.753,-0.695,0.209,0.688,-0.533,0.556,0.638,-0.917,-0.072,0.392,-0.138,-0.782,0.607,0.373,-0.271,0.888,-0.713,-0.286,0.64,-0.694,-0.454,0.559,0.394,-0.451,0.801,-0.479,0.407,0.777,-0.619,-0.487,0.616,-0.41,0.377,0.83,-0.467,0.852,-0.238,-0.309,-0.358,0.881,-0.133,0.99,0.047,-0.958,-0.029,-0.287,-0.995,-0.094,-0.014,-0.177,0.914,0.364,-0.694,0.059,-0.718,-0.952,0.292,0.093,-0.648,0.46,-0.607,-0.54,-0.585,0.605,-0.417,-0.252,0.873,-0.54,0.758,-0.368,-0.452,-0.892,-0.02,-0.486,-0.838,0.247,-0.575,0.813,-0.09,-0.34,-0.922,-0.184,-0.835,-0.545,0.071,-0.689,-0.629,-0.36,-0.329,-0.896,-0.298,0.367,0.315,0.875,0.007,0.582,0.813,0.132,-0.577,0.806,0.685,-0.492,0.537,0.483,0.654,0.582,-0.522,-0.267,0.81,-0.14,-0.705,0.695,0.851,0.233,0.471,-0.524,-0.482,0.703,-0.385,-0.862,0.33,0.985,-0.134,0.113,0.838,-0.049,0.544,0.489,-0.679,0.548,0.636,-0.763,0.117,-0.318,0.914,0.251,0.491,-0.696,0.525,-0.314,0.709,0.632,-0.44,0.839,0.32,0.518,-0.836,0.183,0.315,0.903,0.291,0.764,0.575,-0.291,0.955,0.201,-0.218,0.774,-0.632,0.048,-0.023,0.963,-0.268,0.379,0.839,0.391,0.952,0.303,-0.036,0.573,0.407,-0.712,0.461,0.88,0.113,0.772,0.531,0.349,0.872,0.072,-0.485,0.155,0.963,0.222,0.158,0.961,0.227,0.875,0.07,-0.48,-0.209,0.788,-0.579,-0.128,0.969,0.21,0.946,0.232,0.225,0.92,0.336,-0.201,0.82,0.568,0.073,0.561,0.331,-0.759,0.185,0.927,0.328,0.403,0.768,0.498,0.815,0.147,-0.561,-0.524,0.78,-0.341,0.916,0.395,-0.074,-0.011,0.407,-0.913,-0.14,0.934,0.328,0.071,0.934,0.35,0.193,0.407,-0.893,-0.36,0.893,0.271,-0.213,0.92,0.329,0.334,0.434,-0.837,-0.1,0.29,-0.952,-0.074,0.94,0.332,0.046,0.311,-0.949,-0.335,0.473,-0.815,-0.266,0.594,-0.76,0.119,0.438,-0.891,-0.847,-0.404,0.345,-0.236,0.484,-0.843,-0.817,-0.513,0.262,0.025,0.952,0.304,-0.041,0.997,0.068,-0.883,-0.469,0.026,-0.495,-0.506,0.707,-0.541,-0.402,0.739,-0.931,-0.361,0.06,-0.704,-0.622,0.344,-0.723,-0.355,0.593,-0.949,-0.107,0.296,-0.533,-0.732,0.425,-0.909,-0.316,0.273,-0.71,-0.694,0.121,-0.729,-0.121,0.674,-0.814,-0.032,0.58,-0.798,-0.602,0.023,0.596,-0.19,0.781,0.408,0.328,0.852,-0.993,-0.064,0.098,-0.025,-0.845,0.534,-0.022,-0.819,0.574,-0.99,-0.037,0.139,0.169,-0.973,0.159,0.277,-0.828,0.487,-0.887,0.101,0.451,-0.997,-0.055,0.045,0.292,-0.725,0.624,-0.983,0.044,0.176,0.205,-0.974,-0.095,0.324,-0.92,0.219,-0.859,0.1,0.502,-0.007,-0.994,-0.106,0.394,-0.884,0.25,-0.443,0.214,0.871,-0.906,0.351,0.238,0.1,0.497,0.862,0.467,0.128,0.875,0.763,-0.513,0.394,-0.482,0.778,0.403,-0.795,-0.579,0.178,0.412,-0.894,0.177,0.801,0.443,0.402,-0.55,0.768,0.327,-0.117,0.796,0.594,0.682,-0.573,0.454,0.612,-0.775,0.157,-0.365,0.879,0.308,-0.423,0.608,0.671,0.583,0.453,0.675,0.831,0.12,0.543,0.835,-0.55,0.01,-0.217,0.817,0.535,0.702,-0.566,0.431,0.71,-0.561,0.426,-0.209,0.822,0.53,0.362,-0.738,0.57,0.668,-0.624,0.406,0.054,0.92,0.389,-0.508,-0.067,0.859,0.951,0.145,0.275,-0.255,0.62,0.742,0.231,0.003,0.973,0.705,0.271,0.655,0.201,0.877,0.437,0.372,0.572,0.731,0.88,0.415,0.231,0.685,0.728,-0.04,0.326,0.554,0.766,0.394,0.485,0.781,0.752,0.658,-0.025,0.247,0.815,0.524,0.251,0.81,0.529,0.757,0.653,-0.019,0.433,0.892,0.13,0.726,0.267,0.634,0.908,0.348,0.235,-0.341,0.892,0.297,-0.548,0.365,0.753,0.701,-0.178,0.69,-0.21,0.652,0.728,0.954,0.296,-0.035,-0.113,0.922,-0.371,-0.41,0.394,0.822,0.84,0.488,-0.237,-0.52,0.579,0.628,0.987,0.157,0.021,0.868,0.318,-0.382,-0.635,0.734,0.24,-0.185,0.544,0.818,0.92,0.252,-0.3,0.389,0.463,-0.796,0.668,0.597,-0.445,0.686,0.572,-0.45,0.407,0.439,-0.801,-0.749,-0.252,0.613,0.123,0.521,-0.845,-0.899,-0.102,0.426,-0.796,-0.015,0.605,0.532,0.76,-0.374,0.661,0.577,-0.479,-0.776,-0.246,0.581,0.913,0.231,-0.337,-0.971,-0.11,0.212,0.654,0.349,-0.671,0.771,0.293,-0.565,-0.917,-0.184,0.353,0.936,0.312,-0.16,-0.95,-0.002,0.313,0.856,0.481,-0.188,0.905,0.359,-0.228,-0.948,-0.137,0.286,0.289,0.142,0.947,0.288,0.538,0.793,-0.95,0.29,0.119,0.903,-0.341,0.262,-0.807,0.528,0.265,0.921,-0.058,0.385,0.954,-0.197,0.226,-0.902,0.423,0.085,-0.67,0.104,0.735,0.539,0.628,0.561,0.307,0.948,-0.089,-0.715,0.494,0.494,0.534,0.809,0.246,-0.719,0.668,0.191,-0.944,0.296,0.142,0.711,-0.653,-0.26,0.936,-0.282,-0.211,0.527,-0.845,0.089,0.525,-0.847,0.083,0.934,-0.284,-0.217,0.977,-0.101,0.188,0.526,-0.847,0.077,0.978,-0.1,0.183,0.569,-0.667,0.48,0.573,-0.693,0.437,0.982,-0.126,0.139,0.109,0.078,0.991,0.745,-0.549,0.379,0.287,0.227,0.931,-0.475,0.307,0.825,0.786,-0.489,0.377,-0.435,0.365,0.823,0.743,-0.669,-0.026,0.93,-0.3,-0.211,-0.254,0.721,0.645,0.974,-0.12,0.192,0.873,0.104,-0.476,-0.351,0.936,0.001,0.421,0.906,0.042,0.423,0.906,-0.01,-0.348,0.936,-0.047,-0.92,0.253,0.298,-0.525,0.191,0.829,0.047,0.874,0.484,-0.529,0.821,-0.215,-0.924,-0.184,0.334,-0.293,0.01,0.956,-0.86,0.208,0.465,-0.734,-0.298,0.611,-0.682,0.101,0.725,-0.803,0.591,0.071,0.519,0.019,0.855,0.358,0.885,0.298,0.186,0.702,0.688,0.633,-0.616,0.469,0.841,-0.537,0.061,0.621,-0.238,0.747,0.577,0.289,-0.764,0.565,0.667,-0.485,0.767,-0.463,0.445,0.52,0.687,-0.507,0.71,-0.065,0.701,0.856,0.382,-0.348,0.828,0.463,-0.317,0.683,0.009,0.73,0.684,-0.439,0.583,0.969,-0.2,-0.146,0.969,0.248,0.001,0.848,0.276,0.452,0.822,0.487,-0.294,0.679,-0.417,0.604,0.872,0.114,-0.477,0.862,0.457,-0.221,0.914,0.082,-0.399,0.525,0.756,-0.39,0.391,0.104,-0.915,-0.081,0.907,-0.414,0.637,0.644,-0.424,-0.927,0.221,-0.304,-0.633,0.757,0.165,-0.736,0.624,-0.262,-0.922,0.367,-0.125,-0.803,0.521,0.29,-0.695,0.544,-0.471,-0.814,0.308,-0.493,-0.917,0.294,0.268,0.392,0.244,-0.887,0.358,-0.266,-0.895,-0.949,-0.179,0.261,-0.846,-0.183,-0.501,-0.645,0.763,-0.03,0.566,0.718,-0.405,-0.689,0.58,-0.435,-0.713,0.698,-0.071,0.542,0.84,-0.026,-0.938,0.327,-0.12,-0.568,0.665,-0.484,-0.793,0.294,-0.533,-0.934,0.281,0.219,-0.934,0.282,0.219,-0.793,0.294,-0.533,-0.978,0.102,-0.184,-0.569,0.663,-0.486,-0.935,0.28,0.218,-0.526,0.847,-0.08,-0.57,0.773,-0.28,-0.978,0.206,0.018,-0.79,0.608,0.076,0.878,0.367,-0.308,-0.741,0.627,0.241,0.408,0.757,0.511,0.477,0.859,0.184,-0.666,0.738,-0.111,0.794,-0.426,0.435,-0.343,0.785,-0.516,0.962,-0.27,-0.037,0.879,-0.458,0.129,-0.586,0.707,-0.395,0.551,0.831,-0.078,0.754,0.348,-0.557,-0.367,0.186,-0.912,0.872,0.469,-0.14,0.973,-0.222,-0.067,-0.272,-0.465,-0.843,0.7,0.134,-0.701,0.911,-0.389,-0.138,0.646,-0.01,-0.763,0.587,0.753,0.297,-0.254,-0.312,-0.915,-0.429,0.819,-0.381,0.864,0.317,-0.391,0.835,0.244,-0.494,-0.458,0.746,-0.483,0.798,0.6,-0.062,0.846,0.47,-0.253,-0.411,0.621,-0.667,-0.023,0.825,0.565,0.672,0.561,-0.483,-0.215,0.926,0.31,0.942,-0.212,0.261,0.97,-0.18,0.166,-0.183,0.963,0.2,0.168,0.593,0.788,0.887,0.193,-0.42,0.081,0.98,0.18,0.925,-0.368,0.094,0.811,-0.41,-0.417,-0.037,0.936,-0.35,0.29,0.956,-0.046,0.544,0.78,-0.308,0.217,0.761,-0.612,-0.254,0.812,0.525,-0.026,0.44,-0.898,-0.892,0.431,-0.136,0.117,0.993,0.014,-0.259,0.438,-0.861,-0.126,0.991,0.052,0.354,0.777,-0.52,0.347,0.776,-0.526,-0.134,0.99,0.046,0.959,-0.21,0.188,0.346,0.785,-0.514,0.959,-0.2,0.203,-0.268,0.446,-0.854,-0.466,0.765,-0.444,0.74,0.153,0.655,0.083,-0.594,-0.8,-0.508,-0.022,-0.861,0.062,0.808,0.586,0.886,0.052,0.461,0.524,-0.11,-0.845,-0.295,0.649,-0.701,0.635,0.722,-0.273,0.735,0.509,-0.447,-0.189,0.422,-0.886,0.111,0.981,0.16,0.683,0.522,-0.511,0.054,0.994,0.09,0.356,0.222,0.908,0.595,0.621,-0.51,0.275,0.313,0.909,0.686,0.282,0.671,0.527,0.755,0.391,0.129,0.747,0.652,0.803,0.436,0.407,0.784,0.597,0.172,0.112,0.886,0.45,0.175,0.575,0.799,0.43,0.541,0.723,0.366,0.852,0.374,-0.416,0.192,0.889,0.124,0.992,0.031,-0.733,0.658,0.173,-0.235,0.911,0.34,0.27,0.577,0.771,0.529,0.246,0.812,0.037,0.096,-0.995,0.502,0.66,0.56,0.123,0.544,-0.83,-0.091,0.224,-0.97,0.401,0.374,0.836,0.981,-0.172,0.089,-0.49,0.813,-0.315,0.611,0.375,0.697,0.391,0.365,-0.845,0.005,0.952,0.305,0.817,0.485,-0.312,0.178,0.804,-0.567,0.077,0.994,-0.078,0.716,0.675,0.178,0.496,0.844,-0.205,0.326,0.943,-0.064,0.546,0.775,0.319,0.959,0.238,-0.156,0.301,0.372,-0.878,-0.111,0.909,-0.403,0.394,0.759,-0.519,-0.769,-0.583,0.263,-0.713,-0.229,0.662,-0.727,0.61,-0.315,-0.771,0.416,-0.482,-0.759,-0.43,0.489,-0.044,0.562,0.826,-0.912,0.151,-0.38,-0.208,0.255,0.944,-0.452,0.8,-0.394,-0.759,0.429,-0.49,-0.519,-0.122,0.846,0.837,0.162,-0.523,-0.901,-0.31,0.304,0.336,-0.052,-0.941,0.541,0.053,-0.839,-0.819,-0.232,0.525,0.317,0.753,-0.577,-0.939,0.177,0.294,-0.184,0.869,-0.46,0.309,0.743,-0.594,-0.827,-0.243,0.507,0.444,0.568,0.693,0.294,0.751,-0.591,0.43,0.576,0.695,0.516,0.051,-0.855,-0.581,-0.238,-0.779,-0.563,0.315,0.764,-0.698,0.489,-0.523,-0.701,0.484,-0.523,-0.566,0.31,0.764,0.357,0.934,0.005,-0.705,0.486,-0.516,0.353,0.936,0.012,-0.588,-0.241,-0.772,-0.627,-0.228,-0.745,0.319,0.947,0.035,0.392,0.606,-0.692,0.223,0.648,-0.728,0.156,0.988,0.001,0.394,0.84,-0.372,-0.098,0.774,-0.626,-0.295,0.927,-0.232,0.35,0.695,-0.628,-0.059,0.969,-0.239,0.389,0.888,-0.246,-0.209,0.771,-0.601,-0.233,0.79,-0.566,0.363,0.908,-0.209,0.454,0.691,-0.563,-0.741,0.176,-0.648,-0.879,0.373,-0.298,0.267,0.792,-0.549,0.616,-0.356,-0.703,-0.551,-0.707,-0.443,-0.844,0.526,0.102,-0.833,0.47,-0.292,0.309,-0.22,-0.925,0.602,-0.379,-0.703,-0.859,0.502,0.102,0.283,0.956,0.081,0.308,0.874,-0.377,-0.835,0.42,-0.356,-0.621,0.511,0.595,0.264,0.868,-0.42,-0.661,0.506,0.554,0.953,0.105,0.283,0.069,0.995,-0.074,0.786,0.214,0.58,0.39,-0.341,-0.855,-0.937,0.3,0.18,0.051,0.929,0.367,-0.369,0.352,-0.86,-0.162,0.776,0.609,0.377,0.811,-0.447,-0.529,0.75,0.397,0.04,0.329,0.944,0.905,0.421,0.06,-0.517,-0.334,-0.788,-0.424,0.599,0.68,-0.789,0.404,0.462,-0.97,-0.163,-0.18,0.452,0.592,0.668,-0.221,0.974,0.047,-0.287,0.952,0.106,0.395,0.573,0.718,0.754,0.413,0.511,-0.65,0.255,-0.716,-0.829,0.435,-0.351,0.551,0.687,-0.474,-0.661,0.537,0.524,0.385,0.004,0.923,0.243,0.773,0.586,-0.379,0.688,0.619,-0.276,-0.086,0.957,0.164,0.973,0.165,0.197,0.215,0.957,0.697,0.534,0.478,0.18,0.977,0.116,0.403,0.161,0.901,0.371,0.926,0.064,-0.489,-0.123,0.863,-0.034,-0.455,0.89,0.763,0.641,0.087,-0.477,0.823,0.307,-0.452,0.698,0.556,0.788,0.515,0.336,-0.252,0.762,-0.597,-0.99,0.115,0.083,0.077,-0.107,0.991,-0.15,0.913,0.378,-0.941,-0.037,0.337,-0.095,0.743,0.663,-0.754,0.656,-0.023,-0.832,0.048,0.553,-0.649,0.738,0.185,0.21,0.373,-0.904,0.664,0.72,0.199,0.265,0.595,0.758,-0.314,0.129,0.941,0.726,0.453,-0.517,-0.15,0.816,0.558,0.101,0.418,0.903,0.986,0.042,-0.161,0.744,0.404,-0.532,0.693,0.682,-0.235,0.933,0.329,0.146,0.785,-0.6,-0.153,0.717,0.696,-0.043,0.81,-0.586,0.04,0.38,-0.713,-0.589,0.453,-0.598,-0.661,0.877,-0.48,-0.026,0.183,-0.861,-0.475,0.196,-0.177,-0.965,0.888,0.108,-0.447,0.777,-0.608,-0.166,-0.009,0.982,-0.19,0.572,0.551,0.608,0.913,-0.233,-0.335,0.898,-0.144,-0.416,0.556,0.647,0.522,0.762,-0.552,-0.338,0.544,-0.274,-0.793,0.321,0.946,0.032,0.825,0.346,-0.446,0.147,0.095,-0.985,-0.468,0.654,-0.595,0.884,0.293,-0.364,0.668,-0.581,-0.465,-0.684,-0.221,-0.696,-0.394,-0.022,-0.919,-0.141,0.544,-0.827,0.549,0.816,-0.181,0.318,0.467,-0.825,-0.277,0.614,-0.74,-0.143,0.986,-0.082,-0.054,0.894,-0.444,-0.089,0.861,-0.5,0.37,0.784,-0.498,-0.442,0.281,-0.852,-0.775,0.511,-0.372,0.062,0.997,-0.054,-0.46,-0.329,-0.825,-0.679,-0.726,0.104,-0.127,0.655,0.745,-0.895,-0.434,-0.1,-0.775,-0.63,0.047,-0.017,0.476,0.879,-0.74,0.363,0.566,-0.744,0.245,0.621,-0.021,0.368,0.93,-0.845,0.456,0.279,-0.752,-0.643,0.145,0.059,-0.577,0.815,-0.5,-0.065,0.864,-0.553,-0.806,0.21,-0.316,-0.216,0.924,-0.964,0.102,-0.247,-0.732,0.263,0.629,-0.832,0.475,0.287,-0.809,-0.267,-0.524,-0.729,0.351,0.587,-0.806,-0.186,-0.562,-0.765,-0.641,0.067,-0.85,-0.497,0.175,-0.884,-0.053,-0.464,-0.378,-0.404,-0.833,-0.868,-0.466,0.169,-0.395,-0.376,-0.838,-0.542,-0.668,-0.509,-0.75,0.498,0.434,-0.603,0.791,0.105,-0.996,-0.024,-0.09,-0.696,0.675,0.244,-0.933,0.182,-0.312,-0.947,0.314,0.064,0.188,0.97,0.155,0.339,0.917,-0.21,-0.822,0.569,0.009,-0.461,-0.48,0.746,0.744,-0.259,0.616,-0.47,-0.059,0.881,0.235,-0.495,0.836,0.227,-0.075,0.971,-0.139,-0.693,0.708,-0.138,-0.694,0.707,0.228,-0.075,0.971,-0.519,-0.469,0.715,-0.518,-0.471,0.714,0.23,-0.078,0.97,-0.154,0.145,0.977,-0.331,-0.591,0.736,0.033,0.026,0.999,-0.361,-0.177,0.916,-0.168,-0.505,0.847,0.216,-0.286,0.933,-0.552,-0.238,0.799,-0.434,-0.84,-0.325,0.339,-0.911,-0.234,-0.603,-0.79,0.11,-0.718,-0.652,-0.245,0.22,-0.767,-0.602,0.647,-0.61,0.457,0.212,-0.726,0.654,-0.232,-0.888,-0.398,0.985,-0.074,-0.158,0.171,-0.828,0.534,0.944,-0.176,-0.278,0.758,-0.294,0.582,0.571,-0.657,0.492,0.757,-0.539,-0.368,0.363,0.932,-0.025,0.575,-0.818,-0.005,0.366,0.77,-0.522,0.994,-0.029,-0.11,0.973,-0.097,-0.212,0.348,0.712,-0.609,0.04,0.939,0.34,0.645,0.474,0.6,0.868,0.312,-0.387,0.37,0.891,-0.265,0.92,0.167,0.355,0.625,0.606,-0.492,-0.209,0.962,0.179,-0.005,0.873,0.488,0.845,0.51,-0.159,0.223,0.943,-0.248,0.549,0.55,0.629,0.777,0.62,-0.107,0.142,0.979,0.147,0.85,0.445,0.28,0.443,0.874,-0.201,-0.069,-0.285,0.956,0.232,-0.653,0.721,0.744,0.506,-0.436,-0.148,0.926,0.348,-0.025,0.849,0.529,0.863,0.432,-0.263,-0.195,0.972,0.133,0.291,0.869,0.399,0.121,0.993,0.003,-0.41,0.668,0.621,-0.404,0.667,0.626,0.128,0.992,0.008,-0.303,0.95,-0.07,-0.254,0.704,0.663,-0.154,0.988,-0.033,-0.604,-0.515,0.609,-0.401,0.752,0.523,-0.745,-0.469,0.475,0.026,0.79,0.612,-0.061,0.853,0.518,-0.828,-0.408,0.384,0.581,-0.566,0.585,-0.188,0.798,0.572,0.459,-0.619,0.637,0.087,0.961,0.262,0.014,0.709,0.705,0.289,0.872,0.394,-0.413,0.671,0.616,0.656,-0.233,-0.718,-0.263,-0.964,-0.043,-0.663,0.603,-0.444,-0.597,0.596,-0.537,-0.2,-0.971,-0.132,-0.873,0.433,-0.226,-0.871,0.433,-0.231,-0.199,-0.97,-0.136,-0.594,-0.092,0.799,-0.82,0.051,0.57,-0.426,-0.828,-0.366,-0.192,-0.765,0.615,-0.691,0.503,0.519,-0.855,0.262,-0.448,-0.994,-0.025,-0.102,-0.836,0.43,0.34,-0.697,0.717,-0.006,-0.982,-0.143,-0.121,-0.939,-0.204,0.278,-0.656,0.661,0.364,-0.661,-0.523,-0.539,0.442,-0.894,0.077,0.292,0.342,0.893,0.039,-0.986,0.161,0.106,-0.985,0.135,0.353,0.343,0.87,-0.08,-0.83,0.552,0.467,-0.642,0.608,0.063,-0.75,0.658,-0.005,-0.998,-0.064,-0.62,0.135,0.773,-0.941,-0.33,0.078,-0.47,-0.856,-0.216,0.062,-0.779,0.624,-0.448,-0.259,0.856,-0.779,-0.333,0.531,0.588,0.364,0.722,-0.292,0.727,0.622,0.351,-0.551,0.757,0.443,-0.506,0.74,-0.207,0.768,0.606,-0.406,-0.792,0.456,-0.284,-0.812,0.51,-0.1,0.75,0.653,-0.755,0.374,0.539,0.159,-0.917,0.365,0.747,-0.447,0.492,-0.813,-0.508,0.285,0.679,0.37,0.634,-0.293,0.779,0.555,0.206,-0.5,0.841,0.917,-0.344,0.2,0.376,0.925,-0.049,-0.142,0.847,0.513,0.362,-0.731,0.579,0.843,-0.538,0.013,0.71,-0.554,0.434,0.942,-0.306,0.137,-0.117,0.886,0.449,0.711,-0.563,0.421,0.821,-0.5,0.277,0.011,0.96,0.281,0.323,0.065,0.944,0.776,-0.009,0.631,0.463,0.886,-0.032,-0.221,0.691,0.689,0.893,0.18,0.413,-0.113,0.866,0.487,-0.08,0.566,0.821,0.829,0.244,0.504,0.832,0.532,0.157,0.5,0.835,0.228,0.869,0.235,0.436,0.542,0.825,0.157,0.357,0.732,0.58,0.686,0.346,0.64,0.872,0.44,0.216,0.319,0.578,0.751,0.685,0.728,-0.028,0.318,0.941,0.116,0.806,0.155,0.571,0.986,-0.134,-0.096,0.505,0.642,-0.577,0.408,0.663,0.628,0.615,0.454,0.645,0.692,0.452,-0.562,-0.367,0.683,0.631,0.658,0.634,0.406,-0.327,0.853,0.406,0.075,0.438,0.896,0.99,0.14,0.027,0.659,0.532,-0.531,0.823,0.553,-0.126,0.992,0.101,-0.078,0.826,0.51,-0.241,0.216,0.281,0.935,0.965,0.232,-0.122,0.189,0.412,0.891,0.788,-0.487,0.377,-0.376,0.926,0.026,-0.772,0.32,0.55,0.072,0.993,-0.093,-0.091,0.903,-0.421,-0.962,0.215,0.168,0.757,0.609,0.237,0.754,0.648,0.11,-0.965,0.26,0.021,-0.787,0.576,0.221,-0.739,0.672,0.034,-0.914,0.363,-0.179,-0.24,0.237,0.942,-0.209,0.3,0.931,-0.882,0.431,-0.191,-0.147,-0.493,0.858,0.123,-0.156,0.98,-0.567,0.822,-0.048,-0.322,-0.311,0.894,0.545,-0.258,0.798,0.441,0.883,-0.161,0.276,-0.029,0.961,0.591,-0.42,0.689,0.756,0.492,-0.433,0.303,0.864,0.403,0.349,-0.312,-0.884,0.049,-0.091,-0.995,0.81,0.23,-0.539,0.911,-0.213,-0.353,0.166,-0.606,-0.777,0.517,0.244,-0.821,0.523,0.242,-0.817,0.173,-0.609,-0.774,-0.058,0.875,-0.481,0.409,0.892,-0.193,0.647,-0.592,-0.481,0.351,0.716,-0.603,0.513,0.237,-0.825,-0.068,0.869,-0.489,0.908,-0.22,-0.357,0.657,-0.484,-0.578,-0.356,0.566,-0.744,0.998,0.027,0.056,0.876,-0.476,-0.078,-0.476,0.071,-0.876,0.67,0.65,-0.357,0.759,-0.556,-0.339,0.57,0.581,-0.581,0.798,0.163,0.58,0.862,-0.005,0.507,0.634,0.413,-0.654,0.589,0.775,-0.228,0.593,0.106,-0.798,0.655,0.732,0.185,0.694,0.171,0.699,0.247,0.576,-0.779,0.396,0.576,0.715,0.988,0.132,0.083,-0.109,0.425,-0.899,-0.547,0.827,-0.129,0.364,0.909,-0.204,0.328,0.386,-0.862,-0.58,0.343,-0.739,0.864,0.395,-0.312,0.9,0.163,-0.405,-0.544,0.11,-0.832,0.844,0.206,0.495,-0.236,0.313,-0.92,0.904,0.374,0.208,-0.398,0.915,-0.068,0.191,0.885,0.424,0.61,0.735,0.297,-0.732,0.252,0.633,0.3,0.121,0.946,-0.389,0.483,0.784,-0.512,0.259,0.819,0.188,-0.085,0.978,0.862,0.402,0.308,0.484,0.84,0.246,-0.19,0.352,0.916,0.443,-0.353,0.824,-0.477,0.119,0.871,0.894,0.274,0.356,-0.392,0.511,0.765,-0.399,0.232,0.887,0.887,0.034,0.461,-0.725,0.528,-0.441,0.594,0.327,0.735,-0.721,0.693,0.004,-0.838,0.478,-0.265,0.79,-0.01,0.612,0.299,0.557,-0.775,-0.28,0.847,-0.451,0.212,0.281,0.936,0.997,-0.041,-0.061,-0.286,-0.151,-0.946,-0.977,0.179,0.116,-0.526,0.832,0.175,-0.456,-0.333,-0.825,-0.707,0.638,0.304,0.888,0.371,0.272,0.014,0.785,0.619,-0.943,0.28,-0.182,-0.882,-0.108,-0.459,0.435,0.611,0.662,-0.326,0.166,-0.931,-0.422,0.759,0.495,-0.776,0.576,-0.259,-0.638,0.087,-0.765,0.078,0.519,0.851,0.013,0.975,0.222,-0.806,0.591,-0.045,-0.826,0.095,0.555,0.573,0.773,0.272,0.43,0.876,-0.22,-0.978,0.204,0.033,0.074,0.997,0.012,0.127,0.779,-0.614,-0.218,0.904,-0.367,0.469,0.805,-0.364,-0.853,0.47,0.226,0.523,0.647,0.554,-0.459,0.435,-0.774,-0.773,0.356,-0.525,0.232,0.574,0.785,-0.339,-0.107,-0.935,0.127,0.811,0.572,-0.363,0.245,-0.899,-0.101,0.859,-0.501,0.24,0.326,-0.914,-0.142,0.578,-0.804,0.108,0.821,-0.561,0.469,0.549,-0.692,-0.934,0.188,-0.304,-0.935,0.218,-0.279,0.468,0.579,-0.667,0.352,-0.27,-0.896,-0.994,-0.106,-0.034,-0.689,0.721,0.074,-0.921,0.143,-0.363,-0.991,0.002,-0.132,-0.754,0.591,0.286,-0.608,-0.334,-0.72,-0.618,-0.358,-0.699,-0.764,0.567,0.307,-0.91,0.405,-0.09,0.046,-0.927,0.371,0.122,-0.668,0.734,-0.574,0.706,-0.415,-0.318,-0.678,0.663,-0.868,0.422,-0.262,-0.605,0.629,-0.488,0.091,-0.742,0.664,-0.59,0.806,0.049,-0.744,0.627,-0.232,-0.063,-0.922,0.383,0.065,0.752,0.657,-0.038,0.761,0.648,-0.166,-0.912,0.374,0.714,0.103,0.692,-0.412,0.383,0.826,0.279,-0.336,0.9,-0.208,0.926,0.316,-0.16,0.372,0.914,0.044,0.914,0.404,-0.969,0.247,0.025,-0.972,0.213,0.095,0.04,0.88,0.473,-0.113,0.756,-0.645,-0.606,0.576,-0.548,-0.417,0.713,0.563,-0.216,0.778,-0.59,-0.112,0.19,0.975,0.26,0.407,0.876,-0.432,0.412,0.803,-0.441,0.193,0.876,0.25,0.188,0.95,-0.304,0.578,0.757,-0.324,0.555,0.766,0.231,0.166,0.959,0.129,0.565,0.815,-0.174,0.495,0.851,-0.058,0.099,0.993,0.097,0.787,0.609,0.121,0.314,0.942,0.367,0.622,0.692,-0.332,0.307,0.892,0.014,-0.373,0.928,0.689,-0.009,0.725,-0.712,0.403,0.575,-0.719,0.38,0.582,0.681,-0.032,0.731,-0.288,0.912,-0.293,-0.786,0.611,-0.091,0.201,-0.322,0.925,-0.446,0.894,-0.041,-0.519,0.854,-0.043,0.131,-0.36,0.924,0.774,-0.374,-0.511,0.751,0.338,-0.567,0.114,0.936,-0.332,-0.455,0.89,0.04,0.836,-0.34,-0.432,-0.795,0.607,-0.011,0.882,0.092,-0.463,-0.474,0.874,-0.106,-0.724,0.684,0.088,0.904,-0.265,-0.337,-0.133,0.303,-0.944,-0.051,0.72,-0.692,0.985,0.152,-0.085,-0.642,-0.572,-0.511,0.1,0.882,-0.461,-0.486,0.621,-0.615,-0.896,-0.041,-0.443,0.731,0.682,-0.017,0.395,-0.728,-0.56,-0.842,0.077,-0.534,0.454,-0.599,-0.66,0.183,-0.861,-0.475,0.314,0.54,-0.781,-0.277,-0.751,-0.6,-0.261,0.93,0.257,0.475,-0.314,-0.822,0.493,0.839,-0.228,0.227,0.953,0.198,0.194,-0.729,-0.657,-0.047,0.989,-0.137,0.625,0.096,-0.775,0.565,0.516,-0.644,0.142,0.989,-0.048,0.376,-0.729,-0.571,-0.953,0.088,-0.291,0.208,0.954,-0.215,-0.887,0.054,-0.458,-0.285,0.633,0.72,-0.066,0.866,0.495,-0.659,0.296,-0.691,0.219,0.295,0.93,-0.734,0.642,-0.223,-0.18,0.62,0.763,0.22,0.296,0.929,-0.658,0.297,-0.692,-0.654,-0.38,0.654,-0.598,-0.104,0.794,-0.601,0.584,-0.546,-0.876,0.421,-0.235,-0.061,0.725,0.686,-0.896,-0.012,0.445,-0.279,-0.837,0.47,-0.278,0.771,0.573,-0.496,-0.791,0.357,0.412,-0.072,0.908,-0.009,0.847,0.532,-0.969,0.239,-0.065,0.326,0.642,0.694,0.335,0.666,0.666,-0.96,0.265,-0.094,-0.571,-0.071,0.818,-0.062,0.513,0.856,-0.387,0.921,-0.051,-0.733,0.334,-0.592,0.33,0.684,0.651,-0.354,0.499,-0.791,-0.922,-0.171,0.347,-0.65,0.249,0.718,-0.102,0.889,-0.447,-0.395,0.613,-0.684,-0.459,0.632,-0.625,-0.161,0.905,-0.393,-0.427,-0.381,-0.82,-0.499,-0.38,-0.779,-0.232,0.907,-0.352,-0.33,0.371,-0.868,-0.972,-0.224,0.072,-0.841,0.539,0.051,-0.555,0.278,-0.784,-0.911,0.187,0.368,-0.485,0.756,-0.44,-0.601,-0.404,-0.69,-0.856,-0.494,-0.151,-0.74,0.666,0.098,-0.827,-0.261,-0.497,-0.871,-0.442,-0.214,-0.786,0.472,0.4,-0.624,-0.543,-0.562,-0.883,-0.406,-0.234,-0.636,-0.507,-0.581,-0.286,-0.797,-0.532,-0.405,-0.893,0.198,-0.764,-0.611,0.207,-0.236,-0.942,-0.237,0.961,-0.023,0.275,0.528,0.381,0.759,0.291,-0.534,0.794,0.929,0.103,0.355,0.257,-0.398,0.881,0.015,-0.977,0.212,0.124,-0.977,0.171,0.375,-0.398,0.837,-0.478,-0.677,0.559,0.953,0.085,0.29,0.472,0.541,0.696,0.711,0.164,0.684,0.778,0.206,0.593,0.55,0.59,0.591,-0.29,0.102,0.952,-0.091,-0.258,0.962,0.778,0.177,0.603,-0.255,0.493,0.832,-0.43,-0.123,0.894,0.603,-0.44,0.665,0.08,0.724,0.685,0.386,-0.187,0.903,0.292,0.574,0.765,0.144,0.204,0.968,0.693,0.264,-0.671,0.452,0.655,-0.606,0.533,0.828,-0.174,0.898,0.432,-0.083,0.817,0.259,-0.516,0.318,0.948,0.023,0.467,-0.056,-0.883,-0.183,0.38,-0.907,0.242,0.368,-0.898,0.253,-0.214,-0.944,-0.171,-0.241,-0.955,0.231,0.549,-0.803,0.346,0.491,-0.799,-0.036,-0.308,-0.951,-0.909,0.13,-0.397,0.349,0.462,-0.815,-0.905,0.099,-0.413,0.412,0.893,-0.182,0.457,0.845,-0.277,-0.862,0.053,-0.504,-0.843,0.177,0.508,-0.497,0.747,0.441,-0.503,0.646,-0.574,-0.817,0.555,0.156,0.374,0.588,0.717,0.733,0.68,0.008,0.457,0.831,0.317,0.632,0.43,0.645,0.899,0.299,0.32,0.388,0.799,0.459,0.908,0.378,0.181,0.665,0.747,-0.005,0.787,0.173,0.592,-0.387,0.896,0.216,-0.707,0.704,-0.069,-0.549,0.368,0.751,0.991,-0.128,-0.025,0.617,0.278,-0.736,-0.063,0.941,0.331,0.204,0.764,0.612,0.885,0.101,-0.455,0.292,0.932,0.217,0.301,0.726,0.619,0.402,0.888,0.225,-0.148,0.659,0.738,0.768,-0.12,-0.629,-0.255,0.948,-0.188,0.593,0.655,0.469,0.56,0.116,-0.82,0.414,0.858,0.305,0.901,0.428,-0.068,0.642,0.544,-0.54,0.155,0.974,-0.168,0.741,0.634,0.222,0.83,0.558,0.022,0.243,0.898,-0.367,-0.73,-0.389,0.562,0.538,0.691,0.483,-0.003,-0.025,1.0,-0.372,-0.501,0.781,0.601,0.786,-0.148,-0.156,0.572,0.805,-0.099,0.532,0.841,0.65,0.751,-0.117,-0.401,0.253,0.881,-0.301,0.163,0.94,0.741,0.668,-0.063,-0.801,0.598,0.032,-0.137,0.568,0.811,-0.436,0.287,0.853,-0.356,-0.505,0.786,-0.906,0.281,0.317,0.229,0.97,-0.076,0.635,0.741,-0.219,-0.924,-0.207,0.321,-0.533,0.241,0.811,0.212,0.828,-0.519,-0.234,0.337,-0.912,-0.218,0.725,-0.653,0.34,0.692,-0.637,0.324,0.304,-0.896,-0.121,0.15,-0.981,-0.415,0.744,-0.524,0.03,0.898,-0.438,-0.516,0.441,-0.734,-0.654,0.013,0.756,-0.089,0.53,0.843,-0.534,0.376,0.757,0.368,0.463,-0.806,-0.074,0.387,-0.919,0.437,0.754,-0.49,0.601,0.584,-0.546,0.077,0.23,-0.97,0.324,0.858,-0.399,0.447,0.518,-0.729,0.16,0.787,-0.596,0.901,0.343,0.267,0.07,0.858,-0.508,0.498,0.706,0.503,0.005,0.566,-0.824,-0.127,0.612,-0.781,0.357,0.756,0.549,0.383,0.872,-0.305,-0.722,0.433,-0.539,-0.929,0.245,0.277,-0.764,0.618,0.185,-0.811,0.569,-0.137,-0.979,0.193,-0.067,-0.443,0.694,0.567,-0.992,0.122,0.038,-0.622,0.252,0.741,-0.832,0.41,0.373,-0.89,0.29,0.353,-0.684,0.123,0.719,-0.341,0.353,0.871,-0.914,0.065,0.401,-0.367,0.108,0.924,-0.274,0.5,0.822,-0.89,-0.026,0.456,-0.246,0.394,0.886,-0.572,0.69,-0.443,-0.857,0.032,0.514,-0.535,0.757,-0.376,-0.968,-0.132,-0.213,-0.993,-0.068,0.1,-0.561,0.827,-0.039,-0.752,-0.186,-0.632,-0.837,-0.261,-0.481,-0.66,0.739,0.137,0.452,0.782,-0.43,-0.975,-0.123,0.184,0.313,0.92,0.236,-0.573,-0.064,-0.817,-0.877,-0.195,-0.439,0.009,0.789,0.614,-0.048,0.992,-0.118,-0.327,0.938,-0.111,-0.27,0.736,0.621,0.77,0.228,-0.596,0.704,0.254,-0.664,-0.337,0.762,0.553,0.884,-0.323,0.338,0.897,-0.116,-0.426,-0.326,0.94,-0.104,0.948,0.059,0.314,0.382,0.747,-0.544,0.47,0.859,0.204,0.934,-0.351,-0.06,0.88,-0.31,-0.36,0.411,0.904,-0.12,0.839,-0.543,0.045,-0.198,-0.899,-0.391,-0.625,0.548,-0.556,-0.081,-0.64,-0.764,-0.339,-0.817,-0.467,-0.904,0.357,-0.236,-0.347,0.597,-0.724,-0.691,-0.717,0.092,-0.699,0.696,-0.165,-0.406,-0.511,-0.758,-0.421,-0.522,-0.742,-0.713,0.685,-0.149,0.61,0.273,-0.744,-0.995,0.097,-0.015,-0.058,0.993,0.102,-0.468,0.634,-0.616,-0.635,0.589,-0.5,-0.239,0.944,0.227,0.106,0.698,-0.708,-0.545,-0.073,-0.835,-0.996,0.048,0.079,-0.923,0.288,-0.257,-0.493,0.867,0.075,0.238,0.955,-0.175,0.176,0.782,-0.598,-0.012,0.812,-0.583,0.05,0.986,-0.16,0.213,0.58,-0.786,-0.922,-0.28,-0.267,-0.926,0.246,0.287,-0.988,0.073,-0.136,-0.047,-0.986,0.16,0.015,-0.813,0.583,-0.333,-0.938,-0.092,-0.159,-0.972,-0.172,0.164,-0.842,0.514,-0.23,-0.675,0.701,-0.409,-0.802,0.435,-0.015,-0.969,0.248,-0.259,-0.253,0.932,0.501,-0.854,0.144,0.722,-0.308,0.619,-0.333,-0.84,0.429,-0.314,-0.864,0.394,0.739,-0.331,0.586,0.039,0.043,0.998,-0.151,-0.263,0.953,0.55,-0.636,0.541,-0.39,0.598,0.7,-0.424,0.572,0.702,0.516,-0.662,0.543,-0.123,0.96,-0.25,0.691,-0.329,0.643,0.183,0.983,0.009,-0.037,0.57,0.821,0.249,0.959,-0.136,-0.928,0.358,-0.101,-0.91,0.342,0.235,0.267,0.943,0.198,-0.987,0.099,-0.125,-0.707,0.706,-0.041,-0.776,0.478,-0.411,0.111,-0.833,0.542,-0.737,0.584,0.34,-0.145,-0.258,0.955,0.234,-0.563,0.792,-0.662,0.728,-0.179,-0.822,-0.106,0.559,-0.546,0.076,0.834,-0.364,0.924,0.118,-0.801,-0.183,0.569,-0.461,-0.205,0.863,0.003,0.9,0.435,-0.643,-0.057,-0.764,-0.78,-0.165,-0.604,-0.134,0.793,0.595,0.11,0.106,-0.988,-0.345,-0.371,-0.862,-0.624,0.278,0.731,-0.369,0.643,-0.671,-0.843,0.289,-0.453,0.051,0.527,-0.848,0.472,-0.555,-0.684,-0.526,-0.681,0.509,-0.875,0.41,0.258,-0.558,-0.144,-0.817,-0.664,-0.409,0.626,-0.707,0.148,-0.691,0.924,-0.263,-0.278,0.733,-0.663,0.153,-0.929,-0.317,-0.189,-0.298,-0.511,-0.806,-0.266,-0.614,-0.743,-0.892,-0.437,-0.116,-0.861,-0.206,-0.464,0.459,-0.778,0.429,-0.572,-0.626,-0.531,0.793,-0.584,0.171,0.295,-0.952,0.084,0.629,-0.758,-0.173,0.879,-0.469,0.088,0.505,-0.615,0.605,0.255,-0.904,0.344,0.842,-0.37,0.392,0.259,-0.951,-0.169,0.596,-0.706,-0.383,0.865,-0.496,-0.079,0.849,-0.527,-0.045,0.582,-0.734,-0.351,0.986,-0.117,-0.12,0.963,-0.215,0.164,0.561,-0.823,-0.091,0.977,-0.035,-0.21,0.954,-0.265,0.139,0.968,-0.088,-0.236,0.036,0.948,0.316,-0.766,0.263,-0.586,-0.242,0.814,-0.529,0.115,-0.003,-0.993,-0.439,0.886,-0.149,0.495,0.721,-0.484,-0.689,0.597,-0.41,-0.688,0.707,0.162,0.496,0.849,0.182,0.236,0.356,-0.904,-0.411,0.427,-0.805,-0.229,0.929,0.292,-0.179,0.784,-0.594,-0.608,-0.541,-0.58,-0.728,-0.613,0.308,-0.94,-0.328,0.091,-0.429,0.834,0.347,0.505,0.488,-0.712,-0.505,0.087,-0.858,-0.33,0.893,0.304,-0.403,0.149,-0.903,-0.873,0.354,0.337,-0.306,0.82,0.483,0.185,0.634,-0.751,-0.189,0.436,-0.88,0.315,0.769,0.556,0.455,0.383,-0.804,-0.569,0.77,0.289,-0.551,0.778,0.303,0.471,0.39,-0.791,0.09,0.615,-0.783,-0.199,0.847,0.492,0.403,0.677,-0.615,-0.892,0.429,0.145,-0.816,0.496,0.297,0.482,0.747,-0.457,-0.861,0.272,-0.43,-0.583,-0.525,0.62,0.77,-0.08,0.633,0.331,0.555,0.763,-0.38,0.054,0.923,0.031,-0.6,0.799,0.02,-0.187,0.982,-0.251,0.961,0.12,-0.296,0.737,-0.608,-0.538,0.815,-0.214,0.035,0.99,-0.139,-0.252,0.844,-0.473,-0.398,0.787,0.471,0.338,0.769,0.543,0.381,0.828,-0.411,-0.688,0.724,-0.053,0.809,0.446,-0.383,-0.283,0.447,-0.849,-0.018,0.921,0.389,0.523,0.797,0.303,0.182,0.34,-0.923,0.021,0.905,-0.426,0.855,-0.426,-0.295,0.307,-0.146,-0.94,0.068,0.269,-0.961,0.534,-0.789,-0.305,-0.233,-0.071,-0.97,0.562,0.697,0.446,0.504,0.263,-0.823,0.78,0.53,-0.334,0.695,0.568,0.441,-0.099,-0.2,-0.975,0.345,0.648,0.679,0.126,0.113,-0.986,0.486,0.8,0.353,0.365,0.636,0.68,-0.08,-0.212,-0.974,-0.075,0.551,-0.831,0.4,0.625,0.67,-0.042,0.54,-0.84,-0.011,0.978,-0.209,0.781,0.458,0.424,0.366,0.813,-0.453,-0.927,0.146,0.345,0.773,0.519,0.365,-0.935,0.202,0.291,0.674,0.268,0.688,0.749,0.6,0.282,-0.871,0.488,-0.058,-0.891,0.273,0.362,-0.522,0.656,0.545,-0.532,0.839,0.11,-0.718,0.301,0.628,-0.711,0.686,0.151,-0.92,0.334,0.207,0.121,0.065,0.991,0.248,0.321,0.914,-0.783,0.61,0.124,0.408,-0.622,0.668,0.51,0.692,-0.511,0.919,0.259,-0.299,0.896,-0.424,0.134,-0.216,0.841,-0.497,0.774,0.535,0.338,0.9,0.411,0.147,-0.08,0.707,-0.703,0.351,0.936,0.034,0.851,0.258,-0.457,0.306,0.793,-0.526,0.405,0.884,0.236,0.312,0.366,-0.877,-0.095,0.984,-0.153,0.667,-0.298,-0.683,0.508,-0.349,-0.787,-0.253,0.933,-0.257,0.834,0.451,-0.319,0.094,-0.858,-0.504,-0.888,-0.193,-0.416,-0.059,0.994,-0.096,-0.327,0.825,-0.461,-0.21,-0.633,-0.745,-0.059,-0.876,-0.48,-0.19,0.979,-0.074,0.273,0.179,-0.945,0.118,0.134,-0.984,-0.326,0.939,-0.108,0.772,0.229,-0.593,0.117,0.137,-0.984,0.771,0.232,-0.593,0.528,-0.462,-0.712,0.462,-0.428,-0.776,0.705,0.266,-0.657,0.886,-0.309,0.346,0.505,-0.308,-0.806,0.935,-0.169,0.311,-0.244,-0.739,-0.628,-0.712,0.266,-0.65,0.467,0.835,0.289,0.102,0.556,-0.825,0.012,0.593,-0.805,0.362,0.879,0.312,0.72,0.378,-0.582,0.687,0.4,-0.607,0.326,0.901,0.285,0.915,-0.389,-0.108,0.893,-0.346,-0.289,0.3,0.951,0.075,0.864,-0.176,0.472,0.929,0.017,-0.369,0.9,0.187,0.393,0.988,-0.141,0.07,0.937,0.198,-0.289,0.85,0.526,0.034,0.806,0.36,0.47,-0.681,0.183,-0.709,-0.939,0.343,0.016,-0.768,0.511,-0.386,-0.899,-0.402,-0.174,-0.986,-0.073,0.149,-0.701,0.133,-0.701,-0.878,0.194,0.438,-0.68,0.728,-0.089,-0.936,0.352,-0.0,-0.515,0.258,0.817,-0.259,0.634,0.729,-0.372,0.864,0.339,-0.69,0.655,0.308,-0.576,0.425,0.698,-0.016,0.988,0.153,-0.268,-0.021,0.963,0.439,0.258,0.86,-0.914,0.187,0.361,-0.918,0.086,0.388,0.435,0.164,0.885,0.927,0.361,-0.1,0.817,0.566,-0.113,0.333,0.355,0.874,0.941,0.307,0.142,0.936,-0.351,0.004,-0.681,-0.592,0.432,-0.859,-0.372,0.352,0.986,-0.097,-0.136,0.083,-0.159,0.984,0.042,-0.334,0.942,0.942,-0.284,-0.181,0.716,-0.084,0.693,0.073,-0.482,0.873,0.745,-0.219,0.63,-0.048,-0.102,0.994,0.225,-0.435,0.872,0.114,-0.052,0.992,-0.708,-0.667,0.233,-0.485,-0.862,0.149,0.337,-0.247,0.909,-0.734,0.166,0.659,-0.302,-0.898,0.32,-0.577,0.135,0.806,-0.832,-0.125,0.541,0.138,-0.675,0.725,-0.453,0.067,0.889,-0.634,0.236,-0.736,-0.0,0.933,-0.361,0.605,0.248,0.757,0.544,-0.152,0.825,-0.258,0.721,-0.643,-0.809,0.57,-0.145,-0.255,0.833,0.491,0.255,0.965,-0.053,0.203,-0.499,-0.843,-0.149,-0.468,-0.871,-0.072,0.994,-0.079,0.701,-0.331,-0.632,0.346,-0.467,-0.813,-0.454,0.848,-0.275,0.862,0.003,-0.507,-0.298,0.234,-0.926,0.167,0.76,-0.628,0.139,0.415,-0.899,-0.578,0.354,-0.736,-0.542,0.699,-0.466,-0.265,0.175,-0.948,-0.751,-0.451,-0.483,-0.992,0.118,-0.034,0.128,-0.374,-0.919,0.128,-0.579,-0.805,-0.993,-0.088,0.079,0.619,0.035,-0.785,-0.812,-0.089,-0.578,-0.058,-0.032,-0.998,-0.803,0.252,-0.54,-0.244,0.806,-0.54,-0.452,0.46,-0.764,-0.913,0.362,-0.188,-0.705,0.708,0.037,-0.371,0.902,-0.22,-0.502,0.615,-0.608,-0.837,0.421,-0.35,-0.253,0.903,-0.346,0.064,0.647,0.76,0.351,0.826,0.44,-0.526,0.836,0.154,0.677,0.702,0.222,0.135,0.895,-0.425,-0.605,0.469,-0.644,0.703,0.686,0.188,-0.581,0.455,-0.675,-0.131,0.691,0.711,0.008,0.758,0.653,-0.461,0.512,-0.725,-0.75,0.564,-0.347,-0.715,0.617,-0.329,-0.429,0.561,-0.708,-0.938,0.289,-0.19,-0.71,0.591,-0.382,-0.933,0.261,-0.248,0.05,0.787,0.615,0.266,0.92,0.288,-0.717,0.394,-0.575,-0.499,0.818,0.287,0.494,0.862,0.11,0.438,0.446,-0.781,-0.389,0.921,-0.008,0.209,0.745,-0.633,-0.547,0.668,-0.505,-0.133,0.888,-0.44,0.683,-0.502,-0.531,0.271,0.694,0.667,0.007,0.714,0.7,0.466,-0.618,-0.633,0.499,0.855,0.142,0.094,0.645,0.758,0.58,0.791,0.195,0.229,0.873,0.431,-0.593,0.717,0.366,0.2,0.294,0.935,0.579,-0.11,0.808,-0.774,0.612,-0.162,-0.365,-0.134,0.922,0.046,0.169,0.984,-0.331,0.939,-0.095,-0.58,-0.217,0.785,0.172,-0.306,0.936,0.543,0.836,0.081,-0.304,0.298,0.905,-0.128,0.136,0.982,0.73,0.664,0.164,-0.909,0.333,0.251,0.043,0.461,0.886,-0.737,0.657,0.155,0.095,0.036,0.995,-0.115,0.442,0.89,-0.061,0.018,0.998,0.345,-0.173,0.922,0.458,0.066,0.886,0.06,0.276,0.959,0.234,-0.664,0.71,-0.629,0.463,0.624,-0.853,-0.267,0.448,-0.654,0.015,0.756,-0.762,0.56,0.327,-0.961,0.277,0.018,-0.825,-0.334,0.456,-0.554,0.036,0.832,-0.728,0.595,0.341,-0.818,0.178,0.548,-0.234,0.29,0.928,-0.192,0.698,0.69,-0.581,0.049,0.812,0.324,-0.582,-0.746,0.646,0.113,-0.755,0.68,-0.347,-0.646,0.606,-0.366,-0.706,0.579,0.096,-0.81,0.778,0.379,-0.501,0.968,-0.031,-0.248,0.769,-0.314,-0.557,0.638,0.654,-0.407,0.184,-0.181,-0.966,0.39,0.548,-0.74,0.515,-0.347,-0.784,0.346,0.259,-0.902,0.688,0.123,-0.716,-0.007,0.018,-1.0,-0.772,0.551,0.317,-0.137,0.697,0.704,-0.427,0.797,0.428,-0.855,0.392,0.34,-0.88,-0.056,0.472,-0.252,0.827,0.503,-0.279,0.842,-0.461,-0.906,-0.041,-0.422,-0.657,0.695,-0.292,-0.445,0.669,-0.595,-0.711,-0.065,-0.7,-0.584,0.782,-0.218,-0.581,0.539,-0.61,-0.729,0.643,-0.234,0.087,0.88,-0.467,-0.673,0.634,-0.381,0.002,0.966,-0.258,-0.295,0.782,-0.55,-0.401,0.798,-0.449,-0.096,0.982,-0.165,0.368,0.896,-0.248,0.366,0.894,-0.257,-0.098,0.98,-0.173,0.836,-0.021,0.548,0.948,-0.317,-0.009,0.014,0.684,-0.729,0.723,0.477,-0.5,-0.026,0.995,0.101,0.476,0.071,0.876,0.619,0.677,0.398,-0.081,0.976,0.201,0.569,0.661,0.49,0.06,0.98,-0.19,0.215,0.924,0.316,0.376,0.924,-0.067,-0.553,0.826,0.11,0.594,-0.41,-0.693,-0.141,-0.857,-0.496,0.192,0.198,-0.961,-0.492,-0.835,0.246,-0.994,0.068,-0.081,-0.759,0.604,-0.243,0.052,-0.948,0.315,0.378,-0.035,0.925,-0.835,0.502,-0.225,0.3,-0.14,0.944,0.061,0.72,0.691,0.116,0.731,0.673,0.518,0.79,-0.329,-0.659,0.293,0.693,-0.026,0.996,0.087,-0.813,0.58,0.061,-0.253,0.843,0.475,-0.73,0.103,-0.676,-0.956,-0.05,-0.288,-0.968,0.245,0.052,-0.862,0.48,-0.161,-0.858,0.168,-0.485,-0.912,0.328,0.244,-0.942,0.183,-0.283,-0.992,0.029,0.121,-0.833,0.324,0.449,-0.057,0.866,-0.497,-0.947,0.121,-0.298,-0.92,0.315,0.233,-0.342,0.727,0.596,0.355,-0.112,0.928,0.524,0.261,0.811,-0.563,0.368,0.74,0.319,-0.072,0.945,-0.43,0.682,0.592,0.176,0.284,0.943,0.205,0.61,0.766,-0.102,0.857,0.506,-0.398,0.644,0.654,-0.09,0.397,0.913,0.365,0.929,0.052,-0.382,0.637,0.67,0.381,0.922,0.069,0.107,0.958,-0.266,0.193,0.58,-0.792,-0.856,-0.034,-0.516,-0.214,0.85,0.481,0.08,0.561,-0.824,-0.322,0.833,0.451,0.136,0.842,-0.523,0.37,0.461,-0.807,0.527,0.785,0.326,0.331,0.543,0.772,0.102,0.059,-0.993,0.244,0.879,-0.41,0.714,0.009,-0.7,-0.645,-0.649,-0.403,-0.842,0.46,-0.281,0.431,0.576,0.695,0.706,-0.708,0.005,0.454,0.826,-0.335,-0.995,-0.064,-0.073,-0.406,0.791,0.458,0.142,-0.184,0.973,-0.695,-0.63,0.347,0.029,-0.998,-0.051,0.083,-0.184,0.979,-0.03,-0.999,-0.045,0.969,0.12,0.218,0.959,-0.259,0.117,0.35,0.319,0.88,0.475,-0.465,-0.747,-0.192,-0.977,-0.095,-0.524,-0.756,0.392,0.645,0.141,-0.751,0.812,-0.575,0.095,0.764,-0.644,0.046,0.603,0.082,-0.794,0.884,-0.072,-0.462,0.881,-0.085,-0.466,0.6,0.069,-0.797,0.964,0.226,-0.142,0.879,-0.078,-0.471,0.961,0.232,-0.148,0.758,-0.652,0.035,0.743,-0.667,-0.057,0.947,0.218,-0.234,0.059,0.402,0.914,0.778,-0.623,-0.08,0.089,0.44,0.893,-0.553,-0.797,0.241,0.333,-0.824,0.458,0.098,-0.987,0.124,0.704,-0.603,0.375,-0.216,0.953,0.211,-0.822,0.569,-0.04,-0.596,0.748,0.293,0.78,0.308,0.545,-0.225,0.964,-0.141,0.658,-0.753,-0.011,0.339,-0.915,-0.217,-0.475,-0.724,-0.5,0.915,0.002,0.404,-0.588,-0.037,0.808,-0.787,0.572,-0.232,0.383,-0.487,-0.785,-0.904,0.407,0.134,-0.217,-0.316,-0.924,-0.893,0.163,-0.421,0.013,-0.835,0.551,0.037,0.815,-0.579,-0.012,-0.825,0.565,0.012,0.825,-0.565,-0.625,0.048,0.779,0.566,-0.451,-0.69,-0.61,0.247,0.753,0.61,-0.247,-0.753,0.345,-0.207,0.916,-0.838,-0.428,-0.338,0.712,-0.609,0.348,0.904,-0.278,-0.325,0.68,-0.625,0.382,0.997,0.082,0.008,0.762,0.487,-0.427,0.014,0.523,-0.852,0.561,-0.682,-0.468,0.326,-0.277,-0.904,0.152,0.375,-0.915,0.016,-0.232,-0.973,0.136,0.378,-0.916,-0.0,-0.228,-0.974,0.512,0.447,-0.734,0.654,-0.075,-0.752,-0.093,0.281,-0.955,0.062,-0.237,-0.969,0.279,0.444,-0.851,0.677,0.012,-0.736,0.095,0.241,-0.966,0.5,-0.184,-0.846,-0.374,0.013,-0.927,-0.213,-0.55,-0.807,0.081,-0.902,-0.424,-0.0,0.061,-0.998,0.139,-0.423,-0.895,0.392,-0.726,-0.565,0.513,0.004,-0.859,0.319,-0.15,-0.936,-0.231,-0.027,-0.973,-0.425,-0.431,-0.795,-0.637,-0.647,-0.419,0.131,-0.157,-0.979,-0.095,-0.627,-0.773,-0.34,-0.879,-0.335,-0.499,-0.86,-0.105,-0.108,-0.976,-0.187,0.305,-0.932,-0.195,-0.529,-0.664,-0.528,-0.139,-0.781,-0.61,0.275,-0.736,-0.618,-0.539,-0.432,0.723,-0.176,-0.548,0.818,0.216,-0.548,0.808,0.574,-0.434,0.695,0.839,-0.222,0.497,-0.549,-0.75,0.37,-0.186,-0.866,0.465,0.206,-0.866,0.455,0.564,-0.751,0.342,0.829,-0.54,0.144,0.825,-0.522,0.217,0.392,-0.913,0.111,0.86,-0.416,-0.295,0.429,-0.805,-0.411,0.864,-0.501,0.055,0.857,-0.515,-0.026,0.248,0.101,-0.963,0.263,-0.722,-0.64,0.532,-0.503,-0.681,0.158,-0.519,-0.84,0.269,-0.961,0.066,-0.165,-0.979,-0.119,0.168,-0.527,-0.833,-0.243,-0.76,-0.602,0.001,-0.337,-0.941,-0.414,-0.567,-0.713,0.039,-0.369,-0.929,0.52,-0.169,-0.837,0.307,-0.252,-0.918,0.64,-0.602,-0.478,-0.876,-0.459,-0.148,-0.523,-0.805,0.279,-0.757,-0.509,-0.411,-0.855,-0.306,0.418,-0.963,-0.263,-0.05,-0.959,-0.282,-0.014,-0.982,-0.184,-0.047,-0.759,-0.564,-0.326,-0.929,-0.322,0.182,-0.706,-0.702,-0.097,-0.996,-0.038,-0.077,-0.809,-0.576,0.114,-0.979,-0.182,-0.097,-0.486,-0.857,0.171,-0.779,-0.444,0.443,-0.704,-0.643,-0.302,-0.539,-0.8,0.264,-0.173,-0.322,0.931,0.674,-0.095,0.733,0.402,-0.874,0.273,0.675,-0.353,0.648,0.813,-0.254,0.525,0.725,-0.099,0.682,0.826,-0.031,0.562,0.018,0.165,0.986,0.799,0.091,0.595,0.935,-0.18,0.305,0.527,-0.844,-0.095,-0.35,-0.598,0.721,-0.203,-0.89,0.408,-0.081,-0.462,0.883,0.432,-0.573,0.696,-0.061,-0.413,0.909,0.452,-0.523,0.722,-0.314,-0.657,0.685,0.023,-0.938,0.346,0.372,-0.14,0.918,0.697,-0.43,0.574,0.378,-0.03,0.925,-0.028,-0.802,0.597,0.491,-0.61,0.622,0.968,-0.165,0.188,0.705,-0.561,-0.434,0.222,-0.975,-0.0,0.711,-0.665,-0.228,0.241,-0.384,-0.891,0.437,-0.516,-0.737,0.433,-0.509,-0.743,0.337,-0.724,-0.601,0.24,0.085,-0.967,0.985,-0.115,-0.13,0.742,-0.582,-0.332,0.703,-0.327,-0.631,0.537,-0.804,0.255,0.709,-0.679,-0.189,0.897,-0.044,-0.439,0.549,0.221,-0.806,0.32,-0.804,-0.502,0.02,-0.576,-0.817,-0.435,0.483,-0.76,-0.374,-0.274,-0.886,0.442,0.657,-0.61,-0.025,0.529,-0.848,-0.485,0.247,-0.839,0.17,0.983,-0.065,-0.348,0.916,-0.201,-0.764,0.581,-0.279,0.801,0.326,-0.501,-0.034,0.661,-0.75,-0.575,0.241,-0.782,-0.467,-0.313,-0.827,0.181,0.945,-0.274,0.705,0.626,-0.333,-0.037,0.679,-0.733,0.483,0.356,-0.8,-0.144,0.866,-0.478,0.26,0.771,-0.581,0.563,0.483,-0.67,0.687,0.077,-0.722,0.032,0.963,0.269,0.502,0.852,0.149,0.855,0.517,0.045,0.999,0.045,-0.015,0.194,-0.198,-0.961,-0.229,0.064,-0.971,-0.513,0.41,-0.754,-0.154,-0.781,-0.605,-0.61,-0.498,-0.617,-0.916,-0.125,-0.382,-0.456,0.42,-0.785,-0.107,-0.128,-0.986,-0.426,-0.175,0.888,-0.077,-0.723,0.687,-0.59,-0.058,0.805,-0.355,-0.529,0.771,-0.975,-0.217,0.045,-0.757,-0.653,0.013,-0.964,-0.267,0.017,-0.691,-0.716,0.101,-0.224,-0.962,0.157,-0.84,-0.023,0.542,-0.545,-0.428,0.721,-0.097,-0.712,0.696,-0.966,-0.257,-0.041,-0.952,-0.298,0.068,-0.518,-0.809,0.279,-0.836,-0.388,0.388,-0.834,-0.389,0.393,-0.9,0.436,0.012,-0.844,-0.294,0.449,-0.47,-0.882,-0.043,-0.788,-0.233,-0.57,-0.913,-0.061,-0.403,-0.808,-0.558,-0.19,-0.914,-0.061,-0.402,-0.809,-0.557,-0.189,-0.552,-0.834,0.018,-0.919,-0.366,-0.145,-0.908,-0.418,0.011,-0.852,0.016,-0.524,-0.855,-0.347,0.386,-0.145,-0.978,0.147,-0.152,-0.625,-0.766,-0.896,-0.409,0.174,-0.881,-0.448,0.15,-0.463,-0.631,-0.622,-0.924,-0.127,0.361,0.076,0.046,0.996,0.23,-0.923,0.309,-0.619,-0.156,0.77,-0.382,-0.177,0.907,0.14,0.158,0.977,0.601,-0.064,0.796,-0.26,-0.592,0.763,0.136,-0.783,0.607,-0.208,-0.137,0.968,0.258,-0.695,0.671,0.368,-0.157,0.917,0.563,-0.448,0.695,0.691,-0.634,0.347,-0.024,-0.415,0.91,0.171,-0.706,0.688,0.299,-0.892,0.34,0.238,-0.225,0.945,0.346,0.51,0.787,0.078,-0.04,0.996,0.658,0.219,0.72,0.313,0.265,0.912,0.23,-0.276,0.933,0.759,0.185,0.624,0.676,-0.356,0.645,0.563,0.101,0.821,0.742,-0.008,0.67,0.661,0.196,0.724,0.348,-0.263,0.9,0.758,0.1,0.644,0.447,-0.361,0.819,0.475,0.55,0.687,-0.007,0.407,0.914,-0.486,0.139,0.863,0.743,-0.086,0.664,0.309,-0.344,0.887,-0.218,-0.497,0.84,0.663,0.356,0.659,0.187,0.414,0.891,0.45,-0.807,0.383,-0.034,-0.796,0.604,-0.585,-0.083,0.807,-0.241,-0.28,0.929,0.406,-0.678,0.612,0.679,-0.667,0.307,0.856,-0.516,-0.029,0.126,-0.927,0.352,0.398,-0.916,0.048,0.576,-0.765,-0.288,0.65,-0.669,-0.36,0.666,-0.746,0.014,0.954,0.242,-0.176,0.618,-0.068,-0.783,0.811,0.215,-0.544,0.668,0.26,-0.697,0.954,0.297,0.037,0.351,0.278,-0.894,-0.192,-0.673,-0.714,0.645,-0.764,0.002,0.902,-0.392,-0.179,0.92,0.339,-0.198,0.985,-0.146,-0.088,0.957,0.097,-0.273,0.99,0.132,-0.058,0.921,0.307,-0.24,0.654,-0.441,-0.615,0.828,-0.521,-0.208,0.88,0.03,-0.474,0.626,0.029,-0.779,0.274,0.061,-0.96,-0.119,0.12,-0.986,0.807,-0.425,-0.411,0.553,-0.426,-0.716,0.2,-0.394,-0.897,-0.192,-0.335,-0.923,-0.793,-0.352,-0.498,-0.72,-0.694,-0.026,-0.726,0.042,-0.686,-0.121,-0.589,-0.799,-0.617,-0.266,-0.741,-0.063,-0.227,-0.972,-0.593,-0.39,-0.705,-0.039,-0.353,-0.935,-0.604,0.071,-0.794,-0.046,-0.072,-0.996,-0.638,-0.104,-0.763,-0.08,-0.247,-0.966,0.09,-0.654,-0.751,-0.343,-0.255,-0.904,0.596,-0.292,-0.748,0.207,-0.583,-0.785,0.282,-0.872,-0.399,-0.255,-0.845,-0.47,0.294,-0.832,-0.47,-0.243,-0.804,-0.543,0.727,-0.601,-0.332,0.037,-0.592,-0.805,-0.41,-0.896,-0.168,0.28,-0.915,0.292,-0.132,-0.252,-0.959,0.237,0.134,-0.962,0.445,-0.813,-0.376,0.82,-0.433,-0.374,0.343,-0.686,-0.642,0.164,0.124,-0.979,0.596,-0.421,-0.683,-0.438,-0.89,-0.128,0.311,-0.911,-0.27,-0.214,-0.926,-0.312,0.304,-0.939,-0.164,0.075,-0.996,-0.058,0.439,-0.897,-0.048,-0.135,-0.98,0.148,-0.117,-0.985,0.125,-0.117,-0.87,-0.479,-0.089,-0.912,-0.4,0.264,-0.886,-0.382,-0.411,-0.581,-0.702,-0.735,-0.677,0.03,-0.041,-0.928,0.371,-0.302,-0.727,-0.616,0.273,-0.823,-0.499,-0.339,-0.8,-0.494,0.236,-0.896,-0.376,-0.698,-0.696,-0.171,-0.532,-0.832,0.16,-0.003,-0.826,-0.564,0.157,-0.957,-0.245,-0.204,-0.977,-0.056,0.279,-0.956,0.087,-0.469,-0.827,0.311,-0.827,-0.552,-0.107,0.351,-0.858,-0.374,0.016,-0.585,-0.811,-0.011,-1.0,0.023,0.043,-0.989,-0.141,-0.533,-0.532,-0.659,-0.467,-0.572,-0.674,-0.569,-0.472,-0.673,-0.102,-0.738,-0.667,-0.605,-0.534,-0.591,-0.137,-0.799,-0.586,-0.891,-0.45,-0.067,-0.701,-0.62,0.353,-0.204,-0.844,-0.497,-0.041,-0.99,-0.136,-0.163,-0.947,0.278,0.094,-0.448,0.889,0.802,-0.376,0.463,0.523,-0.843,-0.127,-0.117,-0.504,0.856,0.03,-0.677,0.736,0.012,-0.467,0.884,0.084,-0.653,0.753,-0.121,-0.947,0.297,0.435,-0.895,0.1,0.072,0.182,0.981,0.622,0.194,0.759,-0.192,-0.467,0.863,-0.101,0.366,0.925,0.689,0.189,0.699,0.559,-0.611,0.56,0.035,0.188,0.982,0.628,-0.128,0.768,0.42,-0.425,0.802,0.461,-0.16,0.873,0.39,-0.407,0.826,0.516,-0.145,0.844,0.145,-0.001,0.989,0.71,-0.383,0.591,-0.22,-0.085,0.972,-0.04,-0.289,0.956,-0.218,0.253,0.942,0.461,-0.306,0.833,-0.036,-0.91,0.414,-0.763,-0.363,0.535,-0.388,-0.678,0.625,-0.241,-0.789,0.565,-0.361,-0.26,0.896,-0.478,-0.498,0.724,-0.729,-0.497,0.47,-0.657,-0.526,0.54,-0.948,-0.281,0.146,-0.371,-0.362,0.855,0.084,-0.946,0.312,-0.441,-0.791,-0.425,-0.082,-0.662,0.745,-0.035,-0.978,0.208,0.477,-0.518,0.71,0.525,-0.834,0.173,0.782,0.588,0.207,0.977,0.194,0.086,0.581,0.519,-0.627,0.912,-0.136,-0.387,0.913,0.156,-0.376,0.839,-0.29,-0.46,0.51,-0.585,-0.631,0.442,-0.433,-0.785,0.999,-0.044,-0.026,0.996,-0.089,-0.024,0.879,-0.474,0.054,0.517,-0.731,-0.445,0.97,-0.031,-0.24,0.609,-0.287,-0.739,0.912,-0.304,0.276,0.648,-0.755,0.103,0.887,0.441,-0.138,0.375,0.432,-0.82,0.111,-0.019,-0.994,0.175,-0.776,-0.606,0.856,0.352,-0.378,0.956,-0.144,-0.256,0.28,0.101,-0.955,0.374,-0.397,-0.838,0.604,-0.277,-0.747,0.689,-0.647,-0.326,0.615,0.479,-0.627,0.952,0.283,-0.119,-0.134,-0.04,-0.99,-0.542,-0.727,-0.422,-0.246,-0.965,0.093,0.712,-0.632,0.306,0.97,-0.204,-0.131,0.377,-0.924,0.061,-0.113,-0.824,-0.555,-0.586,-0.79,-0.177,0.335,-0.941,0.052,-0.104,-0.91,0.402,-0.408,-0.879,0.246,0.267,-0.943,0.198,-0.212,0.237,0.948,0.457,0.138,0.879,-0.946,-0.175,0.272,-0.833,-0.538,-0.13,-0.854,-0.31,0.419,-0.743,-0.67,0.013,-0.937,-0.272,0.221,-0.785,-0.501,0.366,-0.924,0.357,-0.139,-0.438,0.083,-0.895,-0.632,-0.383,-0.674,-0.569,0.18,-0.802,-0.759,-0.288,-0.584,0.394,0.444,-0.805,-0.445,-0.057,-0.894,-0.193,-0.883,-0.428,0.632,-0.458,-0.626,0.576,-0.282,-0.767,0.138,-0.603,-0.785,-0.34,-0.746,-0.572,0.498,-0.163,-0.852,0.046,-0.464,-0.885,-0.419,-0.627,-0.656,0.551,-0.359,-0.753,0.082,-0.762,-0.642,0.352,-0.174,-0.92,-0.117,-0.577,-0.808,0.98,0.174,-0.093,0.576,-0.216,-0.788,0.329,-0.904,-0.273,0.751,-0.521,0.406,0.568,-0.747,-0.346,0.524,-0.787,-0.325,0.686,-0.722,-0.089,0.563,-0.701,-0.438,0.387,-0.561,-0.731,0.301,-0.953,0.031,0.179,-0.931,-0.317,0.003,-0.792,-0.611,-0.117,-0.644,-0.756,-0.43,-0.791,-0.436,0.22,-0.83,-0.513,-0.092,-0.977,-0.192,-0.407,-0.681,-0.609,0.03,-0.359,-0.933,0.281,-0.957,0.072,0.73,-0.64,-0.24,0.254,-0.519,-0.816,-0.057,-0.918,-0.393,-0.147,-0.333,-0.932,-0.452,-0.735,-0.506,-0.064,-0.33,-0.942,0.328,-0.507,-0.797,-0.681,-0.648,-0.342,0.191,-0.84,-0.509,-0.028,-0.988,-0.154,0.236,-0.938,0.252,0.16,-0.696,-0.7,-0.159,-0.985,-0.065,-0.986,0.018,-0.163,-0.76,-0.642,0.097,-0.925,-0.291,0.243,-0.742,-0.578,-0.339,-0.793,-0.478,0.377,-0.61,-0.765,-0.205,-0.949,-0.198,0.244,-0.849,-0.333,-0.411,-0.533,-0.739,0.412,-0.439,-0.864,-0.245,-0.865,-0.209,0.455,-0.985,-0.055,-0.161,-0.273,-0.947,0.169,-0.383,-0.805,-0.452,-0.514,-0.756,0.404,0.332,-0.899,0.286,0.376,-0.736,-0.563,-0.462,-0.769,-0.441,-0.664,-0.524,-0.534,-0.478,-0.874,0.085,0.237,-0.97,-0.058,0.059,-0.671,-0.739,0.004,-0.902,-0.432,-0.438,-0.886,0.15,0.103,-0.771,0.628,0.568,-0.821,0.048,-0.781,-0.624,-0.029,-0.66,-0.743,-0.112,-0.142,-0.972,0.188,0.103,-0.985,-0.14,-0.685,-0.684,-0.249,-0.458,-0.696,-0.553,-0.573,-0.818,0.037,-0.201,-0.976,0.088,-0.386,-0.609,-0.692,-0.014,-0.766,-0.642,0.754,-0.614,0.233,0.909,-0.248,0.334,0.862,0.129,0.49,0.626,0.418,0.658,0.644,-0.351,-0.68,0.824,0.074,-0.562,0.77,0.512,-0.381,0.495,0.849,-0.185,-0.58,0.614,0.535,0.291,0.742,0.604,0.685,0.423,0.593,0.741,-0.453,0.495,-0.486,-0.215,0.847,-0.077,-0.546,0.835,-0.469,0.233,0.852,0.048,0.393,0.918,-0.493,0.325,0.807,0.024,0.488,0.872,-0.681,-0.468,0.563,-0.281,-0.851,0.443,-0.547,-0.384,0.744,-0.146,-0.766,0.626,-0.857,-0.466,0.218,-0.413,-0.04,0.91,0.332,-0.568,0.753,-0.095,-0.995,0.023,0.541,-0.099,0.835,0.406,-0.495,0.768,0.204,-0.743,0.637,0.814,-0.029,0.58,0.613,-0.296,0.733,0.618,-0.719,0.318,0.715,-0.225,0.662,0.719,-0.649,0.248,0.279,-0.352,0.894,0.662,-0.45,0.599,0.321,0.006,0.947,0.441,-0.595,0.672,0.012,-0.647,0.762,0.636,-0.188,0.749,-0.122,-0.336,0.934,-0.47,-0.72,0.51,0.864,-0.45,0.227,0.516,-0.834,-0.197,0.392,-0.043,0.919,-0.18,-0.206,0.962,0.463,-0.316,0.828,-0.109,-0.479,0.871,-0.643,-0.7,0.311,-0.413,-0.902,-0.129,-0.436,-0.777,0.455,-0.205,-0.979,0.015,-0.964,-0.194,0.182,-0.856,-0.514,0.054,-0.704,-0.512,0.492,-0.965,-0.1,-0.243,-0.945,-0.06,-0.322,-0.885,0.086,0.457,-0.423,-0.48,0.769,-0.65,-0.76,0.019,-0.648,-0.41,0.642,-0.505,-0.785,0.359,-0.998,-0.047,0.053,-0.831,-0.483,-0.276,0.086,-0.98,0.18,-0.072,-0.936,-0.346,0.818,-0.576,-0.005,0.66,-0.531,-0.531,0.576,-0.807,-0.131,0.953,0.001,0.303,0.693,0.512,-0.507,0.299,-0.286,-0.91,0.953,0.168,-0.252,0.637,0.538,-0.552,0.903,0.43,-0.01,0.824,0.395,-0.405,0.384,0.467,-0.796,0.896,-0.161,-0.414,0.623,0.262,-0.737,0.922,0.357,-0.149,0.674,-0.322,-0.665,0.973,-0.217,-0.077,0.981,-0.18,-0.066,0.86,0.304,-0.409,0.981,-0.16,0.109,0.874,-0.215,-0.435,0.916,0.397,0.06,0.811,0.33,-0.484,0.564,-0.074,0.822,0.981,0.053,0.187,0.942,-0.13,-0.31,0.449,-0.614,-0.649,0.437,-0.746,0.502,0.401,-0.915,0.041,0.68,0.054,0.731,0.919,-0.009,0.394,1.0,-0.028,-0.015,0.907,0.0,-0.421,0.557,-0.399,0.728,0.796,-0.462,0.391,0.877,-0.481,-0.018,0.784,-0.453,-0.425,0.883,-0.244,-0.4,0.38,-0.241,-0.893,0.095,-0.806,-0.585,0.591,-0.802,-0.086,0.844,-0.44,0.308,0.414,-0.8,0.434,0.745,-0.558,-0.366,0.315,-0.918,-0.24,0.58,-0.372,-0.725,0.234,-0.431,-0.871,0.361,-0.911,-0.198,0.575,-0.301,-0.761,0.396,-0.691,-0.604,0.733,-0.537,0.417,0.279,-0.959,-0.041,0.748,-0.662,0.043,0.462,-0.884,0.071,0.78,-0.609,0.145,0.842,-0.446,-0.304,-0.01,-0.998,-0.062,0.062,-0.809,-0.585,0.27,-0.023,-0.963,0.318,-0.713,-0.625,0.475,-0.31,-0.823,0.493,-0.351,-0.796,0.564,0.384,-0.731,0.109,-0.177,-0.978,0.476,0.218,-0.852,0.629,-0.318,-0.71,-0.672,-0.053,-0.739,-0.541,-0.595,-0.595,-0.478,-0.691,-0.541,0.001,-0.958,-0.286,-0.63,-0.286,-0.722,-0.683,-0.378,-0.625,-0.428,0.051,-0.902,-0.868,-0.462,-0.183,-0.645,-0.717,0.263,0.297,-0.781,0.549,0.376,-0.484,-0.79,0.582,-0.72,-0.377,0.598,-0.403,-0.693,0.704,-0.692,-0.159,-0.149,-0.696,-0.702,-0.043,-0.985,-0.169,0.548,-0.619,-0.563,0.381,-0.921,-0.081,-0.01,-0.046,-0.999,-0.807,0.101,-0.582,-0.974,-0.201,-0.101,-0.454,-0.847,0.276,-0.66,0.436,-0.612,-0.777,-0.019,-0.63,-0.339,0.7,-0.629,0.316,0.62,-0.718,-0.532,-0.814,-0.232,0.116,-0.944,-0.308,-0.767,-0.279,-0.578,-0.351,-0.15,-0.924,-0.515,-0.732,-0.446,-0.099,-0.603,-0.792,-0.573,-0.568,-0.591,-0.123,-0.25,-0.96,-0.196,-0.891,-0.41,0.254,-0.573,-0.779,-0.128,-0.309,-0.942,0.032,-0.75,-0.661,-0.84,-0.242,-0.485,-0.709,-0.681,-0.185,-0.904,0.292,-0.314,-0.938,-0.173,-0.3,-0.757,0.498,-0.422,-0.335,0.539,-0.773,-0.823,-0.057,-0.565,-0.4,-0.016,-0.916,-0.822,0.297,-0.486,-0.842,-0.483,-0.242,-0.193,-0.697,-0.69,-0.164,0.098,-0.982,-0.422,0.32,-0.849,-0.871,0.1,-0.481,-0.419,0.614,-0.669,-0.868,0.394,-0.302,-0.033,0.159,-0.987,-0.248,-0.324,-0.913,-0.392,-0.715,-0.579,-0.354,0.352,-0.866,-0.632,-0.094,-0.769,-0.73,-0.512,-0.453,0.07,0.459,-0.886,0.521,0.179,-0.835,-0.674,0.19,-0.714,-0.922,-0.084,-0.379,-0.806,-0.511,0.298,-0.39,-0.831,0.397,0.507,-0.638,-0.579,0.219,-0.957,-0.19,-0.878,-0.206,-0.431,-0.47,-0.296,-0.832,-0.477,-0.87,0.129,-0.068,-0.96,-0.272,0.159,-0.74,-0.653,0.174,-0.972,-0.159,-0.581,-0.574,-0.577,-0.596,-0.799,-0.079,-0.202,-0.662,-0.722,0.05,-0.946,-0.322,-0.569,-0.661,-0.49,-0.316,-0.944,-0.089,-0.278,-0.603,-0.748,0.054,-0.91,-0.41,0.046,-0.374,-0.926,0.426,-0.726,-0.539,0.092,-0.917,-0.389,0.224,-0.811,-0.541,-0.716,-0.516,-0.47,-0.838,-0.537,-0.101,-0.101,-0.946,-0.307,-0.232,-0.968,0.091,-0.379,-0.863,-0.334,-0.966,-0.189,-0.179,-0.797,-0.604,0.004,-0.29,-0.558,0.777,0.547,-0.725,0.419,-0.023,-0.977,-0.21,-0.652,-0.6,-0.463,-0.07,-0.917,-0.394,-0.672,-0.4,0.623,-0.09,-0.716,0.692,-0.892,-0.373,0.254,-0.602,-0.744,0.289,-0.789,-0.34,-0.512,-0.476,-0.74,-0.475,-0.137,-0.613,0.778,-0.045,-0.128,0.991,-0.032,0.405,0.914,0.594,-0.616,0.517,0.68,-0.166,0.714,0.692,0.328,0.643,-0.173,0.561,0.81,0.409,0.244,0.879,0.036,0.873,0.486,0.618,0.557,0.555,-0.567,0.487,0.664,0.038,0.697,0.716,0.124,0.013,0.992,0.608,0.004,0.794,-0.019,0.86,0.509,0.471,0.818,0.33,0.141,0.617,0.774,0.72,0.277,0.636,0.199,0.793,0.575,0.776,0.448,0.443,-0.216,0.33,0.919,-0.191,0.346,0.919,-0.853,0.335,0.399,-0.949,-0.228,0.218,-0.04,0.577,0.816,0.641,-0.077,0.764,0.518,-0.632,0.576,-0.322,-0.895,0.309,-0.378,-0.672,0.636,-0.401,-0.649,0.646,-0.314,-0.927,-0.204,-0.181,-0.961,0.207,-0.337,-0.883,0.326,-0.114,-0.994,0.005,-0.226,-0.968,-0.107,-0.573,-0.627,0.528,0.125,-0.459,0.88,0.422,-0.858,0.293,-0.738,-0.504,0.449,-0.39,-0.831,0.398,-0.484,-0.786,0.384,-0.666,-0.702,-0.252,0.087,-0.979,0.185,-0.113,-0.888,-0.445,0.013,-0.966,0.257,0.763,-0.612,-0.206,0.299,-0.83,0.472,-0.222,-0.928,0.298,0.395,-0.892,0.219,-0.126,-0.991,0.046,-0.099,-0.972,-0.213,0.076,-0.946,0.315,-0.655,-0.674,0.341,-0.53,-0.565,-0.632,-0.755,-0.654,0.04,-0.119,-0.572,0.811,-0.77,-0.107,0.629,-0.41,-0.835,0.368,-0.307,-0.32,0.896,-0.536,0.155,0.83,-0.627,-0.519,0.581,-0.857,-0.044,0.514,-0.895,0.154,0.419,-0.927,-0.321,0.193,-0.334,-0.156,0.93,-0.389,-0.618,0.683,-0.557,-0.178,0.811,-0.382,-0.305,0.872,-0.714,0.268,0.647,0.043,-0.346,0.937,0.399,-0.689,0.605,0.414,-0.816,-0.405,-0.913,-0.403,-0.067,-0.582,-0.721,-0.376,-0.915,-0.342,0.216,-0.9,-0.271,0.341,-0.821,0.259,0.508,-0.478,0.326,0.816,-0.667,-0.521,0.532,-0.35,-0.46,0.816,0.399,0.177,0.9,0.743,-0.059,0.666,0.924,-0.266,0.274,0.9,-0.395,-0.186,0.675,-0.417,-0.608,0.179,-0.234,0.956,0.498,-0.453,0.739,0.666,-0.645,0.376,0.643,-0.764,-0.051,0.435,-0.784,-0.442,0.097,0.211,0.973,0.372,0.454,0.81,0.559,0.65,0.514,0.627,0.767,0.136,0.564,0.784,-0.26,0.382,-0.153,0.911,0.657,0.09,0.749,0.844,0.287,0.453,0.912,0.404,0.075,0.849,0.421,-0.321,0.912,-0.107,-0.395,0.322,0.188,-0.928,0.711,0.605,-0.357,0.854,-0.04,-0.519,0.8,0.467,-0.378,0.637,0.434,-0.637,0.772,0.238,-0.589,0.844,0.49,-0.216,0.851,0.428,-0.304,0.972,0.185,0.148,0.793,-0.128,-0.596,0.912,-0.383,-0.15,0.917,0.293,0.271,0.885,0.45,0.122,0.401,0.372,0.837,0.439,0.345,0.829,0.277,0.493,0.825,0.635,-0.091,0.767,-0.312,-0.354,0.882,0.397,0.072,0.915,0.785,0.162,0.598,0.983,-0.053,-0.176,0.153,-0.901,0.406,0.604,-0.796,0.038,0.416,-0.48,-0.772,0.997,-0.026,0.076,0.728,-0.564,0.391,0.995,-0.089,-0.033,0.726,-0.627,0.282,0.968,0.229,0.105,0.852,-0.098,0.514,0.493,-0.396,0.775,0.702,-0.348,-0.622,0.542,-0.771,-0.335,0.227,-0.973,0.048,-0.366,-0.875,0.316,0.122,-0.99,0.074,-0.019,-0.887,0.461,0.25,-0.961,0.117,0.482,-0.843,-0.241,0.631,-0.555,-0.543,0.668,-0.155,-0.728,0.586,0.279,-0.761,0.4,0.661,-0.635,-0.379,-0.911,0.164,-0.13,-0.979,-0.155,0.084,-0.869,-0.487,0.223,-0.603,-0.766,0.257,-0.232,-0.938,0.181,0.17,-0.969,0.009,0.524,-0.852,0.664,0.717,-0.213,0.218,-0.14,-0.966,0.344,0.144,-0.928,0.826,-0.059,-0.561,-0.449,-0.812,-0.373,0.046,-0.999,-0.016,-0.705,-0.561,0.433,-0.218,-0.659,0.72,0.264,-0.393,0.881,-0.682,-0.506,-0.528,-0.164,-0.687,-0.708,-0.616,-0.787,-0.039,-0.097,-0.973,-0.21,0.815,-0.523,-0.249,0.944,-0.229,0.239,0.434,-0.898,0.077,0.562,-0.604,0.565,0.947,-0.103,-0.304,0.495,-0.864,-0.092,0.658,-0.561,-0.502,0.463,-0.879,-0.118,0.187,-0.612,-0.768,0.01,-0.927,-0.374,0.237,-0.889,-0.391,-0.224,-0.726,-0.65,0.436,-0.788,-0.434,-0.045,-0.956,-0.291,0.242,-0.554,-0.797,-0.235,-0.726,-0.646,0.527,-0.69,-0.497,0.254,-0.959,-0.129,-0.091,-0.957,0.275,-0.037,-0.481,-0.876,-0.403,-0.715,-0.571,-0.655,-0.748,-0.105,0.001,-0.423,-0.906,0.427,-0.814,-0.395,0.103,-0.57,-0.815,-0.276,-0.551,-0.788,0.295,-0.364,-0.884,0.211,-0.439,-0.873,0.454,-0.431,-0.78,-0.363,-0.738,-0.569,0.431,-0.349,-0.832,0.338,-0.484,-0.808,0.305,0.181,-0.935,0.744,0.371,-0.556,0.415,-0.702,-0.578,0.851,-0.481,-0.211,0.545,-0.525,-0.654,0.473,-0.88,-0.047,0.831,-0.517,-0.204,0.527,-0.829,-0.188,0.116,-0.977,-0.181,-0.317,-0.93,-0.183,0.831,-0.494,0.255,0.527,-0.806,0.271,0.116,-0.953,0.278,-0.317,-0.907,0.276,-0.544,-0.821,0.172,0.005,-0.974,0.227,-0.504,-0.394,0.768,0.047,-0.53,0.846,-0.971,0.062,-0.229,-0.878,-0.359,-0.318,-0.855,-0.096,-0.51,-0.922,-0.383,-0.06,-0.909,0.34,-0.24,-0.976,0.054,0.209,-0.406,0.249,-0.879,0.168,-0.058,-0.984,-0.686,-0.359,-0.633,-0.112,-0.666,-0.738,0.468,0.222,-0.856,-0.032,0.034,-0.999,0.46,0.241,-0.854,-0.039,0.053,-0.998,0.791,-0.203,-0.577,0.599,-0.137,-0.789,0.941,0.287,-0.176,0.793,-0.463,-0.396,0.897,-0.085,-0.434,0.993,0.073,0.092,0.665,-0.724,-0.181,0.77,-0.542,0.335,0.027,-0.947,0.321,-0.199,-0.875,0.44,-0.72,-0.694,0.016,-0.633,-0.772,0.047,-0.95,-0.193,0.245,-0.682,-0.677,-0.277,-0.814,-0.336,-0.473,-0.847,-0.529,0.061,-0.529,-0.847,-0.053,-0.742,-0.67,-0.029,-0.571,-0.817,0.082,-0.886,-0.377,0.269,-0.414,-0.659,-0.628,-0.473,-0.853,-0.222,-0.651,-0.489,-0.581,-0.136,-0.477,-0.868,-0.601,-0.626,-0.497,-0.087,-0.61,-0.788,-0.674,-0.188,-0.714,-0.288,-0.676,-0.679,0.329,0.033,-0.944,0.349,-0.261,-0.9,0.201,-0.071,-0.977,-0.056,-0.585,-0.809,-0.155,0.1,-0.983,-0.399,-0.421,-0.814,0.676,0.239,-0.697,0.421,-0.14,-0.896,0.427,0.115,-0.897,-0.343,-0.394,-0.853,-0.185,-0.971,-0.149,0.555,-0.66,-0.506,-0.209,-0.934,-0.289,-0.018,-0.99,0.142,-0.689,-0.702,0.178,-0.042,-0.818,0.574,-0.376,-0.922,0.094,-0.326,-0.93,0.172,-0.673,-0.738,0.055,-0.847,-0.32,-0.425,-0.227,-0.936,-0.269,-0.387,-0.524,-0.758,-0.529,-0.44,-0.726,-0.947,0.268,-0.18,-0.702,-0.09,0.706,-0.453,-0.877,0.159,-0.997,0.069,0.044,-0.874,-0.387,-0.293,-0.986,-0.019,0.166,-0.864,-0.472,-0.175,-0.985,0.137,0.103,-0.981,0.036,0.191,-0.983,0.183,-0.002,-0.597,-0.272,0.755,-0.015,-0.931,0.363,-0.667,-0.68,-0.305,-0.434,-0.679,0.592,0.299,-0.819,0.49,0.222,-0.943,-0.249,-0.504,-0.855,-0.125,-0.71,-0.661,0.244,-0.222,-0.905,0.364,-0.45,0.264,0.853,0.049,0.056,0.997,-0.607,0.264,0.749,-0.736,-0.181,0.652,-0.542,-0.172,0.822,-0.666,-0.472,0.577,-0.651,-0.716,0.251,-0.8,0.128,0.586,-0.924,-0.173,0.341,-0.909,-0.417,0.014,-0.138,0.529,0.837,0.3,0.589,0.751,0.651,0.597,0.469,-0.009,-0.215,0.977,0.428,-0.155,0.89,0.78,-0.147,0.609,-0.582,-0.149,0.799,-0.031,-0.191,0.981,-0.574,0.057,0.817,-0.022,0.022,1.0,-0.838,-0.528,0.137,-0.393,-0.578,0.715,-0.7,-0.483,0.526,-0.567,-0.823,0.047,0.373,-0.448,0.812,0.516,-0.788,0.336,-0.315,-0.384,0.868,-0.606,-0.678,0.415,0.647,-0.64,0.415,0.355,-0.934,-0.038,0.367,-0.681,0.634,0.747,-0.651,-0.136,-0.318,-0.899,0.3,-0.12,-0.721,0.683,0.021,-0.354,0.935,0.37,-0.928,-0.044,0.569,-0.749,0.339,0.71,-0.383,0.591,-0.12,-0.407,0.905,-0.272,-0.796,0.541,0.237,-0.484,0.843,0.092,-0.874,0.477,-0.38,0.132,0.915,-0.886,0.146,0.44,0.085,-0.917,0.39,-0.42,-0.903,-0.086,0.026,-0.791,0.611,-0.507,-0.801,0.318,0.092,-0.865,0.494,-0.44,-0.876,0.199,-0.669,-0.743,-0.027,-0.313,-0.949,0.023,0.09,-0.99,0.109,-0.566,-0.675,-0.473,-0.211,-0.881,-0.423,0.192,-0.922,-0.336,0.874,-0.421,0.242,0.821,-0.26,-0.509,0.827,-0.366,0.426,0.985,0.17,-0.031,0.762,-0.184,-0.621,0.619,-0.767,-0.172,0.751,-0.008,-0.661,0.494,-0.257,-0.831,0.132,-0.398,-0.908,0.865,-0.494,-0.085,0.588,-0.763,-0.269,0.197,-0.915,-0.352,0.844,-0.457,-0.28,0.869,-0.338,-0.363,0.748,-0.46,0.479,0.44,-0.852,-0.283,0.447,-0.861,0.242,0.541,-0.796,-0.272,0.827,-0.413,0.383,0.936,-0.33,-0.126,0.081,-0.813,0.576,-0.358,-0.923,0.14,0.351,-0.878,0.324,-0.083,-0.99,-0.117,-0.047,-0.543,0.839,-0.034,-0.999,0.033,-0.741,-0.67,0.048,-0.341,-0.581,0.739,0.099,-0.538,0.837,0.762,-0.521,0.385,-0.08,-0.933,-0.352,0.394,-0.886,-0.245,-0.018,-0.128,0.992,0.337,-0.65,0.681,-0.237,-0.902,0.362,-0.613,-0.387,0.689,-0.242,-0.298,0.923,-0.045,-0.727,0.685,0.166,-0.953,0.254,0.348,0.057,0.936,0.642,-0.315,0.699,0.756,-0.598,0.267,-0.647,0.079,0.759,-0.366,-0.358,0.859,-0.336,-0.36,0.87,-0.774,0.221,0.594,-0.713,0.007,0.701,0.131,-0.292,0.947,0.021,-0.113,0.993,0.157,-0.168,0.973,0.11,0.098,0.989,-0.095,-0.261,0.961,-0.22,-0.605,0.765,-0.504,0.471,0.724,-0.71,0.112,0.695,-0.834,-0.232,0.5,-0.284,0.337,0.898,-0.225,-0.196,0.954,-0.024,0.369,0.929,0.035,-0.165,0.986,-0.16,0.246,0.956,0.353,0.759,0.547,0.67,0.696,0.258,0.761,0.628,-0.16,0.764,-0.049,-0.644,0.323,-0.451,0.832,0.692,-0.525,0.496,0.798,-0.603,0.01,0.248,-0.081,0.965,0.63,0.228,0.743,0.855,0.427,0.294,0.447,-0.369,0.815,0.775,-0.102,0.624,0.969,0.068,0.238,0.996,-0.059,-0.065,0.871,-0.209,-0.444,0.484,-0.026,-0.875,0.731,-0.565,-0.383,0.596,-0.047,-0.802,0.633,-0.147,-0.76,0.791,-0.358,-0.497,0.219,-0.028,-0.975,0.551,-0.395,-0.735,0.455,-0.048,-0.889,0.662,-0.367,-0.653,0.166,-0.8,-0.577,0.651,-0.356,-0.67,0.154,-0.789,-0.594,0.382,-0.817,-0.432,0.869,-0.295,-0.397,0.752,-0.396,-0.527,0.948,0.148,-0.282,0.958,0.053,-0.282,0.783,0.481,-0.395,0.955,0.226,-0.193,0.92,-0.369,0.13,0.953,-0.302,-0.041,0.027,-0.778,0.627,-0.143,-0.963,-0.228,0.175,-0.974,0.143,0.629,-0.648,-0.43,0.607,-0.75,0.264,0.128,-0.871,0.475,0.365,-0.872,-0.326,-0.107,-0.989,-0.098,-0.158,-0.982,-0.108,-0.007,-0.7,0.714,0.76,-0.579,0.295,0.526,-0.651,-0.547,0.336,-0.906,0.258,0.991,-0.12,-0.051,0.674,-0.434,0.597,0.354,-0.858,0.373,0.804,-0.432,0.409,0.487,-0.854,0.18,0.873,-0.332,0.357,0.709,-0.701,0.081,0.401,-0.88,-0.255,0.588,-0.444,0.677,0.423,-0.813,0.401,0.116,-0.991,0.065,0.144,-0.985,0.092,-0.175,-0.976,0.132,-0.039,-0.961,0.274,0.276,-0.953,0.127,0.31,-0.757,0.576,0.187,-0.975,0.117,0.972,-0.188,0.138,0.856,-0.401,-0.326,0.898,0.354,0.262,0.799,0.598,-0.06,0.545,0.764,-0.345,0.182,0.822,-0.54,1.0,0.012,-0.028,0.901,0.256,-0.351,0.647,0.422,-0.635,0.283,0.479,-0.831,0.852,-0.459,-0.254,0.911,0.077,-0.406,0.918,-0.186,-0.351,0.814,0.577,-0.065,0.448,0.889,-0.092,-0.296,0.848,-0.439,0.345,-0.061,-0.937,-0.035,0.263,-0.964,0.064,0.943,-0.326,0.495,0.868,0.024,0.345,0.502,-0.794,0.787,0.409,-0.462,0.538,0.82,-0.194,0.267,0.964,0.016,0.785,0.617,-0.055,0.599,0.791,-0.126,0.264,0.954,0.144,0.632,0.479,-0.61,0.897,-0.371,-0.241,0.876,0.311,0.369,0.651,-0.656,-0.382,0.533,-0.753,0.386,0.72,-0.602,-0.345,0.402,-0.807,-0.432,0.583,-0.708,0.399,0.265,-0.912,0.312,0.455,-0.89,-0.02,0.522,-0.74,-0.423,0.503,-0.444,-0.742,0.4,-0.057,-0.915,0.234,0.346,-0.909,0.037,0.688,-0.725,-0.155,0.904,-0.399,0.019,-0.989,-0.146,0.081,-0.85,-0.52,0.063,-0.575,-0.816,-0.032,-0.217,-0.976,-0.186,0.156,-0.97,-0.369,0.473,-0.8,-0.547,0.674,-0.497,0.177,0.947,-0.268,0.032,0.881,-0.473,-0.007,0.947,-0.322,0.541,0.667,-0.512,-0.541,0.203,-0.816,0.016,-0.065,-0.998,-0.401,0.278,-0.873,-0.444,-0.805,-0.394,-0.577,-0.699,-0.422,-0.004,-0.686,-0.728,-0.268,-0.954,0.131,0.299,-0.937,-0.183,0.56,0.171,-0.811,0.397,-0.574,-0.717,0.648,-0.195,-0.736,0.129,-0.402,-0.907,0.135,0.824,-0.55,-0.366,0.58,-0.728,0.864,0.461,-0.204,0.976,-0.047,-0.21,0.221,0.773,-0.595,-0.2,0.182,-0.963,-0.055,-0.318,-0.946,0.561,-0.606,-0.563,0.242,0.727,-0.642,0.702,0.606,-0.375,0.238,-0.122,-0.964,0.699,-0.211,-0.684,0.076,0.468,-0.88,0.424,0.167,-0.89,0.176,0.286,-0.942,0.514,-0.455,-0.727,0.986,-0.126,-0.112,0.709,0.576,-0.407,0.205,0.451,-0.869,0.064,0.104,-0.993,-0.12,-0.244,-0.962,-0.318,-0.534,-0.783,-0.497,-0.72,-0.484,-0.627,-0.77,-0.115,0.608,0.247,-0.754,0.467,-0.101,-0.878,0.283,-0.448,-0.848,0.084,-0.739,-0.669,-0.094,-0.924,-0.37,-0.225,-0.974,-0.001,0.844,0.326,-0.425,0.224,0.577,-0.786,-0.091,0.369,-0.925,-0.224,-0.378,-0.898,0.757,-0.426,-0.496,0.442,-0.633,-0.635,-0.732,-0.078,-0.677,-0.116,-0.722,-0.682,-0.51,-0.42,-0.751,-0.763,-0.638,0.103,0.025,-0.855,0.519,0.261,-0.874,-0.409,0.347,-0.347,-0.871,0.338,-0.419,-0.843,0.095,0.29,-0.952,0.205,-0.844,-0.496,0.468,-0.575,0.671,0.963,0.254,-0.086,0.59,-0.754,0.29,0.961,-0.213,0.176,0.499,-0.621,0.605,0.873,-0.084,0.48,0.379,-0.899,0.222,0.747,-0.66,-0.08,0.493,-0.344,0.799,0.861,-0.105,0.497,0.314,-0.74,0.594,0.56,-0.49,0.668,0.238,-0.796,0.557,0.603,-0.668,0.436,-0.197,-0.275,0.941,-0.111,-0.716,0.689,-0.519,-0.75,0.409,-0.059,-0.988,0.144,-0.455,-0.733,0.506,0.006,-0.97,0.242,0.386,-0.816,-0.43,0.54,-0.78,-0.316,0.762,-0.597,-0.253,0.545,-0.795,-0.264,0.905,-0.23,-0.357,0.889,-0.396,-0.23,0.876,-0.343,0.339,0.916,-0.381,0.129,0.873,0.466,-0.142,0.91,0.34,0.239,0.89,-0.224,0.398,0.803,0.532,0.266,0.978,0.173,0.114,0.545,0.517,0.66,0.728,-0.385,0.567,0.417,-0.551,0.722,0.05,-0.663,0.747,-0.317,-0.701,0.638,-0.626,-0.662,0.413,-0.828,-0.55,0.106,0.621,0.015,0.783,0.311,-0.151,0.938,-0.056,-0.263,0.963,-0.423,-0.301,0.854,-0.732,-0.262,0.629,-0.935,-0.15,0.322,-0.984,-0.145,0.103,-0.796,-0.469,0.382,-0.871,-0.357,0.337,-0.54,0.189,0.82,0.191,-0.099,0.977,-0.212,-0.731,0.648,-0.849,-0.495,-0.187,-0.942,0.084,0.325,-0.661,-0.695,-0.283,-0.804,-0.586,0.107,-0.789,-0.35,-0.505,-0.778,-0.628,-0.027,-0.717,-0.46,0.524,-0.296,-0.577,0.762,-0.469,-0.88,-0.082,-0.079,-0.987,0.138,-0.825,-0.558,0.09,-0.486,-0.847,0.215,-0.423,-0.821,0.383,-0.155,-0.981,-0.12,-0.25,-0.841,0.481,0.015,-1.0,-0.024,0.202,-0.972,0.118,-0.416,-0.674,-0.61,-0.993,-0.117,-0.012,-0.451,-0.52,0.725,-0.344,-0.67,-0.658,-0.4,-0.706,-0.584,-0.362,0.091,-0.928,0.16,0.344,-0.925,0.055,-0.86,-0.508,0.592,-0.639,-0.491,0.656,-0.077,-0.751,0.466,-0.61,-0.641,-0.519,0.284,-0.806,-0.67,-0.261,-0.695,0.187,0.318,-0.93,0.495,-0.225,-0.839,-0.417,-0.028,-0.909,-0.1,-0.566,-0.818,-0.175,0.307,-0.936,0.269,0.004,-0.963,-0.316,0.097,-0.944,0.133,-0.199,-0.971,-0.085,-0.374,-0.924,0.361,-0.504,-0.784,0.09,0.033,-0.995,0.479,-0.081,-0.874,-0.329,-0.16,-0.931,-0.365,-0.523,-0.771,-0.378,-0.793,-0.479,-0.365,-0.925,-0.104,0.128,-0.221,-0.967,0.092,-0.583,-0.807,0.08,-0.853,-0.515,0.092,-0.986,-0.14,0.356,0.11,-0.928,-0.37,0.417,-0.83,-0.597,-0.338,-0.728,0.139,-0.636,-0.759,-0.913,-0.186,-0.364,-0.892,-0.437,0.114,-0.168,-0.703,-0.691,-0.146,-0.974,-0.175,-0.677,-0.734,0.047,0.06,-0.938,0.341,-0.174,-0.979,-0.103,-0.91,-0.375,-0.177,-0.808,0.264,0.527,-0.425,-0.572,0.701,-0.942,-0.109,0.317,-0.941,-0.106,0.323,-0.613,-0.611,0.501,-0.228,-0.901,0.37,-0.749,-0.657,0.084,-0.413,-0.91,-0.031,-0.419,-0.907,0.05,-0.324,-0.863,-0.387,-0.524,-0.835,-0.167,-0.206,-0.716,0.667,-0.826,-0.547,0.134,-0.479,-0.87,0.117,-0.337,-0.939,-0.06,-0.944,-0.264,-0.197,-0.73,-0.084,0.678,-0.017,-0.658,0.753,-0.86,-0.235,0.452,-0.432,-0.525,0.734,-0.582,0.416,0.699,-0.153,0.126,0.98,-0.891,0.193,0.411,-0.768,-0.168,0.617,-0.948,-0.173,-0.266,-0.805,-0.592,-0.026,-0.48,-0.74,0.47,-0.581,-0.812,0.053,-0.882,0.073,0.465,-1.0,-0.01,-0.02,-0.558,-0.381,0.737,-0.14,-0.386,0.912,-0.395,-0.346,0.851,-0.149,-0.432,0.889,-0.195,-0.359,0.913,-0.348,-0.752,0.559,0.303,-0.483,0.821,0.131,-0.872,0.471,0.057,-0.473,0.879,-0.291,-0.816,0.5,0.294,-0.583,0.758,-0.062,-0.922,0.382,-0.494,-0.859,0.139,-0.948,-0.317,-0.033,-0.778,-0.058,0.626,-0.289,-0.57,0.769,-0.785,-0.464,0.411,-0.689,-0.272,0.672,-0.863,-0.488,0.131,-0.517,-0.524,0.677,-0.518,-0.17,0.838,-0.22,-0.486,0.846,0.154,-0.671,0.726,-0.752,-0.388,0.532,-0.442,-0.715,0.541,-0.054,-0.908,0.416,-0.057,-0.768,0.638,0.492,-0.86,0.139,-0.121,-0.953,-0.279,-0.651,-0.734,0.193,-0.17,-0.886,0.43,-0.382,-0.256,0.888,0.341,0.1,0.935,0.588,-0.588,0.555,0.109,-0.338,0.935,0.663,0.074,0.745,-0.299,0.038,0.953,-0.216,-0.037,0.976,-0.245,0.195,0.95,-0.68,-0.182,0.711,0.551,-0.51,0.661,0.13,-0.9,0.417,-0.422,-0.632,0.65,0.267,-0.635,0.725,-0.444,-0.079,0.893,0.245,-0.086,0.966,-0.83,-0.36,0.427,-0.595,-0.785,0.17,-0.585,-0.396,0.708,-0.353,-0.822,0.448,-0.876,-0.31,0.369,-0.749,-0.64,-0.17,0.177,-0.589,0.789,0.304,-0.919,0.25,-0.532,0.077,0.843,-0.885,0.145,0.441,-0.551,-0.185,0.813,-0.904,-0.112,0.412,-0.631,0.075,0.772,-0.63,-0.746,0.216,-0.495,-0.6,0.628,-0.819,-0.207,0.535,-0.553,-0.818,-0.154,-0.877,-0.421,-0.232,-0.946,0.149,-0.288,-0.644,0.757,0.115,-0.608,0.279,0.743,-0.889,-0.316,0.331,-0.773,0.128,0.622,-0.022,-0.142,0.99,0.159,0.087,0.984,0.029,-0.402,0.915,-0.153,-0.773,0.616,-0.339,-0.926,0.166,-0.477,-0.821,-0.313,-0.216,0.152,0.964,-0.328,-0.268,0.906,-0.485,-0.587,0.648,-0.644,-0.719,0.262,-0.763,-0.629,-0.151,-0.278,-0.137,0.951,0.443,-0.156,0.883,0.039,0.257,0.966,-0.17,-0.171,0.97,-0.205,-0.603,0.771,-0.054,-0.901,0.431,0.235,-0.97,0.058,-0.27,0.45,0.852,-0.513,-0.049,0.857,-0.553,-0.551,0.625,-0.377,-0.897,0.229,-0.042,-0.978,-0.204,0.273,0.302,0.913,0.35,-0.289,0.891,0.831,0.376,0.409,0.888,-0.218,0.405,0.439,0.335,0.834,0.965,-0.264,0.007,0.266,-0.191,0.945,-0.081,-0.573,0.816,-0.405,-0.793,0.456,0.797,-0.403,0.45,0.523,-0.814,0.253,0.101,-0.995,-0.016,0.457,-0.118,0.881,-0.086,-0.319,0.944,0.944,-0.329,0.031,0.369,-0.526,-0.766,-0.173,-0.719,-0.673,-0.508,-0.829,0.233,-0.57,-0.784,0.244,-0.196,-0.514,0.835,0.233,-0.418,0.878,0.791,-0.48,0.381,0.025,-0.99,-0.142,0.423,-0.9,-0.102,0.84,-0.4,0.367,0.277,-0.906,0.319,0.466,-0.807,0.362,0.799,0.095,0.594,0.306,-0.461,0.833,0.218,-0.872,0.439,0.625,-0.382,0.68,0.539,-0.793,0.285,0.455,-0.543,0.706,0.926,-0.015,-0.376,0.958,0.04,0.284,0.998,-0.057,-0.005,0.963,-0.201,0.179,0.914,-0.365,-0.178,0.92,0.375,0.116,0.716,0.303,0.629,0.97,0.215,0.113,0.767,0.141,0.626,0.466,0.754,-0.463,-0.148,0.947,-0.284,0.957,-0.171,0.233,0.066,-0.993,-0.101,-0.555,-0.828,0.083,-0.605,0.292,0.741,-0.47,0.687,0.554,-0.086,0.426,0.901,-0.208,0.887,0.413,0.176,0.626,0.76,-0.735,0.601,0.313,0.064,0.958,0.28,0.552,0.391,0.737,-0.255,0.293,0.921,0.809,0.214,0.547,0.699,-0.266,0.664,0.382,-0.66,0.647,0.534,0.3,0.79,0.439,-0.113,0.892,0.166,-0.452,0.877,0.753,0.503,0.424,0.947,0.295,0.13,0.604,-0.143,0.784,0.798,-0.352,0.49,-0.168,0.231,0.958,-0.165,0.28,0.946,-0.661,-0.315,0.681,-0.425,0.351,0.834,0.193,0.007,0.981,-0.023,-0.647,0.762,-0.52,-0.008,0.854,0.379,0.221,0.898,0.783,0.116,0.611,0.91,-0.38,-0.164,-0.259,-0.847,0.465,0.211,-0.969,0.131,0.854,-0.15,0.499,0.725,-0.602,-0.335,0.387,-0.387,-0.837,0.187,-0.973,-0.136,0.781,-0.621,-0.072,0.284,-0.591,0.755,-0.003,-0.964,-0.264,0.017,-0.868,0.495,0.337,-0.938,0.085,-0.121,-0.979,0.166,0.605,-0.695,0.388,0.666,-0.653,0.361,0.743,-0.427,0.515,0.854,-0.518,0.051,0.118,-0.883,0.455,0.228,-0.974,-0.009,0.239,-0.921,0.308,0.543,-0.714,0.443,-0.489,-0.677,0.55,0.412,-0.682,0.604,0.746,-0.601,0.287,0.71,-0.386,-0.59,-0.505,-0.784,-0.36,-0.145,-0.697,-0.702,0.679,-0.729,0.088,0.183,-0.98,0.084,0.632,-0.614,-0.473,0.134,-0.862,-0.488,0.752,-0.652,0.102,0.361,-0.829,-0.427,-0.093,-0.993,0.071,0.54,-0.707,-0.457,0.223,-0.946,-0.237,0.285,-0.774,-0.566,0.857,-0.503,-0.115,0.788,-0.615,-0.029,0.789,-0.539,-0.295,0.983,-0.172,0.069,0.311,-0.887,0.341,0.519,-0.51,0.686,0.992,0.118,-0.032,0.876,0.012,-0.482,0.946,-0.313,0.082,0.83,-0.42,-0.367,0.63,-0.722,0.285,0.996,0.073,-0.054,0.517,-0.017,-0.856,0.193,-0.826,-0.53,0.879,-0.222,-0.423,0.341,0.483,-0.806,-0.517,0.042,-0.855,0.066,-0.743,-0.666,0.024,0.743,-0.669,0.062,0.69,-0.721,0.177,0.556,-0.812,-0.166,0.788,-0.593,-0.29,0.112,-0.95,0.357,0.72,-0.596,0.325,0.681,-0.656,-0.359,0.745,-0.562,-0.652,0.164,-0.741,0.167,0.951,-0.261,0.436,0.65,-0.622,0.577,0.158,-0.801,-0.069,0.917,-0.392,0.163,0.611,-0.775,0.347,0.125,-0.929,0.179,0.921,0.347,0.228,0.94,0.253,0.147,0.89,0.432,0.484,0.521,0.703,0.252,0.91,0.33,0.586,0.54,0.603,0.277,0.876,-0.394,0.686,0.694,0.22,0.511,0.852,0.116,0.521,0.772,-0.363,0.965,0.054,0.259,0.975,-0.026,-0.221,0.342,0.931,0.127,0.202,0.976,0.076,0.439,0.858,0.267,0.759,0.643,-0.1,0.864,0.246,-0.439,-0.884,0.438,-0.165,-0.782,0.153,-0.604,-0.458,-0.175,-0.871,-0.687,0.694,-0.214,-0.824,0.508,-0.25,-0.547,0.569,0.614,-0.04,0.537,0.842,-0.134,0.959,-0.248,0.373,0.928,-0.019,-0.232,0.924,-0.304,0.204,0.953,-0.225,0.608,0.773,-0.181,0.886,0.426,-0.182,-0.361,0.819,0.445,0.075,0.848,0.524,0.479,0.668,0.569,0.758,0.322,0.568,-0.252,0.864,0.435,0.304,0.871,0.385,-0.348,0.668,-0.658,0.208,0.675,-0.708,0.066,0.873,0.483,-0.339,0.618,0.71,0.438,0.582,0.685,0.243,0.713,0.658,0.231,-0.31,0.922,0.398,-0.783,0.478,0.753,0.651,0.095,0.92,0.178,-0.349,0.525,0.842,0.122,0.652,0.696,-0.302,0.792,0.525,0.311,0.918,0.379,-0.113,0.915,0.28,0.29,0.975,-0.058,-0.212,0.316,0.839,0.444,-0.073,0.956,-0.283,-0.012,0.618,-0.786,0.475,-0.052,-0.878,-0.312,0.95,0.003,-0.5,0.812,-0.3,-0.641,0.548,-0.538,-0.712,0.198,-0.673,-0.704,-0.184,-0.686,0.076,0.966,-0.245,-0.112,0.829,-0.548,-0.252,0.564,-0.786,-0.324,0.214,-0.921,-0.316,-0.168,-0.934,0.272,0.858,-0.436,0.188,0.525,-0.83,-0.431,0.856,-0.285,-0.515,0.524,-0.679,0.37,0.92,-0.127,-0.182,0.57,-0.801,0.489,0.323,-0.81,0.815,-0.108,-0.569,0.442,0.261,-0.858,0.768,-0.171,-0.617,0.866,0.108,-0.488,0.661,0.707,-0.25,0.825,0.493,-0.276,0.182,0.974,-0.135,0.705,0.496,0.507,0.906,0.015,0.422,0.854,-0.471,0.22,0.76,0.556,0.336,0.971,0.084,0.223,0.91,-0.411,0.047,0.742,-0.157,0.652,0.781,0.624,-0.019,0.893,0.291,-0.344,0.768,-0.067,-0.637,0.438,-0.358,-0.825,0.883,0.362,0.299,0.999,0.015,-0.038,0.869,-0.356,-0.343,0.526,-0.659,-0.538,0.438,-0.185,-0.879,0.756,0.197,-0.625,0.61,-0.504,-0.612,0.926,-0.118,-0.36,0.855,0.017,-0.518,0.558,-0.49,-0.67,0.433,0.364,-0.825,0.128,-0.137,-0.982,0.801,0.201,-0.564,0.727,-0.402,-0.557,0.206,0.269,-0.941,0.132,-0.334,-0.933,-0.117,0.598,-0.793,-0.441,0.345,-0.828,0.162,0.261,-0.951,-0.162,0.009,-0.987,-0.341,-0.724,-0.6,-0.258,-0.366,-0.894,-0.207,-0.295,-0.933,0.368,-0.207,-0.906,-0.162,-0.737,-0.656,0.416,-0.666,-0.619,-0.195,-0.554,-0.81,0.364,-0.353,-0.862,-0.149,-0.662,-0.735,0.41,-0.464,-0.785,0.423,-0.321,-0.847,0.453,-0.511,-0.731,0.666,0.217,-0.714,0.786,0.267,-0.557,0.08,0.345,-0.935,-0.289,-0.073,-0.954,0.681,-0.248,-0.689,0.364,-0.608,-0.705,-0.387,-0.192,-0.902,-0.357,-0.213,-0.91,-0.76,0.087,-0.644,0.062,-0.513,-0.856,0.652,-0.519,-0.553,0.967,0.071,0.243,-0.028,0.797,-0.603,0.518,0.792,-0.323,0.997,-0.07,0.018,0.87,0.489,-0.059,0.927,-0.033,0.373,0.803,0.525,0.283,0.682,0.636,-0.36,0.748,0.297,-0.594,0.636,-0.065,-0.769,0.368,-0.375,-0.851,-0.0,-0.57,-0.822,-0.394,-0.61,-0.688,0.896,0.444,0.009,0.967,0.077,-0.243,0.846,-0.313,-0.432,0.557,-0.647,-0.52,0.16,-0.858,-0.489,-0.265,-0.901,-0.344,-0.528,-0.784,-0.325,-0.265,-0.96,-0.095,0.014,-0.984,0.178,0.265,-0.854,0.449,0.446,-0.59,0.673,0.529,-0.235,0.816,-0.201,-0.728,-0.655,0.062,-0.903,-0.425,0.341,-0.928,-0.152,0.592,-0.797,0.119,0.773,-0.533,0.343,0.856,-0.178,0.486,-0.925,0.016,-0.381,-0.63,-0.708,-0.318,-0.381,-0.202,-0.902,-0.922,0.26,-0.287,-0.365,-0.238,-0.9,-0.792,0.321,-0.52,-0.986,-0.116,0.121,-0.629,-0.719,-0.296,-0.604,-0.794,-0.063,-0.903,-0.417,0.105,-0.955,0.056,0.29,-0.491,-0.818,0.299,-0.748,-0.494,0.444,-0.793,-0.087,0.603,-0.971,-0.114,0.21,-0.864,-0.23,0.449,-0.852,0.508,0.129,-0.79,-0.12,0.601,-0.606,-0.617,0.501,-0.32,-0.934,-0.162,-0.896,0.01,-0.443,-0.739,-0.418,-0.529,-0.951,-0.194,-0.241,-0.994,-0.109,-0.009,-0.98,0.195,-0.034,-0.966,-0.146,0.214,-0.777,-0.436,0.454,-0.92,-0.059,-0.387,-0.906,-0.4,-0.139,-0.717,-0.69,0.102,-0.933,-0.271,-0.236,-0.992,0.037,0.122,-0.984,-0.146,-0.102,-0.985,-0.036,0.168,-0.836,0.209,-0.508,-0.628,-0.226,-0.745,-0.24,-0.595,-0.767,-0.997,-0.077,0.009,-0.817,-0.56,-0.141,-0.401,-0.881,-0.25,-0.902,0.135,-0.409,-0.548,-0.212,-0.809,-0.671,-0.6,0.435,-0.317,-0.948,0.036,0.063,-0.795,-0.603,-0.233,-0.931,-0.28,-0.016,-0.683,-0.73,0.005,-0.876,-0.481,0.563,-0.746,-0.357,0.068,-0.973,-0.219,0.369,-0.629,-0.684,0.353,-0.905,-0.238,-0.198,-0.186,-0.962,-0.575,0.075,-0.815,-0.945,0.279,-0.17,-0.961,0.003,0.276,-0.241,-0.937,0.253,-0.618,-0.676,0.4,-0.831,-0.087,-0.549,-0.795,0.599,-0.101,-0.733,0.244,0.634,-0.853,-0.481,0.205,-0.915,-0.324,-0.239,-0.637,-0.592,-0.494,-0.72,0.284,-0.633,-0.42,-0.005,-0.907,-0.821,0.561,-0.111,-0.996,0.05,-0.072,-0.823,0.568,-0.024,-0.998,0.057,0.015,-0.776,0.466,-0.426,-0.778,-0.201,-0.595,-0.939,0.338,0.057,-0.937,-0.325,-0.127,-0.855,0.497,-0.148,-0.891,-0.033,-0.454,-0.819,0.071,0.569,-0.856,-0.452,0.251,-0.848,0.427,0.314,-0.977,0.163,-0.136,-0.825,-0.147,-0.546,-0.849,0.422,0.317,-0.979,0.158,-0.132,-0.826,-0.152,-0.543,-0.989,0.137,0.06,-0.866,-0.024,-0.5,-0.459,-0.298,-0.837,-0.864,0.454,0.219,-0.899,-0.439,-0.007,-0.58,0.181,-0.794,-0.178,-0.183,-0.967,-0.991,0.083,0.106,-0.443,-0.289,0.848,-0.035,-0.672,0.74,0.054,-0.959,-0.279,-0.74,-0.35,0.574,-0.55,-0.782,0.294,-0.437,-0.375,0.818,-0.247,-0.807,0.537,-0.815,-0.231,0.532,-0.14,-0.124,0.982,0.276,-0.731,0.624,-0.423,-0.89,0.17,-0.468,-0.882,0.064,-0.777,-0.394,0.491,-0.579,-0.066,0.813,0.105,0.063,0.992,0.069,-0.863,0.501,0.24,-0.581,0.778,-0.668,-0.048,0.742,-0.606,-0.123,0.786,-0.676,0.386,0.628,-0.912,0.383,0.145,-0.884,0.27,-0.381,-0.732,-0.01,0.682,-0.976,-0.069,0.206,-0.938,-0.108,-0.33,-0.565,-0.766,0.307,-0.569,-0.748,-0.342,-0.401,-0.632,0.663,-0.599,-0.779,0.184,-0.623,-0.701,-0.348,0.097,-0.823,0.56,-0.029,-0.997,0.066,-0.148,-0.883,-0.446,-0.274,-0.187,0.943,-0.655,0.3,0.693,-0.431,-0.885,-0.176,-0.812,-0.398,-0.426,-0.901,0.055,0.429,-0.794,0.115,0.597,-0.866,0.462,-0.189,-0.803,0.076,-0.591,-0.66,0.203,0.724,-0.092,-0.58,0.809,-0.058,-0.927,0.37,-0.49,-0.765,-0.418,-0.568,-0.379,0.73,-0.495,-0.477,0.726,-0.47,-0.883,-0.006,-0.123,-0.785,0.607,-0.233,-0.966,0.11,-0.419,-0.414,0.808,-0.792,-0.611,-0.015,-0.419,-0.75,-0.511,0.442,-0.432,0.786,0.773,-0.578,0.263,0.14,-0.742,0.656,0.363,-0.659,0.659,-0.014,0.019,1.0,-0.077,-0.415,0.906,0.159,0.056,0.986,-0.646,-0.627,0.434,0.04,0.294,0.955,0.442,0.087,0.893,-0.335,-0.422,0.843,0.052,-0.62,0.783,-0.372,-0.348,0.861,0.007,-0.695,0.719,-0.152,-0.156,0.976,0.225,-0.505,0.833,-0.567,-0.407,0.717,0.024,0.203,0.979,0.683,-0.303,0.664,0.092,-0.907,0.412,0.125,-0.025,0.992,0.252,-0.393,0.885,-0.576,-0.73,0.368,-0.332,-0.821,0.464,-0.02,-0.994,0.103,-0.196,-0.608,0.769,-0.435,-0.897,0.08,-0.334,-0.923,0.191,-0.422,-0.857,0.295,-0.735,-0.558,-0.385,-0.576,-0.779,-0.248,-0.303,-0.618,0.726,-0.514,-0.671,0.535,-0.252,-0.582,0.773,-0.693,-0.49,0.529,-0.588,-0.808,0.038,-0.59,-0.551,0.59,-0.485,-0.869,0.099,-0.29,-0.536,0.793,0.024,-0.865,0.501,-0.615,-0.606,0.505,-0.313,-0.923,0.224,-0.244,-0.913,0.328,-0.746,-0.507,0.433,-0.34,-0.81,-0.479,-0.84,-0.406,-0.361,-0.865,-0.446,0.23,-0.512,-0.859,0.032,-0.616,0.189,0.765,0.228,0.162,0.96,0.592,-0.245,0.768,0.337,-0.907,0.251,0.298,0.365,0.882,0.07,-0.365,0.929,0.372,-0.097,0.923,-0.055,-0.417,0.907,-0.467,-0.619,0.632,0.516,-0.268,0.813,0.113,-0.617,0.779,-0.323,-0.789,0.522,0.278,-0.115,0.954,-0.336,-0.338,0.879,0.615,-0.774,0.147,0.001,-0.997,0.073,-0.538,-0.525,0.66,-0.202,-0.535,0.821,-0.399,-0.847,0.351,-0.063,-0.856,0.512,-0.038,-0.834,0.551,-0.218,-0.975,0.053,0.707,-0.667,0.235,0.527,-0.808,-0.263,0.279,-0.78,0.56,-0.221,-0.943,0.247,0.829,-0.143,-0.541,0.349,-0.282,-0.894,0.745,-0.665,-0.057,0.745,-0.664,-0.065,-0.123,-0.787,-0.605,0.41,-0.622,-0.667,0.599,-0.781,0.177,0.299,-0.765,-0.571,0.799,-0.601,-0.023,0.763,-0.646,-0.029,0.875,-0.454,-0.168,0.784,-0.606,-0.133,0.289,-0.939,0.188,0.529,-0.848,-0.025,0.282,-0.725,0.629,0.289,-0.788,0.543,0.305,-0.592,0.746,0.135,-0.909,0.394,0.699,-0.352,0.623,0.501,-0.468,0.728,0.038,-0.332,0.942,0.1,-0.38,0.92,-0.243,-0.591,0.769,-0.235,-0.622,0.747,-0.252,-0.789,0.56,-0.242,-0.749,0.617,-0.53,-0.848,-0.012,-0.279,-0.517,0.809,0.604,-0.571,0.556,0.338,-0.913,-0.229,0.372,-0.715,0.592,0.648,-0.546,0.532,0.239,-0.638,0.732,-0.154,-0.97,-0.187,0.59,-0.788,0.176,0.562,-0.807,0.183,-0.102,-0.828,0.551,0.203,-0.977,-0.07,0.27,-0.885,0.38,-0.326,-0.848,0.418,0.222,-0.949,-0.222,-0.374,-0.911,-0.173,-0.418,-0.686,0.595,0.059,-0.624,0.779,-0.112,-0.993,-0.04,0.33,-0.935,0.13,0.93,-0.199,0.31,0.689,-0.307,-0.657,-0.179,-0.802,-0.57,0.227,-0.913,0.34,0.758,-0.633,0.155,0.972,-0.162,0.169,0.67,-0.738,-0.076,0.407,-0.788,-0.462,0.08,-0.933,0.352,-0.183,-0.982,-0.035,0.927,0.155,0.343,0.789,-0.603,-0.122,0.967,-0.022,-0.255,0.644,0.496,-0.583,0.337,-0.011,-0.942,0.628,-0.514,-0.585,0.683,0.013,-0.73,0.809,-0.474,-0.348,0.427,-0.174,-0.887,0.548,-0.665,-0.508,0.729,0.353,-0.587,0.106,-0.078,-0.991,-0.108,-0.481,-0.87,0.02,-0.983,-0.184,0.96,-0.273,-0.064,0.762,-0.646,0.048,0.89,-0.454,0.051,0.744,-0.394,-0.54,0.642,0.053,-0.765,0.696,-0.384,-0.607,0.886,-0.427,-0.183,0.312,-0.046,-0.949,-0.627,-0.377,-0.682,0.041,-0.974,-0.222,-0.258,-0.449,-0.855,-0.286,-0.649,-0.705,-0.565,0.045,-0.824,-0.34,-0.148,-0.929,0.083,-0.128,-0.988,-0.174,-0.224,-0.959,-0.084,-0.045,-0.995,0.217,-0.481,-0.849,-0.375,-0.212,-0.902,-0.083,-0.652,-0.754,0.377,0.07,-0.924,-0.33,-0.272,-0.904,0.678,0.356,-0.643,-0.119,0.016,-0.993,-0.499,-0.425,-0.756,-0.412,-0.91,0.037,0.789,-0.492,-0.368,0.462,-0.871,-0.164,-0.389,-0.661,-0.641,0.205,-0.559,-0.804,-0.373,-0.701,-0.608,0.22,-0.597,-0.771,-0.824,-0.025,-0.566,-0.51,0.491,-0.706,-0.539,-0.263,-0.8,-0.225,0.253,-0.941,0.48,0.367,-0.797,0.225,0.197,-0.954,0.587,-0.774,-0.239,0.341,-0.837,-0.428,0.581,-0.771,-0.26,0.432,-0.844,-0.319,0.834,0.04,-0.55,0.896,0.441,-0.044,0.85,0.008,-0.527,0.912,0.41,-0.021,0.894,0.428,0.133,0.965,0.082,-0.25,0.885,0.452,0.109,0.956,0.107,-0.274,0.971,-0.186,0.149,0.976,-0.162,0.145,0.492,-0.529,0.692,0.874,0.05,0.484,0.978,0.175,0.112,0.836,-0.114,-0.536,0.475,-0.878,0.058,0.579,-0.753,-0.314,0.95,0.094,0.298,0.656,-0.215,0.724,0.762,-0.063,-0.644,-0.073,-0.517,-0.853,-0.368,-0.826,-0.428,-0.013,-0.878,0.478,0.439,-0.537,-0.72,-0.117,-0.671,-0.732,0.468,-0.317,-0.825,0.344,-0.589,-0.731,-0.307,0.061,-0.95,-0.268,0.079,-0.96,-0.154,0.275,-0.949,-0.346,0.07,-0.936,-0.4,0.735,-0.547,-0.222,0.293,-0.93,-0.849,0.386,-0.36,-0.663,-0.051,-0.747,-0.02,0.951,0.309,-0.016,0.965,0.263,-0.192,0.882,0.432,-0.156,0.929,0.335,0.03,0.711,-0.703,-0.06,-0.813,-0.579,0.501,-0.343,-0.795,0.52,-0.8,-0.3,0.123,-0.183,-0.975,0.592,-0.596,-0.543,-0.615,-0.31,-0.724,0.005,-0.312,-0.95,-0.049,-0.331,-0.942,0.049,-0.136,-0.989,0.346,-0.523,-0.779,-0.247,-0.317,-0.916,0.038,-0.711,-0.702,-0.047,0.38,-0.924,0.413,0.533,-0.739,0.003,0.275,-0.962,0.464,0.426,-0.777,0.552,0.126,-0.824,0.52,0.159,-0.839,0.853,0.007,-0.522,0.667,-0.557,-0.494,0.117,0.246,-0.962,-0.089,-0.311,-0.946,0.383,-0.026,-0.923,0.07,-0.458,-0.886,-0.359,0.561,-0.746,-0.695,0.147,-0.704,0.525,0.518,-0.675,0.814,0.069,-0.576,0.864,-0.4,-0.307,0.351,0.383,-0.854,0.61,-0.09,-0.787,0.688,-0.537,-0.488,0.142,-0.961,-0.238,-0.43,-0.791,-0.435,0.182,-0.928,-0.325,-0.39,-0.757,-0.524,-0.354,-0.928,0.118,-0.672,-0.704,-0.23,0.463,-0.759,-0.459,0.178,-0.528,-0.831,0.196,-0.845,0.498,-0.308,-0.572,0.76,-0.303,-0.519,-0.799,-0.807,-0.247,-0.537,-0.196,-0.687,-0.7,-0.658,-0.596,-0.46,0.298,-0.192,-0.935,-0.075,0.443,-0.893,-0.537,0.534,-0.653,-0.958,0.054,-0.282,0.445,0.501,-0.743,0.471,-0.472,-0.745,0.507,-0.444,-0.739,0.553,-0.563,-0.615,0.343,-0.262,-0.902,0.515,0.354,-0.78,0.289,-0.924,-0.251,0.476,-0.632,0.611,0.651,-0.022,0.759,0.753,0.651,0.093,0.818,0.383,-0.429,0.721,0.352,-0.597,0.818,0.448,-0.361,0.778,0.356,-0.518,0.314,0.275,-0.909,0.099,-0.209,-0.973,0.884,-0.058,-0.464,0.685,-0.507,-0.524,0.744,0.398,-0.537,0.442,0.419,-0.793,0.063,0.409,-0.91,0.782,-0.066,-0.62,0.48,-0.044,-0.876,0.1,-0.054,-0.994,-0.531,0.004,-0.847,-0.725,-0.291,-0.624,0.24,-0.459,-0.855,0.014,-0.803,-0.596,-0.845,0.253,-0.471,-0.494,-0.627,-0.603,0.333,-0.256,-0.908,-0.021,0.624,-0.781,-0.89,0.374,0.26,-0.889,0.374,0.266,-0.783,0.605,-0.144,-0.857,0.342,0.385,-0.651,0.737,0.181,-0.738,0.641,-0.211,-0.726,0.41,-0.552,-0.617,0.085,-0.782,-0.271,0.962,0.042,-0.357,0.866,-0.35,-0.345,0.635,-0.691,-0.237,0.31,-0.921,-0.749,0.557,0.359,-0.747,0.551,0.372,-0.065,0.994,-0.089,-0.012,0.817,-0.577,-0.48,0.873,-0.088,-0.431,0.695,-0.576,-0.143,0.988,-0.055,0.365,0.875,-0.317,-0.824,0.556,-0.108,-0.708,0.025,-0.706,-0.205,-0.097,-0.974,0.519,0.248,-0.818,-0.697,0.7,-0.155,-0.762,-0.011,-0.648,-0.429,-0.366,-0.826,0.424,-0.497,-0.757,0.091,0.813,-0.575,0.477,0.401,-0.782,0.065,0.823,-0.564,0.26,0.383,-0.887,-0.416,0.653,-0.633,-0.207,0.217,-0.954,-0.175,0.669,-0.722,-0.625,0.244,-0.742,-0.451,0.84,-0.301,0.057,0.913,-0.404,-0.48,0.673,-0.562,0.028,0.746,-0.665,-0.574,0.109,-0.812,0.171,0.699,-0.694,0.049,-0.039,-0.998,-0.054,-0.433,-0.9,-0.189,-0.739,-0.646,0.494,-0.121,-0.861,0.391,-0.516,-0.763,0.256,-0.822,-0.509,-0.372,0.758,-0.537,-0.678,0.423,-0.601,0.179,0.375,-0.91,-0.177,-0.014,-0.984,-0.919,-0.279,-0.279,-0.823,-0.565,-0.06,-0.626,-0.756,0.192,-0.647,-0.447,-0.618,-0.551,-0.733,-0.399,-0.354,-0.924,-0.147,-0.884,-0.225,-0.409,-0.986,-0.166,0.034,-0.902,0.052,0.428,-0.733,-0.572,-0.367,-0.851,-0.503,0.148,-0.754,-0.25,0.607,-0.942,-0.151,0.301,-0.882,-0.248,0.401,-0.833,-0.321,0.45,-0.75,0.615,-0.243,-0.466,0.434,-0.771,-0.054,0.15,-0.987,-0.959,0.197,-0.205,-0.827,-0.56,-0.035,-0.427,-0.875,-0.229,0.127,-0.62,-0.775,-0.508,-0.797,-0.327,-0.488,-0.871,0.054,-0.601,-0.652,-0.463,-0.3,-0.945,-0.127,0.096,-0.873,-0.478,-0.028,-0.832,-0.555,0.331,-0.891,-0.31,-0.078,-0.968,-0.237,-0.483,-0.854,-0.195,-0.798,-0.571,-0.192,-0.956,-0.181,-0.229,0.444,-0.774,0.452,0.034,-0.851,0.524,-0.37,-0.736,0.567,-0.685,-0.454,0.57,-0.844,-0.064,0.533,-0.762,0.635,-0.124,-0.825,0.472,0.311,-0.748,0.649,-0.137,-0.843,0.196,0.501,-0.832,-0.524,0.18,-0.858,-0.076,-0.508,-0.678,0.045,-0.733,-0.837,0.546,0.047,-0.707,-0.123,0.696,-0.827,-0.556,-0.082,-0.916,0.362,0.17,-0.898,0.141,-0.416,-0.835,-0.351,0.424,-0.819,-0.547,-0.171,-0.909,-0.124,0.398,-0.856,-0.319,0.408,-0.988,0.094,0.119,-0.946,-0.048,0.319,-0.794,-0.55,-0.26,-0.659,0.394,-0.64,-0.511,0.81,0.287,-0.734,-0.116,0.669,-0.626,0.408,-0.665,-0.916,0.399,0.041,-0.73,0.478,-0.489,-0.959,0.197,-0.203,-0.975,0.161,0.152,-0.685,0.242,-0.687,-0.586,-0.01,-0.81,-0.091,-0.686,-0.722,-0.381,-0.017,-0.925,-0.564,0.261,-0.784,-0.44,0.074,-0.895,-0.817,0.359,-0.451,-0.803,0.491,-0.338,-0.994,0.098,-0.052,-0.912,-0.267,0.312,-0.545,-0.023,-0.838,-0.722,-0.388,-0.573,-0.646,-0.726,-0.235,-0.427,-0.152,0.891,0.304,-0.364,0.881,-0.044,-0.331,0.943,0.719,0.158,0.677,-0.292,0.542,0.788,-0.726,0.261,0.637,-0.949,-0.095,0.301,0.047,0.031,0.998,-0.329,-0.336,0.883,-0.61,-0.606,0.511,-0.351,0.448,0.822,-0.247,-0.461,0.852,-0.945,-0.265,0.193,-0.831,-0.336,0.444,-0.88,0.469,0.072,-0.925,-0.272,-0.267,-0.963,0.08,-0.258,-0.759,0.484,0.436,-0.828,0.549,0.114,-0.822,0.541,0.175,-0.6,0.744,-0.293,-0.728,0.255,-0.636,-0.861,0.453,0.231,-0.994,-0.042,-0.102,-0.806,0.573,-0.148,-0.781,0.295,-0.551,-0.458,0.841,-0.288,-0.431,0.541,-0.722,-0.931,0.212,-0.296,-0.851,-0.262,-0.455,-0.594,-0.695,-0.404,-0.237,-0.958,-0.16,-0.412,0.464,-0.784,-0.332,-0.01,-0.943,-0.075,-0.444,-0.893,0.283,-0.707,-0.649,0.158,-0.924,-0.347,-0.604,-0.772,-0.198,-0.48,-0.786,-0.39,-0.645,-0.749,0.152,-0.572,-0.702,-0.424,-0.737,-0.666,0.119,-0.811,-0.564,0.158,-0.784,-0.493,-0.377,-0.751,-0.643,0.15,-0.725,-0.572,-0.384,-0.061,-0.99,0.127,0.185,-0.82,0.541,0.046,-0.935,0.352,0.365,-0.739,0.566,-0.108,-0.915,0.39,-0.115,-0.959,-0.259,0.23,-0.894,0.385,0.224,-0.938,-0.263,0.36,-0.82,-0.445,-0.403,-0.733,-0.549,-0.727,-0.628,-0.279,-0.946,-0.316,-0.07,-0.994,0.107,0.014,-0.634,0.591,0.5,0.307,-0.89,0.336,-0.043,-0.777,0.628,-0.28,-0.441,0.853,-0.332,0.016,0.943,-0.909,0.286,0.303,-0.762,0.1,0.64,-0.448,0.011,0.894,-0.05,0.041,0.998,-0.856,-0.483,-0.184,-0.684,-0.699,0.208,-0.319,-0.803,0.503,0.144,-0.768,0.624,0.253,-0.412,0.875,-0.011,-0.847,0.531,0.836,-0.384,0.393,0.571,-0.82,0.048,0.948,-0.282,0.147,0.44,-0.738,0.512,0.4,-0.66,0.636,0.334,-0.93,0.153,0.962,-0.123,0.243,0.885,-0.404,-0.232,0.499,0.188,0.846,0.594,-0.034,0.803,0.502,0.171,0.848,-0.044,0.109,0.993,0.527,-0.495,0.69,-0.02,-0.544,0.839,-0.928,-0.104,0.357,-0.338,-0.224,0.914,0.016,-0.458,0.889,0.298,-0.916,0.269,-0.714,-0.672,-0.195,-0.361,-0.906,-0.22,-0.843,-0.394,0.365,-0.418,-0.317,0.851,-0.854,0.462,0.238,-0.429,0.54,0.724,-0.901,-0.43,-0.063,-0.935,-0.318,0.155,-0.563,0.401,-0.722,0.073,0.346,-0.935,-0.947,-0.318,-0.038,-0.223,-0.77,0.598,0.413,-0.825,0.385,0.674,-0.458,-0.58,-0.559,-0.807,0.191,-0.217,-0.838,0.501,-0.791,-0.6,0.117,-0.849,-0.263,0.459,-0.184,-0.851,0.492,-0.238,-0.538,0.809,-0.773,-0.289,0.565,-0.584,-0.737,0.341,-0.989,-0.049,-0.142,-0.814,-0.464,-0.35,-0.643,-0.757,0.115,-0.588,-0.698,-0.409,-0.597,-0.771,0.223,-0.705,-0.701,0.108,-0.948,-0.267,0.175,-0.43,-0.6,0.674,0.063,-0.755,0.653,0.637,-0.763,0.106,-0.555,-0.753,-0.353,-0.002,-0.926,-0.377,0.101,-0.867,0.487,0.809,-0.587,0.028,0.407,-0.891,0.2,0.486,-0.849,0.209,0.225,-0.876,0.426,-0.528,-0.79,0.312,0.151,-0.905,0.398,-0.053,-0.612,0.789,-0.09,-0.949,0.302,-0.304,-0.658,0.689,-0.43,-0.565,0.704,-0.5,-0.827,0.257,0.446,-0.66,0.605,0.358,-0.92,0.16,-0.301,-0.431,0.851,-0.149,-0.788,0.597,-0.452,-0.892,0.011,-0.212,-0.898,0.385,-0.457,-0.841,0.29,-0.226,-0.849,0.478,-0.716,-0.618,0.324,-0.738,-0.639,-0.219,-0.066,-0.942,0.33,-0.062,-0.975,-0.212,-0.457,-0.829,0.323,-0.025,-0.997,0.072,-0.214,-0.955,0.207,0.138,-0.877,0.46,0.063,-0.984,-0.168,0.415,-0.906,0.084,0.555,-0.774,0.304,0.128,-0.962,0.241,0.273,-0.931,0.244,-0.258,-0.837,-0.482,0.427,-0.568,0.703,0.678,-0.735,-0.005,0.941,0.118,-0.316,0.672,-0.082,-0.736,0.771,-0.628,0.102,0.54,-0.801,-0.259,0.834,-0.542,-0.097,0.96,-0.239,-0.145,0.493,-0.616,0.614,0.958,-0.251,0.137,0.616,-0.689,-0.382,0.098,-0.992,0.085,0.777,-0.607,0.169,0.303,-0.773,0.558,0.576,-0.801,-0.16,0.101,-0.969,0.225,0.745,-0.667,0.009,0.428,-0.873,-0.233,0.369,-0.928,0.051,-0.438,-0.894,0.091,0.193,-0.968,0.16,-0.133,-0.99,0.053,-0.296,-0.936,0.192,0.162,-0.987,0.007,-0.133,-0.963,0.235,0.514,-0.762,0.395,0.29,-0.915,0.28,0.802,-0.58,0.145,0.765,-0.518,0.384,0.425,-0.775,0.467,0.588,-0.781,0.209,0.788,-0.575,0.221,-0.202,-0.661,0.723,0.112,-0.975,0.19,0.196,-0.767,0.611,0.152,-0.985,0.084,0.264,-0.818,0.511,0.192,-0.876,0.442,0.188,-0.63,0.754,0.062,-0.994,0.092,0.453,-0.236,0.859,0.753,-0.121,0.647,0.443,-0.645,0.623,0.742,-0.529,0.411,0.491,0.429,0.758,0.981,0.196,0.013,0.717,0.482,0.503,0.905,-0.151,0.397,0.654,0.6,-0.461,0.844,-0.037,-0.536,-0.109,0.86,0.498,0.809,0.576,-0.117,0.833,-0.541,0.115,0.262,-0.087,0.961,0.968,-0.247,0.037,0.776,-0.338,0.532,0.942,-0.334,0.011,0.751,-0.424,0.506,0.305,-0.639,0.706,0.089,-0.387,0.918,-0.189,-0.114,0.975,0.651,-0.343,0.677,0.418,-0.071,0.906,0.118,0.223,0.968,0.561,0.809,0.176,-0.173,0.842,0.511,0.323,0.361,0.875,0.488,0.867,0.097,0.749,0.656,-0.092,0.885,0.36,-0.297,0.874,0.025,-0.486,0.59,0.64,0.492,0.851,0.429,0.304,0.986,0.133,0.099,0.975,-0.202,-0.091,0.195,0.723,0.663,-0.018,0.231,0.973,0.697,0.717,0.001,0.998,-0.057,-0.021,0.785,-0.548,0.289,0.139,-0.568,0.811,0.905,0.308,0.293,0.613,0.034,0.789,0.462,-0.693,-0.553,0.162,-0.984,-0.072,0.889,-0.256,-0.379,0.535,-0.759,-0.372,0.481,-0.782,0.398,0.792,-0.37,-0.486,-0.126,-0.32,-0.939,-0.336,-0.927,-0.168,0.813,-0.201,-0.546,0.386,-0.727,-0.568,0.791,-0.419,-0.446,0.453,-0.534,-0.714,0.806,-0.411,-0.426,0.581,-0.634,-0.51,0.935,-0.352,-0.052,0.957,0.067,-0.281,0.498,-0.628,-0.598,0.521,-0.209,-0.828,0.876,0.283,-0.392,0.295,0.469,-0.833,-0.069,0.22,-0.973,-0.477,0.025,-0.878,-0.646,-0.592,-0.482,0.761,-0.445,-0.473,0.424,-0.676,-0.603,0.045,-0.856,-0.515,-0.594,-0.059,-0.802,-0.219,-0.736,-0.641,-0.207,-0.464,-0.862,-0.861,-0.078,-0.502,0.029,0.597,-0.802,0.627,0.529,-0.572,0.051,0.164,-0.985,0.649,0.097,-0.755,0.372,0.076,-0.925,-0.292,-0.215,-0.932,0.947,-0.078,-0.311,0.746,-0.569,-0.347,0.8,0.005,-0.6,0.596,-0.485,-0.639,0.996,0.036,-0.084,0.864,-0.435,0.252,0.968,-0.068,-0.24,0.837,-0.539,0.097,0.153,-0.658,-0.737,-0.188,-0.934,-0.304,0.438,-0.343,-0.831,0.307,-0.813,-0.494,0.294,-0.345,-0.891,0.162,-0.816,-0.555,0.451,-0.125,-0.884,0.479,-0.488,-0.73,0.399,-0.782,-0.478,0.226,-0.959,-0.17,0.789,0.014,-0.615,0.816,-0.349,-0.461,0.737,-0.643,-0.209,0.564,-0.82,0.099,0.675,-0.257,-0.692,0.409,-0.793,-0.451,0.663,-0.256,-0.704,0.397,-0.792,-0.463,0.927,0.29,-0.239,0.943,0.185,-0.277,0.828,0.54,-0.151,0.685,0.583,0.437,0.762,-0.164,-0.627,0.565,-0.817,-0.116,0.422,-0.774,0.472,0.386,-0.051,0.921,0.741,0.254,0.621,0.742,0.263,0.617,0.13,-0.134,0.982,-0.257,-0.575,0.776,0.653,-0.412,0.636,0.284,-0.863,0.417,0.895,-0.124,0.428,0.9,-0.407,0.157,0.782,-0.603,-0.16,0.56,-0.68,-0.474,0.27,-0.626,-0.732,-0.04,-0.45,-0.892,0.611,-0.383,0.693,0.616,-0.665,0.422,0.498,-0.861,0.104,0.276,-0.938,-0.209,-0.014,-0.884,-0.467,-0.324,-0.708,-0.628,-0.544,-0.512,-0.664,-0.152,-0.755,-0.638,-0.232,-0.813,-0.534,-0.034,-0.999,-0.032,0.235,-0.733,-0.638,-0.069,-0.865,-0.496,-0.093,-0.936,-0.339,0.726,-0.408,-0.553,0.263,0.416,-0.87,-0.459,-0.218,-0.861,0.534,-0.017,-0.845,0.466,0.089,-0.88,0.85,0.487,-0.203,0.738,0.55,0.391,0.609,-0.464,-0.643,-0.254,-0.942,-0.218,-0.349,-0.858,0.376,0.318,-0.255,0.913,0.205,-0.936,-0.286,0.405,-0.878,0.255,-0.425,-0.904,-0.042,-0.204,-0.847,0.491,-0.078,-0.914,-0.397,-0.07,-0.931,-0.359,-0.271,-0.857,-0.438,-0.247,-0.888,-0.387,0.134,-0.947,-0.291,-0.086,-0.743,-0.664,-0.511,-0.785,0.35,-0.058,-0.95,0.308,0.193,-0.935,0.296,-0.04,-0.999,0.017,-0.242,-0.928,-0.284,-0.383,-0.732,-0.564,-0.443,-0.439,-0.782,-0.413,-0.092,-0.906,-0.165,-0.808,0.566,-0.398,-0.871,0.287,-0.6,-0.8,-0.014,-0.741,-0.604,-0.294,-0.801,-0.311,-0.511,-0.771,0.035,-0.636,-0.641,0.207,-0.739,-0.885,0.159,-0.437,-0.587,-0.256,-0.768,-0.831,-0.304,-0.466,-0.399,0.594,-0.698,-0.57,-0.355,-0.741,-0.508,0.383,-0.772,-0.556,0.329,-0.764,-0.511,0.497,-0.701,-0.102,0.241,-0.965,-0.63,0.315,-0.71,-0.221,0.059,-0.974,-0.014,-0.394,-0.919,-0.365,-0.731,-0.577,-0.399,0.009,-0.917,-0.75,-0.328,-0.575,-0.125,-0.163,-0.979,-0.794,0.263,-0.548,-0.371,0.244,-0.896,-0.208,-0.256,-0.944,-0.786,0.092,-0.611,-0.64,-0.414,-0.647,-0.407,0.884,-0.228,-0.469,0.269,-0.841,0.401,0.272,-0.874,0.488,0.851,-0.194,-0.27,0.932,-0.24,-0.553,0.765,-0.331,-0.205,0.948,0.244,-0.79,0.564,-0.24,-0.3,0.328,-0.895,0.194,0.855,-0.481,-0.372,0.537,-0.757,-0.25,0.388,-0.887,-0.154,-0.208,-0.966,0.35,-0.419,-0.838,0.171,0.554,-0.814,0.604,0.373,-0.704,-0.538,0.601,-0.591,-0.901,0.259,-0.349,-0.993,-0.095,0.068,-0.784,-0.341,0.519,-0.187,-0.107,-0.977,-0.498,-0.402,-0.768,-0.578,-0.706,-0.41,-0.398,-0.917,-0.022,-0.645,-0.308,0.699,-0.922,0.055,0.382,-0.662,-0.712,0.234,-0.939,-0.338,-0.07,-0.919,-0.23,0.321,-0.857,-0.111,0.503,-0.937,0.099,-0.336,-0.974,-0.224,0.031,-0.772,0.635,-0.023,-0.385,0.828,-0.409,-0.904,0.145,-0.401,-0.517,0.337,-0.787,-0.328,0.373,-0.868,-0.659,-0.144,-0.738,-0.574,0.809,0.126,-0.911,0.303,0.279,0.405,0.832,-0.38,0.795,-0.112,-0.596,0.503,-0.174,-0.847,0.118,0.771,-0.626,0.468,0.881,-0.063,-0.138,0.742,-0.655,0.34,0.086,-0.936,0.922,0.209,-0.326,0.934,-0.133,-0.331,0.832,0.06,-0.551,0.725,0.541,-0.427,0.869,-0.205,-0.45,0.681,-0.035,-0.731,0.246,-0.158,-0.956,0.169,-0.062,-0.984,0.307,0.649,-0.696,-0.146,0.234,-0.961,-0.597,0.617,-0.513,-0.899,-0.055,-0.434,-0.395,-0.441,-0.806,-0.744,0.198,-0.638,-0.431,-0.14,-0.892,-0.912,-0.148,-0.382,-0.6,-0.489,-0.633,-0.105,0.253,-0.962,-0.187,0.083,-0.979,-0.208,-0.002,-0.978,-0.207,0.011,-0.978,0.139,-0.45,-0.882,-0.452,0.047,-0.891,-0.043,-0.081,-0.996,-0.469,-0.126,-0.874,-0.106,0.747,-0.657,0.303,0.894,-0.329,-0.078,-0.401,-0.913,0.004,-0.995,0.099,0.41,-0.814,0.412,0.998,0.055,-0.019,0.099,-0.924,-0.368,0.575,-0.717,-0.394,0.144,-0.985,-0.095,0.618,-0.775,-0.131,0.253,-0.747,-0.614,-0.167,-0.76,-0.629,-0.554,-0.611,-0.565,-0.838,-0.33,-0.435,-0.964,0.031,-0.262,-0.91,0.406,-0.08,0.245,-0.95,-0.196,-0.175,-0.962,-0.211,-0.563,-0.813,-0.147,-0.846,-0.532,-0.017,-0.973,-0.171,0.156,-0.919,0.204,0.338,-0.477,0.796,-0.372,-0.31,0.874,0.373,-0.028,0.688,-0.725,-0.434,0.337,-0.835,-0.71,-0.115,-0.694,-0.137,0.785,-0.604,-0.562,0.451,-0.693,-0.819,-0.018,-0.573,-0.029,0.591,-0.806,-0.376,0.041,-0.926,-0.357,0.745,-0.564,-0.703,0.195,-0.684,-0.874,0.472,0.12,-0.987,-0.134,-0.089,-0.545,0.51,-0.665,-0.683,0.003,-0.73,-0.63,-0.505,-0.59,-0.758,0.551,-0.349,-0.93,0.051,-0.363,-0.842,-0.464,-0.275,-0.326,0.489,-0.809,-0.939,0.017,-0.345,-0.394,-0.625,-0.674,-0.419,0.112,-0.901,-0.557,0.446,-0.701,-0.862,0.507,0.006,-0.817,-0.575,-0.031,-0.955,-0.241,0.17,-0.869,0.477,-0.128,-0.975,0.055,0.214,-0.453,0.803,0.387,-0.55,0.388,0.74,-0.43,0.813,0.392,-0.941,0.336,0.048,-0.795,0.491,0.356,-0.919,0.312,-0.24,-0.859,0.262,0.441,-0.985,0.074,-0.153,-0.892,0.256,-0.372,-0.904,0.238,-0.355,-0.99,-0.031,-0.139,-0.956,0.269,-0.119,-0.629,-0.356,-0.691,-0.962,-0.243,0.121,-0.784,-0.108,-0.611,-0.835,-0.496,-0.237,-0.895,0.072,-0.44,-0.946,-0.317,-0.066,-0.683,0.05,-0.729,0.011,-0.117,-0.993,-0.701,0.282,-0.655,-0.673,0.277,-0.686,-0.316,0.184,-0.931,-0.957,-0.291,-0.012,-0.596,0.783,-0.179,-0.669,0.03,-0.743,-0.432,0.506,-0.747,-0.63,0.009,-0.777,-0.647,-0.49,-0.584,-0.47,0.519,-0.714,-0.674,0.025,-0.738,-0.685,-0.476,-0.551,-0.107,0.439,-0.892,-0.046,-0.139,-0.989,-0.631,0.753,-0.185,-0.903,0.096,0.419,-0.827,-0.476,0.298,-0.433,-0.772,-0.465,-0.954,0.195,0.226,-0.461,0.412,0.786,-0.041,0.23,0.972,0.399,-0.395,0.828,-0.733,-0.543,0.41,-0.281,-0.74,0.611,-0.677,-0.393,0.622,-0.194,-0.438,0.878,0.352,-0.4,0.846,-0.562,-0.705,0.433,-0.147,-0.744,0.652,0.322,-0.711,0.625,-0.546,-0.766,0.34,0.099,-0.888,0.449,-0.554,-0.593,0.584,0.09,-0.715,0.693,-0.619,-0.683,0.387,-0.057,-0.907,0.417,-0.616,-0.672,0.411,-0.054,-0.896,0.442,-0.498,-0.866,0.052,0.018,-0.977,0.214,-0.618,-0.302,0.726,-0.107,-0.39,0.914,-0.789,0.074,0.61,-0.576,-0.311,0.756,-0.405,0.729,0.552,-0.596,0.8,-0.069,-0.733,0.305,0.608,-0.93,0.368,-0.011,-0.572,0.458,0.68,-0.735,0.656,0.171,-0.392,-0.355,0.849,-0.473,-0.864,0.174,-0.634,-0.692,-0.345,-0.842,0.137,-0.522,-0.713,-0.536,0.452,-0.712,-0.572,0.408,-0.974,0.21,-0.083,-0.935,-0.186,0.302,-0.741,-0.279,-0.61,-0.702,-0.676,-0.225,-0.907,0.122,0.403,-0.988,-0.078,0.133,-0.664,-0.058,0.746,-0.421,0.491,0.763,-0.802,0.045,-0.595,-0.559,0.594,-0.578,-0.542,0.826,0.155,-0.73,0.337,0.595,-0.998,0.051,0.033,-0.84,-0.532,0.111,-0.997,0.053,0.047,-0.839,-0.53,0.125,-0.794,-0.146,-0.59,-0.724,-0.645,-0.245,-0.619,0.602,0.504,-0.552,0.089,0.829,-0.386,0.71,0.59,-0.918,0.016,0.396,-0.587,0.086,0.805,0.235,-0.242,0.941,0.15,-0.92,0.362,-0.666,-0.65,0.367,-0.058,-0.874,0.483,0.04,-0.907,0.419,-0.789,-0.25,0.561,-0.529,-0.722,0.447,-0.472,0.434,0.768,0.294,0.337,0.894,0.598,-0.111,0.794,0.287,-0.815,0.503,-0.271,0.242,0.932,-0.264,0.237,0.935,-0.51,0.507,0.695,-0.924,0.073,0.375,0.065,-0.218,0.974,-0.332,-0.672,0.661,-0.139,0.218,0.966,0.588,-0.127,0.799,0.755,-0.454,0.473,0.427,-0.893,-0.139,-0.48,-0.52,0.707,-0.286,-0.9,0.328,-0.74,-0.476,0.475,-0.175,-0.125,0.977,0.486,-0.542,0.686,-0.097,-0.959,0.267,0.3,-0.507,0.808,0.207,-0.845,0.493,-0.583,-0.272,0.765,-0.662,-0.563,0.494,-0.139,-0.304,0.942,0.226,-0.679,0.699,0.183,-0.008,0.983,0.559,-0.372,0.741,-0.888,-0.061,0.455,-0.852,-0.523,0.023,-0.455,-0.368,0.811,-0.427,-0.824,0.372,-0.731,0.352,0.584,-0.932,0.358,0.059,-0.781,0.171,0.6,-0.981,0.181,0.075,-0.652,0.464,0.6,-0.852,0.164,0.498,-0.843,0.286,0.456,-0.967,-0.243,-0.078,-0.43,-0.47,0.771,-0.144,-0.745,0.651,0.192,-0.874,0.447,-0.697,-0.589,0.408,-0.411,-0.865,0.289,-0.075,-0.994,0.084,0.169,-0.984,-0.065,-0.199,-0.933,-0.3,-0.235,-0.673,0.702,-0.663,-0.614,0.429,0.042,-0.908,0.417,0.808,-0.585,-0.073,-0.077,-0.929,0.363,0.013,-0.708,0.706,0.06,-0.36,0.931,0.368,-0.901,0.228,0.458,-0.681,0.571,0.505,-0.333,0.796,0.253,0.483,0.838,0.841,0.101,0.532,-0.014,0.347,0.938,-0.009,0.344,0.939,-0.251,0.725,0.642,-0.712,0.379,0.59,0.223,0.083,0.971,-0.219,-0.287,0.933,-0.016,0.384,0.923,0.687,-0.032,0.726,0.753,-0.434,0.494,0.207,-0.968,0.143,-0.521,-0.278,0.807,-0.454,-0.68,0.575,0.221,-0.881,0.418,-0.065,-0.945,-0.321,0.288,-0.957,0.041,-0.098,-0.839,0.535,0.146,-0.987,-0.063,-0.243,-0.87,0.429,0.234,-0.877,0.421,-0.198,-0.935,0.293,-0.76,-0.496,0.42,-0.259,-0.877,-0.404,-0.683,-0.73,0.017,-0.375,-0.478,0.794,-0.602,-0.443,0.665,-0.287,-0.832,0.475,-0.086,-0.199,0.976,0.209,-0.597,0.774,-0.21,-0.299,0.931,-0.051,-0.768,0.638,0.069,-0.99,0.12,-0.547,-0.356,0.758,-0.41,-0.759,0.506,-0.307,-0.95,0.061,-0.376,-0.338,0.863,0.04,-0.691,0.721,-0.25,-0.222,0.943,0.166,-0.575,0.801,-0.432,-0.239,0.87,-0.079,-0.554,0.828,0.362,-0.645,0.674,-0.667,-0.411,0.622,-0.256,-0.778,0.574,0.256,-0.883,0.393,0.868,-0.257,0.425,0.251,-0.93,0.269,0.722,-0.687,0.078,0.883,-0.224,-0.413,0.561,0.381,0.735,0.938,-0.164,0.306,0.935,0.333,0.122,0.93,0.358,-0.087,0.309,0.772,0.555,-0.095,0.428,0.899,0.96,0.268,-0.084,0.636,-0.68,-0.365,0.22,-0.975,0.011,-0.143,-0.552,0.821,0.814,-0.54,-0.212,0.564,-0.79,0.241,0.565,-0.702,-0.433,0.324,-0.946,0.028,0.383,-0.899,0.213,-0.028,-0.999,-0.019,0.042,-0.233,0.972,0.533,-0.311,0.787,0.874,-0.302,0.38,0.077,0.226,0.971,0.574,0.229,0.786,0.91,0.168,0.38,-0.153,-0.302,0.941,-0.082,0.449,0.89,0.631,0.443,0.637,0.601,-0.336,0.725,0.043,0.865,0.501,-0.144,0.573,0.807,0.067,0.719,0.691,0.211,-0.113,0.971,0.032,-0.57,0.821,0.075,-0.9,0.43,0.32,-0.947,-0.019,0.231,-0.544,-0.807,-0.766,0.466,0.443,-0.959,-0.027,0.281,-0.913,-0.383,-0.141,-0.649,-0.434,-0.625,0.011,-0.863,-0.505,0.061,-0.594,-0.802,-0.168,-0.904,-0.394,0.176,-0.436,-0.883,0.528,-0.848,0.04,0.225,-0.786,-0.576,-0.193,-0.701,-0.686,-0.751,-0.591,-0.296,-0.066,-0.932,0.356,-0.454,-0.854,0.254,0.648,-0.611,0.455,0.872,-0.277,0.402,0.621,-0.716,-0.319,0.846,-0.382,-0.372,0.957,-0.047,0.287,0.732,-0.533,0.425,0.965,-0.06,0.255,0.74,-0.546,0.393,0.814,0.259,0.52,0.973,-0.054,-0.225,0.57,-0.77,-0.287,0.602,-0.576,0.552,0.423,-0.796,-0.433,-0.052,-0.964,-0.262,0.667,-0.686,0.29,0.155,-0.867,0.474,0.72,-0.683,0.122,0.711,-0.671,-0.211,0.937,-0.045,0.348,0.433,-0.761,0.482,0.717,-0.37,0.591,0.587,-0.775,0.236,0.811,0.408,0.419,0.753,0.545,-0.369,0.624,0.177,-0.762,0.49,-0.64,-0.592,0.867,0.122,0.482,0.988,-0.081,-0.135,0.737,-0.676,0.006,0.625,-0.554,-0.55,0.966,-0.251,0.061,0.863,-0.113,-0.492,0.933,-0.147,0.33,0.998,0.057,0.039,0.93,0.279,-0.238,0.854,-0.518,0.052,0.919,-0.314,-0.239,0.852,-0.092,-0.516,0.57,-0.033,-0.821,0.801,-0.39,-0.454,0.478,-0.139,-0.867,0.705,-0.5,-0.502,-0.316,0.819,0.478,0.111,0.989,0.096,-0.341,0.824,0.452,0.085,0.994,0.069,-0.113,0.555,0.824,-0.121,0.597,0.793,0.634,0.35,0.69,-0.123,0.368,0.922,0.114,-0.212,0.971,0.572,0.637,0.516,0.831,0.066,0.552,0.47,0.567,0.676,0.242,0.067,0.968,0.686,0.421,0.594,0.457,-0.079,0.886,0.468,0.598,0.651,0.103,0.202,0.974,0.598,0.474,0.646,0.233,0.078,0.969,-0.067,0.006,0.998,0.153,0.305,0.94,0.288,-0.27,0.919,0.507,0.029,0.861,-0.189,0.216,0.958,-0.619,-0.241,0.748,0.841,0.246,0.481,0.729,0.218,-0.649,0.33,-0.239,-0.913,-0.175,-0.979,-0.101,0.961,-0.275,0.023,0.72,-0.59,0.364,0.816,0.345,0.463,0.556,0.005,0.831,0.664,0.596,-0.452,0.42,0.431,-0.799,0.078,0.19,-0.979,-0.29,-0.078,-0.954,0.883,0.183,-0.432,0.656,0.031,-0.754,0.339,-0.193,-0.921,-0.002,-0.441,-0.897,-0.005,-0.436,-0.9,0.599,-0.379,-0.705,-0.072,-0.809,-0.583,0.532,-0.752,-0.388,0.688,-0.481,-0.544,0.227,-0.662,-0.714,0.825,0.353,-0.441,0.127,0.831,-0.541,-0.323,0.624,-0.712,-0.421,-0.178,-0.89,0.372,0.505,-0.779,0.041,-0.02,-0.999,-0.321,0.81,-0.491,-0.64,0.281,-0.716,0.631,0.776,0.016,0.88,0.357,0.313,0.717,0.401,-0.57,0.965,-0.01,-0.263,0.966,0.155,-0.206,0.777,-0.127,-0.617,0.83,0.135,-0.541,0.819,0.101,-0.565,0.715,-0.552,-0.43,-0.035,-0.9,-0.434,0.533,-0.651,-0.54,-0.248,-0.901,0.356,-0.399,-0.901,-0.171,-0.071,-0.935,0.348,-0.908,-0.387,0.161,-0.598,-0.403,0.693,-0.341,-0.678,-0.651,-0.397,-0.855,-0.334,0.338,-0.938,0.076,0.171,-0.746,0.644,0.284,-0.957,0.067,0.115,-0.765,0.634,0.514,-0.857,-0.031,0.379,-0.925,0.002,0.564,-0.824,0.055,0.557,-0.828,-0.07,0.751,-0.555,-0.358,0.973,-0.23,-0.019,0.074,-0.88,0.47,0.323,-0.542,0.776,0.819,-0.414,0.397,0.423,-0.842,0.333,0.846,-0.316,-0.43,0.45,-0.744,-0.494,0.832,-0.505,-0.227,0.772,-0.486,-0.409,0.921,-0.305,-0.244,0.656,-0.752,-0.063,0.564,0.286,-0.775,-0.292,0.235,-0.927,-0.604,-0.191,-0.773,-0.205,-0.912,-0.356,-0.278,0.514,-0.811,-0.191,0.089,-0.978,-0.648,-0.026,-0.761,0.029,-0.011,-1.0,0.464,-0.666,-0.584,0.298,-0.748,-0.593,0.571,-0.08,-0.817,0.576,-0.128,-0.807,0.809,-0.56,-0.182,0.7,-0.605,-0.379,0.983,-0.179,0.032,0.968,-0.249,0.013,0.974,0.214,-0.074,0.794,0.412,0.446,0.991,0.129,-0.036,0.812,0.325,0.485,0.877,0.171,0.448,0.888,-0.377,0.263,0.899,0.189,0.395,0.909,-0.359,0.21,0.192,-0.162,-0.968,0.344,0.337,-0.876,0.394,-0.107,-0.913,0.35,-0.53,-0.772,0.22,-0.848,-0.483,0.032,-0.994,-0.103,-0.177,-0.941,0.29,0.723,0.341,-0.601,0.769,-0.071,-0.635,0.728,-0.464,-0.505,0.609,-0.757,-0.237,0.434,-0.893,0.116,0.241,-0.844,0.48,0.287,0.763,-0.579,0.296,-0.042,-0.954,0.493,-0.501,-0.712,-0.013,-0.782,-0.623,0.329,-0.267,-0.906,-0.177,-0.549,-0.817,0.469,-0.321,-0.823,-0.081,0.167,-0.983,0.101,-0.25,-0.963,0.101,-0.03,-0.994,0.666,-0.466,-0.583,0.071,-0.168,-0.983,-0.499,-0.575,-0.649,0.107,-0.929,-0.355,-0.659,-0.047,-0.751,-0.618,-0.206,-0.759,-0.487,-0.505,-0.713,-0.491,-0.502,-0.712,-0.614,-0.496,-0.614,-0.852,-0.184,-0.49,-0.613,-0.782,0.111,-0.851,-0.47,0.234,-0.435,-0.109,-0.894,-0.541,-0.55,-0.636,-0.481,-0.341,-0.808,-0.489,-0.26,-0.833,-0.165,0.356,-0.92,-0.849,-0.017,-0.528,-0.769,0.348,-0.537,-0.821,0.473,0.318,-0.524,0.711,-0.469,-0.712,0.61,-0.348,-0.782,0.606,0.149,-0.982,0.178,0.063,-0.953,-0.3,0.04,-0.434,0.574,-0.694,-0.606,0.207,-0.768,-0.581,-0.204,-0.788,-0.981,-0.16,-0.114,-0.525,-0.276,-0.805,-0.766,-0.063,-0.639,-0.856,-0.181,-0.484,-0.734,0.25,-0.631,-0.756,0.192,-0.626,-0.493,0.849,-0.188,-0.422,0.707,-0.568,-0.108,0.67,-0.734,-0.518,0.699,-0.493,0.211,0.909,-0.359,0.485,0.574,-0.66,0.624,0.079,-0.777,-0.286,0.766,-0.576,-0.085,0.41,-0.908,0.139,-0.06,-0.988,0.017,0.768,-0.641,-0.472,0.327,-0.818,-0.408,0.883,0.231,0.258,0.832,-0.49,-0.004,0.898,-0.44,0.083,0.876,-0.476,0.213,0.924,-0.318,0.134,0.726,-0.675,0.617,0.722,-0.314,0.544,0.538,-0.644,0.284,0.957,0.064,0.308,0.827,-0.471,0.238,0.446,-0.863,-0.017,0.998,0.056,-0.047,0.876,-0.48,-0.063,0.488,-0.871,0.683,0.69,0.239,-0.277,0.953,0.124,-0.306,0.536,-0.787,0.663,0.302,-0.685,-0.815,0.388,-0.43,-0.84,-0.036,-0.542,-0.757,-0.46,-0.464,-0.587,-0.78,-0.215,-0.19,0.481,-0.856,-0.217,0.023,-0.976,-0.128,-0.434,-0.892,0.055,-0.78,-0.624,-0.367,-0.928,0.067,-0.697,-0.654,-0.296,-0.351,-0.935,0.047,-0.68,-0.661,-0.317,-0.874,-0.476,0.093,-0.745,-0.666,0.012,-0.55,-0.663,-0.508,-0.123,-0.948,-0.293,-0.71,-0.675,-0.201,-0.281,-0.96,0.01,-0.566,-0.758,-0.325,-0.652,-0.722,0.231,0.357,-0.892,-0.277,0.166,-0.903,-0.397,0.807,-0.327,-0.491,0.8,-0.375,-0.468,0.781,-0.622,0.046,0.357,-0.924,0.136,0.736,-0.638,-0.228,0.31,-0.94,-0.143,0.656,-0.752,0.064,0.419,-0.814,-0.402,0.631,-0.702,-0.331,0.422,-0.73,-0.538,-0.106,-0.056,-0.993,-0.56,0.004,-0.828,-0.001,-0.847,-0.531,-0.529,-0.778,-0.339,-0.783,-0.182,-0.595,-0.152,-0.017,-0.988,-0.637,0.106,-0.763,-0.875,-0.243,-0.42,-0.733,0.574,-0.365,-0.972,0.235,-0.014,-0.463,0.419,-0.781,-0.611,0.034,-0.791,0.225,0.141,-0.964,0.087,-0.215,-0.973,-0.557,0.814,-0.165,0.119,0.331,-0.936,-0.263,-0.05,-0.963,-0.569,-0.416,-0.709,-0.196,0.695,-0.692,-0.632,0.377,-0.677,-0.884,-0.052,-0.465,0.02,0.324,-0.946,-0.446,0.487,-0.751,-0.328,0.718,-0.614,-0.596,0.389,-0.702,-0.796,0.017,-0.605,0.238,0.337,-0.911,-0.03,0.008,-1.0,-0.23,-0.365,-0.902,-0.068,0.236,-0.969,-0.521,0.815,-0.254,-0.102,0.915,-0.39,-0.42,0.739,-0.527,-0.709,0.479,-0.518,0.35,0.464,-0.814,0.006,0.274,-0.962,-0.305,-0.007,-0.952,-0.932,-0.182,-0.315,-0.834,-0.517,-0.193,-0.676,-0.246,-0.695,-0.578,-0.582,-0.572,-0.914,0.029,-0.405,-1.0,0.009,0.021,-0.802,-0.423,-0.421,-0.895,-0.445,0.039,0.065,0.693,-0.718,-0.555,0.573,-0.602,0.342,0.533,0.774,-0.283,0.416,0.864,-0.268,0.52,0.811,0.605,0.581,0.545,0.546,0.837,0.035,0.233,0.716,0.658,0.168,0.974,0.15,-0.596,0.123,0.794,-0.706,0.548,0.449,-0.741,0.664,-0.095,-0.687,0.421,-0.593,-0.566,-0.073,-0.821,-0.434,-0.595,-0.676,-0.527,0.527,0.667,-0.603,0.782,0.159,-0.835,0.153,0.529,-0.915,0.402,0.019,-0.529,0.325,-0.783,-0.39,-0.245,-0.888,-0.995,0.082,-0.064,-0.857,-0.489,-0.166,-0.867,0.328,-0.374,-0.71,-0.061,-0.702,-0.925,-0.27,0.267,-0.765,-0.638,-0.084,-0.806,-0.212,-0.553,-0.971,0.001,-0.241,-0.965,0.246,0.091,-0.763,-0.583,-0.279,-0.928,-0.371,0.033,-0.923,-0.125,0.365,-0.707,0.442,0.552,-0.984,0.092,0.153,-0.867,0.43,-0.252,-0.496,0.643,-0.583,-0.805,-0.557,-0.204,-0.655,-0.339,-0.676,-0.313,-0.022,-0.95,0.192,0.205,-0.96,-0.168,0.103,-0.98,-0.554,0.162,-0.816,-0.695,-0.289,-0.658,-0.177,-0.034,-0.984,-0.308,-0.452,-0.837,-0.45,-0.313,-0.837,-0.69,-0.058,-0.721,-0.82,0.227,-0.525,-0.821,0.5,-0.277,-0.607,-0.608,-0.512,-0.847,-0.354,-0.396,-0.977,-0.069,-0.2,-0.978,0.204,0.048,-0.423,0.547,0.723,-0.778,-0.259,0.572,-0.233,-0.014,0.972,-0.416,-0.354,0.837,-0.497,-0.654,0.571,-0.568,0.24,0.788,-0.751,-0.1,0.652,-0.832,-0.4,0.386,-0.23,0.155,0.961,0.018,-0.228,0.974,0.36,-0.477,0.802,-0.551,-0.013,0.835,-0.262,-0.458,0.85,0.135,-0.748,0.65,-0.526,-0.008,0.85,-0.395,0.057,0.917,-0.865,-0.04,0.501,0.183,-0.497,0.848,-0.326,0.088,0.941,-0.185,-0.549,0.815,-0.546,-0.613,0.571,-0.278,-0.436,0.856,-0.351,-0.637,0.686,-0.138,-0.238,0.961,-0.059,-0.452,0.89,0.282,-0.002,0.959,-0.049,-0.029,0.998,0.256,-0.436,0.863,-0.045,-0.025,0.999,0.261,-0.432,0.863,-0.177,0.192,0.965,-0.607,0.387,0.694,-0.313,-0.135,0.94,-0.74,0.066,0.67,-0.385,0.431,0.816,-0.59,0.752,0.294,-0.803,0.54,-0.252,-0.771,0.605,-0.198,0.108,0.961,-0.255,-0.542,0.832,0.119,0.037,0.984,-0.177,-0.352,0.763,-0.542,-0.052,0.995,-0.088,-0.44,0.774,-0.455,0.511,0.828,-0.231,0.505,0.509,-0.697,-0.253,0.919,0.302,-0.604,0.524,0.6,-0.587,-0.405,0.701,-0.613,-0.748,0.253,-0.314,0.066,-0.947,-0.693,-0.359,-0.626,-0.733,-0.274,0.622,-0.846,-0.523,0.109,-0.44,-0.567,0.696,-0.558,-0.81,0.182,-0.714,0.229,0.661,-0.849,-0.194,0.491,-0.94,-0.211,-0.269,-0.95,-0.311,0.036,-0.962,-0.189,-0.197,-0.433,-0.565,0.702,-0.88,-0.385,-0.278,-0.998,-0.019,0.068,-0.846,0.319,0.428,-0.466,0.536,0.704,0.037,0.572,0.819,-0.799,-0.6,0.031,-0.9,-0.286,0.329,-0.769,0.005,0.639,-0.443,0.191,0.876,-0.011,0.222,0.975,-0.408,0.073,0.91,-0.865,-0.009,0.502,-0.302,-0.36,0.882,-0.758,-0.448,0.474,-0.805,-0.466,0.367,-0.301,-0.661,0.687,-0.434,0.699,0.568,0.058,0.468,0.882,-0.921,0.378,0.099,-0.992,-0.118,-0.042,-0.592,0.115,0.798,-0.672,-0.374,0.639,-0.864,0.455,0.218,-0.895,0.351,0.275,-0.749,0.593,0.297,-0.523,0.024,0.852,-0.402,-0.452,0.796,-0.057,-0.768,0.638,0.391,-0.812,0.433,0.646,-0.683,-0.341,-0.97,0.024,-0.244,-0.856,-0.424,-0.296,-0.531,-0.721,-0.445,-0.109,-0.763,-0.638,0.482,-0.359,0.799,0.441,-0.414,0.796,0.548,-0.618,0.564,0.631,-0.775,0.036,-0.289,-0.5,0.817,-0.501,-0.826,0.259,-0.272,-0.51,0.816,-0.485,-0.836,0.259,-0.806,-0.486,-0.338,-0.733,-0.481,-0.481,-0.593,-0.216,-0.776,-0.022,-0.58,-0.814,-0.35,0.052,0.935,0.225,-0.308,0.924,-0.704,-0.162,0.692,-0.407,-0.657,0.635,0.192,0.35,0.917,0.489,-0.145,0.86,-0.121,0.188,0.975,0.254,0.765,0.592,0.814,0.214,0.54,0.398,-0.387,0.832,0.439,0.315,0.841,0.755,0.047,0.655,0.571,0.41,0.712,0.12,0.118,0.986,0.671,0.244,0.7,0.22,-0.048,0.974,-0.243,0.135,0.961,-0.145,0.489,0.86,-0.1,0.779,0.619,0.471,-0.102,0.876,0.576,0.28,0.768,0.625,0.593,0.507,-0.567,0.67,0.479,0.125,0.824,0.553,0.098,0.243,0.965,-0.576,0.031,0.817,0.073,0.444,0.893,-0.196,0.099,0.976,-0.494,0.8,0.34,-0.807,0.4,0.435,-0.216,0.788,0.576,-0.278,0.346,0.896,0.441,0.687,0.578,0.366,0.246,0.897,0.236,0.722,0.651,-0.002,0.247,0.969,0.874,0.232,0.426,0.62,-0.23,0.75,0.74,0.432,0.516,0.415,0.102,0.904,0.939,0.026,0.342,0.611,-0.297,0.733,0.863,0.097,0.495,0.865,0.09,0.493,0.244,0.334,0.91,0.763,-0.326,0.558,0.354,-0.49,0.796,-0.14,-0.576,0.805,0.546,0.381,0.746,0.195,0.24,0.951,-0.23,0.166,0.959,0.212,0.74,0.639,-0.386,0.657,0.648,0.791,0.155,0.592,0.392,-0.552,0.736,-0.206,-0.635,0.745,-0.786,-0.064,0.615,0.554,0.139,0.821,0.048,0.492,0.869,0.006,-0.684,0.73,-0.52,-0.36,0.774,-0.745,0.106,0.659,-0.065,0.527,0.847,0.418,0.38,0.825,0.732,-0.342,0.589,-0.375,-0.598,0.708,0.04,-0.724,0.689,0.073,-0.539,0.839,0.098,-0.194,0.976,0.076,0.176,0.981,0.012,0.519,0.855,0.512,-0.511,0.69,0.537,-0.167,0.827,0.515,0.204,0.832,0.451,0.547,0.706,0.321,0.719,0.616,0.676,0.577,0.459,0.906,0.386,0.175,0.277,0.35,0.895,0.66,0.196,0.725,0.908,-0.01,0.418,-0.264,0.265,0.927,0.273,0.625,0.731,0.304,0.903,0.303,0.327,0.369,0.87,0.385,0.511,0.768,0.811,-0.424,0.404,-0.131,-0.191,0.973,-0.003,-0.678,0.735,0.88,0.369,0.298,0.989,-0.128,0.073,0.046,0.483,0.874,0.558,-0.246,0.792,0.556,0.404,0.726,0.533,0.243,0.81,-0.033,-0.004,0.999,0.58,-0.049,0.813,0.337,0.017,0.941,0.035,-0.456,0.889,0.491,-0.073,0.868,0.19,-0.547,0.815,-0.063,0.696,0.715,-0.125,0.438,0.89,0.055,0.639,0.767,-0.026,0.523,0.852,0.192,0.578,0.793,-0.204,0.831,0.517,0.116,0.518,0.848,-0.282,0.77,0.573,-0.208,0.478,0.853,0.046,0.063,0.997,0.372,-0.307,0.876,0.672,-0.52,0.527,-0.781,0.048,0.622,-0.528,-0.367,0.766,-0.202,-0.737,0.645,0.098,-0.95,0.296,0.739,-0.536,0.409,0.791,-0.115,0.6,0.597,0.279,0.752,0.212,0.532,0.82,-0.251,0.568,0.784,0.891,-0.206,-0.403,0.949,0.248,-0.197,0.739,0.673,-0.034,0.323,0.946,0.04,-0.176,0.984,0.001,-0.771,0.062,0.634,-0.563,-0.469,0.68,-0.293,0.763,0.576,0.539,0.589,0.602,0.759,0.062,0.648,0.279,-0.65,0.707,0.436,0.47,0.768,0.529,-0.198,0.825,0.513,0.476,0.714,0.607,-0.191,0.771,-0.306,0.71,0.634,-0.68,0.225,0.698,0.748,0.53,0.399,0.898,-0.226,-0.378,0.568,-0.744,-0.352,-0.14,-0.805,0.577,0.925,-0.377,0.043,0.57,-0.817,-0.09,0.931,-0.366,-0.009,0.575,-0.805,-0.144,0.912,-0.358,0.199,0.564,-0.8,0.207,0.911,-0.364,-0.194,0.563,-0.805,-0.186,0.889,-0.458,-0.003,0.859,-0.484,-0.166,0.871,-0.472,0.134,0.865,-0.491,0.101,0.771,-0.579,0.265,0.497,-0.749,-0.438,0.976,0.16,-0.145,0.818,0.521,-0.243,0.545,0.818,-0.185,0.498,-0.272,-0.823,0.314,0.148,-0.938,-0.004,0.492,-0.87,0.768,0.602,0.218,0.828,0.521,-0.208,0.66,0.599,-0.453,0.762,0.123,-0.636,0.847,0.361,0.39,0.965,-0.193,0.178,0.691,0.013,-0.723,0.676,-0.637,-0.37,0.607,-0.791,0.07,0.463,-0.498,0.734,0.962,0.268,-0.049,0.882,0.089,0.463,0.941,-0.023,-0.338,0.814,-0.139,-0.564,0.923,0.022,-0.384,0.907,-0.023,-0.421,0.912,0.075,-0.403,0.977,-0.21,0.028,0.743,-0.285,-0.606,0.815,-0.555,-0.167,0.982,0.164,0.098,0.741,-0.305,-0.599,0.97,0.146,0.196,0.839,-0.338,0.427,0.94,-0.097,-0.327,0.809,-0.58,-0.095,0.78,-0.316,-0.54,0.58,-0.71,-0.401,0.696,-0.662,-0.278,0.698,-0.615,-0.367,0.716,-0.611,0.337,0.708,-0.632,0.316,0.917,-0.047,0.396,0.551,0.163,0.819,0.872,-0.214,0.441,0.507,-0.0,0.862,0.078,-0.254,0.964,0.268,-0.219,0.938,0.243,-0.963,0.118,0.842,-0.53,0.097,0.585,-0.748,0.314,0.334,-0.935,-0.119,0.95,0.031,0.312,0.783,0.468,-0.41,0.525,0.237,-0.817,0.233,-0.525,-0.818,0.897,0.266,-0.352,0.697,-0.115,-0.707,0.097,0.838,-0.537,-0.09,0.448,-0.889,0.307,0.95,-0.055,-0.16,0.961,0.226,0.948,0.261,0.18,0.582,-0.517,0.628,0.105,-0.455,0.884,-0.347,0.341,0.874,0.908,0.039,0.417,0.685,0.494,0.535,0.747,-0.098,0.658,0.53,0.361,0.768,-0.084,0.371,0.925,0.345,0.103,0.933,-0.082,0.897,0.435,0.44,0.845,0.305,-0.102,0.935,0.34,0.419,0.883,0.209,-0.236,0.673,0.701,-0.587,-0.158,0.794,-0.147,0.081,0.986,-0.392,-0.399,0.829,0.613,-0.232,0.756,0.367,-0.712,0.598,0.308,0.032,0.951,-0.137,-0.267,0.954,-0.543,-0.489,0.683,0.333,-0.004,0.943,-0.107,-0.31,0.945,-0.517,-0.527,0.674,-0.651,-0.3,0.697,0.127,-0.735,0.666,-0.368,0.154,0.917,0.028,-0.688,0.725,0.085,-0.966,0.245,0.368,-0.9,-0.232,0.285,-0.255,-0.924,-0.977,-0.015,0.212,-0.921,-0.289,-0.262,-0.642,-0.225,-0.733,0.417,-0.866,-0.274,-0.245,-0.554,-0.796,0.521,-0.543,-0.659,0.208,-0.792,-0.575,0.424,-0.458,-0.781,0.846,-0.362,-0.391,0.323,-0.734,-0.597,0.748,-0.628,-0.214,0.695,0.063,-0.716,0.96,0.055,-0.275,0.865,0.145,-0.48,0.9,-0.366,-0.236,0.19,0.446,-0.875,-0.443,-0.104,-0.891,-0.433,-0.619,-0.655,0.254,-0.935,-0.246,-0.126,-0.736,-0.665,-0.292,-0.665,-0.687,0.228,-0.799,-0.557,-0.57,-0.29,-0.769,-0.869,0.055,-0.491,-0.816,0.405,0.412,-0.172,-0.918,0.357,-0.52,-0.517,0.68,-0.983,0.06,-0.176,-0.628,0.343,0.699,-0.987,0.085,-0.139,-0.803,0.25,0.541,-0.617,-0.442,0.651,-0.806,-0.592,-0.018,-0.697,-0.717,-0.014,-0.421,-0.604,0.677,0.036,-0.494,0.869,0.722,-0.375,0.581,0.002,-0.991,-0.134,0.477,-0.877,0.065,0.141,-0.323,0.936,0.598,-0.501,0.625,0.191,-0.228,0.955,0.648,-0.406,0.644,-0.93,0.025,0.367,-0.917,-0.329,0.227,-0.664,0.004,0.747,-0.284,-0.365,0.887,-0.857,-0.514,-0.032,-0.499,-0.861,0.099,0.41,-0.817,0.405,0.44,-0.888,-0.136,0.32,-0.703,-0.636,0.086,-0.317,-0.944,-0.017,-0.932,0.361,0.009,-0.994,-0.11,-0.096,-0.832,-0.546,-0.299,-0.496,-0.815,-0.116,-0.889,-0.443,-0.346,-0.544,-0.764,0.514,-0.615,-0.598,0.284,-0.271,-0.92,0.317,-0.811,-0.492,0.036,-0.663,-0.747,-0.2,-0.371,-0.907,-0.343,0.009,-0.939,-0.368,0.403,-0.838,-0.227,-0.974,0.012,-0.508,-0.826,-0.244,-0.743,-0.534,-0.403,-0.887,-0.154,-0.435,-0.911,0.24,-0.334,-0.114,0.968,-0.223,-0.332,0.666,-0.668,-0.163,0.954,-0.251,-0.567,0.236,-0.789,-0.477,-0.343,-0.809,0.131,-0.94,-0.315,0.688,0.471,-0.552,0.793,-0.203,-0.575,0.41,0.83,-0.378,-0.332,0.631,-0.701,-0.017,1.0,-0.011,0.223,0.801,-0.556,-0.126,0.948,-0.291,0.133,0.973,0.187,0.077,0.452,-0.889,0.752,0.084,-0.654,0.977,0.142,-0.162,0.717,0.546,0.433,0.76,0.284,-0.585,0.841,-0.467,-0.273,0.965,0.102,-0.24,0.843,-0.256,-0.472,0.552,-0.556,-0.622,0.149,-0.738,-0.659,0.978,-0.162,0.129,0.865,-0.494,-0.087,0.595,-0.771,-0.225,0.222,-0.94,-0.26,0.707,-0.697,0.117,0.025,-0.937,0.347,0.424,-0.889,-0.171,0.819,-0.57,-0.058,-0.306,-0.877,0.37,-0.692,-0.403,0.599,-0.707,0.5,0.5,-0.267,0.765,0.587,0.804,-0.019,0.594,0.472,0.389,0.791,-0.603,0.214,0.768,-0.552,0.542,0.634,-0.7,0.713,-0.022,-0.802,-0.237,0.549,-0.843,0.531,0.083,-0.425,0.903,-0.067,0.137,0.883,-0.448,-0.142,0.897,0.418,-0.098,0.994,-0.041,0.303,0.932,-0.198,0.601,0.691,-0.401,0.726,0.327,-0.604,0.649,-0.072,-0.758,0.386,-0.412,-0.825,0.157,0.639,0.753,0.558,0.577,0.597,0.856,0.336,0.393,0.981,-0.028,0.19,0.904,-0.427,0.037,0.641,-0.767,-0.031,0.526,-0.539,-0.657,0.894,-0.307,-0.327,0.365,-0.898,-0.244,0.726,-0.68,0.103,0.739,-0.673,0.02,0.526,-0.811,0.255,0.795,-0.603,0.066,0.431,-0.302,-0.85,0.769,-0.238,-0.593,0.161,0.168,-0.973,-0.45,-0.362,-0.817,0.19,-0.772,-0.606,-0.405,-0.457,-0.791,-0.225,-0.842,-0.49,-0.064,-0.998,-0.019,0.437,-0.183,-0.881,0.591,-0.514,-0.621,0.73,-0.648,-0.217,0.597,-0.784,0.169,0.712,-0.425,0.559,0.344,-0.149,-0.927,0.362,-0.572,-0.736,0.883,0.106,-0.457,0.902,-0.351,-0.251,0.629,0.193,-0.753,0.719,-0.219,-0.66,0.636,-0.603,-0.481,0.396,-0.882,-0.255,0.916,0.392,-0.082,1.0,0.01,0.005,0.923,-0.346,0.17,0.701,-0.604,0.38,0.395,0.894,-0.211,0.443,0.668,-0.598,0.26,0.749,-0.609,0.623,0.707,-0.334,0.523,-0.1,-0.846,0.376,-0.577,-0.725,0.97,-0.039,-0.241,0.799,-0.594,-0.1,0.437,0.822,-0.365,-0.041,0.89,-0.455,0.429,0.598,-0.677,0.018,0.656,-0.754,-0.178,0.502,-0.846,0.2,0.131,-0.971,-0.523,0.141,-0.84,-0.139,-0.222,-0.965,-0.314,0.491,-0.812,0.223,0.366,-0.904,-0.335,0.423,-0.842,0.203,0.3,-0.932,-0.553,-0.192,-0.811,-0.01,-0.3,-0.954,0.505,-0.436,-0.745,0.795,-0.546,-0.264,0.748,-0.589,0.304,-0.449,-0.084,-0.89,0.093,-0.187,-0.978,-0.493,-0.592,-0.637,0.05,-0.676,-0.735,-0.54,0.029,-0.841,-0.357,-0.262,-0.897,0.387,-0.109,-0.916,-0.367,-0.486,-0.793,-0.108,-0.466,-0.878,-0.23,-0.465,-0.855,0.118,-0.579,-0.807,0.385,-0.828,-0.407,0.054,-0.615,-0.786,0.32,-0.865,-0.386,0.095,-0.97,-0.222,0.263,-0.834,-0.485,0.787,-0.611,0.082,0.6,-0.73,0.326,-0.127,-0.978,-0.166,0.463,-0.836,-0.295,0.328,-0.927,0.184,0.326,-0.875,-0.356,0.862,-0.453,0.227,0.861,-0.401,-0.313,0.963,-0.005,0.269,0.961,0.047,-0.271,0.958,0.073,0.276,0.957,0.124,-0.264,0.91,-0.346,0.229,0.751,-0.543,-0.376,0.931,-0.301,0.208,0.772,-0.497,-0.397,0.861,0.262,0.435,0.877,-0.445,-0.182,0.999,-0.009,0.036,0.827,-0.557,-0.077,0.643,0.258,-0.721,0.471,-0.289,-0.833,0.691,0.341,-0.638,0.536,-0.061,-0.842,0.178,-0.367,-0.913,-0.275,-0.487,-0.829,0.934,0.134,-0.331,0.757,-0.327,-0.566,0.347,-0.679,-0.647,-0.174,-0.817,-0.551,0.157,-0.213,-0.964,0.514,-0.496,-0.7,-0.06,-0.43,-0.901,0.301,-0.709,-0.638,0.141,-0.837,-0.529,-0.511,-0.644,-0.57,0.54,0.337,-0.772,-0.101,0.564,-0.82,0.606,-0.041,-0.795,0.414,-0.393,-0.821,0.129,-0.663,-0.737,-0.2,-0.805,-0.558,0.87,-0.212,-0.444,0.679,-0.563,-0.471,0.394,-0.833,-0.387,0.065,-0.976,-0.208,0.743,0.635,-0.211,0.42,0.902,0.099,0.21,0.582,-0.786,-0.16,0.888,-0.43,0.219,0.975,0.028,0.024,1.0,-0.012,0.139,0.981,-0.134,0.294,0.673,-0.678,-0.413,0.88,-0.234,-0.258,0.572,-0.779,-0.36,0.929,-0.082,-0.816,0.456,0.356,-0.981,-0.16,-0.11,-0.685,0.406,-0.605,-0.698,0.484,-0.528,-0.687,-0.262,-0.677,0.029,0.091,-0.995,-0.245,0.453,-0.857,-0.669,0.702,-0.243,-0.848,0.516,0.124,-0.765,0.054,-0.641,-0.958,-0.147,-0.244,-0.741,0.67,-0.044,-0.917,-0.111,-0.383,-0.78,0.456,-0.428,-0.988,0.046,-0.145,-0.262,0.814,0.519,-0.48,0.396,0.783,-0.343,0.534,0.772,-0.845,0.503,0.181,-0.307,0.487,0.818,-0.037,0.842,0.538,-0.804,0.498,0.326,-0.52,0.852,0.061,-0.991,0.12,0.057,-0.904,0.123,-0.41,-0.422,0.897,0.133,-0.347,0.899,-0.268,-0.198,0.929,0.314,-0.856,0.503,-0.118,-0.849,0.249,-0.466,-0.782,-0.153,-0.605,-0.025,-0.585,-0.81,0.453,0.836,-0.311,0.461,0.562,-0.686,0.534,0.128,-0.836,0.036,-0.091,-0.995,-0.033,-0.266,-0.963,-0.055,0.981,-0.184,-0.457,0.586,0.669,-0.24,0.739,0.63,-0.669,0.653,0.355,0.131,0.991,0.01,-0.333,0.899,-0.286,-0.834,0.55,-0.042,-0.363,0.908,0.209,0.161,-0.046,-0.986,0.615,0.323,-0.719,0.401,0.59,-0.701,0.588,0.078,-0.805,-0.202,0.979,0.037,-0.595,0.74,-0.312,-0.491,0.516,0.702,-0.891,0.268,0.368,-0.443,0.592,0.673,-0.834,0.423,0.354,-0.989,0.135,-0.066,-0.447,0.572,0.688,-0.838,0.399,0.372,-0.992,0.114,-0.05,-0.436,0.817,0.378,-0.738,0.347,0.579,-0.513,0.478,0.713,-0.797,0.523,0.303,0.013,0.918,0.397,-0.271,0.962,-0.014,-0.767,0.3,-0.567,-0.473,0.147,-0.869,-0.52,0.679,-0.519,-0.226,0.525,-0.82,-0.375,0.494,-0.785,-0.505,-0.351,-0.788,0.254,-0.717,-0.649,0.399,0.105,-0.911,-0.394,0.757,-0.521,-0.601,-0.094,-0.793,-0.793,0.335,-0.508,-0.912,-0.373,0.171,-0.607,0.391,-0.692,-0.886,0.33,-0.328,-0.195,0.805,0.561,-0.693,0.662,0.283,-0.232,0.69,0.685,-0.73,0.548,0.408,0.724,0.584,0.366,0.905,0.415,-0.093,-0.073,0.889,0.452,-0.592,0.775,-0.222,-0.411,0.605,-0.681,0.42,0.427,-0.801,-0.355,0.928,-0.112,-0.894,0.448,0.031,-0.992,0.002,-0.124,-0.663,-0.459,-0.592,-0.284,0.586,-0.759,-0.383,0.14,-0.913,-0.415,0.841,-0.348,-0.721,0.689,-0.075,-0.852,0.449,0.268,-0.531,0.241,-0.812,-0.838,0.089,-0.539,-0.969,-0.15,-0.196,-0.917,0.399,0.006,-0.869,0.149,-0.472,-0.894,-0.268,0.358,-0.846,-0.519,-0.12,-0.916,0.362,0.172,-0.998,-0.053,0.034,-0.478,-0.353,0.805,0.135,-0.124,0.983,-0.709,0.565,0.422,-0.096,0.794,0.601,0.815,0.519,0.259,0.741,0.599,0.305,0.89,0.432,0.145,0.377,0.903,0.206,-0.147,0.923,-0.356,0.902,0.192,-0.388,0.308,0.614,-0.726,0.695,0.568,-0.441,0.839,-0.002,-0.544,0.296,0.532,-0.793,0.439,-0.038,-0.898,0.413,0.463,-0.784,-0.194,0.422,-0.886,0.705,0.69,-0.163,0.248,0.936,-0.249,-0.273,0.91,-0.313,-0.71,0.619,-0.336,-0.939,0.146,-0.312,-0.894,-0.374,-0.249,0.654,0.551,-0.518,0.262,0.763,-0.591,-0.186,0.74,-0.646,-0.562,0.49,-0.666,-0.759,0.084,-0.646,-0.72,-0.363,-0.591,0.534,0.268,-0.802,-0.626,0.218,-0.749,-0.605,0.762,0.232,0.555,0.812,0.178,0.709,0.324,-0.626,0.414,0.715,-0.564,0.482,0.841,-0.246,0.125,0.869,-0.479,-0.293,0.795,-0.531,-0.665,0.638,-0.39,-0.895,0.437,-0.09,-0.925,0.245,0.291,0.654,0.589,-0.476,0.238,0.621,-0.747,-0.248,0.535,-0.807,-0.68,0.352,-0.643,-0.948,0.119,-0.294,-0.983,-0.105,0.149,0.54,0.517,-0.664,0.494,0.804,0.331,0.083,0.584,0.807,-0.667,-0.128,0.734,-0.472,0.689,-0.549,-0.878,0.472,-0.08,-0.589,0.517,0.621,-0.571,0.812,0.124,-0.449,0.777,-0.441,0.002,0.999,-0.05,-0.261,0.894,0.363,-0.311,0.582,0.751,-0.523,0.68,-0.514,-0.829,0.559,-0.033,-0.887,0.195,0.418,-0.585,0.492,0.645,-0.794,0.607,0.044,-0.726,0.235,0.646,-0.938,0.345,0.045,-0.597,-0.098,0.796,-0.666,0.673,0.322,-0.956,-0.253,-0.148,-0.833,-0.155,-0.531,-0.55,-0.099,-0.829,-0.165,-0.097,-0.982,-0.982,0.184,-0.027,-0.85,0.29,-0.441,-0.545,0.35,-0.762,-0.129,0.353,-0.927,-0.877,-0.261,-0.404,-0.514,-0.341,-0.787,-0.744,0.485,-0.46,-0.407,0.412,-0.815,-0.653,0.757,-0.029,-0.808,-0.31,0.501,-0.757,-0.126,0.641,-0.539,-0.616,0.575,-0.768,-0.488,0.415,-0.436,-0.638,0.635,-0.035,-0.628,0.778,-0.664,-0.744,0.07,-0.319,-0.899,0.3,0.098,-0.889,0.447,-0.95,0.269,-0.158,-0.952,-0.007,0.305,-0.883,0.467,-0.042,-0.884,0.194,0.424,-0.752,0.655,-0.08,-0.719,0.599,0.353,-0.532,0.447,0.719,-0.229,0.228,0.946,0.133,-0.015,0.991,0.482,-0.235,0.844,-0.954,0.282,-0.104,-0.922,0.228,0.313,-0.743,0.082,0.665,-0.451,-0.129,0.883,-0.103,-0.363,0.926,0.233,-0.574,0.785,-0.982,0.065,0.177,-0.593,0.685,-0.424,0.045,0.976,0.212,-0.359,0.372,0.856,0.193,0.957,-0.217,0.498,0.866,0.044,0.747,0.614,0.255,-0.082,0.991,0.105,0.235,0.896,0.376,0.494,0.635,0.595,0.386,0.695,0.607,0.724,-0.222,0.653,-0.159,-0.63,0.76,-0.493,0.298,0.817,0.197,0.628,0.753,-0.105,0.994,0.033,0.49,0.7,-0.518,0.858,0.462,0.224,0.321,0.936,-0.143,0.366,0.912,-0.184,0.007,1.0,0.02,0.046,0.803,0.595,0.328,0.945,-0.021,0.367,0.747,0.554,-0.313,0.942,-0.123,-0.646,0.65,0.4,0.961,0.166,0.22,0.649,-0.138,0.749,0.622,0.783,0.025,0.124,0.912,0.392,0.827,0.334,0.453,0.332,0.456,0.826,0.942,0.312,-0.121,0.63,0.718,-0.296,0.78,-0.101,0.618,0.324,-0.306,0.895,-0.527,-0.352,0.773,-0.811,0.068,0.581,-0.052,0.993,0.106,-0.474,0.803,0.363,0.584,0.79,0.187,0.691,0.718,0.079,0.468,0.857,-0.217,0.163,0.98,0.114,0.617,0.554,-0.559,0.31,0.168,-0.936,0.204,0.962,0.184,-0.66,0.643,0.388,-0.966,0.257,0.012,-0.598,-0.049,-0.8,-0.523,0.797,0.302,-0.801,0.591,-0.095,-0.524,0.796,0.304,-0.802,0.59,-0.093,-0.593,0.682,0.428,-0.376,0.876,-0.302,-0.468,0.801,-0.374,-0.649,0.644,0.404,-0.195,0.981,0.018,-0.345,0.808,-0.478,-0.541,0.822,0.175,-0.685,0.653,-0.324,-0.841,0.305,-0.446,-0.725,0.633,-0.271,-0.727,0.538,-0.426,-0.962,0.268,-0.05,-0.718,0.572,-0.396,-0.953,0.302,-0.021,-0.178,0.277,-0.944,-0.204,0.192,-0.96,0.319,0.571,-0.757,0.246,0.891,-0.381,-0.442,0.466,-0.767,-0.504,0.741,-0.444,-0.155,0.865,0.478,-0.469,0.537,0.702,-0.694,0.083,0.715,-0.772,-0.375,0.514,-0.68,-0.717,0.152,-0.424,0.882,0.206,-0.694,0.6,0.399,-0.888,0.21,0.41,-0.954,-0.184,0.237,-0.875,-0.478,-0.074,-0.056,0.957,0.285,0.086,0.774,0.627,0.25,0.466,0.848,-0.481,0.793,0.374,-0.34,0.61,0.716,-0.175,0.303,0.937,-0.615,0.363,-0.7,-0.958,0.195,-0.21,-0.605,0.431,-0.67,-0.948,0.263,-0.18,0.217,0.959,0.183,-0.081,0.695,0.715,0.164,0.136,0.977,0.016,0.999,-0.039,-0.327,0.831,0.45,0.136,0.99,0.041,-0.207,0.822,0.531,-0.063,0.908,-0.414,0.17,0.888,0.426,0.135,0.563,0.816,-0.386,0.678,0.625,0.009,0.247,0.969,-0.512,0.363,0.778,-0.991,0.004,0.134,-0.951,-0.034,0.306,-0.999,0.032,0.043,-0.975,-0.075,0.208,-0.973,-0.117,-0.2,-0.95,0.294,-0.101,-0.751,0.66,-0.023,-0.948,-0.221,0.228,-0.926,0.19,0.327,-0.727,0.555,0.405,0.662,0.213,0.718,0.109,0.924,0.367,-0.066,0.718,0.693,-0.192,0.375,0.907,-0.281,0.944,0.17,-0.456,0.738,0.497,-0.582,0.395,0.711,-0.512,0.456,0.728,-0.569,-0.401,0.718,-0.907,-0.415,-0.072,-0.9,0.435,-0.03,-0.701,0.436,0.564,-0.228,0.891,0.394,0.204,0.564,0.8,-0.263,0.093,0.96,0.211,0.668,0.714,0.238,0.347,0.907,0.264,-0.022,0.964,0.286,-0.386,0.877,-0.255,0.637,0.728,-0.228,0.317,0.921,-0.202,-0.053,0.978,-0.181,-0.417,0.891,-0.118,-0.575,0.81,-0.537,-0.403,0.741,-0.856,-0.218,0.468,-0.996,-0.066,0.059,0.037,-0.175,0.984,-0.416,0.01,0.909,-0.76,0.21,0.615,-0.911,0.374,0.174,-0.064,0.559,0.826,0.508,0.684,0.524,0.305,0.661,0.686,0.823,0.436,0.364,0.773,0.578,0.264,0.83,0.225,0.51,0.776,-0.196,0.6,0.125,0.745,0.655,0.183,0.392,0.901,0.128,-0.028,0.991,0.467,0.588,0.66,0.738,0.636,0.227,0.032,0.883,0.468,0.694,0.546,0.469,0.821,0.453,0.347,0.832,0.043,0.554,0.182,0.653,0.735,0.193,0.211,0.958,0.013,0.988,0.157,0.163,0.906,0.392,0.043,0.933,0.356,-0.508,0.7,0.501,0.093,0.881,0.463,-0.458,0.648,0.608,-0.909,0.408,-0.079,-0.695,0.38,-0.611,-0.337,0.936,0.101,-0.138,0.909,-0.392,-0.569,-0.147,-0.809,-0.91,-0.31,-0.275,-0.622,0.4,-0.673,-0.963,0.232,-0.14,-0.875,-0.22,-0.432,-0.534,-0.023,-0.845,-0.759,-0.503,-0.414,-0.47,0.862,0.19,-0.695,0.375,0.613,-0.027,0.994,0.109,0.0,0.855,0.518,0.051,0.558,0.828,0.115,0.158,0.981,-0.439,0.892,0.11,-0.413,0.759,0.504,-0.364,0.473,0.803,-0.302,0.088,0.949,-0.756,0.639,0.141,-0.816,0.212,0.538,-0.613,0.741,0.273,-0.673,0.315,0.669,-0.858,0.513,-0.011,-0.057,0.958,0.282,0.455,0.761,0.462,0.808,-0.127,0.575,-0.655,-0.079,0.752,-0.089,-0.297,0.951,0.44,0.796,0.415,0.274,-0.051,0.96,0.283,0.518,0.807,-0.456,0.026,0.89,-0.249,0.249,0.936,-0.251,0.246,0.936,-0.291,0.464,0.837,0.274,0.422,0.864,0.084,0.468,0.88,0.278,-0.108,0.954,0.254,0.517,0.818,0.448,-0.059,0.892,-0.581,0.498,0.644,0.311,-0.225,0.923,-0.159,-0.032,0.987,0.172,-0.079,0.982,0.039,0.059,0.998,-0.157,-0.474,0.866,0.654,-0.099,0.75,0.47,-0.635,0.614,-0.562,-0.546,0.622,-0.726,-0.143,0.673,-0.761,0.284,0.583,-0.66,0.653,0.371,-0.2,-0.415,0.888,-0.353,-0.041,0.935,-0.385,0.354,0.852,-0.291,0.697,0.655,0.403,0.797,0.449,0.283,0.308,0.908,0.879,0.437,0.193,0.755,-0.05,0.654,0.692,0.701,0.169,0.591,0.48,0.648,0.319,0.12,0.94,0.985,0.124,-0.121,0.931,-0.191,0.311,0.608,-0.45,0.653,0.567,0.78,-0.265,0.086,0.981,0.171,0.577,-0.671,0.465,0.096,-0.447,0.89,0.186,0.758,0.626,0.733,0.486,0.476,0.194,0.829,0.525,0.741,0.557,0.375,-0.337,0.33,0.882,-0.118,-0.236,0.964,-0.168,0.399,0.902,0.052,-0.167,0.985,0.204,0.159,0.966,0.319,-0.242,0.916,-0.536,-0.03,0.843,-0.417,-0.446,0.792,-0.061,0.501,0.863,0.242,0.143,0.96,0.529,-0.214,0.821,-0.411,0.211,0.887,-0.108,-0.147,0.983,0.179,-0.504,0.845,-0.276,0.619,0.735,0.151,0.67,0.727,0.545,0.628,0.556,-0.226,0.231,0.946,0.202,0.282,0.938,0.595,0.239,0.767,0.338,0.793,0.507,0.338,0.448,0.828,0.315,0.643,0.698,0.615,-0.284,0.735,-0.244,-0.731,0.637,-0.581,0.202,0.788,0.217,0.811,0.543,0.71,0.568,0.416,0.972,0.115,0.207,0.917,-0.4,-0.016,0.563,-0.807,-0.18,0.201,0.546,0.814,0.625,0.337,0.704,0.85,-0.053,0.524,0.803,-0.495,0.332,0.499,-0.845,0.192,0.401,0.599,0.693,-0.21,0.966,0.148,0.389,0.778,-0.494,0.95,0.309,0.037,0.151,0.977,0.153,0.531,0.648,0.546,0.312,0.95,-0.026,0.693,0.621,0.366,-0.057,0.998,0.034,0.221,0.888,0.403,0.55,0.598,0.583,0.827,0.218,0.519,0.964,-0.132,0.229,0.92,-0.342,-0.194,-0.385,0.901,0.202,-0.062,0.773,0.631,0.321,0.436,0.841,0.643,-0.006,0.766,0.803,-0.413,0.43,0.751,-0.657,-0.062,0.966,0.188,0.177,0.45,0.482,0.752,0.113,0.977,0.182,0.622,0.675,-0.396,0.346,0.893,0.29,0.313,0.91,0.273,0.403,0.797,0.45,0.694,0.718,0.046,0.776,0.492,-0.396,0.628,0.366,0.686,0.91,0.29,0.296,0.989,0.071,-0.131,0.934,0.089,0.346,0.4,0.653,-0.643,0.911,0.079,-0.404,0.861,0.378,0.341,0.304,0.945,0.122,-0.001,0.938,0.346,-0.005,0.551,0.835,0.548,0.699,-0.458,0.825,-0.264,-0.5,0.792,-0.61,0.018,0.462,-0.276,0.843,0.606,-0.141,0.783,0.949,-0.245,0.197,0.399,0.769,0.5,0.742,0.664,-0.086,-0.305,0.03,0.952,0.276,0.405,0.872,0.632,-0.181,0.753,0.045,-0.571,0.819,0.787,-0.02,0.617,0.829,-0.356,0.431,0.768,-0.621,0.157,0.612,-0.773,-0.164,0.436,-0.206,0.876,0.479,-0.543,0.69,0.417,-0.808,0.415,0.262,-0.96,0.095,0.624,0.027,0.781,0.305,-0.409,0.86,0.942,-0.325,0.083,0.627,-0.763,0.155,0.935,-0.215,0.283,0.638,-0.583,0.503,0.856,0.013,-0.517,0.207,-0.323,-0.924,-0.097,-0.692,-0.716,0.042,-0.997,0.063,0.173,-0.724,-0.668,-0.004,-0.547,-0.837,0.108,-0.661,-0.742,-0.338,-0.899,-0.278,-0.488,0.214,-0.846,-0.924,-0.038,-0.38,-0.414,0.055,-0.908,-0.443,0.112,-0.889,0.158,0.216,-0.964,0.136,-0.025,-0.99,-0.178,0.488,-0.854,0.176,0.795,-0.581,0.478,0.868,-0.136,-0.01,0.353,-0.936,0.37,0.639,-0.675,0.642,0.736,-0.215,-0.196,0.61,-0.768,0.089,0.965,-0.249,0.06,0.525,-0.849,0.341,0.881,-0.329,0.295,0.953,-0.067,0.144,0.855,-0.498,0.687,0.711,-0.149,0.537,0.613,-0.58,0.332,0.77,-0.544,0.657,0.742,-0.134,0.571,0.004,-0.821,0.906,-0.053,-0.421,-0.099,0.455,-0.885,0.101,0.563,-0.82,-0.216,0.093,-0.972,-0.712,0.041,-0.701,0.491,0.664,-0.565,0.476,0.77,0.425,-0.019,0.718,0.696,-0.836,0.524,0.16,-0.729,0.526,-0.437,-0.532,0.205,-0.821,-0.512,0.641,-0.572,-0.072,0.939,-0.337,0.388,0.856,-0.342,-0.114,0.991,-0.07,0.331,0.943,-0.022,0.337,0.783,-0.523,0.227,0.973,-0.033,0.235,0.813,-0.534,0.794,0.483,0.37,0.804,0.545,0.239,0.232,0.593,0.771,0.563,0.802,0.201,0.946,0.227,0.231,0.613,0.032,0.789,0.802,0.003,0.597,0.19,0.514,0.836,0.404,0.905,0.133,0.931,0.314,-0.187,0.55,0.65,0.525,0.523,0.81,0.268,0.176,0.543,0.821,0.652,0.571,0.498,-0.332,0.939,0.091,0.149,0.963,-0.225,-0.865,0.459,-0.202,-0.832,0.555,-0.016,-0.416,0.888,0.196,-0.252,0.759,0.601,-0.917,0.321,0.237,-0.765,0.202,0.612,-0.769,0.639,0.01,-0.802,0.42,0.425,-0.112,0.782,0.614,0.158,0.91,0.385,0.38,0.922,0.081,0.521,0.816,-0.251,0.56,0.608,-0.562,0.492,0.33,-0.806,0.325,0.022,-0.945,0.206,0.508,0.836,0.476,0.636,0.607,0.698,0.648,0.303,0.84,0.543,-0.029,0.879,0.335,-0.34,0.81,0.057,-0.584,0.644,-0.251,-0.723,0.519,0.066,-0.852,0.241,0.352,-0.905,-0.049,0.606,-0.794,-0.303,0.786,-0.539,-0.477,0.86,-0.184,-0.54,0.815,0.211,0.188,-0.273,-0.944,-0.09,0.013,-0.996,-0.381,0.268,-0.885,-0.635,0.447,-0.63,-0.808,0.521,-0.275,-0.871,0.477,0.119,-0.79,0.612,-0.032,-0.243,0.961,-0.13,-0.505,-0.128,-0.853,0.051,0.196,-0.979,-0.665,0.067,-0.744,-0.223,0.504,-0.834,-0.327,-0.311,-0.892,0.122,0.118,-0.985,-0.434,-0.3,-0.849,-0.361,-0.364,-0.859,0.002,0.98,-0.198,-0.279,0.454,-0.846,-0.12,0.939,0.323,0.34,0.726,0.598,0.265,0.884,-0.385,0.731,0.671,-0.125,0.613,0.764,0.201,-0.046,0.894,-0.445,0.087,0.147,-0.985,0.879,0.133,-0.459,0.652,0.678,0.339,0.437,0.895,-0.09,0.299,0.771,0.563,0.084,0.987,0.134,0.91,0.045,0.413,0.243,0.855,0.457,-0.16,0.844,-0.513,0.738,0.274,-0.616,0.02,0.93,0.366,0.398,0.64,0.657,0.265,0.961,0.084,0.638,0.67,0.38,-0.313,0.88,0.357,-0.319,0.478,0.818,0.484,0.804,-0.345,0.85,-0.184,-0.494,0.823,-0.567,-0.017,0.42,-0.24,0.875,0.914,0.211,-0.348,0.571,-0.715,-0.404,0.843,-0.375,0.385,0.698,-0.595,-0.399,0.368,0.041,0.929,0.192,0.534,0.823,0.021,0.531,0.847,0.354,0.7,0.62,0.579,0.776,0.252,0.647,0.742,-0.178,0.545,0.605,-0.581,0.294,0.395,-0.871,0.279,0.142,0.95,0.624,0.317,0.714,0.856,0.396,0.334,0.926,0.36,-0.111,0.821,0.219,-0.528,0.561,0.001,-0.828,0.068,0.058,-0.996,0.311,0.57,-0.761,0.64,-0.387,-0.664,0.902,0.11,-0.417,0.686,0.472,-0.554,0.717,-0.072,-0.693,-0.026,0.886,-0.463,-0.64,0.371,-0.673,-0.563,-0.17,-0.809,0.117,-0.577,-0.808,0.074,0.772,-0.631,0.63,0.411,-0.659,-0.248,0.3,-0.921,0.307,-0.061,-0.95,0.408,-0.537,-0.739,0.662,0.479,-0.576,-0.339,0.811,-0.476,-0.523,-0.125,-0.843,-0.085,0.781,-0.619,-0.661,0.748,0.062,0.307,0.951,0.043,0.681,0.653,-0.331,-0.172,0.895,-0.411,0.218,0.599,-0.77,0.248,0.373,-0.894,-0.426,0.455,-0.782,0.382,0.825,-0.417,-0.292,0.907,-0.305,0.567,0.515,-0.642,0.302,-0.347,-0.888,0.685,0.587,-0.431,0.215,0.931,-0.295,0.811,0.21,-0.546,0.419,0.63,-0.654,0.871,0.455,0.186,0.478,0.875,0.078,0.932,0.177,-0.316,0.792,0.308,0.528,0.197,0.912,0.359,0.376,0.802,-0.465,0.234,0.879,0.414,-0.039,0.998,-0.052,0.8,0.599,-0.013,0.547,0.709,-0.445,0.582,0.809,0.082,0.248,0.768,0.591,0.635,0.715,0.291,0.233,0.31,0.922,-0.226,0.178,0.958,-0.867,0.285,0.408,-0.06,0.994,-0.086,-0.485,0.873,-0.053,0.549,0.835,0.029,-0.051,0.871,0.489,0.463,0.817,-0.343,0.209,0.965,-0.161,0.518,0.823,-0.233,-0.02,0.848,0.529,-0.814,0.566,0.128,-0.311,0.686,-0.658,-0.713,0.552,0.433,-0.441,0.87,0.221,-0.641,0.767,-0.006,-0.88,0.21,0.426,-0.709,0.25,0.659,-0.657,0.751,-0.066,-0.638,0.465,0.615,-0.181,0.809,0.559,-0.751,0.568,0.337,-0.295,0.914,0.279,-0.307,0.794,0.525,-0.327,0.803,0.499,-0.14,0.981,0.132,-0.578,0.811,-0.091,-0.278,0.504,0.818,-0.72,0.319,0.616,-0.197,0.626,0.754,-0.601,0.541,0.589,-0.117,0.901,0.418,-0.521,0.816,0.252,-0.49,0.7,0.52,0.076,0.846,0.528,-0.513,0.794,0.326,0.052,0.943,0.328,0.126,0.94,0.317,-0.4,0.898,0.186,0.01,0.494,0.87,-0.513,0.464,0.722,0.394,0.883,0.256,-0.13,0.879,0.459,0.321,0.791,0.52,0.406,0.911,-0.075,-0.557,0.257,0.79,-0.902,-0.427,0.054,-0.796,-0.286,-0.534,-0.285,0.579,-0.764,-0.945,-0.307,0.113,-0.794,0.555,0.249,-0.871,0.481,0.105,-0.805,0.283,-0.521,-0.853,-0.357,0.381,-0.787,-0.568,-0.24,-0.788,0.473,0.393,-0.955,0.188,0.23,-0.283,-0.143,0.948,0.247,-0.047,0.968,0.705,0.063,0.706,-0.443,0.433,0.785,0.06,0.628,0.776,0.545,0.639,0.542,0.249,0.573,0.781,0.981,-0.176,-0.085,0.788,-0.213,-0.578,0.812,0.38,0.443,0.457,0.664,0.591,-0.294,0.844,0.448,-0.533,0.846,-0.025,0.276,0.35,-0.895,-0.131,0.676,-0.725,0.087,0.944,0.318,0.116,0.956,-0.268,-0.513,0.391,0.764,-0.936,-0.254,0.243,-0.908,-0.241,-0.343,-0.438,0.424,-0.793,0.267,0.892,-0.365,-0.437,0.899,-0.036,0.151,0.929,-0.338,-0.242,0.72,-0.651,-0.215,0.972,0.092,-0.607,0.763,-0.221,0.473,0.872,-0.126,-0.186,0.959,0.216,-0.604,0.785,0.134,-0.865,0.318,-0.388,0.133,0.645,-0.752,-0.286,0.472,-0.834,-0.766,0.473,-0.436,-0.357,0.346,-0.868,-0.808,0.382,-0.449,-0.401,0.251,-0.881,-0.041,0.991,-0.127,-0.326,0.892,0.312,-0.399,0.847,-0.35,-0.647,0.761,0.033,-0.507,0.819,0.268,-0.237,0.958,-0.161,-0.906,0.4,-0.14,-0.621,0.554,-0.555,-0.808,0.575,-0.13,-0.346,0.781,-0.519,-0.878,0.108,-0.466,-0.416,0.321,-0.851,0.778,0.579,-0.244,0.008,0.996,-0.091,0.608,0.783,-0.131,-0.136,0.913,0.386,0.124,0.989,-0.084,0.829,0.551,0.091,0.756,0.642,0.13,0.431,0.647,0.629,0.789,0.596,0.152,0.464,0.601,0.651,0.312,0.684,0.659,0.416,0.59,0.692,-0.248,0.763,0.597,-0.452,0.878,0.155,0.43,0.856,0.287,0.241,0.963,-0.123,-0.152,0.988,0.034,-0.499,0.611,0.614,-0.216,0.962,0.17,0.23,0.69,0.686,-0.233,0.188,0.954,-0.719,0.503,0.48,-0.436,0.751,0.496,-0.215,0.954,-0.207,0.527,0.848,-0.056,0.287,0.723,0.628,0.335,0.935,0.113,0.492,0.865,0.095,-0.148,0.979,-0.141,-0.605,0.745,0.282,0.69,0.513,0.511,0.231,0.281,0.932,0.866,0.265,0.424,0.136,0.763,0.632,0.47,0.478,0.742,-0.259,0.211,0.943,0.369,0.076,0.926,0.566,0.521,0.639,0.336,0.098,0.937,0.534,0.541,0.649,0.078,0.91,0.408,0.112,0.864,0.491,0.504,0.407,0.762,-0.245,0.372,0.895,0.741,0.271,0.614,0.753,0.623,0.211,-0.239,0.561,0.792,-0.193,0.904,0.382,0.353,0.143,0.925,0.261,0.538,0.802,0.498,0.814,0.299,0.489,0.815,0.312,0.441,0.798,0.411,0.134,0.437,0.89,0.578,0.697,0.424,0.271,0.337,0.902,0.125,0.99,0.068,0.4,0.734,0.549,0.313,0.937,0.155,-0.329,0.934,0.139,0.311,0.924,0.222,-0.331,0.921,0.206,0.734,0.566,-0.376,0.436,0.426,-0.793,0.115,0.991,-0.07,-0.188,0.855,-0.484,0.418,0.888,-0.19,0.32,0.654,-0.685,0.124,0.218,-0.968,0.408,0.893,-0.19,0.309,0.66,-0.685,0.114,0.223,-0.968,-0.124,-0.035,-0.992,-0.324,0.143,-0.935,0.476,-0.026,-0.879,-0.552,-0.436,-0.711,-0.444,-0.283,-0.85,-0.637,-0.38,-0.67,-0.489,-0.271,-0.829,-0.99,-0.016,-0.139,-0.664,-0.594,0.453,-0.201,-0.943,-0.265,-0.392,-0.344,-0.853,-0.725,0.035,-0.688,-0.878,0.368,-0.305,-0.807,0.561,0.184,-0.573,-0.565,-0.594,-0.86,-0.239,-0.452,-0.991,0.048,-0.123,-0.93,0.213,0.298,-0.146,0.136,0.98,-0.584,-0.433,0.686,-0.205,-0.335,0.919,-0.181,-0.545,0.819,-0.054,-0.028,0.998,-0.143,-0.117,0.983,-0.541,0.757,0.365,-0.621,0.703,0.346,-0.829,0.542,0.137,-0.887,0.034,0.461,-0.315,0.755,0.575,-0.382,0.243,0.891,-0.74,0.652,-0.162,-0.796,0.557,0.237,-0.523,0.851,-0.052,-0.715,0.534,-0.452,-0.717,0.674,0.176,-0.903,0.363,-0.231,-0.968,0.099,-0.232,-0.926,-0.299,0.23,-0.786,0.595,0.167,-0.74,0.211,0.639,-0.89,0.203,-0.409,-0.856,-0.439,-0.274,-0.951,0.299,0.072,-0.917,-0.344,0.204,-0.887,0.406,-0.218,-0.952,-0.114,-0.285,-0.75,-0.602,-0.273,-0.556,0.394,0.732,-0.57,-0.128,0.812,-0.424,-0.614,0.666,-0.765,-0.643,0.023,-0.747,-0.532,0.397,-0.638,-0.314,0.703,-0.455,-0.024,0.89,-0.228,0.292,0.929,-0.406,-0.91,0.085,-0.388,-0.799,0.459,-0.279,-0.581,0.765,-0.096,-0.291,0.952,0.132,0.025,0.991,0.086,0.003,0.996,0.718,0.1,0.688,-0.027,0.268,0.963,0.492,-0.327,0.807,0.51,-0.056,0.858,-0.008,-0.326,0.945,0.719,-0.627,0.299,0.203,-0.902,0.381,0.866,-0.479,0.14,0.72,-0.395,0.571,0.396,-0.202,0.896,0.086,0.339,0.937,0.805,-0.445,0.393,0.867,0.071,0.493,0.687,0.566,0.456,0.597,-0.485,0.639,0.624,0.024,0.781,0.477,0.525,0.705,0.344,0.782,-0.519,0.732,0.665,0.149,0.694,0.698,-0.177,0.698,0.696,-0.17,0.439,0.565,-0.698,0.539,0.792,0.286,0.74,0.589,0.325,0.396,0.824,0.404,-0.02,0.894,0.447,0.714,0.693,-0.1,0.37,0.929,-0.021,-0.047,0.999,0.022,0.519,0.855,0.006,0.541,0.34,0.769,0.219,0.653,-0.725,0.525,0.845,0.102,0.489,0.825,-0.283,0.799,0.6,-0.042,0.459,0.554,-0.695,-0.038,0.789,-0.613,0.624,0.605,0.494,0.12,0.839,0.531,-0.078,0.992,0.1,-0.229,0.708,-0.668,0.579,0.514,-0.633,0.697,0.696,0.171,-0.103,0.912,-0.398,0.179,0.912,-0.369,-0.115,0.896,-0.428,0.083,0.933,-0.35,-0.195,0.72,-0.666,-0.237,0.952,-0.195,0.003,0.75,-0.662,-0.041,0.981,-0.192,-0.399,0.279,-0.874,-0.8,0.038,-0.599,-0.965,-0.215,-0.149,-0.426,0.402,-0.811,-0.831,0.18,-0.526,-0.992,-0.094,-0.087,-0.992,-0.039,-0.118,-0.771,0.34,-0.538,-0.945,-0.213,-0.25,-0.724,0.167,-0.67,-0.864,0.102,0.493,-0.536,0.674,0.509,-0.981,0.181,0.075,-0.652,0.752,0.091,-0.435,-0.735,0.52,0.1,-0.577,0.811,-0.754,0.143,0.641,-0.216,0.294,0.931,-0.677,-0.605,0.42,-0.672,-0.569,0.474,-0.806,-0.553,0.211,-0.376,-0.901,0.219,-0.655,-0.351,0.669,-0.223,-0.696,0.683,-0.776,-0.277,0.566,-0.887,-0.433,0.16,-0.787,-0.526,0.322,-0.308,-0.817,0.488,-0.766,-0.373,0.524,-0.286,-0.662,0.693,-0.836,-0.537,0.115,-0.386,-0.923,0.012,-0.644,-0.45,0.619,-0.195,-0.837,0.512,-0.795,-0.453,0.404,-0.477,-0.861,0.178,-0.192,-0.287,0.938,0.12,-0.697,0.707,-0.901,0.14,0.41,-0.116,0.626,0.771,0.408,0.489,0.771,0.856,-0.318,0.408,-0.451,-0.722,0.525,0.042,-0.85,0.524,0.175,0.844,0.507,0.649,-0.034,0.76,-0.251,-0.532,0.809,-0.683,0.352,0.64,0.172,0.363,0.916,0.48,-0.164,0.862,0.237,0.481,0.844,0.592,-0.054,0.804,0.25,0.49,0.835,0.605,-0.045,0.795,0.019,0.373,0.928,0.24,-0.23,0.943,0.495,0.55,0.673,0.733,-0.047,0.679,-0.287,0.541,0.791,0.383,0.219,0.898,0.111,-0.476,0.872,0.479,0.527,0.702,0.801,0.473,0.366,0.723,0.179,0.667,0.538,-0.173,0.825,0.477,0.712,0.516,0.399,0.418,0.816,0.213,0.066,0.975,0.387,0.847,0.363,0.105,0.128,0.986,0.312,0.301,0.901,-0.257,-0.324,0.91,0.251,0.755,0.606,0.548,0.793,-0.264,-0.352,0.885,0.304,0.511,0.728,0.458,0.178,0.575,0.798,0.699,0.538,0.471,-0.002,0.877,0.48,0.517,0.843,0.15,0.114,0.723,0.682,0.699,0.559,0.446,-0.09,0.996,-0.002,0.494,0.835,-0.244,-0.312,0.949,0.046,0.016,0.971,-0.238,0.27,0.795,-0.543,0.164,0.776,0.609,0.518,0.8,0.303,0.792,0.61,-0.027,0.096,0.944,-0.317,-0.219,0.934,0.282,-0.634,0.498,0.592,-0.635,0.526,0.565,-0.28,0.9,0.333,0.156,0.988,-0.018,-0.85,0.441,0.289,-0.481,0.859,0.175,0.004,0.996,-0.089,0.433,0.803,-0.409,-0.652,0.532,0.541,-0.089,0.858,0.505,0.497,0.839,0.222,-0.682,-0.048,0.729,-0.228,0.054,0.972,-0.684,0.526,0.506,-0.23,0.617,0.753,-0.457,0.52,0.722,0.066,0.384,0.921,0.584,0.166,0.794,-0.59,0.792,0.155,-0.146,0.985,0.091,-0.358,0.473,0.805,0.086,0.666,0.741,-0.263,0.929,0.261,0.641,0.699,0.316,0.9,0.185,0.395,0.54,-0.67,0.509,-0.393,0.255,0.883,-0.145,-0.239,0.96,-0.114,0.724,0.681,-0.119,0.952,0.282,-0.594,0.538,0.597,-0.323,0.336,0.885,0.039,0.103,0.994,0.416,-0.114,0.902,0.73,-0.268,0.629,0.916,-0.328,0.23,-0.819,0.167,0.548,-0.548,-0.035,0.836,-0.186,-0.269,0.945,0.191,-0.485,0.853,0.505,-0.639,0.58,0.691,-0.7,0.181,0.657,-0.754,0.024,0.7,-0.57,0.43,0.694,-0.031,0.719,0.57,-0.449,0.688,0.402,-0.362,0.841,0.608,-0.19,0.771,-0.024,-0.023,0.999,0.435,-0.345,0.832,0.037,0.066,0.997,0.497,-0.256,0.829,-0.056,0.017,0.998,0.339,-0.335,0.879,0.634,-0.589,0.5,0.288,0.695,0.659,0.745,0.464,0.479,0.983,0.096,0.157,0.317,0.615,0.722,0.779,0.299,0.552,0.167,0.948,-0.271,0.628,0.635,-0.451,-0.262,0.54,0.8,-0.888,0.433,0.152,-0.901,0.172,0.399,-0.298,0.859,0.415,0.514,0.529,0.675,-0.189,-0.009,0.982,0.698,0.627,0.345,0.913,0.258,0.315,0.964,-0.156,0.215,0.501,0.463,0.731,0.7,0.121,0.704,0.747,-0.263,0.611,0.474,-0.874,0.104,0.28,-0.55,0.786,0.882,-0.025,0.47,0.965,0.231,0.126,0.851,0.478,-0.216,0.895,-0.404,0.191,0.977,-0.148,-0.153,0.864,0.1,-0.494,0.913,0.355,-0.201,0.988,-0.064,0.143,0.414,0.348,-0.842,0.074,-0.386,-0.92,0.148,-0.804,-0.575,0.615,-0.783,0.088,0.966,-0.259,0.001,0.896,0.018,-0.443,0.887,0.293,0.357,0.818,0.569,-0.087,0.957,0.193,0.216,0.923,0.289,0.252,0.911,0.119,0.395,0.911,-0.329,0.249,0.986,-0.164,0.032,0.835,-0.549,0.016,0.545,-0.837,-0.044,0.865,-0.136,0.482,0.715,-0.521,0.466,0.424,-0.809,0.407,0.791,0.579,0.199,0.575,0.818,-0.035,0.24,0.948,-0.207,-0.15,0.947,-0.285,-0.524,0.813,-0.254,0.912,0.102,-0.398,0.695,0.341,-0.633,0.361,0.472,-0.805,-0.03,0.47,-0.882,-0.404,0.336,-0.851,0.985,0.016,0.173,0.978,0.046,0.202,0.978,-0.191,0.08,0.606,-0.031,0.795,0.301,0.255,0.919,-0.128,0.339,0.932,-0.665,0.639,0.388,0.787,0.562,-0.255,0.432,0.895,-0.111,-0.066,0.993,-0.096,0.987,0.142,0.068,0.844,0.119,0.522,0.589,0.808,0.011,0.466,0.788,0.402,-0.619,0.737,0.271,-0.117,0.981,0.156,-0.709,0.642,-0.291,-0.208,0.885,-0.417,0.762,0.595,-0.256,0.182,0.595,-0.782,0.291,0.839,-0.459,-0.082,0.931,-0.356,-0.412,0.902,-0.133,0.032,0.307,-0.951,-0.356,0.402,-0.844,-0.697,0.372,-0.613,-0.766,0.528,-0.367,-0.246,0.508,-0.825,-0.828,-0.411,-0.381,-0.309,-0.446,-0.84,-0.316,-0.29,-0.903,-0.312,-0.36,-0.879,-0.273,0.357,-0.893,-0.051,0.958,-0.282,-0.079,0.837,-0.542,-0.11,0.992,-0.063,-0.026,0.995,-0.095,-0.584,0.801,-0.13,-0.037,0.947,0.318,-0.595,0.754,0.279,-0.688,0.674,-0.268,-0.397,0.918,0.019,0.01,0.965,0.26,0.436,0.807,0.398,0.781,0.48,0.4,0.962,0.061,0.266,0.937,-0.349,0.027,-0.872,0.482,0.081,-0.582,0.725,0.368,-0.175,0.773,0.609,0.252,0.615,0.747,0.597,0.288,0.749,0.778,-0.131,0.615,0.752,-0.541,0.376,-0.809,0.463,-0.363,-0.482,0.713,-0.51,-0.063,0.802,-0.595,0.365,0.712,-0.601,0.714,0.461,-0.526,0.917,0.1,-0.387,-0.765,0.642,0.04,-0.438,0.892,-0.107,-0.019,0.981,-0.192,0.408,0.891,-0.198,0.758,0.641,-0.123,0.96,0.279,0.016,-0.055,-0.028,0.998,0.586,-0.147,0.797,-0.191,0.981,0.045,0.447,0.878,-0.171,-0.207,0.86,0.467,-0.117,0.992,0.045,0.348,0.877,-0.332,0.887,0.441,-0.134,-0.022,0.956,-0.294,0.241,0.331,-0.912,0.133,0.418,-0.899,0.593,0.523,-0.613,0.272,-0.538,-0.797,0.734,-0.449,-0.51,0.262,-0.202,-0.944,0.28,-0.235,-0.931,0.815,0.49,-0.308,0.884,0.401,-0.24,0.967,0.235,0.103,0.437,0.889,-0.135,0.039,0.916,-0.4,-0.44,0.327,-0.836,0.738,-0.232,-0.634,0.283,-0.202,-0.938,0.302,0.788,-0.536,0.262,0.687,-0.678,0.228,0.903,-0.365,0.291,0.731,-0.617,-0.287,0.956,-0.068,-0.014,0.6,-0.8,0.733,0.564,-0.379,0.433,0.801,0.413,0.526,0.827,0.199,0.292,0.95,-0.111,0.37,0.799,0.474,0.813,0.364,0.455,0.42,0.855,0.304,0.86,0.418,0.291,0.322,0.943,-0.087,0.625,0.575,0.528,0.738,0.268,0.619,0.628,0.762,-0.156,0.633,0.739,0.232,0.953,0.227,0.199,0.449,0.67,-0.592,0.771,0.159,-0.617,-0.024,0.998,-0.055,0.466,0.874,0.141,0.178,0.975,0.133,-0.621,0.768,0.157,-0.562,0.533,-0.633,0.216,0.74,-0.636,-0.477,0.876,-0.075,-0.355,0.785,-0.508,0.054,0.85,-0.524,-0.228,0.847,-0.48,0.467,0.869,0.165,0.886,0.409,0.219,0.433,0.769,-0.47,0.851,0.308,-0.425,0.893,0.387,-0.231,0.892,0.4,-0.213,0.904,0.107,-0.414,0.418,0.363,-0.833,0.501,0.757,0.419,0.024,1.0,-0.016,0.939,-0.183,0.292,0.871,-0.467,-0.154,0.556,-0.618,-0.556,-0.239,0.956,0.171,-0.473,0.832,-0.291,-0.572,0.472,-0.671,0.573,0.52,0.633,0.105,0.983,-0.151,0.138,0.326,-0.935,0.93,0.229,-0.286,0.198,0.799,-0.568,0.318,0.543,-0.777,-0.049,0.887,-0.459,0.33,0.79,-0.517,0.487,0.858,-0.165,0.424,0.873,-0.243,0.252,0.748,0.614,0.646,0.653,0.395,0.686,0.479,0.548,0.807,0.59,0.022,0.566,0.614,0.55,0.685,0.728,0.023,-0.031,0.637,0.77,0.343,0.295,0.892,-0.603,0.52,0.605,0.249,0.858,0.449,-0.634,0.74,-0.225,-0.454,0.663,-0.595,-0.227,0.443,-0.867,0.006,0.12,-0.993,-0.14,0.989,-0.044,0.034,0.915,-0.402,0.254,0.702,-0.665,0.479,0.39,-0.786,-0.51,0.86,0.008,-0.718,0.63,-0.295,-0.151,0.942,-0.301,-0.36,0.711,-0.604,-0.176,0.845,0.505,0.375,0.911,-0.171,0.522,0.827,-0.211,0.825,0.121,0.552,0.329,0.849,0.414,0.275,0.836,-0.475,0.914,0.269,-0.303,0.881,-0.035,-0.473,0.477,0.114,-0.872,0.3,0.823,0.482,-0.115,0.988,0.101,0.805,0.566,0.178,0.722,0.562,-0.403,0.12,0.957,0.263,0.05,0.946,-0.319,-0.06,0.712,-0.7,0.497,0.868,-0.004,0.298,0.95,-0.095,0.71,0.413,-0.57,-0.024,0.853,-0.521,-0.431,0.811,-0.395,-0.749,0.641,-0.165,-0.918,0.376,0.125,-0.905,0.066,0.42,-0.102,0.463,-0.88,-0.496,0.423,-0.759,-0.803,0.258,-0.537,-0.967,0.002,-0.256,-0.954,-0.298,0.029,-0.942,0.249,0.227,-1.0,-0.01,0.005,-0.519,0.085,0.851,-0.831,0.556,-0.018,-0.458,0.739,0.494,-0.729,0.684,0.007,-0.685,0.315,0.657,-0.947,0.277,0.164,-0.422,0.645,0.637,-0.512,0.847,0.142,-0.859,0.116,0.499,-0.948,0.319,0.005,-0.955,0.247,0.164,-0.734,0.654,-0.182,-0.332,0.738,-0.587,0.083,0.465,-0.882,-0.725,0.681,-0.102,-0.52,0.089,0.85,-0.045,0.392,0.919,-0.719,0.5,0.484,-0.238,0.791,0.564,0.497,0.865,0.065,0.478,0.876,0.068,0.766,0.621,0.165,0.8,0.419,-0.43,-0.163,0.778,0.607,-0.944,0.17,0.284,-0.95,-0.042,-0.309,-0.138,0.274,-0.952,-0.833,0.531,0.159,-0.837,0.524,0.159,-0.142,0.842,0.52,-0.564,0.826,-0.016,-0.223,0.916,-0.334,-0.227,0.918,-0.326,-0.026,0.85,-0.526,-0.394,0.39,-0.832,-0.09,0.872,-0.481,-0.46,0.413,-0.786,-0.106,0.929,-0.355,-0.557,0.734,-0.388,0.002,0.711,-0.704,-0.431,0.524,-0.735,-0.391,0.745,-0.541,-0.769,-0.15,-0.622,0.042,-0.68,-0.732,0.384,0.236,-0.893,-0.964,-0.125,-0.236,-0.717,0.125,-0.686,-0.382,0.197,-0.903,-0.365,0.924,0.116,-0.334,0.82,-0.464,-0.834,0.534,0.137,-0.791,0.599,0.121,-0.218,0.964,0.152,-0.276,0.957,0.093,-0.057,0.614,0.787,0.571,0.458,0.681,-0.048,0.705,0.708,0.58,0.547,0.603,0.778,0.622,-0.088,0.546,0.773,0.324,0.998,0.006,0.056,0.848,-0.205,-0.488,0.974,0.224,-0.02,0.824,0.021,-0.567,0.419,0.257,-0.871,0.297,0.762,-0.575,0.749,0.196,-0.632,0.629,0.701,-0.336,-0.294,0.601,-0.743,0.094,0.988,-0.125,-0.55,0.763,0.339,-0.897,0.353,-0.265,-0.142,0.983,-0.113,-0.295,0.772,-0.563,-0.431,0.902,0.02,-0.574,0.694,-0.434,-0.811,0.405,-0.422,-0.07,0.728,-0.682,0.134,0.986,0.101,-0.626,0.69,0.364,-0.097,0.995,-0.031,0.674,0.725,-0.143,0.602,0.478,0.639,-0.21,0.657,0.724,0.133,0.902,0.411,0.062,0.878,0.475,0.266,0.903,0.337,-0.065,0.996,-0.054,-0.48,0.819,-0.314,0.606,0.792,0.074,0.226,0.899,-0.375,-0.249,0.696,-0.673,-0.196,0.79,-0.581,-0.183,0.64,-0.746,-0.065,0.62,-0.782,0.414,0.902,-0.122,0.366,0.878,0.309,-0.242,0.53,0.813,-0.807,0.502,-0.312,-0.862,0.474,0.182,0.298,0.87,0.393,-0.176,0.344,0.922,-0.078,0.618,0.782,-0.149,0.632,0.761,0.442,0.811,0.383,-0.079,0.514,0.854,0.451,0.474,0.756,-0.066,0.917,0.394,0.229,0.724,0.651,0.47,0.66,0.586,0.071,0.82,0.567,-0.254,0.424,0.869,0.715,0.351,0.605,0.414,-0.063,0.908,0.185,0.949,0.256,0.218,0.786,0.578,0.558,0.83,-0.008,0.177,0.92,-0.35,0.499,0.548,0.672,0.224,0.307,0.925,-0.43,-0.035,0.902,-0.821,0.046,0.57,-0.552,0.796,-0.248,-0.838,0.546,0.015,-0.046,0.507,0.861,-0.367,0.412,0.834,-0.711,0.642,0.288,-0.646,0.44,0.624,-0.462,0.836,-0.298,-0.146,0.701,-0.698,-0.724,0.556,-0.409,-0.411,0.419,-0.81,0.559,0.812,-0.169,0.237,0.945,0.226,0.915,0.249,0.318,0.59,0.387,0.709,0.988,-0.156,-0.004,0.841,0.472,-0.264,0.552,0.607,-0.572,0.088,0.264,-0.96,0.697,-0.462,-0.549,0.417,-0.331,-0.847,0.966,0.053,-0.253,0.997,0.072,-0.002,0.622,0.039,-0.782,0.233,0.085,-0.969,0.467,-0.687,-0.556,0.015,-0.634,-0.773,0.577,-0.465,-0.671,0.989,0.125,0.075,0.334,0.909,0.248,0.409,0.556,-0.724,0.963,0.206,0.177,0.943,0.326,0.069,0.911,0.29,0.292,0.988,-0.155,-0.027,0.582,0.711,-0.395,0.665,0.257,-0.701,-0.046,0.926,-0.375,0.51,0.329,-0.795,0.038,0.714,-0.699,0.533,0.582,-0.615,-0.258,-0.483,-0.837,0.237,-0.615,-0.752,0.179,-0.393,-0.902,0.148,-0.438,-0.887,0.592,0.223,-0.775,0.234,0.781,-0.579,-0.618,0.761,-0.197,-0.9,0.314,-0.304,-0.902,-0.221,-0.371,-0.625,-0.683,-0.378,-0.463,0.701,-0.543,-0.705,0.316,-0.635,-0.707,-0.143,-0.693,-0.469,-0.541,-0.698,-0.387,0.9,-0.199,-0.63,0.769,0.109,-0.739,0.523,0.423,-0.61,0.619,-0.495,-0.853,0.488,-0.187,-0.962,0.243,0.128,-0.042,0.619,-0.784,-0.415,0.876,-0.248,-0.223,0.794,-0.565,-0.423,0.288,-0.859,-0.248,0.911,0.331,-0.548,0.206,0.81,-0.759,-0.322,0.566,-0.82,-0.43,-0.377,-0.649,0.378,0.66,-0.94,-0.034,0.341,-0.472,0.089,0.877,-0.759,-0.329,0.562,-0.509,0.485,0.711,-0.094,-0.128,0.987,-0.408,-0.718,0.565,-0.93,-0.121,0.346,-0.881,-0.078,0.466,-0.872,-0.267,0.409,-0.907,-0.421,-0.022,-0.892,-0.175,0.417,-0.982,0.125,-0.142,-0.771,0.071,0.633,-0.52,-0.685,0.51,-0.756,-0.614,-0.227,-0.998,-0.003,0.067,-0.994,0.107,0.016,-0.74,-0.543,-0.397,-0.761,-0.508,-0.403,-0.692,-0.089,-0.716,-0.839,0.244,-0.487,-0.807,0.557,-0.194,-0.839,-0.382,-0.387,-0.986,-0.049,-0.157,-0.955,0.265,0.136,-0.491,0.649,0.581,-0.119,0.466,0.877,-0.866,-0.189,0.463,-0.433,-0.401,0.807,-0.649,0.636,-0.418,-0.178,0.908,-0.38,-0.694,0.719,-0.03,-0.274,0.962,0.003,-0.306,0.943,-0.128,0.466,0.804,0.37,0.629,0.328,0.705,0.179,-0.469,0.865,-0.709,0.469,0.527,-0.563,0.044,0.825,0.176,-0.205,0.963,0.105,-0.488,0.866,0.032,-0.417,0.908,-0.352,-0.194,0.916,0.23,-0.7,0.676,0.274,-0.929,0.249,-0.54,-0.636,0.551,-0.496,-0.857,0.139,-0.153,-0.986,-0.072,-0.289,-0.822,-0.491,0.53,-0.843,-0.089,-0.013,-0.988,0.157,0.314,-0.84,-0.442,0.765,-0.539,-0.354,0.098,-0.804,0.587,0.552,-0.503,0.666,0.786,-0.526,0.326,0.733,-0.66,0.168,0.931,0.023,-0.365,0.782,0.577,-0.236,0.955,-0.119,0.271,0.806,0.435,0.4,0.777,0.549,0.308,0.858,-0.069,0.509,0.783,0.267,-0.562,0.864,-0.351,-0.361,0.813,0.443,-0.378,0.79,0.368,-0.491,0.226,0.961,-0.157,0.88,0.458,0.124,0.585,0.788,0.193,0.892,0.446,-0.079,0.252,0.949,-0.19,0.509,0.837,0.199,0.443,0.767,0.464,0.242,0.311,0.919,0.995,0.093,0.033,0.794,-0.363,0.488,0.384,0.922,-0.057,0.54,0.824,0.171,0.428,0.9,-0.083,0.497,0.852,0.163,-0.585,0.713,0.386,-0.76,0.127,0.637,-0.387,0.729,0.564,-0.565,0.143,0.813,-0.555,0.123,0.823,-0.741,0.183,0.646,-0.658,-0.003,0.753,-0.372,0.464,0.804,-0.779,0.085,0.621,-0.495,0.553,0.671,-0.429,-0.644,0.633,0.088,-0.702,0.707,-0.41,-0.125,0.903,0.108,-0.183,0.977,0.518,-0.048,0.854,0.276,0.487,0.829,0.329,-0.13,0.935,0.085,0.404,0.911,0.539,-0.013,0.842,0.395,0.598,0.697,0.146,-0.072,0.987,-0.002,0.538,0.843,0.531,0.109,0.84,-0.357,0.056,0.932,-0.683,0.241,0.689,-0.927,0.203,0.317,-0.998,-0.045,-0.048,-0.87,-0.411,-0.271,-0.591,-0.76,-0.269,0.267,-0.813,-0.517,0.562,0.786,0.257,0.236,0.972,0.014,-0.008,0.933,-0.359,-0.079,0.685,-0.724,0.049,0.319,-0.946,0.328,-0.03,-0.944,-0.715,-0.612,-0.339,-0.87,-0.005,-0.494,-0.606,-0.624,-0.494,-0.759,-0.018,-0.651,-0.692,-0.675,-0.256,-0.945,-0.146,-0.291,-0.69,-0.674,-0.262,-0.944,-0.146,-0.298,-0.535,-0.717,0.447,-0.84,-0.524,0.137,-0.358,-0.923,0.145,-0.872,-0.368,-0.323,-0.896,0.443,0.041,-0.711,-0.23,0.665,-0.947,0.319,0.042,-0.948,-0.12,-0.293,-0.555,0.395,0.733,-0.164,0.263,0.951,0.5,-0.167,0.849,0.556,-0.626,0.547,-0.542,-0.833,-0.11,-0.088,-0.986,0.144,0.295,-0.233,0.926,0.201,-0.731,0.652,0.391,-0.232,0.891,0.298,-0.73,0.616,0.179,-0.319,0.931,0.25,-0.338,0.907,-0.373,-0.918,0.131,-0.716,-0.674,0.183,0.039,-0.549,0.835,-0.359,-0.265,0.895,-0.759,-0.395,0.517,-0.274,-0.926,0.258,-0.254,-0.622,0.741,0.021,-0.858,0.514,-0.585,-0.696,0.416,-0.31,-0.932,0.189,-0.641,-0.007,0.768,-0.463,0.379,0.801,0.211,-0.427,0.879,0.403,-0.01,0.915,-0.077,0.357,0.931,0.159,-0.113,0.981,0.044,0.415,0.909,0.283,-0.053,0.958,-0.439,0.276,0.855,-0.515,-0.314,0.798,-0.264,0.248,0.932,-0.334,-0.343,0.878,0.051,0.431,0.901,0.28,0.069,0.957,0.532,-0.248,0.81,-0.591,0.029,0.806,-0.344,-0.361,0.867,-0.073,-0.703,0.707,0.244,-0.728,0.641,-0.346,-0.751,0.563,0.27,-0.833,0.484,-0.319,-0.858,0.402,-0.385,-0.84,0.383,-0.701,-0.163,0.694,-0.5,0.335,0.799,0.227,0.677,0.701,0.271,-0.572,0.774,0.472,-0.074,0.878,-0.061,0.195,0.979,0.141,0.915,0.379,0.907,0.408,0.106,0.668,-0.356,0.654,0.691,0.696,0.195,0.906,0.302,0.298,0.961,-0.15,0.231,0.198,0.599,0.776,0.429,0.174,0.886,0.489,-0.313,0.814,0.429,0.637,0.64,0.834,0.181,0.521,0.47,0.701,0.537,0.875,0.245,0.418,0.35,0.558,0.753,0.671,-0.004,0.742,0.557,0.677,0.48,0.871,0.112,0.478,0.205,0.628,0.751,0.759,0.537,0.367,0.141,0.914,0.381,0.685,0.086,0.723,0.35,0.43,0.832,0.492,0.66,0.568,0.427,0.811,0.401,0.439,0.512,0.738,0.656,0.64,0.401,0.87,0.297,-0.393,0.573,0.819,0.032,0.821,0.569,0.052,0.463,0.869,-0.172,0.059,0.957,0.283,0.75,0.65,0.122,0.348,0.736,0.58,0.144,0.659,0.739,0.192,0.861,0.471,0.114,0.979,0.17,0.478,0.86,-0.176,0.484,0.554,0.677,0.822,0.444,0.356,0.703,0.534,0.469,0.806,0.338,0.485,0.79,0.249,0.56,0.755,0.422,0.503,0.609,-0.047,0.791,0.743,0.123,0.658,0.616,-0.138,0.775,0.198,0.176,0.964,-0.324,0.349,0.879,0.817,0.532,0.22,0.458,0.803,0.382,0.009,0.951,0.309,-0.449,0.844,0.294,-0.677,0.718,-0.162,-0.688,0.636,0.349,-0.218,0.876,0.431,0.314,0.866,0.389,-0.694,0.714,0.093,-0.225,0.964,0.139,0.308,0.94,0.145,-0.766,0.398,0.506,-0.724,0.485,0.491,-0.939,0.127,0.32,-0.661,-0.223,0.717,-0.476,0.702,0.529,-0.215,0.332,0.918,-0.688,0.58,0.436,-0.597,0.159,0.786,-0.055,0.997,0.051,0.693,0.663,0.282,0.732,0.239,0.638,0.119,-0.16,0.98,0.534,0.768,0.354,0.473,0.432,0.768,0.976,0.218,-0.027,0.915,-0.118,0.386,0.615,0.788,-0.018,0.747,0.654,0.118,0.604,0.3,0.738,0.859,0.293,0.419,0.54,0.342,0.769,0.702,0.602,0.381,0.72,0.686,-0.106,0.591,0.572,-0.569,0.347,0.289,-0.892,0.772,0.061,0.633,0.911,0.284,0.299,0.927,0.356,-0.119,0.816,0.258,-0.517,0.606,0.015,-0.795,0.129,-0.08,-0.988,0.043,0.475,-0.879,0.83,-0.054,-0.555,0.741,0.501,-0.447,0.675,0.084,-0.733,0.967,0.252,0.034,0.415,0.662,-0.624,0.776,0.259,-0.575,0.026,0.252,-0.967,0.4,-0.136,-0.906,0.285,0.609,-0.74,0.809,0.401,-0.431,0.079,-0.239,-0.968,0.602,-0.451,-0.659,0.135,0.5,-0.856,0.423,0.003,-0.906,0.957,0.108,-0.27,0.822,0.015,-0.569,0.878,0.478,-0.001,0.961,0.262,-0.095,0.871,0.462,0.167,0.969,0.21,-0.133,0.959,-0.242,0.149,0.769,0.516,-0.378,0.869,0.485,-0.1,0.907,-0.076,0.414,0.955,0.214,0.207,0.917,0.189,-0.351,0.495,0.837,0.231,0.44,0.837,-0.325,0.792,0.405,0.457,0.24,0.895,0.376,-0.12,0.991,0.054,-0.375,0.716,-0.588,0.806,0.504,-0.312,0.387,0.615,-0.687,-0.569,0.659,-0.492,0.34,0.727,-0.596,-0.062,0.529,-0.846,0.476,0.548,-0.687,-0.009,0.19,-0.982,0.528,0.209,-0.823,0.354,0.451,-0.819,0.791,0.474,-0.387,0.547,0.722,0.423,0.644,0.606,-0.466,0.692,0.708,-0.138,0.452,0.883,0.125,0.143,0.724,-0.675,-0.117,0.913,-0.391,0.126,0.983,0.136,0.432,0.543,0.72,-0.257,0.222,0.941,-0.59,0.708,0.389,0.621,0.188,0.761,0.174,0.705,0.688,0.119,0.651,0.75,0.308,0.868,0.39,0.751,-0.054,0.658,0.941,0.163,0.298,0.619,0.325,0.715,-0.085,-0.269,0.959,-0.578,-0.363,0.731,-0.999,0.018,-0.034,-0.044,0.923,0.381,-0.537,0.83,0.153,0.503,0.497,0.707,-0.005,0.444,0.896,0.55,0.308,0.777,0.043,0.25,0.967,0.344,0.539,0.769,0.335,0.182,0.925,0.213,0.758,0.617,-0.285,0.896,0.34,0.938,0.317,0.136,0.753,0.532,-0.389,0.041,0.768,0.639,-0.145,0.983,0.114,0.8,0.158,0.579,0.064,0.723,0.688,-0.324,0.874,0.361,-0.745,0.654,0.13,-0.835,0.019,-0.549,0.837,0.436,-0.33,0.419,0.6,-0.682,-0.036,0.362,-0.932,-0.639,0.682,-0.355,-0.55,0.316,-0.773,-0.899,0.404,-0.171,-0.805,0.042,-0.592,-0.159,0.867,0.472,0.451,0.765,0.46,-0.241,0.529,-0.813,0.368,0.427,-0.826,-0.467,0.884,-0.0,-0.449,0.402,0.798,-0.465,0.868,0.174,-0.462,0.548,0.698,0.068,0.804,0.59,-0.694,0.714,-0.098,-0.161,0.968,-0.193,-0.601,0.798,0.03,-0.156,0.251,-0.955,0.244,0.968,-0.059,0.02,0.958,0.287,-0.107,0.949,-0.297,-0.34,0.938,0.062,0.093,0.972,0.214,-0.413,0.905,0.098,0.025,0.802,0.597,-0.48,0.736,0.477,0.245,0.967,0.068,-0.135,0.885,-0.446,-0.268,0.837,0.476,-0.657,0.753,-0.031,-0.366,0.92,0.141,-0.563,0.692,-0.451,-0.077,0.602,-0.795,-0.598,0.468,-0.651,-0.078,0.646,-0.759,-0.6,0.511,-0.615,0.078,0.668,-0.74,-0.303,0.729,-0.613,-0.582,0.749,-0.317,-0.101,-0.167,-0.981,-0.545,-0.096,-0.833,-0.869,-0.073,-0.489,-0.938,0.177,-0.299,-0.952,0.144,-0.27,-0.838,0.159,0.522,-0.68,-0.248,0.69,-0.33,-0.549,0.768,-0.989,-0.036,0.142,-0.818,-0.475,0.324,-0.441,-0.8,0.407,-0.776,-0.356,0.52,-0.983,0.058,0.173,-0.284,-0.395,0.874,-0.572,0.073,0.817,-0.685,0.519,0.511,-0.583,-0.743,0.328,-0.925,-0.338,0.172,-0.985,0.17,-0.035,-0.023,-0.479,0.877,0.027,0.175,0.984,-0.208,-0.463,0.862,-0.158,0.191,0.969,0.379,-0.559,0.737,-0.565,-0.635,0.527,-0.898,-0.325,0.297,-0.823,0.56,-0.092,0.25,0.426,0.87,-0.137,0.786,0.603,0.39,0.499,0.774,-0.077,0.028,0.997,0.141,0.186,0.972,-0.04,0.653,0.756,-0.282,0.025,0.959,-0.446,0.498,0.744,-0.599,0.751,0.278,-0.603,0.707,0.368,-0.044,0.994,-0.104,-0.622,0.783,0.009,-0.39,0.92,-0.016,-0.434,0.901,-0.025,-0.251,0.954,-0.163,-0.166,0.942,0.293,0.019,0.744,0.668,-0.643,0.759,-0.104,-0.554,0.746,0.369,-0.363,0.54,0.76,0.242,0.203,0.949,-0.275,0.355,0.893,0.232,0.171,0.958,-0.286,0.323,0.902,0.539,0.6,0.591,0.161,0.968,0.191,-0.329,0.076,0.941,-0.714,0.44,0.544,-0.089,0.264,0.96,-0.34,0.736,0.585,-0.213,0.195,0.957,-0.465,0.667,0.582,0.577,-0.565,0.59,0.82,-0.57,0.048,0.532,0.637,0.558,0.775,0.632,0.015,0.542,0.584,-0.604,0.023,0.884,-0.468,0.516,0.025,-0.856,0.624,0.583,-0.52,0.914,0.23,-0.334,0.788,-0.299,-0.538,0.892,0.251,-0.375,0.766,-0.278,-0.58,-0.116,-0.671,-0.732,-0.593,-0.418,-0.689,-0.035,-0.494,-0.869,-0.514,-0.244,-0.822,-0.458,-0.545,-0.702,0.609,-0.375,-0.699,0.942,0.089,-0.324,0.495,0.786,0.371,-0.476,0.495,-0.727,-0.19,0.894,-0.405,-0.587,-0.135,-0.798,-0.37,0.339,-0.865,-0.083,-0.383,-0.92,0.134,0.091,-0.987,0.444,0.405,-0.799,-0.199,-0.657,-0.728,-0.702,-0.347,-0.622,0.244,0.131,-0.961,-0.255,0.448,-0.857,-0.764,0.582,-0.28,-0.361,0.913,-0.191,-0.673,0.534,-0.512,-0.271,0.865,-0.422,-0.928,0.372,-0.034,-0.706,0.585,0.399,-0.614,0.705,-0.355,-0.396,0.915,0.082,-0.554,0.765,0.328,-0.958,0.065,-0.278,-0.957,-0.187,0.223,-0.875,0.479,-0.068,-0.874,0.223,0.431,-0.917,0.198,0.348,-0.911,0.212,0.353,-0.264,-0.051,0.963,-0.582,0.434,0.688,-0.685,-0.495,0.534,-0.59,-0.417,0.691,-0.309,-0.385,0.87,-0.227,0.208,0.952,-0.651,-0.313,0.692,-0.568,0.28,0.774,-0.055,-0.563,0.825,-0.894,-0.261,0.364,-0.638,0.708,0.304,0.057,0.401,0.914,-0.732,0.593,0.335,-0.244,0.745,0.621,-0.718,0.632,0.292,-0.231,0.783,0.578,-0.898,0.114,0.424,-0.264,0.841,0.473,-0.763,0.643,-0.065,-0.508,0.711,0.487,-0.15,0.91,-0.386,0.111,0.98,0.163,-0.781,0.351,-0.517,-0.99,0.104,-0.098,-0.421,0.907,-0.026,-0.622,0.671,0.402,-0.407,0.362,-0.839,-0.505,0.364,-0.782,-0.668,0.74,-0.074,-0.801,0.191,-0.567,-0.722,0.488,-0.491,-0.861,-0.271,-0.429,-0.906,0.032,-0.422,-0.828,0.559,-0.043,-0.676,0.219,-0.704,-0.994,0.107,-0.034,-0.94,0.243,-0.24,-0.994,0.018,0.111,-0.992,-0.05,-0.114,-0.768,-0.507,0.392,-0.761,-0.616,-0.204,-0.402,-0.897,-0.183,-0.509,-0.67,0.541,-0.19,-0.567,0.801,0.129,-0.322,0.938,0.386,0.016,0.923,0.001,-0.997,0.072,0.296,-0.902,0.314,0.592,-0.675,0.44,0.829,-0.361,0.426,0.721,-0.32,0.615,0.682,-0.17,0.711,-0.084,-0.411,0.908,0.277,0.052,0.96,0.468,-0.745,0.475,0.783,-0.341,0.521,0.152,0.405,0.902,0.402,-0.048,0.915,0.314,0.402,0.86,0.104,-0.338,0.935,0.444,0.185,0.877,-0.675,-0.284,0.681,-0.203,0.348,0.915,0.513,-0.076,0.855,0.801,0.186,0.569,0.588,-0.134,0.798,0.436,0.413,0.799,0.636,0.586,0.502,0.71,0.693,0.127,0.644,0.718,-0.264,0.678,0.022,0.734,0.878,0.194,0.438,0.951,0.302,0.062,0.886,0.326,-0.329,0.657,0.698,-0.285,0.999,-0.028,-0.032,0.662,-0.252,0.706,0.53,0.613,0.585,0.137,0.811,-0.569,0.742,0.315,-0.592,-0.571,-0.107,-0.814,0.218,0.238,-0.946,0.561,0.581,-0.59,0.828,0.559,-0.051,0.491,0.451,0.746,-0.682,0.617,-0.393,-0.376,0.924,-0.074,-0.137,0.903,0.407,-0.385,0.425,-0.819,-0.381,0.384,-0.841,-0.623,0.605,-0.496,-0.127,0.903,-0.409,-0.556,0.534,-0.637,-0.06,0.832,-0.551,-0.991,0.134,0.002,-0.581,0.81,-0.078,-0.129,0.919,-0.373,0.328,0.931,-0.158,-0.457,0.818,0.35,-0.017,0.83,0.557,-0.279,0.957,-0.071,0.192,0.955,-0.228,0.533,0.696,-0.481,-0.052,0.662,0.747,0.497,0.659,0.565,0.893,0.358,0.271,0.507,0.719,-0.475,0.257,0.963,-0.083,0.876,0.475,-0.087,0.626,0.718,0.304,0.743,0.652,-0.15,0.881,0.334,0.336,-0.265,0.871,0.413,0.183,0.938,0.294,0.501,0.813,0.297,0.897,0.412,0.163,0.193,0.824,-0.533,0.578,0.423,-0.698,0.203,0.965,0.169,0.4,0.91,-0.11,0.925,0.364,-0.109,0.662,0.663,-0.351,0.283,0.864,0.417,0.351,0.816,0.46,0.383,0.841,0.382,-0.011,0.655,0.756,0.523,0.714,0.465,0.133,0.524,0.841,0.245,0.969,-0.042,-0.334,0.942,-0.006,0.264,0.937,0.229,-0.315,0.91,0.27,-0.666,0.46,0.587,-0.592,0.55,0.589,-0.294,0.038,0.955,-0.316,0.042,0.948,-0.399,0.851,0.341,-0.989,0.139,0.041,-0.869,0.379,-0.319,-0.593,0.451,-0.667,-0.603,0.614,0.509,-0.473,0.873,0.12,-0.176,0.951,-0.255,0.172,0.653,-0.737,-0.272,0.499,-0.823,-0.228,0.974,-0.007,-0.273,0.834,0.48,-0.817,0.528,-0.233,-0.869,0.366,0.333,0.001,0.196,0.981,-0.444,0.041,0.895,-0.12,0.286,0.951,0.343,0.264,0.901,0.714,0.316,0.625,0.881,0.427,0.204,0.793,0.563,-0.233,0.478,0.682,-0.554,0.03,0.749,-0.661,-0.173,-0.091,0.981,0.365,-0.117,0.924,0.797,-0.056,0.602,0.991,0.072,0.113,0.889,0.23,-0.395,0.522,0.369,-0.769,0.001,0.447,-0.894,0.499,-0.069,-0.864,0.815,0.51,-0.276,0.669,0.714,-0.207,0.779,0.447,-0.44,0.81,0.517,-0.278,0.342,0.94,-0.003,0.436,0.9,0.022,0.255,0.848,-0.464,0.246,0.965,0.085,0.069,0.913,-0.403,-0.158,0.838,0.523,-0.633,0.649,0.422,-0.059,0.943,-0.328,-0.468,0.781,-0.414,-0.813,0.507,0.286,-0.663,0.503,-0.554,0.146,0.762,-0.631,-0.15,0.982,0.116,-0.573,0.759,0.31,-0.787,0.532,0.312,-0.91,0.414,0.008,-0.867,0.491,0.086,-0.868,0.361,-0.34,-0.898,0.439,0.035,-0.817,0.398,-0.417,-0.931,0.297,-0.214,-0.133,0.973,-0.188,-0.345,0.662,-0.665,-0.077,0.642,-0.763,-0.575,0.24,-0.782,-0.312,0.877,0.366,-0.81,0.474,0.346,-0.057,0.949,-0.309,-0.403,0.566,-0.72,-0.595,0.718,0.36,-0.941,0.334,-0.05,0.233,0.938,0.258,0.637,0.74,-0.214,0.117,0.983,0.14,0.521,0.786,-0.332,0.223,0.576,0.786,0.693,0.159,0.704,0.243,0.892,-0.381,0.713,0.486,-0.505,0.254,0.963,0.088,0.738,0.628,0.247,0.329,0.812,-0.483,0.815,0.473,-0.334,0.823,0.522,0.225,0.762,0.384,-0.521,0.936,0.338,0.096,0.861,0.396,-0.32,0.84,0.535,-0.086,1.0,-0.004,-0.025,0.231,0.801,-0.553,-0.191,0.656,-0.73,-0.686,0.011,-0.728,-0.526,-0.528,-0.666,0.658,-0.645,-0.388,0.236,-0.79,-0.566,-0.471,-0.062,-0.88,-0.829,-0.306,-0.469,-0.477,0.107,-0.873,-0.474,-0.412,-0.778,-0.965,0.245,-0.098,-0.962,-0.274,-0.003,-0.761,0.128,-0.636,-0.782,0.112,-0.614,-0.322,0.777,-0.541,0.171,0.623,-0.763,-0.666,0.052,-0.744,-0.186,-0.129,-0.974,0.125,-0.164,-0.978,0.16,0.81,-0.564,-0.694,0.718,0.057,-0.807,-0.06,-0.587,-0.077,0.957,-0.281,-0.768,0.635,0.083,-0.898,-0.014,-0.441,-0.349,0.432,-0.832,-0.428,0.884,-0.187,-0.795,0.606,-0.019,-0.344,0.462,-0.818,-0.77,0.138,-0.623,-0.891,-0.129,0.435,-0.697,-0.466,0.545,-0.376,-0.708,0.597,-0.953,-0.302,0.012,-0.759,-0.64,0.122,-0.438,-0.882,0.174,-0.159,-0.71,0.686,-0.431,-0.902,0.017,-0.658,-0.673,-0.339,-0.888,0.027,-0.459,-0.708,-0.181,0.683,-0.952,0.066,0.299,0.263,-0.376,0.889,0.074,-0.916,0.395,0.243,-0.716,0.654,0.265,-0.745,0.612,0.299,-0.262,0.918,-0.055,0.203,0.978,0.247,-0.302,0.921,-0.107,0.163,0.981,0.305,0.164,0.938,0.078,0.753,0.654,-0.324,0.907,0.268,0.126,0.906,0.405,-0.453,0.877,-0.158,-0.428,0.856,0.288,-0.307,0.945,0.115,-0.779,0.628,-0.006,-0.212,0.547,0.81,-0.682,0.226,0.696,-0.621,0.129,0.773,-0.898,0.376,0.23,-0.55,0.605,0.576,-0.756,0.48,0.446,-0.297,0.451,0.842,-0.422,0.905,-0.049,-0.672,0.535,-0.512,-0.655,0.721,0.224,-0.905,0.351,-0.239,-0.071,0.995,-0.063,0.025,0.723,-0.69,-0.981,0.04,0.19,-0.87,-0.217,-0.442,-0.752,0.586,0.301,-0.658,0.721,-0.217,-0.789,0.545,0.284,-0.695,0.679,-0.235,-0.416,0.159,-0.895,-0.517,0.146,-0.843,-0.388,-0.034,-0.921,-0.459,0.472,-0.753,0.323,-0.018,-0.946,-0.378,0.367,-0.85,-0.751,0.28,-0.598,-0.938,0.297,-0.181,-0.865,-0.167,0.474,0.01,-0.728,-0.686,-0.392,-0.821,-0.414,-0.594,-0.804,0.036,-0.918,0.17,-0.358,-0.969,-0.14,-0.206,-0.755,-0.472,-0.456,-0.743,-0.669,0.031,-0.955,-0.078,-0.287,-0.939,-0.283,0.197,-0.118,-0.026,-0.993,0.526,-0.189,-0.83,-0.513,-0.852,-0.101,0.143,-0.989,0.034,0.109,-0.775,-0.623,0.486,-0.831,-0.271,-0.266,-0.932,-0.246,0.112,-0.988,0.106,-0.09,-0.912,-0.4,0.421,-0.896,-0.137,-0.308,-0.951,0.027,0.203,-0.935,0.29,0.786,-0.618,0.018,0.449,-0.863,0.232,0.901,0.431,-0.044,0.555,0.816,0.161,0.908,0.419,-0.009,0.561,0.804,0.196,0.565,0.736,0.372,0.909,0.282,0.306,0.501,0.785,-0.364,0.846,0.33,-0.419,0.798,-0.341,-0.496,0.603,-0.068,-0.795,0.323,0.265,-0.909,0.018,0.582,-0.813,0.198,-0.807,-0.556,0.017,-0.553,-0.833,-0.243,-0.245,-0.938,-0.525,0.048,-0.85,-0.073,0.469,-0.88,-0.714,0.105,-0.692,-0.377,0.151,-0.914,0.032,0.93,-0.366,-0.121,0.821,-0.557,-0.12,0.969,0.214,0.462,0.761,-0.456,-0.404,0.856,-0.324,-0.652,0.702,0.287,-0.91,0.298,0.289,-0.938,-0.182,0.297,-0.543,0.589,-0.598,-0.765,0.241,-0.597,-0.789,-0.17,-0.59,-0.538,0.812,-0.226,-0.783,0.457,-0.423,-0.147,0.681,-0.717,-0.488,0.811,-0.324,0.225,0.863,-0.451,-0.119,0.991,-0.061,-0.0,0.344,-0.939,0.302,0.876,-0.376,-0.379,0.92,0.098,-0.708,0.475,-0.523,-0.655,0.495,-0.571,-0.627,0.768,-0.13,-0.516,0.579,-0.632,-0.489,0.851,-0.189,-0.86,0.339,-0.382,-0.081,0.98,-0.181,-0.046,0.885,-0.464,-0.228,0.971,-0.066,-0.324,0.875,0.359,-0.312,0.617,0.722,-0.196,0.25,0.948,-0.0,-0.149,0.989,-0.42,0.687,-0.592,-0.603,0.774,-0.195,-0.698,0.678,0.23,-0.687,0.42,0.594,-0.571,0.053,0.819,-0.375,-0.346,0.86,-0.318,0.792,-0.522,-0.361,0.932,-0.022,0.554,0.72,-0.419,0.502,0.861,0.079,0.106,0.798,-0.594,-0.279,0.943,-0.183,0.132,0.808,-0.574,-0.252,0.954,-0.163,0.625,0.639,-0.448,0.686,0.727,-0.011,0.641,0.637,0.428,0.5,0.386,0.775,0.293,0.028,0.956,0.064,-0.359,0.931,0.244,0.864,-0.441,0.305,0.952,-0.003,0.26,0.862,0.436,0.119,0.611,0.783,-0.088,0.254,0.963,-0.317,-0.134,0.939,-0.299,0.902,-0.311,0.132,0.988,-0.08,-0.119,0.864,-0.489,-0.603,0.771,-0.205,-0.004,0.966,-0.259,-0.489,0.872,0.023,-0.014,0.788,-0.615,-0.506,0.614,-0.605,0.434,0.901,-0.008,0.487,0.753,0.443,0.619,0.369,0.694,0.377,-0.334,0.864,-0.12,-0.498,0.859,-0.907,0.42,0.002,-0.856,0.277,0.437,-0.729,-0.093,0.678,0.432,-0.348,0.832,0.006,0.297,0.955,-0.005,0.219,0.976,-0.341,-0.177,0.923,0.675,0.274,0.685,0.816,-0.403,0.415,0.481,-0.798,0.363,-0.24,-0.806,0.542,-0.631,0.563,-0.534,-0.586,0.787,0.194,0.029,0.898,-0.44,0.369,0.9,-0.231,0.667,0.745,-0.016,0.874,0.457,0.168,-0.214,0.976,-0.046,0.126,0.979,0.163,0.425,0.823,0.377,0.631,0.535,0.562,-0.186,0.941,-0.281,0.527,0.85,0.03,0.675,0.618,0.404,0.296,0.187,0.937,-0.542,0.746,0.388,-0.394,0.514,0.762,-0.217,0.927,0.305,-0.454,0.744,-0.49,0.327,0.554,-0.765,0.61,0.792,0.034,-0.204,0.928,-0.312,0.478,0.771,-0.42,0.304,0.67,-0.677,0.41,0.281,-0.868,0.852,0.524,0.011,0.975,0.071,-0.211,0.589,-0.1,-0.802,0.192,-0.549,-0.814,0.384,0.566,-0.729,0.519,0.824,-0.226,0.141,0.904,-0.403,0.308,0.937,0.168,0.194,0.888,-0.418,0.361,0.92,0.153,0.227,0.936,0.269,0.67,0.742,-0.017,-0.226,0.942,-0.246,-0.726,0.685,0.062,-0.077,0.996,0.044,-0.579,0.738,0.348,-0.477,0.513,0.714,0.199,0.636,0.745,-0.492,0.623,0.608,0.184,0.748,0.638,-0.532,0.386,0.754,0.09,0.411,0.907,-0.416,0.901,0.125,0.209,0.944,0.256,-0.535,0.267,0.802,-0.358,0.624,0.695,0.374,0.921,-0.107,0.549,0.749,-0.372,0.289,0.479,-0.829,0.669,0.74,-0.075,0.734,0.667,-0.13,0.127,0.789,-0.602,0.302,0.777,-0.552,0.59,0.292,-0.752,0.055,0.698,-0.714,0.343,0.212,-0.915,0.361,0.861,-0.358,-0.428,0.634,-0.645,-0.682,0.184,-0.708,-0.494,-0.654,-0.573,0.63,0.103,-0.77,0.335,-0.419,-0.844,-0.833,0.354,-0.426,-0.525,0.794,-0.308,-0.816,0.351,-0.458,-0.509,0.791,-0.339,-0.343,0.42,-0.84,-0.299,-0.123,-0.946,0.053,0.75,-0.66,-0.134,0.694,-0.707,0.311,0.815,-0.489,0.309,0.813,-0.493,0.981,-0.026,-0.192,0.979,-0.042,-0.201,0.845,-0.462,-0.27,0.902,-0.299,-0.311,0.78,-0.621,-0.076,0.33,-0.838,-0.434,0.028,0.993,-0.111,-0.421,0.776,-0.469,0.357,0.872,-0.336,0.234,0.922,-0.309,0.644,0.748,-0.161,0.603,0.774,-0.192,0.773,0.603,0.198,0.991,0.126,0.053,0.738,0.67,-0.085,0.957,0.19,-0.219,0.775,0.516,0.364,0.877,0.263,-0.402,0.986,0.1,-0.136,0.953,-0.101,0.286,0.488,0.819,0.301,-0.043,0.991,0.13,-0.587,0.809,0.021,0.642,0.624,-0.445,0.15,0.783,-0.604,-0.355,0.614,-0.705,-0.984,-0.031,-0.175,-0.856,-0.405,-0.322,-0.577,-0.713,-0.399,-0.81,0.164,-0.563,-0.691,-0.182,-0.7,-0.432,-0.468,-0.771,-0.963,0.224,-0.148,-0.876,-0.104,-0.471,-0.902,-0.422,0.093,-0.617,-0.216,-0.757,-0.792,0.451,-0.412,-0.99,-0.083,0.115,-0.551,0.748,0.37,-0.807,0.372,0.458,-0.868,0.358,0.345,-0.33,0.916,-0.228,0.198,0.743,0.639,-0.492,0.428,0.758,-0.082,0.324,0.943,-0.579,0.297,0.759,-0.087,0.189,0.978,-0.585,0.16,0.795,0.822,0.317,0.473,0.693,0.555,0.459,0.139,0.721,0.679,-0.161,0.907,0.388,0.762,0.647,-0.039,0.483,0.82,-0.308,0.728,0.483,0.487,0.406,0.459,0.79,0.065,0.242,0.968,-0.203,-0.11,0.973,-0.326,-0.499,0.803,-0.268,-0.82,0.505,0.569,0.77,0.289,0.195,0.742,0.641,-0.202,0.49,0.848,-0.514,0.081,0.854,-0.656,-0.372,0.656,-0.59,-0.746,0.309,0.747,-0.415,0.519,0.29,-0.497,0.818,-0.257,-0.565,0.784,0.909,-0.166,0.383,0.577,-0.189,0.795,0.848,-0.42,0.322,0.518,-0.439,0.735,0.71,-0.692,-0.129,0.31,-0.942,-0.126,0.517,-0.435,0.737,0.173,-0.65,0.74,0.636,-0.609,0.475,-0.175,-0.555,0.813,-0.386,-0.467,0.796,-0.096,-0.72,0.687,-0.245,-0.05,0.968,-0.364,-0.413,0.835,-0.753,-0.429,0.499,-0.543,-0.471,0.695,-0.871,0.22,0.44,-0.94,0.285,-0.185,-0.884,-0.247,0.396,-0.955,-0.19,-0.23,-0.176,0.95,0.26,0.095,0.643,0.76,-0.041,0.935,-0.351,-0.575,0.801,0.169,0.402,0.682,-0.612,0.382,0.115,-0.917,-0.173,0.732,-0.658,-0.203,0.167,-0.965,0.368,0.798,-0.478,0.664,0.29,-0.689,-0.241,0.564,-0.79,0.065,0.06,-0.996,0.069,0.822,-0.565,0.567,0.503,-0.653,-0.538,-0.048,-0.842,-0.04,-0.367,-0.929,0.578,0.418,-0.701,0.083,-0.083,-0.993,-0.849,0.419,-0.322,-0.596,-0.127,-0.793,-0.841,-0.095,-0.532,-0.423,-0.279,-0.862,-0.842,-0.397,-0.366,-0.424,-0.58,-0.696,0.305,0.301,-0.903,-0.007,0.58,-0.815,-0.21,-0.292,-0.933,-0.547,0.008,-0.837,-0.522,0.805,-0.281,-0.73,0.459,-0.506,-0.673,0.226,-0.704,-0.426,-0.072,-0.902,-0.148,-0.407,-0.901,0.097,-0.706,-0.701,0.257,-0.902,-0.347,-0.089,0.709,-0.7,0.158,0.411,-0.898,0.436,0.075,-0.897,0.681,-0.224,-0.697,0.841,-0.42,-0.343,-0.428,0.773,-0.469,-0.257,0.959,-0.12,0.023,0.978,0.207,-0.777,0.59,-0.222,-0.593,0.79,0.155,-0.291,0.811,0.507,-0.08,0.997,0.022,-0.789,0.557,-0.259,-0.186,0.854,-0.486,0.297,0.941,-0.16,-0.149,0.831,-0.536,0.335,0.918,-0.21,-0.591,0.773,-0.231,-0.424,0.861,0.282,-0.41,0.859,-0.306,-0.236,0.95,0.204,-0.274,0.862,-0.427,-0.757,0.639,0.137,-0.622,0.739,0.259,-0.318,0.926,-0.202,-0.698,0.696,-0.165,-0.166,0.599,-0.783,0.535,0.752,-0.385,-0.025,0.994,0.108,0.031,0.866,-0.5,0.501,0.866,0.004,-0.313,0.816,-0.486,-0.234,0.484,-0.843,-0.174,0.013,-0.985,0.56,0.772,-0.3,0.628,0.486,-0.608,0.679,0.082,-0.729,-0.52,0.844,-0.128,0.241,0.951,-0.195,-0.427,0.892,0.151,-0.48,0.855,0.198,0.328,0.791,0.516,-0.423,0.879,0.218,-0.694,0.665,-0.277,-0.822,0.143,-0.551,-0.357,-0.474,-0.805,0.432,0.861,-0.269,0.181,0.662,-0.728,0.062,0.178,-0.982,0.877,0.014,-0.481,0.856,0.483,-0.188,0.627,0.739,0.246,0.818,-0.083,-0.569,0.831,0.487,-0.27,0.93,-0.366,-0.025,0.941,0.209,0.266,-0.785,0.33,0.524,-0.197,0.764,0.614,-0.602,0.727,0.329,-0.694,0.299,0.655,0.577,0.589,0.566,0.44,0.166,0.883,0.157,0.745,0.648,0.395,0.526,0.753,0.163,0.926,0.342,-0.473,0.797,0.375,0.195,0.818,0.541,-0.441,0.691,0.572,-0.618,0.279,0.735,-0.414,0.666,0.621,-0.431,0.466,0.773,-0.397,0.505,0.767,0.169,-0.223,0.96,0.378,-0.173,0.91,-0.168,-0.564,0.808,-0.559,-0.422,0.714,0.056,0.166,0.985,-0.335,0.308,0.89,-0.965,0.015,0.261,-0.766,0.298,0.569,0.134,0.538,0.832,0.477,0.354,0.805,0.769,0.18,0.613,0.954,0.051,0.294,0.996,-0.008,-0.089,0.886,0.014,-0.463,-0.229,-0.123,0.966,0.141,-0.322,0.936,0.456,-0.51,0.729,0.656,-0.649,0.386,0.701,-0.713,-0.028,0.582,-0.689,-0.432,0.809,0.195,-0.554,0.96,0.064,0.271,-0.01,0.514,-0.858,-0.416,0.497,-0.762,-0.722,0.5,-0.478,-0.849,0.523,-0.08,0.05,-0.386,-0.921,-0.423,-0.407,-0.81,-0.779,-0.403,-0.479,-0.926,-0.377,-0.017,0.539,0.62,-0.571,0.3,0.932,-0.203,0.049,0.961,0.273,-0.145,0.479,-0.866,-0.366,0.769,-0.524,-0.6,0.796,-0.083,-0.673,0.458,0.58,-0.999,0.035,0.029,-0.705,0.477,-0.525,-0.38,0.925,0.026,-0.743,0.411,-0.527,-0.312,-0.004,-0.95,0.148,-0.111,-0.983,0.77,0.058,-0.635,-0.121,0.853,-0.508,0.415,0.728,-0.546,0.382,0.912,0.148,0.733,0.536,0.419,0.551,0.465,-0.692,0.902,0.089,-0.422,0.794,0.577,0.192,0.297,0.704,0.645,-0.009,0.257,0.966,0.133,0.863,0.488,0.225,0.621,0.751,-0.083,0.37,0.925,-0.34,0.934,0.115,-0.698,0.642,0.317,0.514,0.61,0.602,-0.424,0.535,0.731,-0.146,0.541,0.829,-0.757,0.127,0.641,-0.296,-0.675,0.676,-0.475,-0.325,0.818,-0.726,0.681,0.091,-0.398,0.908,0.129,-0.008,0.994,0.109,0.38,0.925,0.032,0.697,0.711,-0.087,0.892,0.391,-0.229,-0.668,0.523,0.529,-0.34,0.75,0.568,0.051,0.836,0.547,0.438,0.766,0.47,0.755,0.553,0.351,0.95,0.233,0.21,0.032,-0.412,-0.911,0.134,-0.435,-0.89,-0.886,-0.439,0.147,0.263,-0.599,0.756,-0.168,-0.501,0.849,-0.009,0.322,0.947,-0.394,0.589,0.706,-0.67,0.692,0.268,-0.148,0.136,0.98,-0.554,0.374,0.744,-0.807,0.509,0.301,-0.509,0.804,0.306,-0.635,0.61,0.474,-0.946,-0.037,0.321,-0.695,0.001,0.719,-0.312,0.176,0.934,0.083,0.432,0.898,0.367,0.691,0.623,0.452,0.871,0.194,0.311,0.916,-0.254,-0.874,-0.408,0.265,-0.581,-0.363,0.728,-0.136,-0.16,0.978,0.324,0.138,0.936,0.654,0.438,0.616,0.753,0.648,0.118,0.589,0.7,-0.404,-0.92,-0.111,-0.376,-0.519,0.371,-0.77,-0.267,0.713,-0.648,0.113,0.866,-0.487,0.377,0.903,0.205,-0.921,0.312,0.232,-0.669,0.654,0.353,-0.289,0.807,0.515,0.11,0.988,0.104,-0.342,0.798,0.496,0.308,0.906,0.291,-0.14,0.714,0.686,-0.528,0.748,-0.402,0.011,0.999,0.047,-0.563,0.781,0.27,-0.806,0.59,0.053,-0.944,0.298,-0.143,-0.336,0.934,-0.119,-0.579,0.743,-0.336,-0.717,0.451,-0.531,-0.146,0.368,0.918,-0.908,0.235,0.346,-0.621,0.611,-0.491,-0.016,0.984,0.175,-0.628,0.76,-0.17,-0.698,0.623,-0.354,0.082,0.425,0.901,0.008,0.374,0.927,-0.036,0.076,0.996,0.117,0.456,0.882,0.105,0.572,0.814,-0.141,0.172,0.975,-0.067,0.369,0.927,-0.421,0.018,0.907,0.165,0.797,0.58,-0.605,0.777,0.174,-0.019,0.912,0.409,-0.001,0.904,0.428,-0.165,0.956,0.242,-0.046,0.952,0.303,0.034,0.942,-0.335,-0.549,0.632,-0.548,-0.708,0.388,0.59,-0.426,0.865,0.266,-0.528,0.645,-0.553,-0.424,0.349,-0.836,-0.883,0.419,-0.209,-0.646,0.747,0.16,-0.567,0.594,-0.571,-0.326,0.923,-0.205,-0.014,0.977,-0.212,-0.166,0.953,-0.255,-0.11,0.993,-0.043,-0.779,0.537,-0.325,-0.902,-0.175,0.395,-0.915,-0.161,0.37,-0.085,0.154,-0.984,0.264,-0.043,-0.963,0.242,0.744,-0.623,0.566,0.561,-0.604,0.542,0.785,-0.3,0.201,0.544,-0.815,0.673,0.356,-0.648,0.365,0.902,0.23,0.813,0.573,0.102,-0.177,-0.128,-0.976,-0.382,0.378,-0.843,0.503,-0.442,-0.743,0.902,0.144,-0.407,0.708,0.653,-0.269,-0.03,0.923,-0.385,0.797,0.405,0.448,0.65,0.736,0.19,-0.136,0.928,-0.348,-0.264,0.913,-0.312,0.141,0.901,0.411,-0.076,0.991,0.111,-0.309,0.933,-0.184,0.509,0.851,0.13,0.293,0.941,-0.17,0.06,0.883,-0.465,0.8,0.175,-0.574,0.809,0.273,-0.52,0.387,0.901,0.196,0.16,0.778,0.608,-0.059,0.45,0.891,-0.003,1.0,0.01,-0.23,0.877,0.421,-0.449,0.549,0.705,0.752,-0.427,0.502,0.707,-0.254,0.66,0.103,0.583,0.806,-0.176,0.868,0.465,0.47,0.667,0.578,0.191,0.953,0.237,-0.989,-0.145,-0.02,-0.945,0.305,-0.116,-0.41,0.73,-0.547,-0.541,0.836,0.094,-0.33,0.775,-0.538,-0.463,0.881,0.102,-0.596,0.205,-0.777,-0.086,0.452,-0.888,-0.203,-0.603,-0.771,0.307,-0.356,-0.883,-0.903,-0.115,-0.415,-0.778,-0.073,-0.624,-0.412,0.493,-0.766,0.191,0.318,-0.929,-0.571,-0.033,-0.82,0.038,-0.19,-0.981,-0.98,0.182,-0.079,-0.922,0.359,-0.142,-0.573,0.817,-0.061,0.055,0.987,-0.153,-0.588,0.761,-0.273,0.04,0.932,-0.36,0.347,0.778,-0.524,-0.013,0.916,0.401,-0.406,0.616,0.675,-0.916,-0.185,0.356,-0.478,0.349,-0.806,-0.816,0.092,-0.57,-0.226,0.596,0.77,-0.46,0.771,0.441,0.894,-0.303,0.329,0.792,0.173,0.585,0.866,-0.333,0.374,0.764,0.143,0.629,0.961,-0.198,-0.194,0.865,0.384,-0.324,0.967,-0.191,-0.169,0.871,0.391,-0.298,0.522,0.826,0.212,0.553,0.807,0.208,0.286,-0.506,0.814,-0.111,-0.627,0.771,-0.475,-0.67,0.571,0.143,-0.097,0.985,-0.254,-0.218,0.942,-0.618,-0.261,0.742,-0.784,-0.619,-0.04,-0.954,-0.152,-0.26,-0.766,-0.637,-0.09,-0.936,-0.169,-0.31,-0.827,0.562,0.014,-0.367,0.93,-0.009,-0.448,0.791,-0.418,-0.456,0.493,-0.741,-0.389,0.096,-0.916,-0.261,-0.324,-0.909,-0.096,-0.685,-0.722,0.074,-0.918,-0.391,0.078,0.988,-0.134,0.003,0.858,-0.513,-0.004,0.583,-0.812,0.057,0.215,-0.975,0.176,-0.174,-0.969,0.329,-0.509,-0.795,0.486,-0.725,-0.488,-0.557,-0.406,-0.724,-0.466,-0.342,-0.816,-0.167,-0.679,0.715,-0.336,-0.494,0.802,0.113,-0.784,0.611,0.035,-0.784,0.62,0.507,-0.858,0.079,0.88,-0.44,0.177,0.502,-0.859,0.102,0.875,-0.441,0.201,0.659,-0.04,0.751,0.673,-0.147,0.725,0.776,-0.017,0.631,0.88,-0.262,-0.397,0.825,-0.339,-0.452,0.875,0.404,0.268,0.547,0.472,0.692,0.88,-0.269,0.391,0.552,-0.187,0.812,0.505,-0.007,0.863,0.765,-0.413,0.494,0.556,0.057,0.829,0.818,-0.347,0.459,-0.227,-0.036,0.973,-0.468,-0.5,0.729,-0.095,-0.113,0.989,-0.336,-0.577,0.745,0.155,-0.982,0.111,0.199,-0.92,0.336,0.612,-0.765,0.199,0.51,-0.811,0.285,-0.164,-0.835,0.525,-0.468,-0.493,0.733,-0.723,-0.062,0.688,-0.854,0.331,0.402,0.441,-0.45,0.776,0.138,-0.108,0.985,-0.117,0.323,0.939,-0.248,0.716,0.653,-0.902,0.093,-0.422,-0.663,-0.008,-0.748,-0.318,-0.144,-0.937,-0.746,0.504,-0.435,-0.508,0.404,-0.761,-0.163,0.267,-0.95,-0.864,0.504,-0.008,-0.599,0.042,-0.8,0.297,0.359,-0.885,-0.024,0.981,-0.194,0.64,-0.755,-0.144,0.646,-0.751,-0.138,0.653,0.372,-0.659,0.699,0.377,-0.608,-0.939,-0.3,0.167,-0.867,0.003,0.499,0.403,-0.515,0.756,-0.146,-0.54,0.829,0.394,-0.659,0.641,-0.155,-0.682,0.715,-0.253,-0.765,0.592,-0.574,-0.772,0.273,-0.463,-0.39,0.796,-0.785,-0.396,0.477,-0.319,0.719,-0.618,0.083,0.776,-0.626,0.473,0.68,-0.561,0.782,0.447,-0.434,0.956,0.12,-0.268,0.965,-0.247,-0.092,-0.34,0.919,-0.2,0.063,0.976,-0.208,0.453,0.88,-0.143,0.762,0.648,-0.016,0.936,0.32,0.149,0.944,-0.046,0.326,0.076,-0.991,-0.108,0.156,-0.966,0.207,-0.015,-0.53,-0.848,-0.004,-0.514,-0.857,-0.25,-0.965,0.074,-0.313,-0.94,0.136,0.713,-0.2,0.672,0.711,-0.234,0.663,0.241,0.537,0.809,-0.226,0.842,0.49,-0.062,-0.735,-0.675,0.539,-0.383,-0.75,0.2,-0.962,-0.186,0.329,-0.904,-0.274,-0.91,-0.412,-0.037,-0.989,-0.104,-0.107,0.531,-0.02,0.847,-0.034,-0.034,0.999,0.532,-0.061,0.845,-0.034,-0.076,0.997,-0.782,-0.417,0.463,-0.74,-0.672,-0.022,-0.765,-0.436,0.474,-0.723,-0.691,-0.01,0.019,-0.994,-0.104,0.017,-0.994,-0.109,-0.28,-0.356,-0.891,-0.734,0.054,-0.677,-0.121,-0.132,-0.984,-0.575,0.279,-0.77,0.015,-0.818,0.576,-0.01,-0.808,0.59,-0.037,-0.815,0.579,-0.04,-0.832,0.554,-0.015,-0.842,0.54,0.04,0.832,-0.554,0.015,0.842,-0.54,-0.013,0.835,-0.551,-0.015,0.818,-0.576,0.01,0.808,-0.59,-0.476,0.149,0.867,-0.448,0.343,0.825,-0.57,0.436,0.696,-0.719,0.336,0.608,-0.747,0.142,0.65,0.727,-0.342,-0.596,0.756,-0.133,-0.64,0.625,-0.032,-0.78,0.464,-0.141,-0.874,0.435,-0.35,-0.83,0.708,-0.379,0.596,0.956,-0.051,0.288,0.841,0.449,0.301,0.478,0.622,0.62,0.23,0.294,0.928,-0.233,-0.559,0.796,-0.702,-0.646,0.3,-0.945,0.036,-0.326,-0.714,0.34,-0.612,-0.378,0.18,-0.908,-0.271,-0.284,-0.92,-0.501,-0.588,-0.634,0.9,-0.347,-0.265,0.628,0.121,-0.769,0.457,-0.514,-0.726,0.134,-0.698,0.703,0.154,-0.243,0.958,0.519,0.107,0.848,0.303,-0.342,0.889,0.495,-0.723,0.482,0.158,-0.782,0.602,0.717,-0.687,0.113,0.617,-0.734,-0.285,0.457,-0.514,-0.726,0.161,-0.85,-0.502,0.459,0.049,-0.887,0.592,0.671,-0.447,0.253,0.527,-0.811,-0.154,0.243,-0.958,-0.158,0.782,-0.602,-0.578,0.458,-0.676,0.253,0.527,-0.811,0.457,-0.514,-0.726,0.459,0.049,-0.887,0.039,-0.276,-0.96,0.253,0.527,-0.811,-0.154,0.243,-0.958,-0.158,0.782,-0.602,-0.592,-0.671,0.447,-0.821,-0.214,0.53,-0.592,-0.671,0.447,-0.987,-0.158,0.024,-0.949,-0.306,-0.071,-0.371,-0.891,-0.261,-0.745,-0.428,-0.511,-0.745,-0.428,-0.511,-0.371,-0.891,-0.261,-0.772,-0.634,-0.037,-0.694,-0.67,-0.262,-0.487,-0.736,0.47,0.154,-0.243,0.958,0.519,0.107,0.848,0.7,-0.342,-0.627,-0.278,-0.635,-0.721,-0.371,-0.891,-0.261,-0.519,-0.107,-0.848,-0.278,-0.635,-0.721,-0.278,-0.635,-0.721,0.161,-0.85,-0.502,0.195,-0.928,-0.316,-0.371,-0.891,-0.261,-0.281,-0.937,-0.206,-0.371,-0.891,-0.261,-0.278,-0.635,-0.721,0.158,-0.782,0.602,0.38,-0.796,0.47,0.154,-0.243,0.958,0.291,-0.156,0.944,-0.459,-0.049,0.887,-0.194,-0.431,0.881,-0.551,-0.782,0.292,0.238,-0.971,-0.023,0.617,-0.734,-0.285,0.83,-0.3,-0.47,0.459,0.049,-0.887,0.894,-0.015,-0.448,0.63,-0.466,-0.621,0.907,-0.421,0.009,0.83,-0.3,-0.47,0.326,-0.454,-0.829,0.653,-0.683,-0.329,-0.894,0.099,-0.436,-0.987,-0.158,0.024,0.459,0.049,-0.887,0.039,-0.276,-0.96,-0.154,0.243,-0.958,0.116,-0.318,-0.941,0.617,-0.734,-0.285,0.907,-0.421,0.009,0.83,-0.3,-0.47,0.457,-0.514,-0.726,0.161,-0.85,-0.502,0.848,-0.471,-0.244,-0.772,-0.634,-0.037,-0.204,-0.948,0.245,-0.371,-0.891,-0.261,-0.592,-0.671,0.447,-0.745,-0.428,-0.511,-0.772,-0.634,-0.037,-0.078,-0.993,-0.092,-0.243,-0.893,-0.378,-0.204,-0.948,0.245,0.075,-0.991,0.115,-0.126,0.338,0.933,0.391,-0.079,0.917,0.158,-0.782,0.602,-0.253,-0.527,0.811,0.154,-0.243,0.958,-0.459,-0.049,0.887,-0.592,-0.671,0.447,-0.342,-0.698,0.629,0.158,-0.782,0.602,0.238,-0.971,-0.023,-0.204,-0.948,0.245,0.158,-0.782,0.602,0.578,-0.458,0.676,-0.253,-0.527,0.811,-0.371,-0.891,-0.261,-0.772,-0.634,-0.037,-0.881,-0.386,0.273,0.881,-0.201,-0.428,0.987,0.158,-0.024,0.823,-0.402,0.4,0.78,-0.606,-0.156,0.562,-0.603,-0.566,0.907,-0.421,0.009,0.039,-0.276,-0.96,-0.278,-0.635,-0.721,0.617,-0.734,-0.285,0.907,-0.421,0.009,0.83,-0.3,-0.47,0.617,-0.734,-0.285,0.611,-0.757,0.232,0.617,-0.734,-0.285,0.457,-0.514,-0.726,0.161,-0.85,-0.502,0.039,-0.276,-0.96,-0.278,-0.635,-0.721,-0.341,-0.655,-0.674,-0.044,-0.996,-0.079,0.161,-0.85,-0.502,-0.274,-0.537,-0.798,-0.441,-0.84,-0.316,-0.278,-0.635,-0.721,-0.617,-0.236,-0.751,-0.519,-0.107,-0.848,-0.745,-0.428,-0.511,-0.894,0.099,-0.436,-0.278,-0.635,-0.721,-0.371,-0.891,-0.261,-0.772,-0.634,-0.037,-0.334,-0.16,-0.929,0.101,-0.465,-0.879,-0.701,-0.567,-0.432,-0.281,-0.889,-0.362,-0.371,-0.891,-0.261,-0.204,-0.948,0.245,0.158,-0.782,0.602,-0.592,-0.671,0.447,-0.772,-0.634,-0.037,-0.188,-0.921,0.34,-0.039,0.276,0.96,0.519,0.107,0.848,-0.821,-0.214,0.53,-0.459,-0.049,0.887,-0.229,0.031,0.973,-0.336,-0.526,0.781,0.158,-0.782,0.602,-0.089,-0.872,0.482,0.238,-0.971,-0.023,-0.821,-0.214,0.53,-0.821,-0.214,0.53,-0.604,-0.521,0.604,-0.127,-0.979,0.159,0.578,-0.458,0.676,0.894,-0.099,0.436,0.907,-0.421,0.009,0.332,-0.501,0.799,0.84,-0.383,0.384,0.617,-0.734,-0.285,0.238,-0.971,-0.023,0.907,-0.421,0.009,0.83,-0.3,-0.47,0.161,-0.85,-0.502,0.238,-0.971,-0.023,0.611,-0.757,0.232,-0.204,-0.948,0.245,0.158,-0.782,0.602,0.578,-0.458,0.676,-0.371,-0.891,-0.261,-0.772,-0.634,-0.037,0.161,-0.85,-0.502,-0.371,-0.891,-0.261,0.161,-0.85,-0.502,0.83,-0.3,-0.47,-0.278,-0.635,-0.721,-0.371,-0.891,-0.261,-0.745,-0.428,-0.511,-0.772,-0.634,-0.037,-0.894,0.099,-0.436,-0.987,-0.158,0.024,0.161,-0.85,-0.502,-0.278,-0.635,-0.721,-0.519,-0.107,-0.848,0.039,-0.276,-0.96,0.894,-0.099,0.436,-0.371,-0.891,-0.261,-0.592,-0.671,0.447,-0.772,-0.634,-0.037,0.457,-0.514,-0.726,0.459,0.049,-0.887,0.039,-0.276,-0.96,0.123,-0.609,-0.784,-0.772,-0.634,-0.037,-0.917,-0.399,-0.013,-0.769,-0.579,0.273,-0.119,-0.97,0.211,-0.592,-0.671,0.447,-0.253,-0.527,0.811,-0.821,-0.214,0.53,0.238,-0.971,-0.023,-0.204,-0.948,0.245,0.158,-0.782,0.602,-0.592,-0.671,0.447,-0.253,-0.527,0.811,-0.821,-0.214,0.53,-0.987,-0.158,0.024,0.931,-0.346,-0.118,0.907,-0.421,0.009,0.617,-0.734,-0.285,0.238,-0.971,-0.023,0.611,-0.757,0.232,0.161,-0.85,-0.502,-0.204,-0.948,0.245,0.158,-0.782,0.602,-0.26,-0.935,0.239,0.305,-0.879,0.366,-0.159,-0.596,0.787,0.611,-0.757,0.232,0.158,-0.782,0.602,-0.592,-0.671,0.447,-0.253,-0.527,0.811,0.154,-0.243,0.958,-0.459,-0.049,0.887,0.432,0.196,0.88,0.869,0.109,0.482,0.995,0.016,-0.096,0.617,-0.734,-0.285,0.238,-0.971,-0.023,0.617,-0.734,-0.285,0.238,-0.971,-0.023,0.611,-0.757,0.232,0.907,-0.421,0.009,-0.204,-0.948,0.245,0.238,-0.971,-0.023,0.356,-0.927,0.115,0.617,-0.734,-0.285,0.611,-0.757,0.232,0.907,-0.421,0.009,0.717,0.319,-0.62,0.256,0.713,-0.653,0.592,0.671,-0.447,0.877,0.46,-0.14,0.821,0.214,-0.53,0.592,0.671,-0.447,0.821,0.214,-0.53,0.459,0.049,-0.887,0.474,0.367,-0.8,0.599,-0.138,-0.789,0.732,0.072,-0.678,0.605,0.093,-0.791,0.217,-0.163,-0.963,-0.31,-0.932,-0.189,0.459,0.049,-0.887,0.894,-0.099,0.436,0.815,-0.412,-0.407,0.158,-0.782,0.602,-0.253,-0.527,0.811,0.907,-0.421,0.009,-0.433,-0.313,0.845,-0.772,-0.634,-0.037,-0.371,-0.891,-0.261,-0.772,-0.634,-0.037,-0.586,-0.807,0.078,0.039,-0.276,-0.96,0.039,-0.276,-0.96,-0.278,-0.635,-0.721,-0.154,0.243,-0.958,0.039,-0.276,-0.96,-0.142,-0.135,-0.981,-0.777,-0.551,0.305,-0.987,-0.158,0.024,-0.666,-0.639,0.385,-0.253,-0.527,0.811,-0.459,-0.049,0.887,-0.772,-0.634,-0.037,-0.987,-0.158,0.024,-0.732,-0.525,0.435,-0.592,-0.671,0.447,-0.097,-0.974,0.203,0.122,-0.501,0.857,0.154,-0.243,0.958,-0.204,-0.948,0.245,-0.592,-0.671,0.447,-0.253,-0.527,0.811,-0.772,-0.634,-0.037,-0.821,-0.214,0.53,-0.926,0.266,0.269,0.158,-0.782,0.602,0.578,-0.458,0.676,-0.204,-0.948,0.245,0.158,-0.782,0.602,0.578,-0.458,0.676,0.602,-0.782,0.161,0.057,-0.97,0.237,-0.103,-0.903,0.416,0.394,-0.792,0.466,0.611,-0.757,0.232,0.578,-0.458,0.676,0.894,-0.099,0.436,0.745,0.428,0.511,0.772,0.634,0.037,0.278,0.635,0.721,0.371,0.891,0.261,-0.161,0.85,0.502,0.624,0.018,0.781,0.013,0.2,0.98,-0.457,0.514,0.726,-0.109,0.717,0.689,-0.459,-0.049,0.887,-0.267,-0.176,0.948,0.08,-0.415,0.906,0.66,-0.566,0.493,-0.204,-0.948,0.245,0.158,-0.782,0.602,0.617,-0.734,-0.285,0.161,-0.85,-0.502,-0.062,-0.985,0.164,0.404,-0.871,-0.279,0.238,-0.971,-0.023,0.161,-0.85,-0.502,0.78,-0.494,-0.383,0.262,-0.167,-0.95,0.039,-0.276,-0.96,0.253,0.527,-0.811,-0.154,0.243,-0.958,0.253,0.527,-0.811,0.592,0.671,-0.447,0.204,0.948,-0.245,-0.238,0.971,0.023,0.578,-0.458,0.676,0.894,-0.099,0.436,0.519,0.107,0.848,0.745,0.428,0.511,0.599,0.795,-0.094,0.659,0.456,-0.597,-0.158,0.782,-0.602,-0.154,0.243,-0.958,0.987,0.158,-0.024,0.821,0.214,-0.53,0.772,0.634,0.037,0.592,0.671,-0.447,0.611,-0.757,0.232,0.578,-0.458,0.676,0.894,-0.099,0.436,0.457,-0.514,-0.726,0.023,0.191,-0.981,0.787,0.184,-0.589,-0.843,-0.236,-0.484,-0.987,-0.158,0.024,-0.994,-0.065,0.093,-0.792,-0.61,-0.017,-0.745,-0.428,-0.511,-0.772,-0.634,-0.037,-0.278,-0.635,-0.721,-0.745,-0.428,-0.511,0.161,-0.85,-0.502,-0.987,-0.158,0.024,-0.295,-0.637,-0.713,-0.311,-0.912,-0.267,-0.815,-0.277,-0.509,-0.831,-0.553,-0.063,-0.996,0.071,0.063,-0.987,-0.158,0.024,-0.519,-0.107,-0.848,-0.889,-0.454,-0.056,-0.499,-0.843,-0.2,-0.592,-0.671,0.447,-0.344,-0.62,0.705,-0.405,-0.718,0.567,-0.194,-0.369,0.909,-0.371,-0.891,-0.261,-0.987,-0.158,0.024,-0.87,-0.23,0.435,-0.807,-0.59,0.01,-0.204,-0.948,0.245,-0.592,-0.671,0.447,-0.253,-0.527,0.811,0.158,-0.782,0.602,0.074,-0.45,0.89,-0.253,-0.527,0.811,-0.204,-0.948,0.245,-0.204,-0.948,0.245,0.158,-0.782,0.602,0.154,-0.243,0.958,-0.388,-0.334,0.859,-0.03,-0.745,0.666,0.238,-0.971,-0.023,0.457,-0.514,-0.726,-0.204,-0.948,0.245,0.038,-0.926,0.375,0.238,-0.971,-0.023,0.588,-0.783,-0.204,0.737,-0.01,-0.676,0.83,-0.3,-0.47,0.692,-0.228,-0.685,0.424,-0.732,-0.533,0.222,-0.64,-0.735,0.161,-0.85,-0.502,-0.371,-0.891,-0.261,0.422,-0.299,-0.856,-0.023,-0.815,-0.579,0.039,-0.276,-0.96,-0.154,0.243,-0.958,-0.519,-0.107,-0.848,0.907,-0.421,0.009,0.806,-0.495,0.324,0.931,-0.345,-0.121,0.161,-0.85,-0.502,0.735,-0.585,-0.343,0.441,-0.894,0.082,0.253,0.527,-0.811,-0.154,0.243,-0.958,0.204,0.948,-0.245,-0.158,0.782,-0.602,-0.578,0.458,-0.676,-0.238,0.971,0.023,-0.611,0.757,-0.232,0.617,-0.734,-0.285,0.83,-0.3,-0.47,0.457,-0.514,-0.726,0.987,0.158,-0.024,0.821,0.214,-0.53,0.459,0.049,-0.887,0.039,-0.276,-0.96,0.772,0.634,0.037,0.592,0.671,-0.447,0.253,0.527,-0.811,-0.278,-0.635,-0.721,0.457,-0.514,-0.726,0.617,-0.734,-0.285,0.457,-0.514,-0.726,0.161,-0.85,-0.502,0.459,0.049,-0.887,0.039,-0.276,-0.96,-0.278,-0.635,-0.721,-0.154,0.243,-0.958,-0.519,-0.107,-0.848,-0.371,-0.891,-0.261,0.238,-0.971,-0.023,0.161,-0.85,-0.502,-0.204,-0.948,0.245,-0.278,-0.635,-0.721,-0.371,-0.891,-0.261,-0.592,-0.671,0.447,-0.772,-0.634,-0.037,-0.227,-0.141,-0.964,-0.688,-0.05,-0.724,0.815,-0.543,-0.205,0.995,0.069,-0.071,-0.348,-0.002,-0.937,-0.611,0.757,-0.232,-0.907,0.421,-0.009,0.253,0.527,-0.811,-0.158,0.782,-0.602,-0.154,0.243,-0.958,-0.578,0.458,-0.676,-0.483,0.667,-0.568,0.022,0.551,-0.834,-0.417,0.499,-0.76,0.03,0.022,-0.999,-0.154,0.243,-0.958,-0.158,0.782,-0.602,-0.792,-0.15,-0.591,-0.391,-0.452,-0.802,-0.371,-0.891,-0.261,-0.998,0.07,-0.004,-0.987,-0.158,0.024,-1.0,-0.006,-0.021,-0.98,0.196,0.02,-0.894,0.099,-0.436,0.158,-0.782,0.602,0.578,-0.458,0.676,-0.592,-0.671,0.447,-0.253,-0.527,0.811,0.154,-0.243,0.958,-0.821,-0.214,0.53,-0.459,-0.049,0.887,-0.039,0.276,0.96,-0.821,-0.214,0.53,-0.459,-0.049,0.887,-0.821,-0.214,0.53,-0.83,0.3,0.47,-0.894,0.099,-0.436,-0.611,0.757,-0.232,0.238,-0.971,-0.023,-0.059,-0.99,-0.13,-0.469,-0.857,0.213,-0.748,-0.462,0.477,-0.809,0.075,0.584,-0.675,-0.575,0.462,-0.221,-0.876,0.429,-0.821,-0.214,0.53,-0.459,-0.049,0.887,0.039,-0.276,-0.96,-0.278,-0.635,-0.721,-0.371,-0.891,-0.261,-0.519,-0.107,-0.848,-0.745,-0.428,-0.511,-0.772,-0.634,-0.037,-0.204,-0.948,0.245,-0.569,-0.682,-0.459,0.068,-0.737,-0.672,-0.772,-0.634,-0.037,-0.578,-0.794,0.188,0.036,-0.986,0.161,-0.204,-0.948,0.245,-0.204,-0.948,0.245,0.158,-0.782,0.602,-0.592,-0.671,0.447,0.611,-0.757,0.232,0.238,-0.971,-0.023,0.642,-0.755,0.134,0.238,-0.971,-0.023,0.161,-0.85,-0.502,0.907,-0.421,0.009,0.894,-0.099,0.436,0.987,0.158,-0.024,0.519,0.107,0.848,0.745,0.428,0.511,0.772,0.634,0.037,0.278,0.635,0.721,0.371,0.891,0.261,0.739,0.338,0.583,0.278,0.635,0.721,0.578,-0.458,0.676,0.894,-0.099,0.436,0.783,0.366,0.502,0.57,-0.125,0.812,0.617,-0.734,-0.285,0.457,-0.514,-0.726,0.3,-0.852,-0.43,0.617,-0.734,-0.285,0.629,0.015,-0.777,0.212,-0.272,-0.939,-0.257,-0.495,-0.83,0.459,0.049,-0.887,0.039,-0.276,-0.96,-0.154,0.243,-0.958,-0.519,-0.107,-0.848,0.457,-0.514,-0.726,-0.278,-0.635,-0.721,0.617,-0.734,-0.285,0.617,-0.734,-0.285,0.83,-0.3,-0.47,0.98,-0.192,-0.061,0.837,-0.149,0.527,0.17,-0.399,-0.901,0.158,-0.782,0.602,0.789,-0.608,-0.082,0.679,-0.529,0.509,-0.519,-0.107,-0.848,0.013,0.734,-0.679,-0.351,0.835,-0.424,-0.987,-0.158,0.024,-0.578,0.458,-0.676,-0.894,0.099,-0.436,0.457,-0.514,-0.726,0.459,0.049,-0.887,0.039,-0.276,-0.96,-0.278,-0.635,-0.721,0.253,0.527,-0.811,-0.154,0.243,-0.958,-0.519,-0.107,-0.848,-0.745,-0.428,-0.511,-0.158,0.782,-0.602,-0.578,0.458,-0.676,-0.894,0.099,-0.436,-0.987,-0.158,0.024,-0.611,0.757,-0.232,-0.907,0.421,-0.009,0.821,0.214,-0.53,0.592,0.671,-0.447,0.498,0.604,-0.623,-0.597,0.106,-0.795,-0.154,0.243,-0.958,0.611,-0.757,0.232,0.455,-0.33,-0.827,0.853,-0.162,-0.496,-0.894,0.099,-0.436,-0.238,0.971,0.023,-0.611,0.757,-0.232,-0.894,0.099,-0.436,-0.611,0.757,-0.232,-0.519,-0.107,-0.848,-0.578,0.458,-0.676,-0.765,-0.287,-0.577,-0.936,0.127,-0.328,-0.987,-0.158,0.024,-0.894,0.099,-0.436,-0.519,-0.107,-0.848,-0.894,0.099,-0.436,-0.852,0.273,-0.446,-0.778,-0.302,-0.551,-0.704,-0.077,0.706,-0.19,-0.301,0.934,-0.829,-0.253,0.498,-0.997,-0.069,-0.014,-0.83,0.3,0.47,-0.83,0.3,0.47,-0.263,-0.543,0.797,-0.273,-0.042,0.961,0.008,-0.505,0.863,0.066,-0.394,0.917,0.286,-0.825,0.488,-0.163,-0.648,0.744,-0.459,-0.049,0.887,-0.772,-0.634,-0.037,-0.821,-0.214,0.53,-0.987,-0.158,0.024,0.106,-0.197,0.975,0.19,-0.709,0.679,-0.204,-0.948,0.245,0.519,0.107,0.848,0.745,0.428,0.511,0.894,-0.079,0.442,0.47,-0.395,0.79,0.894,-0.099,0.436,0.154,-0.243,0.958,0.305,0.066,0.95,-0.278,-0.635,-0.721,-0.356,0.226,0.907,-0.595,-0.383,0.707,-0.537,-0.823,0.185,-0.211,-0.886,-0.413,0.091,-0.988,-0.127,-0.372,-0.894,-0.248,0.911,-0.365,0.19,0.907,-0.421,0.009,0.83,-0.3,-0.47,0.987,0.158,-0.024,0.998,0.027,0.063,0.878,-0.362,-0.313,0.821,0.214,-0.53,-0.158,0.782,-0.602,-0.238,0.971,0.023,0.519,0.107,0.848,-0.039,0.276,0.96,0.83,-0.3,-0.47,0.457,-0.514,-0.726,0.791,-0.413,0.451,0.395,-0.891,0.224,-0.154,0.243,-0.958,0.507,0.218,-0.834,0.05,0.023,-0.998,-0.204,-0.948,0.245,-0.371,-0.891,-0.261,-0.592,-0.671,0.447,-0.772,-0.634,-0.037,0.4,-0.227,-0.888,0.115,-0.671,-0.733,0.103,-0.63,-0.77,-0.745,-0.428,-0.511,-0.907,0.421,-0.009,-0.745,-0.428,-0.511,-0.578,0.458,-0.676,0.253,0.527,-0.811,-0.154,0.243,-0.958,-0.158,0.782,-0.602,-0.158,0.782,-0.602,-0.238,0.971,0.023,0.592,0.671,-0.447,0.253,0.527,-0.811,0.271,0.879,-0.393,0.161,-0.85,-0.502,-0.371,-0.891,-0.261,0.617,-0.734,-0.285,-0.578,0.458,-0.676,-0.894,0.099,-0.436,-0.987,-0.158,0.024,-0.907,0.421,-0.009,-0.519,-0.107,-0.848,-0.745,-0.428,-0.511,-0.154,0.243,-0.958,-0.519,-0.107,-0.848,-0.745,-0.428,-0.511,-0.894,0.099,-0.436,-0.987,-0.158,0.024,-0.253,-0.527,0.811,-0.459,-0.049,0.887,-0.238,0.971,0.023,0.204,0.948,-0.245,-0.158,0.782,-0.602,-0.404,0.882,-0.241,-0.427,0.564,-0.706,-0.935,0.286,0.21,-0.968,-0.044,-0.247,-0.772,-0.634,-0.037,-0.821,-0.214,0.53,-0.987,-0.158,0.024,-0.926,0.03,0.377,-0.78,-0.543,0.31,-0.364,-0.924,0.12,0.175,-0.976,-0.127,0.238,-0.971,-0.023,0.161,-0.85,-0.502,-0.204,-0.948,0.245,0.158,-0.782,0.602,-0.253,-0.527,0.811,0.405,0.235,0.884,-0.269,0.51,0.817,0.745,0.428,0.511,0.278,0.635,0.721,0.154,-0.243,0.958,-0.459,-0.049,0.887,0.303,0.113,0.946,-0.295,0.03,0.955,-0.272,-0.044,0.961,0.283,-0.212,0.935,0.154,-0.243,0.958,0.894,-0.099,0.436,0.519,0.107,0.848,0.519,0.107,0.848,-0.253,-0.527,0.811,-0.459,-0.049,0.887,-0.039,0.276,0.96,-0.117,0.348,0.93,0.096,-0.18,0.979,0.154,-0.243,0.958,-0.459,-0.049,0.887,-0.039,0.276,0.96,0.659,0.034,0.752,0.32,-0.476,0.82,0.772,0.634,0.037,0.947,-0.213,-0.242,0.86,-0.406,0.308,0.578,-0.458,0.676,0.959,-0.243,-0.146,0.695,-0.448,-0.562,0.519,0.107,0.848,0.667,0.413,0.62,0.188,0.443,0.877,-0.63,-0.466,0.621,-0.554,-0.833,-0.012,-0.182,-0.746,-0.64,0.617,-0.734,-0.285,0.316,-0.103,-0.943,0.34,-0.619,-0.708,-0.503,-0.818,-0.279,-0.941,-0.313,0.128,-0.932,-0.198,0.303,-0.241,-0.919,0.313,0.296,-0.789,0.538,0.08,0.465,-0.882,0.208,-0.359,-0.91,0.204,0.948,-0.245,0.446,0.692,-0.568,0.683,0.726,-0.079,0.611,-0.757,0.232,0.138,-0.772,0.621,0.545,-0.457,0.703,-0.364,-0.155,0.918,0.063,0.136,0.989,0.617,-0.734,-0.285,0.203,-0.35,-0.914,0.039,-0.276,-0.96,0.83,-0.3,-0.47,-0.858,0.493,-0.143,-0.617,0.734,0.285,-0.238,0.971,0.023,-0.276,0.915,-0.293,-0.265,0.555,-0.788,-0.17,-0.017,-0.985,-0.062,-0.143,-0.988,0.592,0.671,-0.447,0.371,0.891,0.261,0.204,0.948,-0.245,-0.238,0.971,0.023,-0.611,0.757,-0.232,0.148,0.989,-0.01,0.328,0.82,-0.469,-0.681,0.598,-0.422,-0.796,0.083,-0.6,-0.987,-0.158,0.024,-0.459,-0.049,0.887,0.278,0.635,0.721,0.371,0.891,0.261,-0.161,0.85,0.502,-0.238,0.971,0.023,-0.617,0.734,0.285,0.204,0.948,-0.245,-0.158,0.782,-0.602,-0.238,0.971,0.023,-0.611,0.757,-0.232,0.459,0.049,-0.887,0.592,0.671,-0.447,0.253,0.527,-0.811,-0.154,0.243,-0.958,-0.158,0.782,-0.602,-0.578,0.458,-0.676,0.592,0.671,-0.447,0.253,0.527,-0.811,0.204,0.948,-0.245,-0.158,0.782,-0.602,-0.611,0.757,-0.232,-0.158,0.782,-0.602,-0.83,0.3,0.47,-0.457,0.514,0.726,-0.238,0.971,0.023,-0.611,0.757,-0.232,-0.907,0.421,-0.009,-0.617,0.734,0.285,0.014,0.989,-0.145,-0.527,0.7,0.482,0.253,0.527,-0.811,-0.238,0.971,0.023,-0.83,0.3,0.47,-0.64,0.711,0.29,0.155,0.051,0.987,0.454,0.877,0.155,0.371,0.891,0.261,-0.457,0.514,0.726,-0.161,0.85,0.502,0.745,0.428,0.511,0.772,0.634,0.037,0.669,0.429,0.607,0.362,0.834,0.418,0.042,0.146,0.988,-0.253,0.556,0.792,-0.167,0.935,-0.313,-0.473,0.549,-0.689,-0.238,0.971,0.023,-0.611,0.757,-0.232,-0.238,0.971,0.023,-0.238,0.971,0.023,-0.821,-0.214,0.53,-0.039,0.276,0.96,-0.83,0.3,0.47,-0.906,0.021,0.424,-0.282,0.564,0.776,0.371,0.891,0.261,-0.987,-0.158,0.024,0.519,0.107,0.848,0.745,0.428,0.511,0.278,0.635,0.721,-0.465,0.573,0.675,0.239,0.303,0.923,-0.039,0.276,0.96,0.154,-0.243,0.958,-0.459,-0.049,0.887,-0.039,0.276,0.96,0.772,0.634,0.037,0.371,0.891,0.261,0.519,0.107,0.848,-0.039,0.276,0.96,0.278,0.635,0.721,0.022,-0.054,0.998,0.772,0.634,0.037,0.498,0.858,0.124,0.663,0.715,0.22,0.745,0.428,0.511,0.772,0.634,0.037,0.592,0.671,-0.447,0.278,0.635,0.721,0.371,0.891,0.261,0.753,0.634,-0.175,0.843,0.534,0.065,0.81,0.16,0.564,0.186,-0.096,0.978,0.578,-0.458,0.676,0.765,-0.49,-0.418,0.467,-0.86,-0.205,0.592,0.671,-0.447,0.253,0.527,-0.811,-0.578,0.458,-0.676,-0.007,0.901,-0.433,-0.502,0.849,-0.162,0.772,0.634,0.037,0.592,0.671,-0.447,0.745,0.428,0.511,0.672,0.477,0.566,0.729,0.539,0.423,0.52,0.641,-0.564,0.987,0.158,-0.024,0.745,0.428,0.511,0.772,0.634,0.037,0.652,0.751,-0.106,0.278,0.635,0.721,0.735,0.65,0.192,0.711,0.252,0.657,0.459,0.049,-0.887,0.459,0.049,-0.887,0.039,-0.276,-0.96,-0.154,0.243,-0.958,0.04,0.499,-0.866,0.093,-0.047,-0.995,0.095,0.241,-0.966,0.204,0.948,-0.245,-0.158,0.782,-0.602,-0.238,0.971,0.023,0.459,0.049,-0.887,0.253,0.527,-0.811,-0.158,0.782,-0.602,0.725,0.688,0.039,0.111,0.837,0.536,-0.456,0.674,0.58,-0.21,0.974,-0.082,-0.617,0.734,0.285,-0.161,0.85,0.502,-0.987,-0.158,0.024,-0.727,0.609,0.317,-0.624,0.732,-0.276,-0.894,0.099,-0.436,-0.987,-0.158,0.024,-0.907,0.421,-0.009,-0.039,0.276,0.96,-0.238,0.971,0.023,0.855,0.514,-0.069,0.658,0.502,-0.561,0.335,0.93,0.149,0.119,0.935,-0.335,-0.74,0.615,0.271,-0.712,0.628,-0.315,0.204,0.948,-0.245,-0.031,0.948,-0.317,-0.526,0.743,-0.414,-0.282,0.686,0.671,0.042,0.969,0.243,-0.161,0.85,0.502,0.278,0.635,0.721,0.278,0.635,0.721,0.278,0.635,0.721,0.371,0.891,0.261,-0.161,0.85,0.502,0.204,0.948,-0.245,-0.158,0.782,-0.602,-0.753,-0.606,-0.256,-0.83,0.3,0.47,-0.617,0.734,0.285,-0.821,-0.214,0.53,-0.987,-0.158,0.024,-0.907,0.421,-0.009,0.154,-0.243,0.958,0.519,0.107,0.848,0.278,0.635,0.721,0.772,0.634,0.037,0.592,0.671,-0.447,0.592,0.671,-0.447,0.204,0.948,-0.245,0.204,0.948,-0.245,0.3,0.9,-0.318,-0.611,0.757,-0.232,-0.907,0.421,-0.009,-0.821,-0.214,0.53,-0.83,0.3,0.47,-0.253,-0.527,0.811,-0.821,-0.214,0.53,-0.459,-0.049,0.887,-0.204,-0.948,0.245,-0.253,-0.527,0.811,0.154,-0.243,0.958,-0.459,-0.049,0.887,-0.039,0.276,0.96,-0.457,0.514,0.726,0.578,-0.458,0.676,0.519,0.107,0.848,-0.039,0.276,0.96,0.278,0.635,0.721,-0.4,-0.068,0.914,0.318,-0.255,0.913,-0.024,0.221,0.975,-0.039,0.276,0.96,0.371,0.891,0.261,0.371,0.891,0.261,-0.161,0.85,0.502,0.371,0.891,0.261,-0.83,0.3,0.47,-0.161,0.85,0.502,0.278,0.635,0.721,-0.457,0.514,0.726,0.16,0.615,0.772,0.486,-0.035,0.873,-0.286,0.498,0.819,0.697,-0.102,-0.71,0.772,-0.52,-0.365,0.878,0.335,0.341,0.462,0.726,0.51,-0.122,0.84,0.528,0.253,0.527,-0.811,-0.154,0.243,-0.958,0.758,0.424,-0.496,0.208,0.46,-0.863,0.204,0.948,-0.245,0.277,0.926,-0.256,0.772,0.634,0.037,-0.248,0.923,-0.293,0.83,-0.3,-0.47,0.987,0.158,-0.024,0.821,0.214,-0.53,0.459,0.049,-0.887,0.772,0.634,0.037,0.592,0.671,-0.447,0.253,0.527,-0.811,0.204,0.948,-0.245,-0.158,0.782,-0.602,0.772,0.634,0.037,0.592,0.671,-0.447,0.253,0.527,-0.811,0.371,0.891,0.261,0.204,0.948,-0.245,-0.158,0.782,-0.602,0.626,0.733,-0.265,0.987,0.158,-0.024,0.745,0.428,0.511,0.772,0.634,0.037,0.592,0.671,-0.447,0.742,0.667,0.067,0.204,0.948,-0.245,-0.83,0.3,0.47,-0.907,0.421,-0.009,0.592,0.671,-0.447,0.204,0.948,-0.245,-0.158,0.782,-0.602,-0.238,0.971,0.023,-0.611,0.757,-0.232,-0.617,0.734,0.285,-0.457,0.514,0.726,-0.161,0.85,0.502,-0.238,0.971,0.023,-0.617,0.734,0.285,0.592,0.671,-0.447,-0.254,0.967,0.014,-0.244,0.774,-0.585,-0.238,0.971,0.023,-0.617,0.734,0.285,-0.519,-0.107,-0.848,-0.894,0.099,-0.436,-0.246,0.055,-0.968,0.459,0.049,-0.887,0.253,0.527,-0.811,0.204,0.948,-0.245,-0.158,0.782,-0.602,-0.611,0.757,-0.232,0.371,0.891,0.261,-0.161,0.85,0.502,0.821,0.214,-0.53,0.772,0.634,0.037,0.592,0.671,-0.447,-0.611,0.757,-0.232,-0.498,0.832,-0.242,-0.432,0.88,-0.197,0.592,0.671,-0.447,0.253,0.527,-0.811,-0.154,0.243,-0.958,0.371,0.891,0.261,0.204,0.948,-0.245,-0.158,0.782,-0.602,-0.578,0.458,-0.676,-0.161,0.85,0.502,-0.238,0.971,0.023,-0.611,0.757,-0.232,-0.617,0.734,0.285,0.296,0.881,0.37,-0.161,0.85,0.502,-0.258,0.923,-0.285,-0.326,0.889,0.323,-0.039,0.276,0.96,0.278,0.635,0.721,0.371,0.891,0.261,-0.457,0.514,0.726,0.156,0.875,0.458,-0.229,0.966,0.121,-0.226,0.541,0.81,-0.615,0.628,0.477,0.884,0.006,-0.467,0.557,0.159,-0.815,0.772,0.634,0.037,0.83,0.404,-0.385,-0.757,0.646,0.097,-0.976,0.134,-0.173,-0.603,-0.147,0.784,-0.914,-0.325,0.243,-0.155,0.808,0.569,0.042,0.236,0.971,0.238,-0.971,-0.023,0.238,-0.971,-0.023,0.907,-0.421,0.009,0.987,0.158,-0.024,0.519,0.107,0.848,0.745,0.428,0.511,0.772,0.634,0.037,0.278,0.635,0.721,0.154,-0.243,0.958,-0.459,-0.049,0.887,-0.039,0.276,0.96,0.039,-0.276,-0.96,-0.278,-0.635,-0.721,-0.519,-0.107,-0.848,0.139,0.572,0.808,-0.304,0.824,0.478,-0.635,0.772,-0.029,-0.732,0.435,-0.525,-0.558,-0.063,-0.827,-0.179,-0.537,-0.824,-0.821,-0.214,0.53,-0.987,-0.158,0.024,-0.592,-0.671,0.447,-0.917,-0.346,0.198,-0.792,-0.088,0.605,-0.787,-0.543,0.292,-0.195,-0.288,0.937,-0.167,-0.752,0.638,-0.253,-0.527,0.811,-0.253,-0.433,0.865,-0.016,0.154,0.988,0.567,0.392,0.724,0.772,0.634,0.037,0.894,-0.099,0.436,-0.238,0.971,0.023,-0.459,-0.049,0.887,0.014,0.82,0.572,0.079,0.39,0.917,0.459,0.049,-0.887,0.987,0.158,-0.024,0.772,0.634,0.037,0.598,0.801,0.036,0.153,0.919,-0.362,-0.094,0.745,0.66,-0.086,0.437,0.895,-0.744,0.312,0.59,0.278,0.635,0.721,-0.161,0.85,0.502,-0.617,0.734,0.285,0.745,0.428,0.511,0.772,0.634,0.037,0.371,0.891,0.261,0.204,0.948,-0.245,-0.238,0.971,0.023,0.745,0.428,0.511,0.772,0.634,0.037,0.371,0.891,0.261,0.204,0.948,-0.245,0.596,0.767,0.237,0.063,0.975,-0.212,-0.516,0.672,-0.53,0.772,0.634,0.037,0.592,0.671,-0.447,0.253,0.527,-0.811,-0.154,0.243,-0.958,0.204,0.948,-0.245,-0.158,0.782,-0.602,-0.578,0.458,-0.676,-0.238,0.971,0.023,-0.611,0.757,-0.232,-0.578,0.458,-0.676,-0.238,0.971,0.023,-0.611,0.757,-0.232,-0.154,0.243,-0.958,-0.821,-0.214,0.53,-0.459,-0.049,0.887,-0.83,0.3,0.47,-0.457,0.514,0.726,0.154,-0.243,0.958,-0.218,-0.145,0.965,-0.715,0.319,0.622,0.278,0.635,0.721,-0.161,0.85,0.502,0.894,-0.099,0.436,0.987,0.158,-0.024,0.821,0.214,-0.53,0.519,0.107,0.848,0.745,0.428,0.511,0.772,0.634,0.037,0.592,0.671,-0.447,0.278,0.635,0.721,0.371,0.891,0.261,0.204,0.948,-0.245,-0.161,0.85,0.502,-0.238,0.971,0.023,0.253,0.527,-0.811,-0.158,0.782,-0.602,0.821,0.214,-0.53,0.459,0.049,-0.887,0.039,-0.276,-0.96,0.459,0.049,-0.887,0.039,-0.276,-0.96,0.592,0.671,-0.447,0.253,0.527,-0.811,-0.154,0.243,-0.958,-0.519,-0.107,-0.848,0.093,0.083,-0.992,0.523,0.685,-0.507,-0.154,0.243,-0.958,-0.158,0.782,-0.602,0.039,-0.276,-0.96,0.253,0.527,-0.811,-0.154,0.243,-0.958,-0.519,-0.107,-0.848,-0.158,0.782,-0.602,-0.578,0.458,-0.676,-0.238,0.971,0.023,-0.611,0.757,-0.232,-0.83,0.3,0.47,-0.907,0.421,-0.009,-0.545,0.091,0.833,-0.457,0.514,0.726,-0.161,0.85,0.502,-0.611,0.757,-0.232,-0.907,0.421,-0.009,-0.617,0.734,0.285,-0.894,0.099,-0.436,0.885,0.339,0.32,-0.28,0.517,-0.809,0.111,0.909,-0.401,0.417,0.883,0.215,-0.611,0.757,-0.232,-0.907,0.421,-0.009,0.592,0.671,-0.447,0.371,0.891,0.261,-0.457,0.514,0.726,-0.161,0.85,0.502,0.371,0.891,0.261,-0.161,0.85,0.502,-0.465,0.849,-0.25,-0.611,0.757,-0.232,-0.238,0.971,0.023,-0.611,0.757,-0.232,-0.907,0.421,-0.009,0.987,0.158,-0.024,0.745,0.428,0.511,0.772,0.634,0.037,0.371,0.891,0.261,0.574,0.384,-0.723,0.734,-0.155,-0.662,-0.047,0.171,-0.984,0.113,-0.369,-0.923,-0.745,-0.428,-0.511,-0.154,0.243,-0.958,-0.578,0.458,-0.676,-0.611,0.757,-0.232,-0.426,0.494,-0.758,-0.651,0.622,-0.436,-0.662,-0.63,0.407,-0.935,-0.353,-0.023,-0.83,0.3,0.47,-0.907,0.421,-0.009,-0.617,0.734,0.285,-0.578,0.458,-0.676,-0.611,0.757,-0.232,-0.894,0.099,-0.436,-0.907,0.421,-0.009,-0.154,0.243,-0.958,-0.987,-0.158,0.024,-0.228,-0.223,-0.948,-0.706,-0.334,-0.625,-0.946,-0.313,-0.089,0.617,-0.734,-0.285,0.238,-0.971,-0.023,0.457,-0.514,-0.726,0.161,-0.85,-0.502,-0.204,-0.948,0.245,-0.278,-0.635,-0.721,-0.371,-0.891,-0.261,-0.745,-0.428,-0.511,-0.772,-0.634,-0.037,0.204,0.948,-0.245,-0.158,0.782,-0.602,-0.242,0.808,-0.537,0.204,0.948,-0.245,-0.238,0.971,0.023,-0.611,0.757,-0.232,-0.08,0.997,-0.006,-0.572,0.82,-0.002,-0.007,0.796,0.606,-0.5,0.621,0.603,0.171,0.274,0.946,-0.323,0.105,0.941,0.467,-0.167,0.869,0.131,-0.563,0.816,-0.009,0.967,0.253,0.171,0.686,0.707,0.204,0.948,-0.245,0.097,0.954,-0.283,0.83,-0.3,-0.47,0.821,0.214,-0.53,0.459,0.049,-0.887,0.772,0.634,0.037,0.371,0.891,0.261,-0.161,0.85,0.502,-0.519,-0.107,-0.848,-0.578,0.458,-0.676,0.126,0.458,-0.88,-0.216,-0.146,-0.965,-0.154,0.243,-0.958,0.253,0.527,-0.811,-0.158,0.782,-0.602,-0.253,-0.527,0.811,0.459,0.049,-0.887,0.253,0.527,-0.811,0.459,0.049,-0.887,-0.238,0.971,0.023,0.204,0.948,-0.245,-0.11,0.915,-0.388,0.005,1.0,-0.03,-0.295,0.762,-0.577,-0.437,0.185,-0.88,-0.457,0.514,0.726,-0.457,0.514,0.726,-0.82,0.571,0.033,-0.249,0.487,-0.837,0.323,0.354,-0.878,-0.253,-0.527,0.811,-0.821,-0.214,0.53,-0.459,-0.049,0.887,-0.83,0.3,0.47,-0.856,0.406,-0.32,-0.557,0.812,-0.176,-0.104,0.994,0.017,-0.572,0.754,0.322,-0.158,0.782,-0.602,-0.611,0.757,-0.232,0.445,0.097,-0.89,0.246,0.605,-0.757,-0.519,-0.107,-0.848,-0.347,0.893,-0.286,-0.863,0.5,0.074,0.772,0.634,0.037,0.578,-0.458,0.676,0.617,-0.734,-0.285,0.238,-0.971,-0.023,0.894,-0.099,0.436,0.158,-0.782,0.602,0.578,-0.458,0.676,0.154,-0.243,0.958,-0.4,0.658,-0.638,-0.204,-0.948,0.245,0.158,-0.782,0.602,0.578,-0.458,0.676,-0.592,-0.671,0.447,-0.253,-0.527,0.811,0.435,-0.876,0.207,-0.043,-0.959,-0.28,0.893,-0.272,-0.36,0.407,-0.364,-0.838,0.681,0.65,-0.337,0.199,0.543,-0.816,0.012,0.968,0.252,-0.46,0.856,-0.236,-0.445,0.363,0.818,-0.91,0.261,0.322,0.253,0.527,-0.811,0.459,0.049,-0.887,0.039,-0.276,-0.96,0.83,-0.3,-0.47,0.457,-0.514,-0.726,0.907,-0.421,0.009,0.617,-0.734,-0.285,-0.937,-0.32,0.141,-0.745,-0.661,0.088,-0.592,-0.671,0.447,-0.465,-0.882,-0.077,-0.311,-0.901,0.304,-0.048,-0.796,0.603,-0.069,-0.995,-0.067,0.138,-0.953,0.271,0.44,-0.772,0.459,0.74,-0.511,0.437,0.944,-0.253,0.213,0.343,-0.935,-0.092,0.629,-0.771,0.103,0.855,-0.514,-0.068,0.617,-0.734,-0.285,0.013,-0.661,-0.75,-0.115,-0.887,-0.448,-0.987,-0.158,0.024,-0.745,-0.428,-0.511,-0.772,-0.634,-0.037,-0.937,-0.32,0.141,-0.745,-0.661,0.088,0.519,0.107,0.848,0.27,-0.59,0.761,0.582,-0.322,0.747,0.74,-0.511,0.437,0.041,-0.584,0.811,0.406,-0.298,0.864,0.249,-0.833,0.495,0.628,-0.54,0.561,0.812,-0.37,-0.451,0.489,-0.556,-0.672,0.299,-0.952,-0.063,0.622,-0.766,0.159,0.879,-0.475,-0.035,0.617,-0.734,-0.285,-0.154,0.243,-0.958,-0.519,-0.107,-0.848,0.039,-0.276,-0.96,-0.278,-0.635,-0.721,0.457,-0.514,-0.726,0.161,-0.85,-0.502,0.617,-0.734,-0.285,0.311,0.901,-0.304,0.592,0.671,-0.447,0.796,-0.421,-0.434,-0.914,0.216,-0.345,-0.997,-0.016,0.071,-0.847,-0.067,0.527,-0.815,-0.166,-0.555,-0.905,-0.395,-0.159,-0.818,-0.497,0.289,-0.296,-0.188,-0.937,-0.541,-0.493,-0.682,-0.63,-0.722,-0.285,-0.544,-0.823,0.162,-0.145,-0.699,-0.7,-0.228,-0.931,-0.285,-0.078,-0.982,0.172,0.489,-0.556,-0.672,0.232,-0.847,-0.478,0.299,-0.952,-0.063,0.617,-0.734,-0.285,-0.772,-0.634,-0.037,-0.459,-0.049,0.887,-0.772,-0.634,-0.037,-0.592,-0.671,0.447,-0.253,-0.527,0.811,0.154,-0.243,0.958,-0.204,-0.948,0.245,0.158,-0.782,0.602,0.578,-0.458,0.676,-0.051,-0.399,0.916,0.27,-0.59,0.761,0.11,0.239,0.965,0.353,0.515,0.781,0.253,-0.158,0.954,0.519,0.107,0.848,0.706,0.356,0.612,0.582,-0.322,0.747,0.825,-0.046,0.563,0.74,-0.511,0.437,0.629,-0.771,0.103,0.821,0.214,-0.53,0.039,-0.276,-0.96,0.83,-0.3,-0.47,0.457,-0.514,-0.726,0.617,-0.734,-0.285,0.987,0.158,-0.024,-0.11,-0.239,-0.965,0.276,-0.391,-0.878,0.796,-0.421,-0.434,0.511,-0.585,-0.63,0.141,-0.375,-0.916,-0.145,-0.699,-0.7,-0.238,0.971,0.023,-0.611,0.757,-0.232,0.204,0.948,-0.245,-0.158,0.782,-0.602,-0.578,0.458,-0.676,0.592,0.671,-0.447,0.253,0.527,-0.811,-0.154,0.243,-0.958,-0.519,-0.107,-0.848,0.821,0.214,-0.53,0.459,0.049,-0.887,0.039,-0.276,-0.96,0.83,-0.3,-0.47,0.457,-0.514,-0.726,-0.225,-0.864,-0.45,-0.174,-0.984,-0.029,0.232,-0.847,-0.478,0.299,-0.952,-0.063,-0.745,-0.428,-0.511,-0.371,-0.891,-0.261,-0.204,-0.948,0.245,-0.253,-0.527,0.811,0.154,-0.243,0.958,0.519,0.107,0.848,0.27,-0.59,0.761,-0.051,-0.399,0.916,0.783,0.339,-0.522,0.27,-0.59,0.761,0.582,-0.322,0.747,0.825,-0.046,0.563,0.952,0.183,0.246,0.937,0.32,-0.141,0.854,-0.045,-0.518,0.44,-0.772,0.459,0.74,-0.511,0.437,0.944,-0.253,0.213,0.987,-0.079,-0.143,0.796,-0.421,-0.434,0.629,-0.771,0.103,0.855,-0.514,-0.068,0.783,0.339,-0.522,0.52,0.235,-0.821,0.202,0.028,-0.979,0.854,-0.045,-0.518,0.59,-0.161,-0.792,0.987,-0.079,-0.143,-0.204,-0.948,0.245,0.238,-0.971,-0.023,0.617,-0.734,-0.285,-0.115,-0.887,-0.448,-0.069,-0.995,-0.067,0.284,-0.842,-0.459,0.343,-0.935,-0.092,-0.145,-0.699,-0.7,-0.228,-0.931,-0.285,-0.905,-0.395,-0.159,-0.818,-0.497,0.289,-0.576,-0.447,0.684,-0.63,-0.722,-0.285,-0.544,-0.823,0.162,-0.302,-0.773,0.558,-0.228,-0.931,-0.285,-0.078,-0.982,0.172,0.299,-0.952,-0.063,-0.069,-0.995,-0.067,0.253,-0.158,0.954,0.582,-0.322,0.747,-0.937,-0.32,0.141,-0.786,-0.55,-0.283,-0.745,-0.661,0.088,-0.465,-0.882,-0.077,0.714,0.491,-0.499,0.883,0.464,-0.065,0.847,0.067,-0.527,0.52,-0.082,-0.85,0.997,0.016,-0.071,0.812,-0.37,-0.451,0.489,-0.556,-0.672,0.232,-0.847,-0.478,0.299,-0.952,-0.063,0.622,-0.766,0.159,0.879,-0.475,-0.035,0.617,-0.734,-0.285,0.582,-0.322,0.747,0.74,-0.511,0.437,0.944,-0.253,0.213,0.796,-0.421,-0.434,0.511,-0.585,-0.63,0.629,-0.771,0.103,0.855,-0.514,-0.068,0.617,-0.734,-0.285,0.276,-0.391,-0.878,0.796,-0.421,-0.434,0.511,-0.585,-0.63,0.617,-0.734,-0.285,0.59,-0.161,-0.792,0.276,-0.391,-0.878,0.511,-0.585,-0.63,0.629,-0.771,0.103,0.617,-0.734,-0.285,-0.815,-0.166,-0.555,0.048,0.122,-0.991,-0.296,-0.188,-0.937,-0.541,-0.493,-0.682,-0.63,-0.722,-0.285,0.52,-0.082,-0.85,0.141,-0.375,-0.916,-0.145,-0.699,-0.7,-0.228,-0.931,-0.285,0.489,-0.556,-0.672,0.232,-0.847,-0.478,0.629,-0.771,0.103,-0.519,-0.107,-0.848,-0.706,-0.356,-0.612,-0.786,-0.55,-0.283,-0.353,-0.515,-0.781,-0.48,-0.745,-0.464,-0.465,-0.882,-0.077,0.276,-0.391,-0.878,0.013,-0.661,-0.75,-0.825,0.046,-0.563,-0.519,-0.107,-0.848,-0.706,-0.356,-0.612,-0.11,-0.239,-0.965,-0.353,-0.515,-0.781,-0.48,-0.745,-0.464,0.013,-0.661,-0.75,-0.519,-0.107,-0.848,-0.278,-0.635,-0.721,-0.253,0.158,-0.954,-0.519,-0.107,-0.848,-0.706,-0.356,-0.612,-0.786,-0.55,-0.283,-0.745,-0.428,-0.511,-0.772,-0.634,-0.037,-0.592,-0.671,0.447,-0.371,-0.891,-0.261,-0.204,-0.948,0.245,0.158,-0.782,0.602,0.238,-0.971,-0.023,-0.786,-0.55,-0.283,-0.48,-0.745,-0.464,-0.465,-0.882,-0.077,-0.115,-0.887,-0.448,-0.069,-0.995,-0.067,0.343,-0.935,-0.092,0.278,0.635,0.721,0.371,0.891,0.261,0.519,0.107,0.848,0.745,0.428,0.511,0.772,0.634,0.037,0.158,-0.782,0.602,0.578,-0.458,0.676,0.894,-0.099,0.436,0.987,0.158,-0.024,0.238,-0.971,-0.023,0.611,-0.757,0.232,0.907,-0.421,0.009,0.617,-0.734,-0.285,-0.821,-0.214,0.53,-0.459,-0.049,0.887,-0.772,-0.634,-0.037,-0.592,-0.671,0.447,-0.253,-0.527,0.811,-0.371,-0.891,-0.261,-0.204,-0.948,0.245,0.238,-0.971,-0.023,-0.847,-0.067,0.527,-0.52,0.082,0.85,-0.818,-0.497,0.289,-0.576,-0.447,0.684,-0.233,-0.257,0.938,0.131,0.029,0.991,-0.544,-0.823,0.162,-0.302,-0.773,0.558,0.041,-0.584,0.811,0.406,-0.298,0.864,-0.228,-0.931,-0.285,-0.078,-0.982,0.172,0.249,-0.833,0.495,0.628,-0.54,0.561,0.232,-0.847,-0.478,0.299,-0.952,-0.063,0.622,-0.766,0.159,0.617,-0.734,-0.285,0.519,0.107,0.848,0.706,0.356,0.612,0.786,0.55,0.283,0.783,0.339,-0.522,0.52,0.235,-0.821,0.825,-0.046,0.563,0.952,0.183,0.246,0.937,0.32,-0.141,0.854,-0.045,-0.518,0.59,-0.161,-0.792,0.944,-0.253,0.213,0.987,-0.079,-0.143,0.796,-0.421,-0.434,0.511,-0.585,-0.63,0.855,-0.514,-0.068,0.783,0.339,-0.522,0.783,0.339,-0.522,0.825,-0.046,0.563,0.854,-0.045,-0.518,0.944,-0.253,0.213,0.987,-0.079,-0.143,0.048,0.122,-0.991,-0.63,-0.722,-0.285,0.141,-0.375,-0.916,-0.145,-0.699,-0.7,-0.228,-0.931,-0.285,-0.078,-0.982,0.172,0.232,-0.847,-0.478,0.457,-0.514,-0.726,0.611,-0.757,0.232,0.907,-0.421,0.009,0.617,-0.734,-0.285,0.459,0.049,-0.887,0.039,-0.276,-0.96,-0.371,-0.891,-0.261,-0.069,-0.995,-0.067,-0.987,-0.158,0.024,-0.745,-0.428,-0.511,-0.772,-0.634,-0.037,-0.592,-0.671,0.447,-0.278,-0.635,-0.721,-0.371,-0.891,-0.261,-0.204,-0.948,0.245,0.161,-0.85,-0.502,0.238,-0.971,-0.023,-0.734,0.085,0.674,-0.433,0.265,0.862,-0.783,-0.339,0.522,-0.52,-0.235,0.821,-0.202,-0.028,0.979,0.11,0.239,0.965,-0.745,-0.661,0.088,-0.592,-0.671,0.447,-0.348,-0.579,0.737,-0.051,-0.399,0.916,0.253,-0.158,0.954,0.519,0.107,0.848,0.706,0.356,0.612,-0.465,-0.882,-0.077,-0.311,-0.901,0.304,-0.048,-0.796,0.603,0.138,-0.953,0.271,-0.617,0.734,0.285,-0.299,0.952,0.063,-0.812,0.37,0.451,-0.489,0.556,0.672,-0.232,0.847,0.478,-0.997,-0.016,0.071,-0.847,-0.067,0.527,-0.52,0.082,0.85,-0.141,0.375,0.916,0.145,0.699,0.7,0.228,0.931,0.285,-0.905,-0.395,-0.159,-0.818,-0.497,0.289,-0.576,-0.447,0.684,-0.233,-0.257,0.938,0.131,0.029,0.991,0.435,0.346,0.832,-0.544,-0.823,0.162,-0.302,-0.773,0.558,0.041,-0.584,0.811,0.406,-0.298,0.864,-0.078,-0.982,0.172,0.249,-0.833,0.495,0.27,-0.59,0.761,0.138,-0.953,0.271,-0.786,-0.55,-0.283,-0.48,-0.745,-0.464,0.013,-0.661,-0.75,-0.115,-0.887,-0.448,0.987,-0.079,-0.143,0.796,-0.421,-0.434,0.511,-0.585,-0.63,0.284,-0.842,-0.459,0.343,-0.935,-0.092,0.855,-0.514,-0.068,0.617,-0.734,-0.285,0.44,-0.772,0.459,-0.311,-0.901,0.304,-0.048,-0.796,0.603,-0.433,0.265,0.862,-0.783,-0.339,0.522,-0.52,-0.235,0.821,-0.592,-0.671,0.447,-0.433,0.265,0.862,-0.132,0.526,0.84,-0.52,-0.235,0.821,-0.202,-0.028,0.979,0.11,0.239,0.965,0.353,0.515,0.781,0.894,-0.099,0.436,0.987,0.158,-0.024,0.83,-0.3,-0.47,-0.174,-0.984,-0.029,0.055,-0.937,0.344,0.388,-0.738,0.552,0.72,-0.449,0.528,0.348,0.579,-0.737,0.783,0.339,-0.522,0.52,0.235,-0.821,-0.048,-0.796,0.603,0.27,-0.59,0.761,0.937,0.32,-0.141,0.854,-0.045,-0.518,0.59,-0.161,-0.792,0.138,-0.953,0.271,0.44,-0.772,0.459,0.74,-0.511,0.437,0.944,-0.253,0.213,0.987,-0.079,-0.143,0.796,-0.421,-0.434,0.511,-0.585,-0.63,0.343,-0.935,-0.092,0.629,-0.771,0.103,0.855,-0.514,-0.068,0.617,-0.734,-0.285,0.311,0.901,-0.304,0.048,0.796,-0.603,0.592,0.671,-0.447,0.343,-0.935,-0.092,0.629,-0.771,0.103,0.855,-0.514,-0.068,-0.628,0.54,-0.561,-0.226,0.449,-0.864,-0.57,0.139,-0.81,-0.815,-0.166,-0.555,0.048,0.122,-0.991,-0.296,-0.188,-0.937,-0.541,-0.493,-0.682,-0.63,-0.722,-0.285,-0.544,-0.823,0.162,0.141,-0.375,-0.916,-0.145,-0.699,-0.7,-0.228,-0.931,-0.285,-0.078,-0.982,0.172,0.232,-0.847,-0.478,-0.11,-0.239,-0.965,0.013,-0.661,-0.75,0.253,0.527,-0.811,0.459,0.049,-0.887,0.783,0.339,-0.522,0.52,0.235,-0.821,-0.465,-0.882,-0.077,0.854,-0.045,-0.518,0.59,-0.161,-0.792,0.276,-0.391,-0.878,0.013,-0.661,-0.75,-0.115,-0.887,-0.448,-0.069,-0.995,-0.067,0.987,-0.079,-0.143,0.796,-0.421,-0.434,0.511,-0.585,-0.63,0.284,-0.842,-0.459,0.343,-0.935,-0.092,0.855,-0.514,-0.068,0.617,-0.734,-0.285,-0.706,-0.356,-0.612,0.202,0.028,-0.979,-0.11,-0.239,-0.965,-0.353,-0.515,-0.781,-0.48,-0.745,-0.464,-0.465,-0.882,-0.077,0.952,0.183,0.246,-0.783,-0.339,0.522,-0.52,-0.235,0.821,-0.202,-0.028,0.979,-0.051,-0.399,0.916,0.253,-0.158,0.954,0.519,0.107,0.848,0.706,0.356,0.612,0.825,-0.046,0.563,-0.592,-0.671,0.447,-0.348,-0.579,0.737,-0.311,-0.901,0.304,-0.048,-0.796,0.603,-0.154,0.243,-0.958,0.459,0.049,-0.887,-0.11,-0.239,-0.965,0.276,-0.391,-0.878,0.013,-0.661,-0.75,-0.115,-0.887,-0.448,-0.069,-0.995,-0.067,-0.253,0.158,-0.954,-0.519,-0.107,-0.848,-0.706,-0.356,-0.612,-0.786,-0.55,-0.283,-0.745,-0.661,0.088,-0.592,-0.671,0.447,-0.11,-0.239,-0.965,-0.353,-0.515,-0.781,-0.48,-0.745,-0.464,-0.465,-0.882,-0.077,-0.311,-0.901,0.304,-0.937,-0.32,0.141,-0.745,-0.661,0.088,-0.821,-0.214,0.53,-0.772,-0.634,-0.037,-0.592,-0.671,0.447,-0.253,-0.527,0.811,0.154,-0.243,0.958,-0.204,-0.948,0.245,-0.714,-0.491,0.499,-0.602,-0.798,-0.029,-0.44,-0.817,0.372,-0.174,-0.984,-0.029,0.055,-0.937,0.344,-0.051,-0.399,0.916,0.253,-0.158,0.954,-0.311,-0.901,0.304,-0.048,-0.796,0.603,0.27,-0.59,0.761,-0.069,-0.995,-0.067,0.138,-0.953,0.271,-0.576,-0.447,0.684,-0.907,0.421,-0.009,-0.83,0.3,0.47,-0.457,0.514,0.726,-0.894,0.099,-0.436,-0.987,-0.158,0.024,-0.821,-0.214,0.53,-0.459,-0.049,0.887,-0.745,-0.428,-0.511,-0.772,-0.634,-0.037,-0.592,-0.671,0.447,-0.465,-0.882,-0.077,-0.311,-0.901,0.304,-0.069,-0.995,-0.067,-0.039,0.276,0.96,-0.253,-0.527,0.811,0.154,-0.243,0.958,0.519,0.107,0.848,0.745,0.428,0.511,0.158,-0.782,0.602,0.578,-0.458,0.676,0.894,-0.099,0.436,0.987,0.158,-0.024,0.238,-0.971,-0.023,0.611,-0.757,0.232,0.907,-0.421,0.009,0.617,-0.734,-0.285,-0.078,-0.982,0.172,0.249,-0.833,0.495,0.628,-0.54,0.561,0.622,-0.766,0.159,0.628,-0.54,0.561,-0.161,0.85,0.502,-0.039,0.276,0.96,0.278,0.635,0.721,-0.253,-0.527,0.811,0.154,-0.243,0.958,0.519,0.107,0.848,0.706,0.356,0.612,0.944,-0.253,0.213,0.511,-0.585,-0.63,0.138,-0.953,0.271,0.138,-0.953,0.271,0.44,-0.772,0.459,0.284,-0.842,-0.459,0.343,-0.935,-0.092,0.629,-0.771,0.103,0.617,-0.734,-0.285,0.629,-0.771,0.103,0.855,-0.514,-0.068,0.617,-0.734,-0.285,0.946,-0.164,0.28,0.812,-0.37,-0.451,0.622,-0.766,0.159,0.879,-0.475,-0.035,0.617,-0.734,-0.285,0.847,0.067,-0.527,0.745,0.661,-0.088,0.114,0.959,0.26,0.465,0.882,0.077,-0.343,0.935,0.092,-0.018,0.993,-0.115,-0.283,0.877,-0.389,0.114,0.959,0.26,0.311,0.901,-0.304,0.465,0.882,0.077,0.786,0.55,0.283,0.745,0.661,-0.088,0.952,0.183,0.246,0.937,0.32,-0.141,0.048,0.796,-0.603,0.592,0.671,-0.447,0.348,0.579,-0.737,0.051,0.399,-0.916,0.783,0.339,-0.522,0.52,0.235,-0.821,0.202,0.028,-0.979,0.937,0.32,-0.141,0.854,-0.045,-0.518,0.59,-0.161,-0.792,0.276,-0.391,-0.878,0.987,-0.079,-0.143,0.796,-0.421,-0.434,0.511,-0.585,-0.63,0.284,-0.842,-0.459,0.343,-0.935,-0.092,0.629,-0.771,0.103,0.855,-0.514,-0.068,0.617,-0.734,-0.285,-0.018,0.993,-0.115,0.311,0.901,-0.304,-0.27,0.59,-0.761,0.465,0.882,0.077,0.592,0.671,-0.447,0.348,0.579,-0.737,0.051,0.399,-0.916,-0.253,0.158,-0.954,-0.519,-0.107,-0.848,0.745,0.661,-0.088,0.783,0.339,-0.522,0.52,0.235,-0.821,0.202,0.028,-0.979,-0.11,-0.239,-0.965,-0.283,0.877,-0.389,0.348,0.579,-0.737,0.051,0.399,-0.916,-0.253,0.158,-0.954,-0.519,-0.107,-0.848,0.783,0.339,-0.522,0.52,0.235,-0.821,0.202,0.028,-0.979,-0.11,-0.239,-0.965,-0.353,-0.515,-0.781,0.854,-0.045,-0.518,0.59,-0.161,-0.792,0.276,-0.391,-0.878,0.013,-0.661,-0.75,-0.353,-0.515,-0.781,0.821,0.214,-0.53,0.459,0.049,-0.887,0.786,0.55,0.283,0.745,0.661,-0.088,0.825,-0.046,0.563,0.952,0.183,0.246,0.937,0.32,-0.141,0.854,-0.045,-0.518,-0.115,-0.887,-0.448,0.74,-0.511,0.437,0.944,-0.253,0.213,0.987,-0.079,-0.143,0.796,-0.421,-0.434,0.511,-0.585,-0.63,0.284,-0.842,-0.459,0.343,-0.935,-0.092,0.629,-0.771,0.103,0.855,-0.514,-0.068,0.617,-0.734,-0.285,-0.937,-0.32,0.141,-0.706,-0.356,-0.612,-0.786,-0.55,-0.283,-0.745,-0.661,0.088,-0.592,-0.671,0.447,-0.348,-0.579,0.737,-0.48,-0.745,-0.464,-0.465,-0.882,-0.077,-0.311,-0.901,0.304,-0.048,-0.796,0.603,0.27,-0.59,0.761,0.582,-0.322,0.747,-0.069,-0.995,-0.067,0.138,-0.953,0.271,0.44,-0.772,0.459,-0.825,0.046,-0.563,-0.952,-0.183,-0.246,-0.937,-0.32,0.141,-0.706,-0.356,-0.612,-0.786,-0.55,-0.283,-0.952,-0.183,-0.246,-0.786,-0.55,-0.283,-0.745,-0.661,0.088,-0.988,0.151,-0.045,-0.937,-0.32,0.141,-0.783,-0.339,0.522,-0.592,-0.671,0.447,-0.988,0.151,-0.045,-0.825,0.046,-0.563,-0.706,-0.356,-0.612,-0.353,-0.515,-0.781,-0.914,0.216,-0.345,-0.997,-0.016,0.071,-0.847,-0.067,0.527,-0.815,-0.166,-0.555,-0.905,-0.395,-0.159,-0.818,-0.497,0.289,-0.541,-0.493,-0.682,-0.63,-0.722,-0.285,-0.544,-0.823,0.162,-0.952,-0.183,-0.246,-0.937,-0.32,0.141,-0.783,-0.339,0.522,-0.52,-0.235,0.821,-0.348,-0.579,0.737,-0.051,-0.399,0.916,-0.592,-0.671,0.447,-0.348,-0.579,0.737,-0.311,-0.901,0.304,-0.592,-0.671,0.447,-0.821,-0.214,0.53,-0.592,-0.671,0.447,-0.592,-0.671,0.447,-0.311,-0.901,0.304,-0.592,-0.671,0.447,-0.233,-0.257,0.938,0.041,-0.584,0.811,0.406,-0.298,0.864,-0.101,-0.163,0.981,0.502,-0.207,0.84,-0.818,-0.497,0.289,-0.576,-0.447,0.684,-0.544,-0.823,0.162,-0.078,-0.982,0.172,-0.783,-0.339,0.522,-0.52,-0.235,0.821,-0.202,-0.028,0.979,-0.051,-0.399,0.916,0.253,-0.158,0.954,0.27,-0.59,0.761,0.582,-0.322,0.747,-0.311,-0.901,0.304,-0.048,-0.796,0.603,0.138,-0.953,0.271,0.44,-0.772,0.459,0.629,-0.771,0.103,0.158,-0.782,0.602,-0.544,-0.823,0.162,-0.228,-0.931,-0.285,-0.078,-0.982,0.172,0.249,-0.833,0.495,0.628,-0.54,0.561,0.232,-0.847,-0.478,0.299,-0.952,-0.063,0.622,-0.766,0.159,0.879,-0.475,-0.035,0.617,-0.734,-0.285,0.299,-0.952,-0.063,0.847,0.067,-0.527,0.52,-0.082,-0.85,0.628,-0.54,0.561,0.914,-0.216,0.345,0.997,0.016,-0.071,0.812,-0.37,-0.451,0.489,-0.556,-0.672,0.232,-0.847,-0.478,0.299,-0.952,-0.063,0.622,-0.766,0.159,0.879,-0.475,-0.035,0.617,-0.734,-0.285,0.854,-0.045,-0.518,0.796,-0.421,-0.434,0.511,-0.585,-0.63,0.617,-0.734,-0.285,0.457,-0.514,-0.726,0.039,-0.276,-0.96,0.714,0.491,-0.499,0.883,0.464,-0.065,0.847,0.067,-0.527,0.52,-0.082,-0.85,0.202,0.028,-0.979,-0.11,-0.239,-0.965,-0.353,-0.515,-0.781,0.59,-0.161,-0.792,0.276,-0.391,-0.878,-0.596,0.647,-0.475,-0.582,0.322,-0.747,-0.154,0.243,-0.958,0.276,-0.391,-0.878,-0.226,0.449,-0.864,-0.57,0.139,-0.81,-0.815,-0.166,-0.555,0.714,0.491,-0.499,0.413,0.367,-0.833,0.048,0.122,-0.991,-0.296,-0.188,-0.937,-0.541,-0.493,-0.682,0.847,0.067,-0.527,0.52,-0.082,-0.85,0.141,-0.375,-0.916,-0.145,-0.699,-0.7,-0.27,0.59,-0.761,0.051,0.399,-0.916,-0.253,0.158,-0.954,-0.519,-0.107,-0.848,-0.706,-0.356,-0.612,0.202,0.028,-0.979,-0.11,-0.239,-0.965,-0.353,-0.515,-0.781,-0.48,-0.745,-0.464,-0.465,-0.882,-0.077,0.013,-0.661,-0.75,-0.115,-0.887,-0.448,-0.786,-0.55,-0.283,-0.745,-0.661,0.088,-0.877,-0.471,0.097,-0.855,0.514,0.068,-0.988,0.151,-0.045,-0.941,0.042,0.336,-0.937,-0.32,0.141,-0.745,-0.661,0.088,0.343,-0.935,-0.092,-0.987,-0.158,0.024,-0.859,0.376,-0.347,-0.825,0.046,-0.563,-0.952,-0.183,-0.246,-0.786,-0.55,-0.283,-0.578,0.458,-0.676,-0.894,0.099,-0.436,-0.519,-0.107,-0.848,-0.745,-0.428,-0.511,-0.772,-0.634,-0.037,-0.278,-0.635,-0.721,-0.371,-0.891,-0.261,-0.204,-0.948,0.245,0.11,0.239,0.965,-0.348,-0.579,0.737,-0.051,-0.399,0.916,-0.57,0.139,-0.81,-0.541,-0.493,-0.682,-0.145,-0.699,-0.7,-0.311,-0.901,0.304,-0.048,-0.796,0.603,-0.783,-0.339,0.522,-0.52,-0.235,0.821,-0.745,-0.661,0.088,-0.592,-0.671,0.447,-0.348,-0.579,0.737,-0.051,-0.399,0.916,0.253,-0.158,0.954,-0.465,-0.882,-0.077,-0.311,-0.901,0.304,-0.048,-0.796,0.603,0.27,-0.59,0.761,0.582,-0.322,0.747,-0.115,-0.887,-0.448,-0.069,-0.995,-0.067,0.138,-0.953,0.271,0.44,-0.772,0.459,0.74,-0.511,0.437,0.343,-0.935,-0.092,0.629,-0.771,0.103,-0.048,-0.796,0.603,-0.745,-0.661,0.088,-0.592,-0.671,0.447,-0.311,-0.901,0.304,0.055,-0.937,0.344,-0.592,-0.671,0.447,-0.069,-0.995,-0.067,0.343,-0.935,-0.092,0.83,-0.3,-0.47,0.457,-0.514,-0.726,0.161,-0.85,-0.502,0.238,-0.971,-0.023,0.611,-0.757,0.232,0.907,-0.421,0.009,0.617,-0.734,-0.285,-0.174,-0.984,-0.029,0.055,-0.937,0.344,0.388,-0.738,0.552,-0.311,-0.901,0.304,-0.048,-0.796,0.603,0.27,-0.59,0.761,0.44,-0.772,0.459,0.74,-0.511,0.437,0.745,0.428,0.511,0.894,-0.099,0.436,0.907,-0.421,0.009,-0.132,0.526,0.84,0.072,0.785,0.616,0.11,0.239,0.965,0.353,0.515,0.781,0.48,0.745,0.464,0.253,-0.158,0.954,0.519,0.107,0.848,0.706,0.356,0.612,0.786,0.55,0.283,0.582,-0.322,0.747,0.825,-0.046,0.563,0.952,0.183,0.246,0.74,-0.511,0.437,0.944,-0.253,0.213,0.987,-0.079,-0.143,0.937,0.32,-0.141,0.59,-0.161,-0.792,-0.296,-0.188,-0.937,-0.541,-0.493,-0.682,0.847,0.067,-0.527,0.52,-0.082,-0.85,0.141,-0.375,-0.916,-0.145,-0.699,-0.7,0.812,-0.37,-0.451,0.489,-0.556,-0.672,0.232,-0.847,-0.478,0.617,-0.734,-0.285,0.854,-0.045,-0.518,0.582,-0.322,0.747,-0.115,-0.887,-0.448,-0.069,-0.995,-0.067,0.138,-0.953,0.271,0.44,-0.772,0.459,0.74,-0.511,0.437,0.284,-0.842,-0.459,0.343,-0.935,-0.092,0.629,-0.771,0.103,-0.952,-0.183,-0.246,-0.937,-0.32,0.141,-0.706,-0.356,-0.612,-0.786,-0.55,-0.283,-0.745,-0.661,0.088,-0.592,-0.671,0.447,-0.465,-0.882,-0.077,-0.311,-0.901,0.304,-0.048,-0.796,0.603,-0.582,0.322,-0.747,-0.825,0.046,-0.563,-0.253,0.158,-0.954,-0.238,0.971,0.023,-0.158,0.782,-0.602,-0.578,0.458,-0.676,0.253,0.527,-0.811,-0.154,0.243,-0.958,0.459,0.049,-0.887,0.051,0.399,-0.916,-0.154,0.243,-0.958,-0.519,-0.107,-0.848,-0.745,-0.428,-0.511,-0.772,-0.634,-0.037,-0.592,-0.671,0.447,0.039,-0.276,-0.96,-0.278,-0.635,-0.721,0.783,0.339,-0.522,0.52,0.235,-0.821,-0.173,0.489,-0.855,-0.502,0.207,-0.84,0.101,0.163,-0.981,-0.611,0.757,-0.232,-0.907,0.421,-0.009,-0.83,0.3,0.47,-0.158,0.782,-0.602,-0.578,0.458,-0.676,-0.894,0.099,-0.436,-0.987,-0.158,0.024,-0.937,-0.32,0.141,-0.786,-0.55,-0.283,-0.745,-0.661,0.088,-0.465,-0.882,-0.077,-0.311,-0.901,0.304,-0.115,-0.887,-0.448,-0.069,-0.995,-0.067,0.138,-0.953,0.271,0.343,-0.935,-0.092,0.629,-0.771,0.103,0.617,-0.734,-0.285,-0.343,0.935,0.092,-0.629,0.771,-0.103,-0.855,0.514,0.068,-0.617,0.734,0.285,-0.629,0.771,-0.103,-0.855,0.514,0.068,-0.796,0.421,0.434,-0.859,0.376,-0.347,-0.988,0.151,-0.045,-0.941,0.042,0.336,-0.825,0.046,-0.563,-0.952,-0.183,-0.246,-0.937,-0.32,0.141,-0.519,-0.107,-0.848,-0.879,0.475,0.035,-0.812,0.37,0.451,-0.628,0.54,-0.561,-0.914,0.216,-0.345,-0.997,-0.016,0.071,-0.847,-0.067,0.527,-0.52,0.082,0.85,-0.905,-0.395,-0.159,-0.818,-0.497,0.289,-0.576,-0.447,0.684,-0.233,-0.257,0.938,-0.302,-0.773,0.558,-0.783,-0.339,0.522,-0.592,-0.671,0.447,-0.617,0.734,0.285,-0.489,0.556,0.672,-0.617,0.734,0.285,-0.622,0.766,-0.159,-0.879,0.475,0.035,-0.812,0.37,0.451,-0.489,0.556,0.672,-0.628,0.54,-0.561,-0.914,0.216,-0.345,-0.997,-0.016,0.071,-0.847,-0.067,0.527,-0.52,0.082,0.85,-0.815,-0.166,-0.555,-0.905,-0.395,-0.159,-0.818,-0.497,0.289,-0.576,-0.447,0.684,-0.233,-0.257,0.938,-0.541,-0.493,-0.682,-0.63,-0.722,-0.285,-0.544,-0.823,0.162,-0.302,-0.773,0.558,0.041,-0.584,0.811,-0.145,-0.699,-0.7,-0.228,-0.931,-0.285,-0.078,-0.982,0.172,0.249,-0.833,0.495,0.299,-0.952,-0.063,-0.907,0.421,-0.009,-0.83,0.3,0.47,-0.894,0.099,-0.436,-0.987,-0.158,0.024,-0.821,-0.214,0.53,-0.459,-0.049,0.887,-0.253,-0.527,0.811,-0.734,0.085,0.674,-0.52,-0.235,0.821,-0.202,-0.028,0.979,0.11,0.239,0.965,-0.348,-0.579,0.737,-0.051,-0.399,0.916,0.253,-0.158,0.954,-0.048,-0.796,0.603,0.27,-0.59,0.761,0.138,-0.953,0.271,0.44,-0.772,0.459,0.343,-0.935,-0.092,0.629,-0.771,0.103,-0.941,0.042,0.336,-0.937,-0.32,0.141,-0.783,-0.339,0.522,-0.745,-0.661,0.088,-0.592,-0.671,0.447,-0.465,-0.882,-0.077,-0.311,-0.901,0.304,-0.772,-0.634,-0.037,-0.204,-0.948,0.245,0.158,-0.782,0.602,0.238,-0.971,-0.023,0.611,-0.757,0.232,0.27,-0.59,0.761,0.138,-0.953,0.271,0.44,-0.772,0.459,0.343,-0.935,-0.092,-0.302,-0.773,0.558,-0.078,-0.982,0.172,-0.772,-0.634,-0.037,-0.592,-0.671,0.447,-0.371,-0.891,-0.261,-0.048,-0.796,0.603,0.138,-0.953,0.271,0.44,-0.772,0.459,0.582,-0.322,0.747,0.44,-0.772,0.459,0.74,-0.511,0.437,0.578,-0.458,0.676,0.894,-0.099,0.436,0.611,-0.757,0.232,0.907,-0.421,0.009,0.11,0.239,0.965,0.343,-0.935,-0.092,0.629,-0.771,0.103,0.855,-0.514,-0.068,0.617,-0.734,-0.285,0.825,-0.046,0.563,0.952,0.183,0.246,0.987,-0.079,-0.143,0.072,0.785,0.616,0.48,0.745,0.464,0.253,-0.158,0.954,0.519,0.107,0.848,0.582,-0.322,0.747,0.825,-0.046,0.563,0.847,0.067,-0.527,0.52,-0.082,-0.85,0.141,-0.375,-0.916,-0.145,-0.699,-0.7,0.249,-0.833,0.495,0.628,-0.54,0.561,0.914,-0.216,0.345,0.997,0.016,-0.071,0.812,-0.37,-0.451,0.489,-0.556,-0.672,0.232,-0.847,-0.478,0.299,-0.952,-0.063,0.622,-0.766,0.159,0.879,-0.475,-0.035,0.617,-0.734,-0.285,0.812,-0.37,-0.451,-0.253,0.158,-0.954,0.202,0.028,-0.979,-0.11,-0.239,-0.965,0.854,-0.045,-0.518,0.59,-0.161,-0.792,0.276,-0.391,-0.878,0.013,-0.661,-0.75,0.944,-0.253,0.213,0.987,-0.079,-0.143,0.796,-0.421,-0.434,0.511,-0.585,-0.63,0.284,-0.842,-0.459,0.855,-0.514,-0.068,0.617,-0.734,-0.285,0.709,0.019,0.705,0.882,0.294,0.369,0.847,0.067,-0.527,0.249,-0.833,0.495,0.628,-0.54,0.561,0.914,-0.216,0.345,0.997,0.016,-0.071,0.812,-0.37,-0.451,0.299,-0.952,-0.063,0.622,-0.766,0.159,0.879,-0.475,-0.035,0.617,-0.734,-0.285,0.348,0.579,-0.737,0.051,0.399,-0.916,-0.253,0.158,-0.954,-0.519,-0.107,-0.848,0.52,0.235,-0.821,0.202,0.028,-0.979,-0.11,-0.239,-0.965,-0.353,-0.515,-0.781,-0.48,-0.745,-0.464,0.59,-0.161,-0.792,0.276,-0.391,-0.878,0.013,-0.661,-0.75,-0.115,-0.887,-0.448,-0.069,-0.995,-0.067,0.511,-0.585,-0.63,0.284,-0.842,-0.459,-0.786,-0.55,-0.283,-0.611,0.757,-0.232,-0.578,0.458,-0.676,-0.894,0.099,-0.436,-0.519,-0.107,-0.848,-0.745,-0.428,-0.511,-0.158,0.782,-0.602,-0.018,0.993,-0.115,-0.283,0.877,-0.389,-0.596,0.647,-0.475,0.114,0.959,0.26,0.311,0.901,-0.304,0.048,0.796,-0.603,-0.27,0.59,-0.761,-0.582,0.322,-0.747,0.051,0.399,-0.916,-0.253,0.158,-0.954,-0.519,-0.107,-0.848,0.051,0.399,-0.916,-0.253,0.158,-0.954,-0.519,-0.107,-0.848,0.078,0.982,-0.172,0.44,0.817,-0.372,0.138,0.694,-0.707,-0.226,0.449,-0.864,0.714,0.491,-0.499,0.413,0.367,-0.833,0.048,0.122,-0.991,0.847,0.067,-0.527,0.52,-0.082,-0.85,0.141,-0.375,-0.916,0.812,-0.37,-0.451,0.489,-0.556,-0.672,0.879,-0.475,-0.035,0.617,-0.734,-0.285,-0.343,0.935,0.092,-0.629,0.771,-0.103,-0.855,0.514,0.068,-0.283,0.877,-0.389,-0.596,0.647,-0.475,-0.859,0.376,-0.347,-0.988,0.151,-0.045,-0.27,0.59,-0.761,-0.582,0.322,-0.747,-0.825,0.046,-0.563,-0.952,-0.183,-0.246,-0.253,0.158,-0.954,-0.519,-0.107,-0.848,-0.706,-0.356,-0.612,-0.786,-0.55,-0.283,-0.11,-0.239,-0.965,-0.353,-0.515,-0.781,-0.48,-0.745,-0.464,0.013,-0.661,-0.75,-0.115,-0.887,-0.448,0.284,-0.842,-0.459,0.048,0.796,-0.603,-0.27,0.59,-0.761,-0.582,0.322,-0.747,-0.825,0.046,-0.563,-0.253,0.158,-0.954,-0.519,-0.107,-0.848,-0.706,-0.356,-0.612,-0.786,-0.55,-0.283,-0.617,0.734,0.285,-0.299,0.952,0.063,-0.622,0.766,-0.159,-0.879,0.475,0.035,-0.812,0.37,0.451,0.078,0.982,-0.172,-0.249,0.833,-0.495,-0.628,0.54,-0.561,-0.914,0.216,-0.345,-0.997,-0.016,0.071,-0.847,-0.067,0.527,0.228,0.931,0.285,0.44,0.817,-0.372,0.138,0.694,-0.707,-0.226,0.449,-0.864,-0.57,0.139,-0.81,-0.815,-0.166,-0.555,0.607,0.621,0.496,-0.937,-0.32,0.141,-0.786,-0.55,-0.283,-0.296,-0.188,-0.937,-0.855,0.514,0.068,-0.796,0.421,0.434,-0.988,0.151,-0.045,-0.941,0.042,0.336,-0.734,0.085,0.674,-0.433,0.265,0.862,-0.952,-0.183,-0.246,-0.937,-0.32,0.141,-0.783,-0.339,0.522,-0.706,-0.356,-0.612,-0.786,-0.55,-0.283,-0.745,-0.661,0.088,-0.52,-0.235,0.821,-0.348,-0.579,0.737,-0.622,0.766,-0.159,-0.879,0.475,0.035,-0.812,0.37,0.451,-0.628,0.54,-0.561,-0.914,0.216,-0.345,-0.997,-0.016,0.071,-0.847,-0.067,0.527,-0.905,-0.395,-0.159,-0.818,-0.497,0.289,-0.821,-0.214,0.53,-0.459,-0.049,0.887,-0.039,0.276,0.96,-0.772,-0.634,-0.037,-0.592,-0.671,0.447,-0.253,-0.527,0.811,0.154,-0.243,0.958,-0.83,0.3,0.47,-0.821,-0.214,0.53,-0.592,-0.671,0.447,-0.734,0.085,0.674,-0.433,0.265,0.862,-0.132,0.526,0.84,-0.783,-0.339,0.522,-0.52,-0.235,0.821,-0.202,-0.028,0.979,0.11,0.239,0.965,0.353,0.515,0.781,-0.051,-0.399,0.916,0.253,-0.158,0.954,0.519,0.107,0.848,0.706,0.356,0.612,-0.348,-0.579,0.737,-0.051,-0.399,0.916,-0.048,-0.796,0.603,0.27,-0.59,0.761,0.138,-0.953,0.271,-0.457,0.514,0.726,-0.161,0.85,0.502,-0.459,-0.049,0.887,-0.039,0.276,0.96,0.278,0.635,0.721,0.154,-0.243,0.958,0.519,0.107,0.848,0.745,0.428,0.511,-0.051,-0.399,0.916,0.253,-0.158,0.954,0.519,0.107,0.848,-0.048,-0.796,0.603,0.27,-0.59,0.761,0.582,-0.322,0.747,-0.459,-0.049,0.887,-0.253,-0.527,0.811,0.154,-0.243,0.958,0.578,-0.458,0.676,0.353,0.515,0.781,0.519,0.107,0.848,0.706,0.356,0.612,0.27,-0.59,0.761,0.582,-0.322,0.747,0.825,-0.046,0.563,0.952,0.183,0.246,0.145,0.699,0.7,0.607,0.621,0.496,0.882,0.294,0.369,0.519,0.107,0.848,-0.847,-0.067,0.527,-0.52,0.082,0.85,-0.818,-0.497,0.289,-0.576,-0.447,0.684,-0.233,-0.257,0.938,-0.63,-0.722,-0.285,-0.544,-0.823,0.162,-0.302,-0.773,0.558,0.041,-0.584,0.811,-0.145,-0.699,-0.7,-0.228,-0.931,-0.285,-0.078,-0.982,0.172,0.249,-0.833,0.495,0.232,-0.847,-0.478,0.299,-0.952,-0.063,0.622,-0.766,0.159,0.617,-0.734,-0.285,0.952,0.183,0.246,0.944,-0.253,0.213,0.987,-0.079,-0.143,0.855,-0.514,-0.068,0.796,-0.421,-0.434,0.855,-0.514,-0.068,0.83,-0.3,-0.47,0.907,-0.421,0.009,0.987,-0.079,-0.143,0.11,0.239,0.965,-0.253,-0.527,0.811,-0.253,0.158,-0.954,0.52,0.235,-0.821,0.202,0.028,-0.979,-0.11,-0.239,-0.965,0.592,0.671,-0.447,0.783,0.339,-0.522,0.854,-0.045,-0.518,0.796,-0.421,-0.434,0.343,-0.935,-0.092,0.629,-0.771,0.103,0.855,-0.514,-0.068,0.617,-0.734,-0.285,0.253,0.527,-0.811,-0.154,0.243,-0.958,0.821,0.214,-0.53,0.459,0.049,-0.887,0.039,-0.276,-0.96,-0.278,-0.635,-0.721,0.83,-0.3,-0.47,0.457,-0.514,-0.726,0.161,-0.85,-0.502,0.937,0.32,-0.141,0.854,-0.045,-0.518,0.013,-0.661,-0.75,-0.115,-0.887,-0.448,0.138,-0.953,0.271,0.44,-0.772,0.459,0.987,-0.079,-0.143,0.796,-0.421,-0.434,0.511,-0.585,-0.63,0.284,-0.842,-0.459,0.343,-0.935,-0.092,0.629,-0.771,0.103,0.855,-0.514,-0.068,0.617,-0.734,-0.285,0.511,-0.585,-0.63,-0.343,0.935,0.092,-0.629,0.771,-0.103,-0.855,0.514,0.068,-0.018,0.993,-0.115,-0.283,0.877,-0.389,-0.596,0.647,-0.475,-0.859,0.376,-0.347,-0.988,0.151,-0.045,0.311,0.901,-0.304,0.048,0.796,-0.603,-0.27,0.59,-0.761,-0.582,0.322,-0.747,-0.825,0.046,-0.563,-0.952,-0.183,-0.246,0.592,0.671,-0.447,0.348,0.579,-0.737,0.051,0.399,-0.916,-0.253,0.158,-0.954,-0.519,-0.107,-0.848,-0.706,-0.356,-0.612,-0.786,-0.55,-0.283,0.783,0.339,-0.522,0.52,0.235,-0.821,0.202,0.028,-0.979,-0.11,-0.239,-0.965,-0.353,-0.515,-0.781,-0.48,-0.745,-0.464,0.59,-0.161,-0.792,0.276,-0.391,-0.878,0.013,-0.661,-0.75,-0.115,-0.887,-0.448,0.511,-0.585,-0.63,-0.582,0.322,-0.747,-0.859,0.376,-0.347,-0.988,0.151,-0.045,-0.27,0.59,-0.761,-0.582,0.322,-0.747,-0.825,0.046,-0.563,0.051,0.399,-0.916,-0.253,0.158,-0.954,-0.617,0.734,0.285,-0.611,0.757,-0.232,-0.907,0.421,-0.009,-0.83,0.3,0.47,-0.629,0.771,-0.103,-0.596,0.647,-0.475,-0.299,0.952,0.063,-0.622,0.766,-0.159,0.078,0.982,-0.172,-0.249,0.833,-0.495,-0.628,0.54,-0.561,0.138,0.694,-0.707,-0.226,0.449,-0.864,0.048,0.122,-0.991,-0.617,0.734,0.285,-0.343,0.935,0.092,-0.629,0.771,-0.103,-0.284,0.842,0.459,-0.018,0.993,-0.115,-0.283,0.877,-0.389,-0.596,0.647,-0.475,0.311,0.901,-0.304,0.048,0.796,-0.603,-0.27,0.59,-0.761,0.592,0.671,-0.447,0.348,0.579,-0.737,0.051,0.399,-0.916,-0.578,0.458,-0.676,-0.894,0.099,-0.436,-0.154,0.243,-0.958,-0.519,-0.107,-0.848,-0.745,-0.428,-0.511,0.039,-0.276,-0.96,-0.278,-0.635,-0.721,-0.629,0.771,-0.103,-0.859,0.376,-0.347,-0.825,0.046,-0.563,-0.596,0.647,-0.475,-0.582,0.322,-0.747,-0.158,0.782,-0.602,-0.578,0.458,-0.676,0.592,0.671,-0.447,0.253,0.527,-0.811,-0.745,-0.428,-0.511,0.821,0.214,-0.53,-0.988,0.151,-0.045,-0.952,-0.183,-0.246,-0.617,0.734,0.285,-0.238,0.971,0.023,-0.611,0.757,-0.232,-0.907,0.421,-0.009,-0.83,0.3,0.47,-0.457,0.514,0.726,-0.161,0.85,0.502,0.204,0.948,-0.245,-0.158,0.782,-0.602,-0.617,0.734,0.285,-0.629,0.771,-0.103,-0.855,0.514,0.068,-0.796,0.421,0.434,-0.511,0.585,0.63,-0.283,0.877,-0.389,-0.596,0.647,-0.475,-0.859,0.376,-0.347,-0.988,0.151,-0.045,-0.941,0.042,0.336,-0.734,0.085,0.674,-0.433,0.265,0.862,0.048,0.796,-0.603,-0.27,0.59,-0.761,-0.582,0.322,-0.747,0.348,0.579,-0.737,0.051,0.399,-0.916,-0.253,0.158,-0.954,-0.825,0.046,-0.563,-0.519,-0.107,-0.848,-0.83,0.3,0.47,-0.812,0.37,0.451,-0.997,-0.016,0.071,-0.847,-0.067,0.527,-0.52,0.082,0.85,-0.818,-0.497,0.289,-0.576,-0.447,0.684,-0.233,-0.257,0.938,-0.302,-0.773,0.558,0.041,-0.584,0.811,-0.617,0.734,0.285,-0.299,0.952,0.063,-0.622,0.766,-0.159,-0.489,0.556,0.672,-0.232,0.847,0.478,-0.381,0.177,0.908,-0.049,0.466,0.884,0.177,0.752,0.636,0.224,0.944,0.242,0.228,0.12,0.966,0.485,0.411,0.772,0.502,-0.207,0.84,-0.141,0.375,0.916,0.145,0.699,0.7,0.228,0.931,0.285,-0.233,-0.257,0.938,0.131,0.029,0.991,0.435,0.346,0.832,0.607,0.621,0.496,0.609,0.791,0.062,0.882,0.294,0.369,0.883,0.464,-0.065,-0.299,0.952,0.063,-0.617,0.734,0.285,-0.238,0.971,0.023,-0.611,0.757,-0.232,-0.907,0.421,-0.009,-0.83,0.3,0.47,-0.158,0.782,-0.602,-0.578,0.458,-0.676,-0.894,0.099,-0.436,-0.987,-0.158,0.024,-0.511,0.585,0.63,-0.284,0.842,0.459,-0.132,0.526,0.84,-0.343,0.935,0.092,-0.018,0.993,-0.115,0.072,0.785,0.616,0.114,0.959,0.26,0.11,0.239,0.965,-0.617,0.734,0.285,-0.812,0.37,0.451,-0.489,0.556,0.672,-0.232,0.847,0.478,-0.943,-0.069,0.326,-0.714,-0.022,0.7,-0.796,0.421,0.434,-0.511,0.585,0.63,-0.734,0.085,0.674,-0.433,0.265,0.862,-0.132,0.526,0.84,-0.202,-0.028,0.979,-0.051,-0.399,0.916,-0.997,-0.016,0.071,-0.847,-0.067,0.527,-0.818,-0.497,0.289,-0.576,-0.447,0.684,-0.544,-0.823,0.162,-0.302,-0.773,0.558,0.041,-0.584,0.811,-0.228,-0.931,-0.285,-0.078,-0.982,0.172,0.249,-0.833,0.495,0.232,-0.847,-0.478,0.072,0.785,0.616,0.11,0.239,0.965,0.353,0.515,0.781,0.48,0.745,0.464,0.253,-0.158,0.954,0.519,0.107,0.848,0.27,-0.59,0.761,0.582,-0.322,0.747,0.48,0.745,0.464,0.519,0.107,0.848,0.706,0.356,0.612,-0.617,0.734,0.285,-0.299,0.952,0.063,-0.622,0.766,-0.159,-0.489,0.556,0.672,-0.232,0.847,0.478,-0.049,0.466,0.884,0.228,0.12,0.966,0.485,0.411,0.772,-0.433,0.265,0.862,-0.132,0.526,0.84,0.072,0.785,0.616,-0.52,-0.235,0.821,-0.202,-0.028,0.979,0.11,0.239,0.965,-0.051,-0.399,0.916,0.253,-0.158,0.954,0.27,-0.59,0.761,-0.489,0.556,0.672,-0.232,0.847,0.478,-0.52,0.082,0.85,-0.141,0.375,0.916,0.145,0.699,0.7,0.228,0.931,0.285,-0.233,-0.257,0.938,0.131,0.029,0.991,0.435,0.346,0.832,0.607,0.621,0.496,0.609,0.791,0.062,0.041,-0.584,0.811,0.406,-0.298,0.864,0.709,0.019,0.705,0.882,0.294,0.369,0.883,0.464,-0.065,0.628,-0.54,0.561,0.914,-0.216,0.345,-0.101,-0.163,0.981,-0.617,0.734,0.285,-0.489,0.556,0.672,-0.232,0.847,0.478,-0.52,0.082,0.85,-0.141,0.375,0.916,0.145,0.699,0.7,0.228,0.931,0.285,-0.233,-0.257,0.938,0.131,0.029,0.991,0.435,0.346,0.832,0.607,0.621,0.496,0.041,-0.584,0.811,0.406,-0.298,0.864,0.709,0.019,0.705,0.882,0.294,0.369,0.249,-0.833,0.495,0.628,-0.54,0.561,0.914,-0.216,0.345,0.622,-0.766,0.159,0.879,-0.475,-0.035,-0.049,0.466,0.884,0.228,0.12,0.966,0.485,0.411,0.772,-0.039,0.276,0.96,0.154,-0.243,0.958,0.519,0.107,0.848,0.578,-0.458,0.676,0.894,-0.099,0.436,0.611,-0.757,0.232,0.072,0.785,0.616,0.343,-0.935,-0.092,0.855,-0.514,-0.068,0.204,0.948,-0.245,0.371,0.891,0.261,0.592,0.671,-0.447,0.745,0.428,0.511,0.772,0.634,0.037,0.821,0.214,-0.53,0.894,-0.099,0.436,0.987,0.158,-0.024,0.83,-0.3,-0.47,0.893,0.326,0.311,0.772,0.634,0.037,0.987,0.158,-0.024,0.519,0.107,0.848,0.825,-0.046,0.563,0.74,-0.511,0.437,0.944,-0.253,0.213,0.796,-0.421,-0.434,0.511,-0.585,-0.63,0.284,-0.842,-0.459,0.629,-0.771,0.103,0.855,-0.514,-0.068,0.617,-0.734,-0.285,-0.821,-0.214,0.53,-0.772,-0.634,-0.037,-0.592,-0.671,0.447,-0.278,-0.635,-0.721,-0.371,-0.891,-0.261,-0.204,-0.948,0.245,-0.115,-0.887,-0.448,-0.617,0.734,0.285,-0.238,0.971,0.023,-0.611,0.757,-0.232,-0.907,0.421,-0.009,-0.83,0.3,0.47,-0.855,0.514,0.068,-0.596,0.647,-0.475,-0.859,0.376,-0.347,-0.988,0.151,-0.045,0.048,0.796,-0.603,-0.27,0.59,-0.761,-0.812,0.37,0.451,-0.489,0.556,0.672,-0.997,-0.016,0.071,-0.847,-0.067,0.527,-0.52,0.082,0.85,-0.141,0.375,0.916,0.145,0.699,0.7,-0.818,-0.497,0.289,-0.576,-0.447,0.684,-0.233,-0.257,0.938,0.131,0.029,0.991,0.435,0.346,0.832,-0.302,-0.773,0.558,0.041,-0.584,0.811,0.406,-0.298,0.864,0.709,0.019,0.705,0.249,-0.833,0.495,0.628,-0.54,0.561,0.783,0.339,-0.522,-0.11,-0.239,-0.965,0.854,-0.045,-0.518,0.59,-0.161,-0.792,0.276,-0.391,-0.878,0.44,-0.772,0.459,0.74,-0.511,0.437,0.944,-0.253,0.213,0.987,-0.079,-0.143,0.796,-0.421,-0.434,0.511,-0.585,-0.63,0.284,-0.842,-0.459,0.343,-0.935,-0.092,0.629,-0.771,0.103,0.855,-0.514,-0.068,0.617,-0.734,-0.285,-0.596,0.647,-0.475,0.048,0.796,-0.603,-0.27,0.59,-0.761,-0.582,0.322,-0.747,0.592,0.671,-0.447,0.348,0.579,-0.737,0.051,0.399,-0.916,-0.253,0.158,-0.954,-0.519,-0.107,-0.848,-0.706,-0.356,-0.612,0.783,0.339,-0.522,0.52,0.235,-0.821,0.202,0.028,-0.979,-0.11,-0.239,-0.965,-0.353,-0.515,-0.781,0.952,0.183,0.246,0.937,0.32,-0.141,0.854,-0.045,-0.518,0.59,-0.161,-0.792,0.276,-0.391,-0.878,0.013,-0.661,-0.75,-0.115,-0.887,-0.448,0.944,-0.253,0.213,0.987,-0.079,-0.143,0.796,-0.421,-0.434,0.511,-0.585,-0.63,0.284,-0.842,-0.459,0.343,-0.935,-0.092,0.629,-0.771,0.103,0.855,-0.514,-0.068,0.617,-0.734,-0.285,-0.617,0.734,0.285,-0.343,0.935,0.092,-0.629,0.771,-0.103,-0.855,0.514,0.068,-0.511,0.585,0.63,-0.284,0.842,0.459,-0.018,0.993,-0.115,-0.283,0.877,-0.389,-0.596,0.647,-0.475,0.072,0.785,0.616,0.114,0.959,0.26,0.311,0.901,-0.304,0.048,0.796,-0.603,-0.27,0.59,-0.761,0.353,0.515,0.781,0.48,0.745,0.464,0.465,0.882,0.077,0.592,0.671,-0.447,0.706,0.356,0.612,0.786,0.55,0.283,0.745,0.661,-0.088,0.825,-0.046,0.563,0.952,0.183,0.246,0.937,0.32,-0.141,0.114,0.959,0.26,0.465,0.882,0.077,0.745,0.661,-0.088,0.937,0.32,-0.141,0.854,-0.045,-0.518,0.987,-0.079,-0.143,0.796,-0.421,-0.434,0.511,-0.585,-0.63,0.284,-0.842,-0.459,0.039,-0.276,-0.96,0.83,-0.3,-0.47,0.457,-0.514,-0.726,0.161,-0.85,-0.502,0.238,-0.971,-0.023,0.611,-0.757,0.232,0.907,-0.421,0.009,0.617,-0.734,-0.285,-0.511,0.585,0.63,0.48,0.745,0.464,0.786,0.55,0.283,0.745,0.661,-0.088,0.783,0.339,-0.522,0.937,0.32,-0.141,0.854,-0.045,-0.518,0.59,-0.161,-0.792,0.987,-0.079,-0.143,0.796,-0.421,-0.434,0.511,-0.585,-0.63,0.617,-0.734,-0.285,-0.855,0.514,0.068,-0.596,0.647,-0.475,-0.859,0.376,-0.347,-0.582,0.322,-0.747,-0.825,0.046,-0.563,-0.253,0.158,-0.954,-0.519,-0.107,-0.848,-0.706,-0.356,-0.612,0.202,0.028,-0.979,-0.11,-0.239,-0.965,-0.353,-0.515,-0.781,0.276,-0.391,-0.878,0.311,0.901,-0.304,0.607,0.621,0.496,0.609,0.791,0.062,0.11,0.239,0.965,0.519,0.107,0.848,0.706,0.356,0.612,0.786,0.55,0.283,0.783,0.339,-0.522,0.52,0.235,-0.821,0.202,0.028,-0.979,0.825,-0.046,0.563,0.952,0.183,0.246,0.937,0.32,-0.141,0.854,-0.045,-0.518,0.59,-0.161,-0.792,0.276,-0.391,-0.878,0.74,-0.511,0.437,0.944,-0.253,0.213,0.987,-0.079,-0.143,0.796,-0.421,-0.434,0.511,-0.585,-0.63,0.855,-0.514,-0.068,0.617,-0.734,-0.285,0.253,0.527,-0.811,-0.154,0.243,-0.958,-0.519,-0.107,-0.848,0.459,0.049,-0.887,0.039,-0.276,-0.96,-0.278,-0.635,-0.721,0.051,0.399,-0.916,0.204,0.948,-0.245,0.592,0.671,-0.447,0.253,0.527,-0.811,-0.154,0.243,-0.958,0.772,0.634,0.037,0.821,0.214,-0.53,0.459,0.049,-0.887,0.987,0.158,-0.024,-0.617,0.734,0.285,-0.299,0.952,0.063,-0.622,0.766,-0.159,-0.879,0.475,0.035,-0.812,0.37,0.451,-0.489,0.556,0.672,-0.232,0.847,0.478,0.078,0.982,-0.172,-0.249,0.833,-0.495,-0.628,0.54,-0.561,-0.914,0.216,-0.345,-0.997,-0.016,0.071,0.145,0.699,0.7,0.228,0.931,0.285,0.607,0.621,0.496,0.609,0.791,0.062,-0.617,0.734,0.285,0.114,0.959,0.26,-0.617,0.734,0.285,-0.796,0.421,0.434,-0.617,0.734,0.285,-0.299,0.952,0.063,-0.232,0.847,0.478,-0.617,0.734,0.285,-0.907,0.421,-0.009,-0.83,0.3,0.47,-0.161,0.85,0.502,-0.582,0.322,-0.747,-0.253,0.158,-0.954,-0.617,0.734,0.285,-0.343,0.935,0.092,-0.629,0.771,-0.103,-0.855,0.514,0.068,-0.796,0.421,0.434,-0.284,0.842,0.459,-0.018,0.993,-0.115,-0.283,0.877,-0.389,-0.596,0.647,-0.475,-0.859,0.376,-0.347,-0.988,0.151,-0.045,-0.941,0.042,0.336,0.114,0.959,0.26,0.311,0.901,-0.304,0.048,0.796,-0.603,-0.27,0.59,-0.761,0.465,0.882,0.077,0.592,0.671,-0.447,0.745,0.661,-0.088,-0.629,0.771,-0.103,-0.018,0.993,-0.115,-0.283,0.877,-0.389,-0.596,0.647,-0.475,-0.617,0.734,0.285,-0.617,0.734,0.285,-0.238,0.971,0.023,-0.161,0.85,0.502,0.204,0.948,-0.245,0.371,0.891,0.261,0.078,0.982,-0.172,0.609,0.791,0.062,-0.457,0.514,0.726,-0.161,0.85,0.502,-0.039,0.276,0.96,0.278,0.635,0.721,0.371,0.891,0.261,0.519,0.107,0.848,0.465,0.882,0.077,-0.253,0.158,-0.954,-0.83,0.3,0.47,-0.987,-0.158,0.024,-0.821,-0.214,0.53,-0.459,-0.049,0.887,-0.745,-0.428,-0.511,-0.772,-0.634,-0.037,-0.879,0.475,0.035,-0.852,0.3,-0.429,-0.202,-0.028,0.979,0.11,0.239,0.965,-0.592,-0.671,0.447,-0.348,-0.579,0.737,-0.051,-0.399,0.916,0.253,-0.158,0.954,0.519,0.107,0.848,0.27,-0.59,0.761,0.582,-0.322,0.747,0.825,-0.046,0.563,0.74,-0.511,0.437,0.602,0.798,0.029,0.224,0.944,0.242,0.485,0.411,0.772,0.618,0.653,0.438,-0.049,0.466,0.884,0.177,0.752,0.636,0.204,0.948,-0.245,0.371,0.891,0.261,0.592,0.671,-0.447,0.772,0.634,0.037,-0.039,0.276,0.96,0.228,0.12,0.966,0.485,0.411,0.772,0.618,0.653,0.438,0.177,0.752,0.636,0.224,0.944,0.242,0.618,0.653,0.438,0.602,0.798,0.029,-0.284,0.842,0.459,0.072,0.785,0.616,0.114,0.959,0.26,0.48,0.745,0.464,0.465,0.882,0.077,0.786,0.55,0.283,0.745,0.661,-0.088,0.937,0.32,-0.141,-0.812,0.37,0.451,-0.489,0.556,0.672,-0.232,0.847,0.478,-0.141,0.375,0.916,0.145,0.699,0.7,0.228,0.931,0.285,0.131,0.029,0.991,0.435,0.346,0.832,0.406,-0.298,0.864,0.709,0.019,0.705,0.173,-0.489,0.855,0.388,-0.738,0.552,-0.299,0.952,0.063,-0.232,0.847,0.478,0.078,0.982,-0.172,-0.249,0.833,-0.495,0.228,0.931,0.285,0.138,0.694,-0.707,0.048,0.122,-0.991,0.048,0.796,-0.603,0.772,0.634,0.037,0.602,0.798,0.029,-0.238,0.971,0.023,-0.611,0.757,-0.232,-0.158,0.782,-0.602,-0.617,0.734,0.285,-0.343,0.935,0.092,-0.629,0.771,-0.103,-0.511,0.585,0.63,-0.284,0.842,0.459,-0.018,0.993,-0.115,-0.283,0.877,-0.389,-0.132,0.526,0.84,0.072,0.785,0.616,0.114,0.959,0.26,0.311,0.901,-0.304,0.048,0.796,-0.603,-0.27,0.59,-0.761,0.465,0.882,0.077,0.592,0.671,-0.447,0.348,0.579,-0.737,0.051,0.399,-0.916,0.52,0.235,-0.821,0.202,0.028,-0.979,0.592,0.671,-0.447,0.772,0.634,0.037,0.987,0.158,-0.024,-0.299,0.952,0.063,-0.232,0.847,0.478,0.078,0.982,-0.172,-0.215,0.854,-0.475,-0.049,0.466,0.884,0.177,0.752,0.636,0.224,0.944,0.242,0.44,0.817,-0.372,0.163,0.707,-0.688,0.618,0.653,0.438,0.602,0.798,0.029,0.714,0.491,-0.499,0.437,0.381,-0.815,-0.283,0.877,-0.389,-0.596,0.647,-0.475,-0.27,0.59,-0.761,-0.582,0.322,-0.747,0.051,0.399,-0.916,-0.253,0.158,-0.954,0.202,0.028,-0.979,-0.11,-0.239,-0.965,-0.343,0.935,0.092,-0.596,0.647,-0.475,0.228,0.931,0.285,0.607,0.621,0.496,0.609,0.791,0.062,0.883,0.464,-0.065,0.048,0.796,-0.603,-0.617,0.734,0.285,-0.457,0.514,0.726,0.465,0.882,0.077,0.048,0.796,-0.603,-0.343,0.935,0.092,-0.284,0.842,0.459,-0.018,0.993,-0.115,0.114,0.959,0.26,-0.617,0.734,0.285,-0.238,0.971,0.023,-0.611,0.757,-0.232,-0.457,0.514,0.726,-0.161,0.85,0.502,-0.039,0.276,0.96,0.278,0.635,0.721,0.371,0.891,0.261,0.072,0.785,0.616,0.48,0.745,0.464,0.592,0.671,-0.447,0.253,0.527,-0.811,-0.154,0.243,-0.958,0.772,0.634,0.037,0.821,0.214,-0.53,0.459,0.049,-0.887,0.039,-0.276,-0.96,0.83,-0.3,-0.47,-0.158,0.782,-0.602,-0.578,0.458,-0.676,0.253,0.527,-0.811,-0.154,0.243,-0.958,-0.519,-0.107,-0.848,0.459,0.049,-0.887,0.039,-0.276,-0.96,-0.278,-0.635,-0.721,0.457,-0.514,-0.726,-0.855,0.514,0.068,-0.859,0.376,-0.347,-0.617,0.734,0.285,-0.629,0.771,-0.103,-0.796,0.421,0.434,-0.511,0.585,0.63,-0.283,0.877,-0.389,-0.734,0.085,0.674,-0.433,0.265,0.862,0.048,0.796,-0.603,-0.52,-0.235,0.821,-0.855,0.514,0.068,-0.796,0.421,0.434,-0.988,0.151,-0.045,-0.941,0.042,0.336,-0.734,0.085,0.674,-0.433,0.265,0.862,-0.952,-0.183,-0.246,-0.937,-0.32,0.141,-0.783,-0.339,0.522,-0.52,-0.235,0.821,-0.202,-0.028,0.979,-0.706,-0.356,-0.612,-0.786,-0.55,-0.283,-0.745,-0.661,0.088,-0.592,-0.671,0.447,-0.617,0.734,0.285,-0.238,0.971,0.023,-0.907,0.421,-0.009,-0.83,0.3,0.47,-0.457,0.514,0.726,-0.161,0.85,0.502,-0.459,-0.049,0.887,-0.039,0.276,0.96,0.278,0.635,0.721,0.154,-0.243,0.958,-0.163,-0.707,0.688,0.745,0.661,-0.088,-0.855,0.514,0.068,0.253,-0.158,0.954,-0.592,-0.671,0.447,-0.52,-0.235,0.821,-0.202,-0.028,0.979,-0.348,-0.579,0.737,-0.051,-0.399,0.916,-0.048,-0.796,0.603,0.27,-0.59,0.761,-0.141,0.375,0.916,0.145,0.699,0.7,-0.576,-0.447,0.684,-0.233,-0.257,0.938,0.131,0.029,0.991,0.435,0.346,0.832,0.607,0.621,0.496,0.041,-0.584,0.811,0.406,-0.298,0.864,0.709,0.019,0.705,0.628,-0.54,0.561,0.745,0.428,0.511,0.145,0.699,0.7,0.618,0.653,0.438,-0.617,0.734,0.285,-0.161,0.85,0.502,0.278,0.635,0.721,0.371,0.891,0.261,0.745,0.428,0.511,0.772,0.634,0.037,-0.617,0.734,0.285,-0.489,0.556,0.672,-0.232,0.847,0.478,-0.381,0.177,0.908,-0.049,0.466,0.884,0.177,0.752,0.636,0.228,0.12,0.966,0.485,0.411,0.772,0.502,-0.207,0.84,0.759,0.084,0.646,0.72,-0.449,0.528,-0.299,0.952,0.063,-0.622,0.766,-0.159,0.078,0.982,-0.172,0.224,0.944,0.242,0.44,0.817,-0.372,0.618,0.653,0.438,0.602,0.798,0.029,0.893,0.326,0.311,0.877,0.471,-0.097,0.946,-0.164,0.28,-0.215,0.854,-0.475,-0.562,0.599,-0.571,0.163,0.707,-0.688,0.714,0.491,-0.499,0.437,0.381,-0.815,-0.617,0.734,0.285,-0.457,0.514,0.726,-0.161,0.85,0.502,0.278,0.635,0.721,0.371,0.891,0.261,0.745,0.428,0.511,0.786,0.55,0.283,0.745,0.661,-0.088,0.952,0.183,0.246,0.937,0.32,-0.141,0.821,0.214,-0.53,0.987,0.158,-0.024,0.83,-0.3,-0.47,0.592,0.671,-0.447,0.253,0.527,-0.811,0.821,0.214,-0.53,0.952,0.183,0.246,-0.283,0.877,-0.389,0.311,0.901,-0.304,0.048,0.796,-0.603,-0.27,0.59,-0.761,0.465,0.882,0.077,0.592,0.671,-0.447,0.348,0.579,-0.737,0.051,0.399,-0.916,0.786,0.55,0.283,0.745,0.661,-0.088,0.783,0.339,-0.522,0.52,0.235,-0.821,0.202,0.028,-0.979,0.952,0.183,0.246,0.937,0.32,-0.141,0.854,-0.045,-0.518,0.59,-0.161,-0.792,0.987,-0.079,-0.143,0.204,0.948,-0.245,0.592,0.671,-0.447,0.253,0.527,-0.811,0.772,0.634,0.037,-0.617,0.734,0.285,-0.343,0.935,0.092,-0.629,0.771,-0.103,-0.855,0.514,0.068,-0.284,0.842,0.459,-0.018,0.993,-0.115,-0.283,0.877,-0.389,-0.596,0.647,-0.475,-0.859,0.376,-0.347,-0.988,0.151,-0.045,-0.941,0.042,0.336,-0.132,0.526,0.84,0.072,0.785,0.616,0.114,0.959,0.26,0.311,0.901,-0.304,0.048,0.796,-0.603,-0.202,-0.028,0.979,0.11,0.239,0.965,0.353,0.515,0.781,0.48,0.745,0.464,0.465,0.882,0.077,0.592,0.671,-0.447,0.519,0.107,0.848,0.706,0.356,0.612,0.786,0.55,0.283,0.745,0.661,-0.088,0.706,0.356,0.612,-0.617,0.734,0.285,-0.238,0.971,0.023,-0.611,0.757,-0.232,-0.161,0.85,0.502,0.204,0.948,-0.245,-0.158,0.782,-0.602,-0.578,0.458,-0.676,0.371,0.891,0.261,-0.299,0.952,0.063,-0.622,0.766,-0.159,-0.215,0.854,-0.475,0.228,0.931,0.285,-0.855,0.514,0.068,-0.859,0.376,-0.347,-0.988,0.151,-0.045,-0.941,0.042,0.336,-0.582,0.322,-0.747,-0.039,0.276,0.96,-0.617,0.734,0.285,-0.812,0.37,0.451,-0.489,0.556,0.672,-0.049,0.466,0.884,0.592,0.671,-0.447,0.772,0.634,0.037,-0.611,0.757,-0.232,-0.907,0.421,-0.009,0.204,0.948,-0.245,-0.158,0.782,-0.602,-0.578,0.458,-0.676,-0.894,0.099,-0.436,-0.987,-0.158,0.024,-0.154,0.243,-0.958,-0.855,0.514,0.068,-0.859,0.376,-0.347,-0.215,0.854,-0.475,0.163,0.707,-0.688,-0.622,0.766,-0.159,-0.299,0.952,0.063,-0.489,0.556,0.672,-0.232,0.847,0.478,0.078,0.982,-0.172,-0.215,0.854,-0.475,-0.381,0.177,0.908,-0.049,0.466,0.884,0.177,0.752,0.636,0.224,0.944,0.242,0.44,0.817,-0.372,0.163,0.707,-0.688,-0.101,-0.163,0.981,0.228,0.12,0.966,-0.348,-0.579,0.737,-0.051,-0.399,0.916,0.253,-0.158,0.954,0.519,0.107,0.848,-0.311,-0.901,0.304,-0.048,-0.796,0.603,0.27,-0.59,0.761,0.582,-0.322,0.747,0.114,0.959,0.26,-0.253,0.158,-0.954,-0.519,-0.107,-0.848,-0.11,-0.239,-0.965,-0.353,-0.515,-0.781,0.276,-0.391,-0.878,-0.596,0.647,-0.475,-0.907,0.421,-0.009,-0.894,0.099,-0.436,-0.987,-0.158,0.024,-0.821,-0.214,0.53,-0.592,-0.671,0.447,-0.141,0.375,0.916,0.131,0.029,0.991,0.519,0.107,0.848,0.706,0.356,0.612,0.825,-0.046,0.563,0.952,0.183,0.246,0.177,0.752,0.636,0.224,0.944,0.242,0.618,0.653,0.438,0.114,0.959,0.26,0.48,0.745,0.464,0.465,0.882,0.077,0.786,0.55,0.283,0.745,0.661,-0.088,0.937,0.32,-0.141,0.072,0.785,0.616,-0.617,0.734,0.285,-0.629,0.771,-0.103,-0.855,0.514,0.068,-0.796,0.421,0.434,-0.511,0.585,0.63,-0.283,0.877,-0.389,-0.596,0.647,-0.475,-0.734,0.085,0.674,-0.433,0.265,0.862,-0.27,0.59,-0.761,-0.202,-0.028,0.979,0.051,0.399,-0.916,0.52,0.235,-0.821,0.52,0.235,-0.821,0.821,0.214,-0.53,-0.238,0.971,0.023,-0.611,0.757,-0.232,0.204,0.948,-0.245,-0.158,0.782,-0.602,0.371,0.891,0.261,0.772,0.634,0.037,-0.018,0.993,-0.115,-0.611,0.757,-0.232,-0.158,0.782,-0.602,-0.578,0.458,-0.676,-0.154,0.243,-0.958,-0.596,0.647,-0.475,-0.859,0.376,-0.347,-0.988,0.151,-0.045,-0.825,0.046,-0.563,-0.952,-0.183,-0.246,-0.937,-0.32,0.141,-0.745,-0.661,0.088,-0.576,-0.447,0.684,-0.617,0.734,0.285,-0.879,0.475,0.035,-0.489,0.556,0.672,-0.232,0.847,0.478,-0.299,0.952,0.063,-0.232,0.847,0.478,-0.617,0.734,0.285,-0.879,0.475,0.035,-0.812,0.37,0.451,-0.825,0.046,-0.563,-0.519,-0.107,-0.848,-0.617,0.734,0.285,-0.343,0.935,0.092,-0.629,0.771,-0.103,-0.511,0.585,0.63,-0.284,0.842,0.459,-0.018,0.993,-0.115,-0.283,0.877,-0.389,-0.433,0.265,0.862,-0.132,0.526,0.84,0.072,0.785,0.616,0.114,0.959,0.26,-0.202,-0.028,0.979,0.11,0.239,0.965,0.353,0.515,0.781,0.48,0.745,0.464,0.465,0.882,0.077,-0.051,-0.399,0.916,0.253,-0.158,0.954,0.519,0.107,0.848,0.706,0.356,0.612,0.27,-0.59,0.761,0.582,-0.322,0.747,-0.343,0.935,0.092,-0.284,0.842,0.459,-0.018,0.993,-0.115,-0.283,0.877,-0.389,-0.132,0.526,0.84,0.072,0.785,0.616,0.114,0.959,0.26,0.311,0.901,-0.304,0.048,0.796,-0.603,0.11,0.239,0.965,0.353,0.515,0.781,0.48,0.745,0.464,0.465,0.882,0.077,0.592,0.671,-0.447,0.348,0.579,-0.737,0.706,0.356,0.612,0.786,0.55,0.283,0.745,0.661,-0.088,0.592,0.671,-0.447,-0.161,0.85,0.502,0.204,0.948,-0.245,0.371,0.891,0.261,0.592,0.671,-0.447,0.772,0.634,0.037,0.821,0.214,-0.53,-0.617,0.734,0.285,-0.238,0.971,0.023,-0.611,0.757,-0.232,-0.457,0.514,0.726,-0.161,0.85,0.502,0.204,0.948,-0.245,-0.158,0.782,-0.602,-0.039,0.276,0.96,0.278,0.635,0.721,0.371,0.891,0.261,0.592,0.671,-0.447,0.745,0.428,0.511,0.772,0.634,0.037,-0.343,0.935,0.092,-0.629,0.771,-0.103,-0.629,0.771,-0.103,-0.855,0.514,0.068,-0.859,0.376,-0.347,-0.988,0.151,-0.045,0.078,0.982,-0.172,-0.249,0.833,-0.495,-0.628,0.54,-0.561,-0.914,0.216,-0.345,0.44,0.817,-0.372,0.138,0.694,-0.707,-0.226,0.449,-0.864,-0.57,0.139,-0.81,-0.815,-0.166,-0.555,0.609,0.791,0.062,0.714,0.491,-0.499,0.413,0.367,-0.833,0.048,0.122,-0.991,-0.296,-0.188,-0.937,-0.541,-0.493,-0.682,0.883,0.464,-0.065,-0.145,-0.699,-0.7,0.997,0.016,-0.071,-0.952,-0.183,-0.246,-0.786,-0.55,-0.283,-0.855,0.514,0.068,-0.783,-0.339,0.522,-0.52,-0.235,0.821,-0.592,-0.671,0.447,-0.617,0.734,0.285,-0.238,0.971,0.023,-0.611,0.757,-0.232,-0.907,0.421,-0.009,-0.83,0.3,0.47,-0.457,0.514,0.726,-0.161,0.85,0.502,0.204,0.948,-0.245,-0.158,0.782,-0.602,-0.039,0.276,0.96,0.278,0.635,0.721,0.371,0.891,0.261,-0.253,-0.527,0.811,-0.204,-0.948,0.245,0.158,-0.782,0.602,0.611,-0.757,0.232,-0.226,0.449,-0.864,0.048,0.122,-0.991,0.52,-0.082,-0.85,0.141,-0.375,-0.916,-0.596,0.647,-0.475,-0.253,0.158,-0.954,0.202,0.028,-0.979,0.276,-0.391,-0.878,0.511,-0.585,-0.63,0.617,-0.734,-0.285,-0.27,0.59,-0.761,-0.253,0.158,-0.954,0.202,0.028,-0.979,0.276,-0.391,-0.878,0.511,-0.585,-0.63,0.629,-0.771,0.103,0.617,-0.734,-0.285,-0.629,0.771,-0.103,-0.629,0.771,-0.103,-0.238,0.971,0.023,-0.611,0.757,-0.232,0.204,0.948,-0.245,0.204,0.948,-0.245,0.592,0.671,-0.447,0.253,0.527,-0.811,0.821,0.214,-0.53,0.459,0.049,-0.887,-0.734,0.085,0.674,-0.433,0.265,0.862,-0.52,-0.235,0.821,-0.202,-0.028,0.979,0.11,0.239,0.965,-0.051,-0.399,0.916,0.253,-0.158,0.954,0.519,0.107,0.848,0.52,0.235,-0.821,0.253,0.527,-0.811,-0.154,0.243,-0.958,-0.511,0.585,0.63,-0.284,0.842,0.459,-0.132,0.526,0.84,0.072,0.785,0.616,0.353,0.515,0.781,0.48,0.745,0.464,0.706,0.356,0.612,0.786,0.55,0.283,0.952,0.183,0.246,0.987,-0.079,-0.143,-0.617,0.734,0.285,-0.343,0.935,0.092,-0.629,0.771,-0.103,-0.855,0.514,0.068,-0.018,0.993,-0.115,-0.283,0.877,-0.389,-0.596,0.647,-0.475,-0.859,0.376,-0.347,-0.988,0.151,-0.045,0.114,0.959,0.26,0.311,0.901,-0.304,0.465,0.882,0.077,0.745,0.661,-0.088,-0.457,0.514,0.726,-0.161,0.85,0.502,-0.459,-0.049,0.887,-0.039,0.276,0.96,-0.018,0.993,-0.115,-0.283,0.877,-0.389,0.311,0.901,-0.304,0.048,0.796,-0.603,0.348,0.579,-0.737,0.051,0.399,-0.916,-0.158,0.782,-0.602,-0.578,0.458,-0.676,-0.299,0.952,0.063,0.078,0.982,-0.172,-0.249,0.833,-0.495,-0.628,0.54,-0.561,0.228,0.931,0.285,-0.226,0.449,-0.864,-0.617,0.734,0.285,-0.238,0.971,0.023,-0.611,0.757,-0.232,-0.907,0.421,-0.009,-0.83,0.3,0.47,-0.158,0.782,-0.602,-0.578,0.458,-0.676,-0.894,0.099,-0.436,0.253,0.527,-0.811,-0.154,0.243,-0.958,-0.519,-0.107,-0.848,-0.299,0.952,0.063,-0.489,0.556,0.672,-0.232,0.847,0.478,0.078,0.982,-0.172,-0.141,0.375,0.916,0.145,0.699,0.7,0.228,0.931,0.285,0.44,0.817,-0.372,0.138,0.694,-0.707,0.131,0.029,0.991,0.435,0.346,0.832,0.607,0.621,0.496,0.609,0.791,0.062,0.714,0.491,-0.499,0.413,0.367,-0.833,0.709,0.019,0.705,0.882,0.294,0.369,0.883,0.464,-0.065,0.847,0.067,-0.527,0.52,-0.082,-0.85,0.914,-0.216,0.345,0.997,0.016,-0.071,0.812,-0.37,-0.451,0.879,-0.475,-0.035,-0.813,-0.095,-0.575,-0.943,0.273,0.191,-0.424,0.847,0.32,-0.937,0.3,0.179,-0.806,-0.064,-0.588,0.441,-0.544,0.713,-0.991,0.109,0.074,-0.173,-0.245,0.954,0.368,-0.295,0.882,-0.891,0.226,-0.393,-0.312,-0.921,-0.231,-0.341,-0.926,-0.161,-0.921,0.222,-0.322,0.062,-0.661,-0.748,0.053,-0.679,-0.732,-0.932,0.2,-0.303,0.508,0.671,-0.54,0.589,0.324,-0.741,-0.851,-0.146,-0.504,-0.462,0.796,0.391,0.461,0.282,-0.841,-0.589,0.754,0.29,0.293,-0.652,0.7,0.433,-0.564,0.703,-0.426,0.855,0.294,-0.945,0.28,0.169,0.68,0.274,0.68,0.727,0.686,0.026,0.404,0.71,-0.576,0.244,-0.283,0.928,-0.037,-0.645,-0.763,0.008,-0.634,-0.773,0.289,-0.272,0.918,-0.402,-0.895,-0.19,-0.756,-0.194,0.625,-0.79,-0.456,-0.41,-0.828,-0.462,-0.317,-0.596,-0.305,-0.743,-0.61,-0.332,-0.719,-0.585,0.562,-0.585,-0.046,0.738,-0.673,-0.466,0.045,-0.884,0.074,0.221,-0.973,-0.894,0.442,-0.077,-0.841,0.512,-0.173,-0.099,0.993,-0.066,0.302,0.813,-0.498,-0.304,0.925,-0.228,0.097,0.745,-0.66,-0.442,0.368,0.818,-0.096,-0.183,0.978,-0.162,0.542,0.824,0.175,-0.014,0.985,-0.729,-0.09,0.678,-0.19,-0.42,0.887,-0.715,-0.054,0.697,-0.176,-0.384,0.906,0.266,-0.723,0.637,0.214,-0.962,0.17,0.103,-0.933,-0.345,0.347,-0.704,0.62,0.308,-0.939,0.15,0.184,-0.914,-0.362,0.048,-0.701,0.712,-0.206,-0.93,0.304,0.164,-0.734,0.659,-0.086,-0.965,0.249,0.174,-0.204,-0.964,0.336,0.295,-0.895,0.305,-0.254,-0.918,0.473,0.242,-0.847,-0.592,-0.671,0.447,-0.987,-0.158,0.024,-0.592,-0.671,0.447,-0.253,-0.527,0.811,-0.772,-0.634,-0.037,-0.987,-0.158,0.024,0.253,0.527,-0.811,-0.154,0.243,-0.958,-0.519,-0.107,-0.848,0.253,0.527,-0.811,-0.158,0.782,-0.602,-0.578,0.458,-0.676,-0.611,0.757,-0.232,0.578,-0.458,0.676,0.894,-0.099,0.436,0.987,0.158,-0.024,0.821,0.214,-0.53,0.519,0.107,0.848,0.745,0.428,0.511,0.772,0.634,0.037,0.592,0.671,-0.447,-0.039,0.276,0.96,0.278,0.635,0.721,0.371,0.891,0.261,0.204,0.948,-0.245,-0.161,0.85,0.502,0.617,-0.734,-0.285,0.611,-0.757,0.232,0.907,-0.421,0.009,0.83,-0.3,-0.47,0.457,-0.514,-0.726,0.578,-0.458,0.676,0.894,-0.099,0.436,0.987,0.158,-0.024,0.821,0.214,-0.53,-0.455,-0.241,0.857,-0.39,0.918,-0.073,-0.889,-0.251,-0.382,-0.398,0.914,-0.079,-0.464,-0.245,0.851,0.27,-0.521,0.81,0.276,-0.507,0.817,-0.459,-0.231,0.858,-0.892,-0.241,-0.381,0.208,-0.318,0.925,-0.961,-0.053,-0.273,-0.341,-0.378,-0.861,-0.344,-0.446,-0.827,-0.964,-0.121,-0.238,-0.03,0.383,-0.923,0.018,0.217,-0.976,-0.922,-0.263,-0.284,-0.422,0.906,0.025,-0.06,0.177,-0.982,-0.49,0.872,0.02,0.512,0.589,0.626,0.59,0.625,0.511,-0.422,0.903,-0.079,0.246,-0.532,0.81,-0.274,0.58,0.767,-0.138,0.29,0.947,0.435,0.687,0.582,0.114,-0.478,0.871,0.851,-0.477,-0.221,0.935,-0.314,-0.163,0.198,-0.316,0.928,-0.351,-0.375,-0.858,-0.017,-0.792,0.61,-0.342,-0.827,-0.446,0.918,-0.375,-0.127,-0.368,-0.436,-0.821,-0.058,0.394,-0.917,0.838,-0.519,-0.165,-0.151,0.226,-0.962,0.421,0.637,0.646,0.186,0.808,-0.558,0.357,0.931,-0.08,-0.62,0.272,0.736,-0.595,0.702,0.391,-0.633,0.266,0.728,-0.608,0.696,0.382,-0.896,-0.313,0.316,-0.891,-0.326,0.315,-0.775,-0.613,0.153,-0.319,-0.716,0.621,-0.896,-0.278,0.345,-0.44,-0.382,0.813,-0.641,0.169,-0.749,-0.583,-0.03,-0.812,-0.889,0.425,-0.171,-0.846,0.441,-0.301,-0.265,0.736,-0.623,-0.36,0.687,-0.631,0.014,0.915,0.404,0.105,0.957,0.271,0.534,0.06,0.843,0.35,0.133,0.927,0.641,-0.634,0.432,0.753,-0.419,0.508,-0.213,-0.972,0.098,0.175,-0.498,-0.849,0.65,-0.476,-0.593,0.151,-0.584,-0.798,0.626,-0.562,-0.541,0.431,0.155,-0.889,0.792,-0.129,-0.596,0.306,-0.071,-0.949,0.672,-0.347,-0.655,0.818,0.298,0.492,0.973,-0.13,0.192,0.838,0.365,0.405,0.992,-0.066,0.108,-0.83,0.3,0.47,-0.907,0.421,-0.009,-0.592,-0.671,0.447,-0.772,-0.634,-0.037,-0.519,-0.107,-0.848,-0.578,0.458,-0.676,0.204,0.948,-0.245,0.278,0.635,0.721,0.894,-0.099,0.436,0.617,-0.734,-0.285,0.238,-0.971,-0.023,0.611,-0.757,0.232,0.161,-0.85,-0.502,0.039,-0.276,-0.96,0.987,0.158,-0.024,0.821,0.214,-0.53,0.772,0.634,0.037,0.592,0.671,-0.447,-0.571,0.352,0.741,-0.179,0.392,-0.903,-0.246,-0.065,-0.967,-0.234,0.323,-0.917,-0.626,0.284,0.727,0.315,0.382,0.869,0.312,0.546,0.778,-0.629,0.447,0.636,-0.024,-0.971,0.239,0.014,-0.963,0.27,-0.596,0.454,0.662,-0.681,-0.632,0.368,-0.617,-0.656,0.436,-0.531,0.431,0.73,-0.205,0.013,-0.979,-0.647,-0.62,0.444,-0.235,0.049,-0.971,-0.369,-0.909,0.196,-0.402,-0.892,0.206,-0.269,0.065,-0.961,0.015,-0.93,0.367,-0.02,-0.926,0.378,-0.299,0.069,-0.952,0.063,-0.188,-0.98,-0.037,-0.326,-0.945,-0.387,-0.051,-0.921,-0.321,0.405,-0.856,-0.125,-0.362,-0.924,-0.397,0.374,-0.838,0.889,0.435,-0.143,0.911,0.372,-0.179,-0.375,0.311,-0.873,0.173,0.37,0.913,-0.399,0.78,-0.482,-0.074,0.815,0.574,0.836,0.498,-0.229,0.099,0.497,0.862,0.944,-0.043,0.328,0.962,0.044,0.269,0.116,0.581,0.805,-0.248,-0.93,0.271,0.921,0.096,0.377,-0.293,-0.873,0.39,-0.21,-0.135,-0.968,0.664,-0.144,-0.734,0.83,-0.111,-0.546,0.922,0.06,0.383,-0.209,-0.175,-0.962,0.982,0.183,-0.052,0.992,0.121,-0.041,-0.199,-0.24,-0.95,0.824,0.541,-0.166,0.991,0.112,-0.07,0.824,0.533,-0.194,0.931,-0.007,0.365,-0.39,-0.905,0.169,0.03,-0.945,0.325,-0.668,-0.617,0.417,-0.739,0.649,0.178,-0.587,0.665,-0.463,-0.835,0.528,0.152,-0.683,0.543,-0.489,-0.629,-0.143,0.764,-0.4,-0.681,0.613,-0.574,-0.132,0.808,-0.342,-0.669,0.659,-0.774,-0.108,0.624,-0.695,-0.136,0.706,-0.795,0.545,0.265,-0.823,0.496,-0.278,-0.604,0.299,-0.739,-0.872,0.396,0.287,-0.913,0.321,-0.253,-0.681,0.15,-0.717,-0.586,-0.392,-0.709,-0.743,-0.647,-0.169,-0.635,-0.335,-0.696,-0.792,-0.59,-0.156,-0.419,-0.453,-0.787,-0.469,-0.81,-0.351,-0.468,-0.429,-0.772,-0.518,-0.786,-0.337,-0.277,-0.564,-0.778,-0.166,-0.951,-0.262,-0.334,-0.557,-0.761,-0.225,-0.943,-0.244,0.11,0.56,-0.821,0.585,0.583,-0.565,0.141,0.471,-0.871,0.616,0.493,-0.615,-0.251,0.967,0.045,0.721,0.493,0.488,0.621,0.661,0.421,0.633,0.276,0.723,0.655,0.38,0.653,-0.04,-0.0,0.999,-0.18,-0.581,0.794,0.304,-0.062,0.951,0.175,-0.646,0.743,0.315,-0.856,0.411,0.77,-0.489,0.41,0.248,-0.772,0.585,0.705,-0.408,0.58,-0.396,-0.9,-0.182,-0.365,-0.623,-0.692,0.017,-0.98,-0.2,0.048,-0.703,-0.71,0.357,-0.062,-0.932,0.804,0.073,-0.591,0.372,-0.157,-0.915,0.819,-0.021,-0.574,0.266,0.074,-0.961,0.647,0.365,-0.669,0.369,-0.095,-0.925,0.747,0.202,-0.634,-0.161,0.85,0.502,-0.238,0.971,0.023,-0.617,0.734,0.285,-0.253,-0.527,0.811,-0.039,0.276,0.96,-0.894,0.099,-0.436,-0.987,-0.158,0.024,0.371,0.891,0.261,0.204,0.948,-0.245,0.745,0.428,0.511,0.578,-0.458,0.676,0.519,0.107,0.848,0.617,-0.734,-0.285,0.238,-0.971,-0.023,0.611,-0.757,0.232,0.907,-0.421,0.009,0.83,-0.3,-0.47,0.457,-0.514,-0.726,0.161,-0.85,-0.502,-0.126,-0.986,0.105,-0.609,0.131,0.782,0.166,0.618,-0.769,-0.65,0.134,0.748,-0.166,-0.984,0.071,0.998,-0.057,-0.039,0.998,-0.055,-0.009,-0.165,-0.981,0.102,0.126,0.623,-0.772,-0.117,-0.813,-0.57,0.026,-0.025,-0.999,0.995,-0.09,-0.036,0.123,0.588,-0.8,-0.652,0.101,0.751,0.07,0.051,0.996,0.733,-0.025,0.679,-0.512,-0.596,0.618,-0.569,-0.592,0.571,0.383,-0.923,0.043,0.816,-0.579,0.002,0.385,-0.919,0.088,0.817,-0.575,0.047,0.759,0.383,-0.526,0.755,0.336,-0.564,-0.286,0.814,-0.505,-0.608,0.792,-0.055,-0.744,0.527,0.411,-0.203,0.872,-0.445,-0.51,0.86,0.015,-0.66,0.585,0.471,-0.278,-0.635,-0.721,-0.371,-0.891,-0.261,-0.154,0.243,-0.958,-0.519,-0.107,-0.848,-0.745,-0.428,-0.511,-0.772,-0.634,-0.037,-0.821,-0.214,0.53,-0.578,0.458,-0.676,-0.894,0.099,-0.436,-0.987,-0.158,0.024,-0.907,0.421,-0.009,0.158,-0.782,0.602,0.578,-0.458,0.676,-0.253,-0.527,0.811,0.154,-0.243,0.958,0.617,-0.734,-0.285,0.83,-0.3,-0.47,0.457,-0.514,-0.726,0.161,-0.85,-0.502,0.459,0.049,-0.887,0.745,0.428,0.511,0.772,0.634,0.037,0.592,0.671,-0.447,0.278,0.635,0.721,0.371,0.891,0.261,0.204,0.948,-0.245,-0.457,0.514,0.726,-0.161,0.85,0.502,-0.238,0.971,0.023,0.09,-0.381,0.92,-0.877,-0.466,-0.116,0.327,-0.365,-0.872,-0.818,-0.551,-0.166,0.159,-0.48,0.863,-0.416,0.282,0.865,-0.451,0.256,0.855,0.118,-0.51,0.852,-0.172,0.633,0.755,-0.617,0.513,0.597,-0.357,-0.638,0.683,0.886,0.457,0.08,0.805,0.579,0.131,-0.452,-0.495,0.742,0.804,-0.05,0.593,0.743,0.145,0.653,-0.517,-0.285,0.807,0.579,-0.742,0.339,0.609,-0.702,0.369,-0.488,-0.246,0.838,-0.209,-0.239,-0.948,-0.792,-0.504,0.344,-0.667,-0.509,-0.543,0.513,-0.754,0.41,-0.297,-0.287,-0.911,0.682,0.134,0.719,-0.072,-0.494,-0.867,0.801,-0.118,0.587,0.657,0.069,0.75,-0.322,-0.351,-0.879,0.669,0.69,0.278,0.35,-0.214,-0.912,0.886,0.348,-0.307,0.769,0.559,0.31,-0.214,-0.492,-0.844,0.502,0.077,-0.861,0.516,0.06,-0.854,-0.199,-0.511,-0.836,0.213,0.733,-0.645,0.791,0.51,-0.337,0.425,-0.752,-0.503,0.117,0.764,-0.635,0.273,0.805,-0.527,0.581,-0.711,-0.396,-0.455,-0.889,-0.047,-0.574,-0.746,-0.337,0.469,-0.577,-0.669,-0.746,-0.663,0.072,-0.333,-0.925,-0.182,-0.536,-0.819,0.207,-0.768,0.517,0.378,-0.808,0.523,0.272,-0.57,-0.813,0.116,-0.021,0.65,0.759,-0.217,0.826,0.521,-0.752,-0.651,-0.105,-0.061,0.552,0.831,-0.081,0.579,0.811,-0.769,-0.627,-0.123,-0.368,0.206,0.907,-0.532,0.66,0.531,-0.378,0.385,0.842,0.535,0.531,-0.658,0.351,0.532,-0.771,-0.579,0.386,0.718,0.921,0.34,0.192,0.21,0.733,-0.647,0.78,0.541,0.315,0.513,0.059,-0.856,-0.247,0.558,0.792,0.799,0.436,-0.415,0.125,0.684,-0.719,-0.052,0.542,0.839,0.32,0.667,-0.672,-0.841,0.405,0.358,-0.704,0.475,0.528,0.447,0.732,-0.514,-0.381,0.699,-0.605,-0.382,0.703,-0.6,0.447,0.736,-0.509,-0.271,-0.962,-0.028,0.474,0.438,-0.764,-0.109,-0.926,-0.362,-0.667,-0.416,-0.618,-0.687,-0.164,-0.708,-0.378,0.702,-0.604,-0.266,-0.963,-0.032,-0.7,0.478,0.53,-0.362,-0.565,0.741,-0.717,-0.596,0.361,-0.273,-0.694,0.667,-0.631,-0.72,0.29,-0.033,0.076,0.997,-0.604,-0.077,0.793,0.118,-0.483,0.868,0.559,-0.191,0.807,0.842,0.155,0.517,-0.046,-0.237,0.97,0.373,0.088,0.923,0.686,0.389,0.615,0.237,-0.367,0.899,0.153,-0.094,0.984,0.041,-0.667,0.744,0.079,-0.616,0.784,0.167,-0.673,-0.72,0.48,-0.85,-0.217,0.02,-0.753,-0.658,0.33,-0.932,-0.153,0.548,-0.596,-0.587,0.894,-0.447,-0.011,0.01,0.149,-0.989,0.812,-0.162,-0.561,0.469,-0.276,-0.839,0.354,0.294,-0.888,0.706,-0.214,-0.675,0.59,0.356,-0.725,0.076,-0.961,-0.266,-0.063,-0.794,-0.604,0.033,-0.837,-0.546,-0.413,-0.868,-0.275,-0.158,-0.553,-0.818,-0.599,-0.59,-0.541,-0.893,-0.206,0.401,-0.943,-0.199,0.266,-0.629,-0.429,0.648,-0.415,0.141,0.899,-0.96,-0.133,0.245,-0.752,0.442,0.489,-0.836,-0.319,0.446,-0.569,0.148,0.809,-0.868,-0.275,0.413,-0.601,0.192,0.776,-0.788,-0.291,0.543,-0.855,-0.186,0.484,-0.124,0.788,0.604,0.165,0.967,0.194,0.408,0.872,-0.27,-0.477,0.789,0.386,-0.241,0.969,-0.056,0.064,0.874,-0.481,-0.016,0.579,0.815,0.553,0.561,0.615,-0.073,0.773,0.63,0.497,0.752,0.434,0.772,0.529,-0.352,0.601,0.773,-0.202,0.848,0.393,-0.355,0.834,0.417,-0.361,0.205,0.922,-0.327,-0.2,0.972,0.125,0.638,0.767,0.07,0.24,0.813,0.53,-0.023,0.973,-0.229,-0.163,0.926,0.341,0.275,0.948,-0.157,0.135,0.901,0.412,-0.184,0.88,-0.438,-0.623,0.781,-0.049,0.019,0.982,-0.186,-0.416,0.885,0.208,0.289,-0.078,-0.954,0.069,-0.593,-0.803,-0.69,-0.662,0.291,-0.856,-0.113,0.505,-0.798,-0.601,0.05,-0.963,-0.052,0.263,-0.674,0.738,-0.046,-0.678,0.734,-0.048,0.161,-0.85,-0.502,-0.204,-0.948,0.245,-0.371,-0.891,-0.261,0.519,0.107,0.848,-0.039,0.276,0.96,0.238,-0.971,-0.023,-0.204,-0.948,0.245,-0.278,-0.635,-0.721,-0.371,-0.891,-0.261,-0.592,-0.671,0.447,0.617,-0.734,-0.285,0.83,-0.3,-0.47,0.987,0.158,-0.024,0.821,0.214,-0.53,0.459,0.049,-0.887,0.457,-0.514,-0.726,0.459,0.049,-0.887,0.039,-0.276,-0.96,-0.821,-0.214,0.53,0.371,0.891,0.261,-0.161,0.85,0.502,-0.238,0.971,0.023,-0.278,-0.635,-0.721,-0.154,0.243,-0.958,-0.772,-0.634,-0.037,-0.894,0.099,-0.436,-0.987,-0.158,0.024,-0.907,0.421,-0.009,-0.76,0.509,0.404,0.001,0.961,-0.276,-0.517,-0.088,-0.851,-0.135,0.853,-0.504,-0.905,0.393,0.16,0.779,-0.411,0.473,-0.755,0.369,0.541,0.532,-0.249,0.809,0.795,-0.378,0.475,-0.888,0.43,0.162,0.578,-0.741,0.341,-0.725,0.336,0.601,0.355,-0.55,0.756,0.647,-0.646,0.405,-0.811,0.537,0.234,-0.624,-0.759,0.186,-0.565,-0.757,0.328,-0.745,0.539,0.392,-0.502,-0.058,-0.863,-0.675,-0.616,0.407,-0.624,0.1,-0.775,0.596,-0.503,0.626,-0.711,-0.142,-0.688,0.398,-0.712,0.579,0.542,-0.503,0.674,-0.686,0.1,-0.721,0.195,-0.605,-0.772,0.123,-0.703,-0.701,-0.77,-0.014,-0.638,-0.481,0.204,-0.853,-0.455,0.146,-0.878,-0.743,-0.076,-0.665,-0.21,0.972,-0.101,-0.499,0.137,-0.856,-0.254,0.964,-0.079,0.976,-0.053,-0.209,0.924,-0.097,-0.37,-0.311,0.916,-0.254,0.395,-0.714,0.578,0.072,0.913,-0.401,0.723,-0.582,0.372,0.53,-0.74,0.414,-0.169,0.889,-0.426,0.747,-0.377,0.547,0.376,0.916,-0.141,0.89,0.224,0.398,0.967,0.05,-0.25,0.439,-0.561,0.702,0.097,-0.66,-0.745,0.98,0.0,-0.201,0.11,-0.711,-0.695,-0.495,0.195,-0.847,0.41,0.904,-0.121,0.885,0.284,0.368,-0.457,0.886,0.077,-0.627,0.751,-0.207,-0.17,0.071,0.983,-0.296,-0.198,0.934,-0.949,-0.147,0.278,-0.867,-0.144,0.477,-0.88,0.34,-0.332,-0.901,0.297,-0.316,-0.738,-0.564,-0.37,-0.899,-0.357,-0.255,-0.481,-0.767,-0.425,-0.035,-0.996,0.084,-0.297,-0.306,-0.905,-0.392,-0.434,-0.811,-0.628,0.591,-0.506,-0.34,0.576,-0.743,-0.408,0.686,-0.602,-0.462,0.676,-0.574,0.341,0.918,-0.204,0.809,0.531,-0.254,0.253,0.844,-0.474,0.723,0.458,-0.518,0.844,-0.519,0.134,0.9,-0.327,0.289,0.45,-0.861,0.238,0.323,-0.898,-0.299,0.595,-0.779,0.197,0.467,-0.817,-0.339,0.674,-0.386,-0.63,0.69,-0.45,-0.567,-0.231,-0.308,-0.923,-0.214,-0.299,-0.93,0.112,0.196,-0.974,0.676,0.121,-0.727,0.106,0.105,-0.989,0.67,0.032,-0.742,-0.051,-0.734,0.677,0.015,-0.921,0.388,-0.611,0.757,-0.232,0.519,0.107,0.848,0.745,0.428,0.511,-0.039,0.276,0.96,0.278,0.635,0.721,0.371,0.891,0.261,-0.457,0.514,0.726,-0.161,0.85,0.502,-0.238,0.971,0.023,-0.617,0.734,0.285,-0.592,-0.671,0.447,-0.253,-0.527,0.811,-0.821,-0.214,0.53,-0.987,-0.158,0.024,-0.204,-0.948,0.245,-0.371,-0.891,-0.261,0.238,-0.971,-0.023,-0.278,-0.635,-0.721,0.253,0.527,-0.811,-0.158,0.782,-0.602,0.894,-0.099,0.436,0.987,0.158,-0.024,0.745,0.428,0.511,0.772,0.634,0.037,0.617,-0.734,-0.285,0.921,0.052,0.387,0.346,-0.117,-0.931,-0.18,0.935,0.306,0.257,0.236,-0.937,0.832,0.405,0.38,0.34,-0.92,-0.197,0.366,-0.851,-0.376,0.858,0.473,0.201,-0.635,0.254,0.73,-0.538,-0.153,0.829,0.951,0.082,0.297,-0.148,0.966,0.213,-0.419,-0.158,0.894,-0.03,0.96,0.278,-0.753,-0.008,0.658,-0.726,-0.017,0.688,-0.002,0.951,0.308,-0.85,-0.034,-0.526,-0.884,-0.057,-0.464,-0.037,0.927,0.373,0.484,-0.125,-0.866,-0.826,0.443,-0.35,0.542,0.375,-0.752,0.625,-0.781,-0.012,0.675,-0.56,-0.48,-0.498,0.43,-0.753,-0.687,0.584,-0.432,0.763,-0.639,-0.094,-0.698,-0.476,0.536,-0.774,-0.515,0.369,0.687,-0.678,-0.261,-0.301,0.433,0.849,0.717,-0.588,0.374,0.163,0.033,0.986,-0.697,-0.58,0.422,-0.222,0.366,0.904,-0.687,0.48,-0.546,-0.844,0.09,-0.528,-0.385,-0.039,0.922,-0.72,0.111,0.685,0.99,-0.014,-0.137,0.779,-0.077,-0.622,0.866,0.478,-0.146,0.654,0.416,-0.631,0.961,-0.134,0.243,0.777,-0.629,0.028,0.999,-0.033,-0.022,0.815,-0.528,-0.238,0.46,0.618,0.637,-0.107,0.534,0.838,0.611,-0.012,0.792,0.045,-0.101,0.994,0.567,0.74,0.361,0.523,0.698,0.489,-0.461,0.546,0.7,-0.301,0.538,0.787,-0.506,0.615,0.605,-0.47,0.604,0.644,-0.482,0.876,-0.007,-0.801,0.506,-0.32,-0.535,0.84,0.089,-0.853,0.471,-0.225,0.302,0.931,-0.203,0.506,0.519,-0.689,0.047,0.945,-0.323,0.254,0.533,-0.807,-0.025,-0.138,-0.99,-0.527,-0.113,-0.843,0.056,0.551,-0.833,-0.446,0.576,-0.685,0.803,-0.28,-0.526,0.411,-0.471,-0.781,0.268,-0.393,-0.88,-0.18,-0.016,-0.984,0.33,-0.916,0.23,-0.226,-0.853,0.47,0.209,-0.977,-0.034,-0.347,-0.915,0.206,-0.661,-0.05,0.749,-0.565,-0.132,0.815,-0.587,0.606,0.537,-0.761,0.649,-0.005,-0.826,0.013,0.563,-0.998,0.061,0.021,-0.987,0.126,0.099,-0.994,-0.032,0.102,-0.956,0.125,-0.264,-0.96,-0.264,0.092,-0.957,0.269,-0.106,-0.961,-0.12,0.25,0.821,0.214,-0.53,0.772,0.634,0.037,0.592,0.671,-0.447,0.83,-0.3,-0.47,0.987,0.158,-0.024,0.611,-0.757,0.232,0.158,-0.782,0.602,0.578,-0.458,0.676,0.894,-0.099,0.436,-0.253,-0.527,0.811,0.154,-0.243,0.958,0.519,0.107,0.848,-0.039,0.276,0.96,-0.039,0.276,0.96,0.278,0.635,0.721,-0.83,0.3,0.47,-0.907,0.421,-0.009,-0.617,0.734,0.285,0.253,0.527,-0.811,-0.154,0.243,-0.958,-0.158,0.782,-0.602,-0.578,0.458,-0.676,0.457,-0.514,-0.726,0.459,0.049,-0.887,0.039,-0.276,-0.96,-0.154,0.243,-0.958,0.238,-0.971,-0.023,0.161,-0.85,-0.502,-0.278,-0.635,-0.721,-0.371,-0.891,-0.261,-0.519,-0.107,-0.848,-0.745,-0.428,-0.511,-0.772,-0.634,-0.037,-0.894,0.099,-0.436,0.158,-0.782,0.602,-0.253,-0.527,0.811,-0.83,0.3,0.47,-0.907,0.421,-0.009,-0.206,-0.946,-0.249,-0.111,0.158,0.981,-0.427,0.125,-0.895,-0.117,0.16,0.98,-0.212,-0.945,-0.25,0.665,-0.111,-0.739,0.668,-0.113,-0.736,-0.209,-0.946,-0.247,-0.431,0.125,-0.894,0.665,-0.127,-0.736,-0.434,0.11,-0.894,-0.117,0.145,0.982,-0.735,0.271,-0.622,-0.51,0.304,0.804,0.327,0.124,0.937,0.914,-0.086,-0.396,-0.286,-0.879,0.382,-0.249,-0.453,0.856,-0.296,-0.876,0.38,-0.26,-0.45,0.854,0.299,-0.697,-0.652,0.302,-0.699,-0.648,-0.415,-0.532,-0.738,-0.41,-0.532,-0.741,0.144,0.008,-0.99,0.14,-0.01,-0.99,-0.897,0.423,0.131,0.917,0.036,0.398,-0.592,-0.671,0.447,-0.745,-0.428,-0.511,-0.772,-0.634,-0.037,-0.821,-0.214,0.53,-0.459,-0.049,0.887,-0.894,0.099,-0.436,-0.987,-0.158,0.024,0.617,-0.734,-0.285,0.238,-0.971,-0.023,0.611,-0.757,0.232,0.907,-0.421,0.009,0.158,-0.782,0.602,0.578,-0.458,0.676,0.154,-0.243,0.958,0.039,-0.276,-0.96,0.821,0.214,-0.53,0.745,0.428,0.511,0.772,0.634,0.037,0.592,0.671,-0.447,0.253,0.527,-0.811,0.278,0.635,0.721,0.371,0.891,0.261,0.204,0.948,-0.245,-0.158,0.782,-0.602,-0.161,0.85,0.502,-0.238,0.971,0.023,-0.611,0.757,-0.232,-0.617,0.734,0.285,-0.42,-0.589,0.69,0.821,0.32,0.473,-0.336,0.777,-0.532,0.81,0.337,0.481,-0.431,-0.572,0.698,0.353,-0.427,-0.833,0.374,-0.429,-0.822,-0.412,-0.574,0.707,-0.327,0.793,-0.514,-0.871,-0.046,0.489,-0.828,0.559,-0.055,0.354,-0.44,-0.825,-0.347,0.782,-0.517,0.811,0.325,0.487,0.071,-0.376,0.924,0.538,-0.034,0.842,0.054,-0.349,0.935,0.521,-0.008,0.854,-0.227,-0.958,0.176,0.082,-0.9,-0.427,-0.19,-0.962,0.195,0.119,-0.905,-0.408,-0.097,0.478,-0.873,0.161,0.028,-0.987,-0.124,0.463,-0.878,0.134,0.014,-0.991,0.148,0.965,-0.215,0.588,0.791,0.167,0.165,0.957,-0.238,0.605,0.783,0.144,0.998,0.055,-0.016,0.825,-0.235,-0.514,0.997,0.074,-0.027,0.824,-0.215,-0.525,-0.459,-0.049,0.887,-0.039,0.276,0.96,0.278,0.635,0.721,-0.83,0.3,0.47,-0.457,0.514,0.726,-0.161,0.85,0.502,-0.238,0.971,0.023,-0.617,0.734,0.285,0.617,-0.734,-0.285,0.238,-0.971,-0.023,0.611,-0.757,0.232,0.907,-0.421,0.009,0.158,-0.782,0.602,0.578,-0.458,0.676,0.894,-0.099,0.436,-0.278,-0.635,-0.721,-0.371,-0.891,-0.261,-0.592,-0.671,0.447,-0.519,-0.107,-0.848,-0.745,-0.428,-0.511,-0.772,-0.634,-0.037,-0.578,0.458,-0.676,-0.894,0.099,-0.436,-0.987,-0.158,0.024,0.821,0.214,-0.53,0.459,0.049,-0.887,0.592,0.671,-0.447,0.253,0.527,-0.811,0.965,0.07,0.252,-0.019,0.993,0.115,-0.944,-0.108,0.313,-0.022,0.992,0.125,0.963,0.069,0.262,0.104,-0.581,-0.807,0.106,-0.565,-0.818,0.964,0.082,0.252,-0.945,-0.094,0.314,0.794,0.059,0.605,-0.779,-0.085,0.621,0.111,-0.581,-0.806,-0.939,-0.109,0.325,-0.015,0.992,0.126,0.069,0.875,-0.478,0.138,-0.038,-0.99,0.644,0.724,0.249,0.64,0.722,0.263,0.945,-0.256,-0.202,0.625,-0.498,-0.601,0.948,-0.235,-0.217,0.627,-0.476,-0.616,0.31,-0.001,0.951,-0.286,-0.056,0.957,-0.877,-0.441,-0.191,-0.476,-0.621,-0.623,-0.868,-0.467,-0.171,-0.467,-0.647,-0.603,-0.839,0.415,0.353,-0.498,0.821,0.279,-0.844,0.417,0.336,-0.504,0.823,0.263,0.745,0.428,0.511,-0.039,0.276,0.96,0.278,0.635,0.721,-0.457,0.514,0.726,-0.161,0.85,0.502,0.821,0.214,-0.53,0.459,0.049,-0.887,0.592,0.671,-0.447,0.617,-0.734,-0.285,0.238,-0.971,-0.023,0.611,-0.757,0.232,0.907,-0.421,0.009,0.161,-0.85,-0.502,-0.204,-0.948,0.245,0.158,-0.782,0.602,0.578,-0.458,0.676,-0.371,-0.891,-0.261,-0.592,-0.671,0.447,-0.253,-0.527,0.811,-0.772,-0.634,-0.037,-0.154,0.243,-0.958,-0.519,-0.107,-0.848,-0.578,0.458,-0.676,-0.894,0.099,-0.436,-0.611,0.757,-0.232,-0.907,0.421,-0.009,0.758,-0.094,-0.646,-0.38,-0.885,-0.267,-0.249,0.944,0.217,-0.42,-0.851,-0.315,0.718,-0.06,-0.693,0.737,0.297,0.607,0.743,0.26,0.617,0.724,-0.096,-0.684,-0.283,0.942,0.179,0.953,0.272,0.132,-0.08,0.954,-0.289,-0.447,0.816,0.366,-0.056,0.817,0.574,0.282,0.955,-0.096,-0.819,0.573,-0.036,-0.812,0.576,0.099,0.288,0.957,0.02,0.156,-0.872,-0.464,0.567,0.746,-0.349,0.474,-0.546,-0.691,-0.315,-0.475,-0.822,-0.805,0.309,-0.507,-0.73,0.682,-0.039,0.226,-0.78,-0.583,-0.912,-0.063,0.406,-0.972,0.124,0.201,0.167,-0.594,-0.787,-0.631,-0.775,0.04,-0.734,-0.678,-0.039,0.063,-0.497,-0.865,0.053,0.086,0.995,-0.089,-0.741,-0.665,-0.1,-0.221,0.97,-0.048,0.082,0.995,-0.034,-0.501,-0.865,0.61,-0.759,-0.228,0.329,-0.944,-0.019,-0.315,-0.686,-0.656,0.846,0.469,0.253,0.251,-0.612,-0.75,0.978,0.12,-0.171,0.346,-0.912,-0.219,0.864,0.502,0.045,0.026,0.195,0.981,0.114,-0.006,0.993,0.952,0.301,0.058,-0.448,0.846,0.29,0.288,0.076,0.955,-0.267,0.931,0.249,-0.06,-0.197,0.979,0.137,-0.162,0.977,-0.063,0.967,0.248,-0.994,-0.018,0.106,-0.939,-0.104,0.327,-0.003,0.874,0.486,-0.762,0.634,-0.131,0.147,-0.004,0.989,-0.984,0.134,0.118,-0.643,-0.765,-0.044,0.147,0.257,0.955,-0.202,-0.016,0.979,0.462,-0.853,-0.243,0.471,-0.534,-0.702,0.053,-0.825,-0.563,0.416,-0.486,-0.769,-0.003,-0.777,-0.63,0.985,0.161,-0.058,0.993,0.111,-0.045,0.581,0.539,-0.609,0.19,0.943,-0.274,0.641,0.542,-0.543,0.25,0.946,-0.208,0.304,0.795,0.526,0.577,0.81,-0.104,-0.331,0.94,-0.082,-0.322,0.944,0.073,0.378,0.211,-0.901,-0.369,-0.864,-0.343,-0.809,-0.586,0.039,-0.471,-0.543,-0.695,-0.912,-0.265,-0.312,-0.285,-0.841,-0.459,-0.412,-0.722,-0.556,-0.075,-0.996,-0.039,-0.079,-0.791,0.606,0.782,-0.396,-0.481,0.97,-0.089,0.225,0.777,-0.618,0.123,0.996,-0.041,-0.08,0.802,-0.57,-0.179,0.583,0.456,0.672,0.699,0.193,0.689,0.633,0.744,0.213,0.11,0.948,0.3,0.635,0.701,0.324,0.112,0.904,0.411,-0.213,0.535,0.818,0.013,0.641,0.767,-0.223,0.5,0.837,0.05,0.548,0.835,-0.722,0.648,0.242,-0.644,0.526,0.555,-0.443,0.873,0.205,-0.507,0.804,0.311,-0.801,-0.099,0.59,-0.386,-0.151,0.91,-0.787,0.115,0.606,-0.372,0.065,0.926,-0.932,-0.361,0.042,-0.917,-0.373,0.138,-0.509,-0.703,0.497,-0.215,-0.419,0.882,-0.644,-0.575,0.505,-0.351,-0.29,0.89,0.085,-0.547,0.833,0.339,-0.867,0.365,0.331,-0.391,0.859,0.583,-0.712,0.391,0.58,-0.723,0.375,0.458,-0.294,0.839,0.379,-0.826,0.417,0.255,-0.398,0.881,0.459,0.049,-0.887,0.039,-0.276,-0.96,-0.278,-0.635,-0.721,0.253,0.527,-0.811,-0.154,0.243,-0.958,-0.519,-0.107,-0.848,-0.158,0.782,-0.602,-0.578,0.458,-0.676,-0.611,0.757,-0.232,0.617,-0.734,-0.285,0.907,-0.421,0.009,0.83,-0.3,-0.47,0.772,0.634,0.037,0.371,0.891,0.261,0.039,-0.276,-0.96,-0.154,0.243,-0.958,-0.519,-0.107,-0.848,-0.158,0.782,-0.602,-0.578,0.458,-0.676,-0.611,0.757,-0.232,-0.745,-0.428,-0.511,-0.987,-0.158,0.024,-0.204,-0.948,0.245,-0.371,-0.891,-0.261,0.238,-0.971,-0.023,0.158,-0.782,0.602,0.617,-0.734,-0.285,0.578,-0.458,0.676,0.894,-0.099,0.436,0.519,0.107,0.848,0.278,0.635,0.721,-0.83,0.3,0.47,-0.457,0.514,0.726,-0.821,-0.214,0.53],[0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.708,0.6,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.708,0.6,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.708,0.6,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.863,0.932,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.118,0.565,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,1.0,0.708,0.6,1,1.0,0.384,0.156,1,0.373,0.69,1.0,1,1.0,0.384,0.156,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.863,0.932,1.0,1,1.0,0.692,0.578,1,0.863,0.932,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.863,0.932,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.373,0.69,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,1.0,0.384,0.156,1,0.373,0.69,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.373,0.69,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.373,0.69,1.0,1,1.0,0.384,0.156,1,1.0,0.271,0.0,1,1.0,0.384,0.156,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.692,0.578,1,0.235,0.623,1.0,1,1.0,0.692,0.578,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.692,0.578,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.922,0.961,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.824,0.913,1.0,1,1.0,0.319,0.067,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,1.0,0.319,0.067,1,1.0,0.384,0.156,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.686,0.845,1.0,1,1.0,0.271,0.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,1.0,0.546,0.378,1,1.0,0.692,0.578,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.692,0.578,1,1.0,0.546,0.378,1,1.0,0.692,0.578,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.546,0.378,1,1.0,0.692,0.578,1,1.0,0.546,0.378,1,1.0,0.692,0.578,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.692,0.578,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.692,0.578,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.692,0.578,1,0.686,0.845,1.0,1,1.0,0.692,0.578,1,0.686,0.845,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.692,0.578,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.692,0.578,1,0.235,0.623,1.0,1,1.0,0.692,0.578,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.692,0.578,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.692,0.578,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.692,0.578,1,0.118,0.565,1.0,1,1.0,0.692,0.578,1,0.118,0.565,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.118,0.565,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,1.0,0.319,0.067,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,1.0,0.319,0.067,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.319,0.067,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.271,0.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.235,0.623,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.686,0.845,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.692,0.578,1,1.0,0.546,0.378,1,1.0,0.692,0.578,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.692,0.578,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.384,0.156,1,0.686,0.845,1.0,1,1.0,0.384,0.156,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,1.0,0.319,0.067,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.922,0.961,1.0,1,0.863,0.932,1.0,1,0.922,0.961,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.922,0.961,1.0,1,0.843,0.923,1.0,1,0.922,0.961,1.0,1,0.843,0.923,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.843,0.923,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.843,0.923,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.824,0.913,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,1.0,0.384,0.156,1,0.824,0.913,1.0,1,1.0,0.384,0.156,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.235,0.623,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.235,0.623,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.235,0.623,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,1.0,0.271,0.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.271,0.0,1,0.118,0.565,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.118,0.565,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.118,0.565,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.118,0.565,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.118,0.565,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.922,0.961,1.0,1,0.235,0.623,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.863,0.932,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.863,0.932,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.373,0.69,1.0,1,0.686,0.845,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.373,0.69,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.373,0.69,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.373,0.69,1.0,1,1.0,0.384,0.156,1,0.373,0.69,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.686,0.845,1.0,1,0.373,0.69,1.0,1,0.686,0.845,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.686,0.845,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.922,0.961,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.922,0.961,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.824,0.913,1.0,1,0.922,0.961,1.0,1,0.824,0.913,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.118,0.565,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.118,0.565,1.0,1,0.824,0.913,1.0,1,1.0,0.384,0.156,1,0.824,0.913,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.824,0.913,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,1.0,0.319,0.067,1,0.824,0.913,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.824,0.913,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.922,0.961,1.0,1,0.824,0.913,1.0,1,0.922,0.961,1.0,1,0.824,0.913,1.0,1,0.922,0.961,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.922,0.961,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.922,0.961,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.922,0.961,1.0,1,0.843,0.923,1.0,1,0.824,0.913,1.0,1,0.843,0.923,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.843,0.923,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.686,0.845,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.922,0.961,1.0,1,1.0,0.546,0.378,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.922,0.961,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.922,0.961,1.0,1,0.235,0.623,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.384,0.156,1,1.0,0.271,0.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.271,0.0,1,1.0,0.384,0.156,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.384,0.156,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.384,0.156,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.686,0.845,1.0,1,0.863,0.932,1.0,1,0.686,0.845,1.0,1,0.863,0.932,1.0,1,0.686,0.845,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.546,0.378,1,0.863,0.932,1.0,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,1.0,0.384,0.156,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.686,0.845,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.686,0.845,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.373,0.69,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,0.235,0.623,1.0,1,1.0,0.319,0.067,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.235,0.623,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.922,0.961,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.319,0.067,1,1.0,0.384,0.156,1,1.0,0.319,0.067,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.319,0.067,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.319,0.067,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.384,0.156,1,1.0,0.319,0.067,1,1.0,0.384,0.156,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.824,0.913,1.0,1,1.0,0.384,0.156,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,1.0,0.384,0.156,1,0.824,0.913,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.824,0.913,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.824,0.913,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,1.0,0.271,0.0,1,0.922,0.961,1.0,1,1.0,0.271,0.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.922,0.961,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.922,0.961,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.922,0.961,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.824,0.913,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.686,0.845,1.0,1,0.824,0.913,1.0,1,0.118,0.565,1.0,1,0.824,0.913,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.824,0.913,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.824,0.913,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.118,0.565,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.235,0.623,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.922,0.961,1.0,1,0.118,0.565,1.0,1,0.922,0.961,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.271,0.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,1.0,0.271,0.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.745,0.874,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.686,0.845,1.0,1,1.0,0.271,0.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.843,0.923,1.0,1,0.686,0.845,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.843,0.923,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.235,0.623,1.0,1,0.843,0.923,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,1.0,0.384,0.156,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,1.0,0.384,0.156,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.373,0.69,1.0,1,1.0,0.384,0.156,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.373,0.69,1.0,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.708,0.6,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.708,0.6,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.319,0.067,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.319,0.067,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,1.0,0.384,0.156,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,1.0,0.384,0.156,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,1.0,0.384,0.156,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,1.0,0.384,0.156,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.843,0.923,1.0,1,0.686,0.845,1.0,1,0.843,0.923,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.118,0.565,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.118,0.565,1.0,1,0.235,0.623,1.0,1,0.118,0.565,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.745,0.874,1.0,1,0.314,0.661,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.235,0.623,1.0,1,0.843,0.923,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.843,0.923,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.843,0.923,1.0,1,0.235,0.623,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.235,0.623,1.0,1,0.843,0.923,1.0,1,0.235,0.623,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.843,0.923,1.0,1,0.235,0.623,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.843,0.923,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.843,0.923,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.922,0.961,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.922,0.961,1.0,1,0.373,0.69,1.0,1,0.922,0.961,1.0,1,0.843,0.923,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,0.922,0.961,1.0,1,1.0,0.319,0.067,1,1.0,0.546,0.378,1,0.922,0.961,1.0,1,1.0,0.546,0.378,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,1.0,0.319,0.067,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.235,0.623,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.373,0.69,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.373,0.69,1.0,1,0.118,0.565,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.118,0.565,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.843,0.923,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.319,0.067,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.373,0.69,1.0,1,0.235,0.623,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.922,0.961,1.0,1,0.373,0.69,1.0,1,0.922,0.961,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.922,0.961,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.922,0.961,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.922,0.961,1.0,1,0.843,0.923,1.0,1,0.922,0.961,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.922,0.961,1.0,1,0.843,0.923,1.0,1,0.922,0.961,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.843,0.923,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.686,0.845,1.0,1,0.843,0.923,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.922,0.961,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.922,0.961,1.0,1,0.235,0.623,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,1.0,0.546,0.378,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.922,0.961,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.922,0.961,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.922,0.961,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.235,0.623,1.0,1,0.922,0.961,1.0,1,0.235,0.623,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.922,0.961,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.922,0.961,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.319,0.067,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.922,0.961,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.922,0.961,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.118,0.565,1.0,1,0.373,0.69,1.0,1,0.118,0.565,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.118,0.565,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.692,0.578,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.235,0.623,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.373,0.69,1.0,1,0.745,0.874,1.0,1,0.373,0.69,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.373,0.69,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.745,0.874,1.0,1,0.373,0.69,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.373,0.69,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.843,0.923,1.0,1,0.373,0.69,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.745,0.874,1.0,1,0.843,0.923,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.235,0.623,1.0,1,0.843,0.923,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.235,0.623,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.595,0.444,1,1.0,0.546,0.378,1,1.0,0.595,0.444,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,0.118,0.565,1.0,1,1.0,0.595,0.444,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.595,0.444,1,0.314,0.661,1.0,1,1.0,0.595,0.444,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.118,0.565,1.0,1,0.235,0.623,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.745,0.874,1.0,1,0.118,0.565,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.745,0.874,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.922,0.961,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.745,0.874,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.843,0.923,1.0,1,1.0,0.692,0.578,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,1.0,0.692,0.578,1,0.863,0.932,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.863,0.932,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.922,0.961,1.0,1,0.373,0.69,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.373,0.69,1.0,1,0.922,0.961,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.118,0.565,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.118,0.565,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.118,0.565,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,0.235,0.623,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.235,0.623,1.0,1,0.373,0.69,1.0,1,1.0,0.319,0.067,1,0.373,0.69,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.373,0.69,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,1.0,0.546,0.378,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.745,0.874,1.0,1,0.373,0.69,1.0,1,0.745,0.874,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,0.745,0.874,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.745,0.874,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.843,0.923,1.0,1,0.745,0.874,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.745,0.874,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.745,0.874,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.745,0.874,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.824,0.913,1.0,1,1.0,0.546,0.378,1,0.824,0.913,1.0,1,1.0,0.546,0.378,1,1.0,0.595,0.444,1,0.824,0.913,1.0,1,1.0,0.595,0.444,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,0.118,0.565,1.0,1,1.0,0.595,0.444,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,0.118,0.565,1.0,1,1.0,0.595,0.444,1,0.118,0.565,1.0,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,0.118,0.565,1.0,1,0.843,0.923,1.0,1,0.118,0.565,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,0.863,0.932,1.0,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,0.863,0.932,1.0,1,0.745,0.874,1.0,1,1.0,0.595,0.444,1,0.745,0.874,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,1.0,0.319,0.067,1,0.745,0.874,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.118,0.565,1.0,1,0.745,0.874,1.0,1,0.118,0.565,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.843,0.923,1.0,1,0.745,0.874,1.0,1,0.843,0.923,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,0.843,0.923,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.843,0.923,1.0,1,1.0,0.692,0.578,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,0.843,0.923,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.692,0.578,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.745,0.874,1.0,1,0.863,0.932,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.863,0.932,1.0,1,0.745,0.874,1.0,1,0.863,0.932,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.863,0.932,1.0,1,1.0,0.546,0.378,1,0.745,0.874,1.0,1,1.0,0.546,0.378,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,1.0,0.546,0.378,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,1.0,0.546,0.378,1,0.373,0.69,1.0,1,0.745,0.874,1.0,1,0.373,0.69,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.373,0.69,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.373,0.69,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.373,0.69,1.0,1,0.843,0.923,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.843,0.923,1.0,1,0.922,0.961,1.0,1,0.843,0.923,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.863,0.932,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,1.0,0.692,0.578,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.692,0.578,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.546,0.378,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.319,0.067,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.745,0.874,1.0,1,1.0,0.546,0.378,1,0.745,0.874,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.745,0.874,1.0,1,1.0,0.708,0.6,1,1.0,0.546,0.378,1,1.0,0.708,0.6,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,1.0,0.708,0.6,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.708,0.6,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.708,0.6,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.708,0.6,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.708,0.6,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.708,0.6,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.708,0.6,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.863,0.932,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.824,0.913,1.0,1,1.0,0.595,0.444,1,0.843,0.923,1.0,1,1.0,0.595,0.444,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.595,0.444,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,1.0,0.595,0.444,1,0.843,0.923,1.0,1,1.0,0.595,0.444,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.319,0.067,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.319,0.067,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.863,0.932,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.745,0.874,1.0,1,0.314,0.661,1.0,1,0.745,0.874,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.745,0.874,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.745,0.874,1.0,1,0.373,0.69,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.373,0.69,1.0,1,0.922,0.961,1.0,1,0.373,0.69,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,1.0,0.595,0.444,1,0.922,0.961,1.0,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,0.922,0.961,1.0,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,0.922,0.961,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.922,0.961,1.0,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,1.0,0.384,0.156,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,1.0,0.384,0.156,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.373,0.69,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.373,0.69,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,1.0,0.692,0.578,1,0.824,0.913,1.0,1,1.0,0.692,0.578,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,1.0,0.692,0.578,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.692,0.578,1,1.0,0.319,0.067,1,1.0,0.692,0.578,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.692,0.578,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.824,0.913,1.0,1,1.0,0.319,0.067,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,1.0,0.319,0.067,1,0.824,0.913,1.0,1,1.0,0.319,0.067,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,1.0,0.319,0.067,1,1.0,0.546,0.378,1,0.824,0.913,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.843,0.923,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.843,0.923,1.0,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,0.843,0.923,1.0,1,1.0,0.708,0.6,1,1.0,0.595,0.444,1,1.0,0.708,0.6,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.708,0.6,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.863,0.932,1.0,1,1.0,0.546,0.378,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.824,0.913,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.824,0.913,1.0,1,0.843,0.923,1.0,1,1.0,0.271,0.0,1,0.824,0.913,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.692,0.578,1,1.0,0.319,0.067,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.319,0.067,1,1.0,0.692,0.578,1,1.0,0.384,0.156,1,1.0,0.319,0.067,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,0.922,0.961,1.0,1,1.0,0.595,0.444,1,0.922,0.961,1.0,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,1.0,0.595,0.444,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.235,0.623,1.0,1,0.373,0.69,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.373,0.69,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.373,0.69,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.373,0.69,1.0,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.546,0.378,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,1.0,0.271,0.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,1.0,0.595,0.444,1,0.843,0.923,1.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.373,0.69,1.0,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.745,0.874,1.0,1,0.922,0.961,1.0,1,0.745,0.874,1.0,1,0.922,0.961,1.0,1,0.843,0.923,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.745,0.874,1.0,1,0.686,0.845,1.0,1,0.745,0.874,1.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,1.0,0.708,0.6,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.384,0.156,1,1.0,0.708,0.6,1,1.0,0.384,0.156,1,1.0,0.692,0.578,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,1.0,0.692,0.578,1,0.235,0.623,1.0,1,1.0,0.692,0.578,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.708,0.6,1,1.0,0.384,0.156,1,1.0,0.708,0.6,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.708,0.6,1,1.0,0.384,0.156,1,1.0,0.708,0.6,1,1.0,0.384,0.156,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.118,0.565,1.0,1,0.824,0.913,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,1.0,0.708,0.6,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.692,0.578,1,0.863,0.932,1.0,1,1.0,0.692,0.578,1,0.863,0.932,1.0,1,1.0,0.692,0.578,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.863,0.932,1.0,1,1.0,0.546,0.378,1,0.863,0.932,1.0,1,1.0,0.546,0.378,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,1.0,0.384,0.156,1,0.373,0.69,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.373,0.69,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.373,0.69,1.0,1,1.0,0.271,0.0,1,0.373,0.69,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.384,0.156,1,0.686,0.845,1.0,1,1.0,0.384,0.156,1,0.686,0.845,1.0,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.235,0.623,1.0,1,1.0,0.692,0.578,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.692,0.578,1,0.686,0.845,1.0,1,1.0,0.692,0.578,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.692,0.578,1,0.118,0.565,1.0,1,1.0,0.692,0.578,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,0.824,0.913,1.0,1,1.0,0.319,0.067,1,0.824,0.913,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,0.686,0.845,1.0,1,1.0,0.271,0.0,1,0.686,0.845,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.546,0.378,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.692,0.578,1,0.235,0.623,1.0,1,1.0,0.692,0.578,1,0.235,0.623,1.0,1,1.0,0.692,0.578,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.692,0.578,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.692,0.578,1,0.686,0.845,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.686,0.845,1.0,1,1.0,0.692,0.578,1,0.686,0.845,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.692,0.578,1,0.235,0.623,1.0,1,1.0,0.692,0.578,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.118,0.565,1.0,1,1.0,0.384,0.156,1,0.118,0.565,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.922,0.961,1.0,1,0.843,0.923,1.0,1,0.922,0.961,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,0.843,0.923,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,1.0,0.319,0.067,1,0.824,0.913,1.0,1,1.0,0.319,0.067,1,0.824,0.913,1.0,1,1.0,0.319,0.067,1,1.0,0.384,0.156,1,1.0,0.319,0.067,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,0.118,0.565,1.0,1,1.0,0.271,0.0,1,0.118,0.565,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.235,0.623,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.373,0.69,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.384,0.156,1,0.686,0.845,1.0,1,1.0,0.384,0.156,1,0.686,0.845,1.0,1,1.0,0.384,0.156,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.319,0.067,1,0.863,0.932,1.0,1,1.0,0.319,0.067,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.863,0.932,1.0,1,0.922,0.961,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.922,0.961,1.0,1,0.863,0.932,1.0,1,0.922,0.961,1.0,1,0.863,0.932,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.843,0.923,1.0,1,0.824,0.913,1.0,1,0.843,0.923,1.0,1,0.824,0.913,1.0,1,0.843,0.923,1.0,1,0.824,0.913,1.0,1,0.843,0.923,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,1.0,0.384,0.156,1,0.824,0.913,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.824,0.913,1.0,1,1.0,0.384,0.156,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.824,0.913,1.0,1,0.235,0.623,1.0,1,0.824,0.913,1.0,1,0.235,0.623,1.0,1,0.824,0.913,1.0,1,0.235,0.623,1.0,1,0.824,0.913,1.0,1,0.235,0.623,1.0,1,0.824,0.913,1.0,1,0.235,0.623,1.0,1,0.824,0.913,1.0,1,0.235,0.623,1.0,1,0.922,0.961,1.0,1,0.235,0.623,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.271,0.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.118,0.565,1.0,1,0.922,0.961,1.0,1,0.118,0.565,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.118,0.565,1.0,1,1.0,0.319,0.067,1,0.118,0.565,1.0,1,1.0,0.319,0.067,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.922,0.961,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.922,0.961,1.0,1,0.235,0.623,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.235,0.623,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.863,0.932,1.0,1,0.686,0.845,1.0,1,0.863,0.932,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.863,0.932,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.863,0.932,1.0,1,0.686,0.845,1.0,1,0.863,0.932,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.373,0.69,1.0,1,1.0,0.546,0.378,1,0.373,0.69,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.373,0.69,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.373,0.69,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.686,0.845,1.0,1,0.373,0.69,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.373,0.69,1.0,1,0.686,0.845,1.0,1,0.373,0.69,1.0,1,0.686,0.845,1.0,1,0.373,0.69,1.0,1,0.686,0.845,1.0,1,0.373,0.69,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.686,0.845,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.686,0.845,1.0,1,1.0,0.319,0.067,1,0.686,0.845,1.0,1,1.0,0.319,0.067,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.118,0.565,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,1.0,0.384,0.156,1,0.824,0.913,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.824,0.913,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.824,0.913,1.0,1,1.0,0.384,0.156,1,0.824,0.913,1.0,1,1.0,0.384,0.156,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.922,0.961,1.0,1,0.824,0.913,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.824,0.913,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.922,0.961,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.922,0.961,1.0,1,1.0,0.271,0.0,1,0.922,0.961,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.824,0.913,1.0,1,0.686,0.845,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,1.0,0.546,0.378,1,0.922,0.961,1.0,1,1.0,0.546,0.378,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,1.0,0.271,0.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.922,0.961,1.0,1,1.0,0.271,0.0,1,0.922,0.961,1.0,1,1.0,0.271,0.0,1,0.922,0.961,1.0,1,0.235,0.623,1.0,1,0.922,0.961,1.0,1,0.235,0.623,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.384,0.156,1,1.0,0.271,0.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.271,0.0,1,1.0,0.384,0.156,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.384,0.156,1,0.686,0.845,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,1.0,0.546,0.378,1,0.863,0.932,1.0,1,1.0,0.546,0.378,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,1.0,0.384,0.156,1,0.373,0.69,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.686,0.845,1.0,1,0.373,0.69,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.922,0.961,1.0,1,0.235,0.623,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.863,0.932,1.0,1,0.922,0.961,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,1.0,0.319,0.067,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.384,0.156,1,1.0,0.319,0.067,1,1.0,0.384,0.156,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.319,0.067,1,1.0,0.708,0.6,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,1.0,0.384,0.156,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.824,0.913,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.824,0.913,1.0,1,0.922,0.961,1.0,1,0.824,0.913,1.0,1,0.922,0.961,1.0,1,0.824,0.913,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.686,0.845,1.0,1,0.922,0.961,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.922,0.961,1.0,1,0.824,0.913,1.0,1,0.922,0.961,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.235,0.623,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.118,0.565,1.0,1,0.235,0.623,1.0,1,0.118,0.565,1.0,1,0.235,0.623,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.235,0.623,1.0,1,0.118,0.565,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.922,0.961,1.0,1,1.0,0.271,0.0,1,0.922,0.961,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.118,0.565,1.0,1,1.0,0.271,0.0,1,0.745,0.874,1.0,1,1.0,0.271,0.0,1,0.745,0.874,1.0,1,1.0,0.271,0.0,1,0.745,0.874,1.0,1,1.0,0.271,0.0,1,0.745,0.874,1.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,0.745,0.874,1.0,1,1.0,0.271,0.0,1,0.745,0.874,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.745,0.874,1.0,1,1.0,0.271,0.0,1,0.745,0.874,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.686,0.845,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.686,0.845,1.0,1,0.843,0.923,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.235,0.623,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.843,0.923,1.0,1,0.235,0.623,1.0,1,0.843,0.923,1.0,1,0.235,0.623,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.922,0.961,1.0,1,1.0,0.384,0.156,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.373,0.69,1.0,1,1.0,0.546,0.378,1,0.373,0.69,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.708,0.6,1,0.843,0.923,1.0,1,1.0,0.708,0.6,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,0.235,0.623,1.0,1,1.0,0.319,0.067,1,0.235,0.623,1.0,1,1.0,0.319,0.067,1,1.0,0.384,0.156,1,1.0,0.319,0.067,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,1.0,0.384,0.156,1,0.922,0.961,1.0,1,1.0,0.384,0.156,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,1.0,0.384,0.156,1,0.922,0.961,1.0,1,1.0,0.384,0.156,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.686,0.845,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.843,0.923,1.0,1,0.686,0.845,1.0,1,0.843,0.923,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.686,0.845,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.235,0.623,1.0,1,0.118,0.565,1.0,1,0.235,0.623,1.0,1,0.118,0.565,1.0,1,0.235,0.623,1.0,1,0.118,0.565,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.118,0.565,1.0,1,0.235,0.623,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.235,0.623,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.118,0.565,1.0,1,0.235,0.623,1.0,1,0.118,0.565,1.0,1,0.235,0.623,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.314,0.661,1.0,1,0.745,0.874,1.0,1,0.314,0.661,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.843,0.923,1.0,1,0.235,0.623,1.0,1,0.843,0.923,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.843,0.923,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.843,0.923,1.0,1,0.235,0.623,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,0.922,0.961,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.922,0.961,1.0,1,0.843,0.923,1.0,1,0.922,0.961,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.922,0.961,1.0,1,0.843,0.923,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.922,0.961,1.0,1,1.0,0.546,0.378,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.319,0.067,1,0.235,0.623,1.0,1,1.0,0.319,0.067,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.319,0.067,1,0.235,0.623,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.235,0.623,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.118,0.565,1.0,1,0.373,0.69,1.0,1,0.118,0.565,1.0,1,0.373,0.69,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.235,0.623,1.0,1,1.0,0.319,0.067,1,0.235,0.623,1.0,1,1.0,0.319,0.067,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.373,0.69,1.0,1,1.0,0.384,0.156,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.373,0.69,1.0,1,0.922,0.961,1.0,1,0.373,0.69,1.0,1,0.922,0.961,1.0,1,0.373,0.69,1.0,1,0.922,0.961,1.0,1,0.373,0.69,1.0,1,0.922,0.961,1.0,1,0.373,0.69,1.0,1,0.922,0.961,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.843,0.923,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.843,0.923,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.922,0.961,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.922,0.961,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.922,0.961,1.0,1,0.118,0.565,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.235,0.623,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.922,0.961,1.0,1,0.686,0.845,1.0,1,0.922,0.961,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.692,0.578,1,0.843,0.923,1.0,1,1.0,0.692,0.578,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,1.0,0.384,0.156,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.373,0.69,1.0,1,0.922,0.961,1.0,1,0.373,0.69,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.922,0.961,1.0,1,0.373,0.69,1.0,1,0.922,0.961,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.922,0.961,1.0,1,0.373,0.69,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.118,0.565,1.0,1,0.373,0.69,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.373,0.69,1.0,1,0.118,0.565,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.692,0.578,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.118,0.565,1.0,1,1.0,0.692,0.578,1,0.118,0.565,1.0,1,1.0,0.692,0.578,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.235,0.623,1.0,1,0.373,0.69,1.0,1,0.235,0.623,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.745,0.874,1.0,1,0.373,0.69,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.373,0.69,1.0,1,0.745,0.874,1.0,1,0.373,0.69,1.0,1,0.745,0.874,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.745,0.874,1.0,1,0.373,0.69,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.745,0.874,1.0,1,0.843,0.923,1.0,1,0.745,0.874,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.843,0.923,1.0,1,0.235,0.623,1.0,1,0.843,0.923,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.824,0.913,1.0,1,0.235,0.623,1.0,1,0.824,0.913,1.0,1,0.235,0.623,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.235,0.623,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.824,0.913,1.0,1,1.0,0.546,0.378,1,0.824,0.913,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.595,0.444,1,0.314,0.661,1.0,1,1.0,0.595,0.444,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.595,0.444,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,1.0,0.595,0.444,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.595,0.444,1,0.118,0.565,1.0,1,1.0,0.595,0.444,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.745,0.874,1.0,1,0.863,0.932,1.0,1,0.745,0.874,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.745,0.874,1.0,1,0.118,0.565,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.118,0.565,1.0,1,0.745,0.874,1.0,1,0.118,0.565,1.0,1,0.745,0.874,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.745,0.874,1.0,1,0.314,0.661,1.0,1,0.745,0.874,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.843,0.923,1.0,1,1.0,0.692,0.578,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.692,0.578,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,1.0,0.692,0.578,1,0.863,0.932,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.863,0.932,1.0,1,1.0,0.546,0.378,1,0.863,0.932,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.373,0.69,1.0,1,0.863,0.932,1.0,1,0.373,0.69,1.0,1,0.863,0.932,1.0,1,0.373,0.69,1.0,1,0.863,0.932,1.0,1,0.373,0.69,1.0,1,0.922,0.961,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.863,0.932,1.0,1,0.373,0.69,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.118,0.565,1.0,1,0.373,0.69,1.0,1,0.118,0.565,1.0,1,0.373,0.69,1.0,1,0.118,0.565,1.0,1,1.0,0.692,0.578,1,0.118,0.565,1.0,1,1.0,0.692,0.578,1,0.118,0.565,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.118,0.565,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.235,0.623,1.0,1,0.373,0.69,1.0,1,0.235,0.623,1.0,1,0.373,0.69,1.0,1,1.0,0.319,0.067,1,0.373,0.69,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.373,0.69,1.0,1,1.0,0.546,0.378,1,0.373,0.69,1.0,1,1.0,0.546,0.378,1,0.373,0.69,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.373,0.69,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.373,0.69,1.0,1,0.745,0.874,1.0,1,0.373,0.69,1.0,1,0.745,0.874,1.0,1,1.0,0.546,0.378,1,0.745,0.874,1.0,1,1.0,0.546,0.378,1,0.745,0.874,1.0,1,1.0,0.708,0.6,1,0.745,0.874,1.0,1,1.0,0.708,0.6,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.745,0.874,1.0,1,0.843,0.923,1.0,1,0.745,0.874,1.0,1,0.843,0.923,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.843,0.923,1.0,1,0.745,0.874,1.0,1,0.843,0.923,1.0,1,0.745,0.874,1.0,1,0.314,0.661,1.0,1,0.745,0.874,1.0,1,0.314,0.661,1.0,1,0.745,0.874,1.0,1,0.314,0.661,1.0,1,0.745,0.874,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.745,0.874,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,0.824,0.913,1.0,1,1.0,0.595,0.444,1,0.824,0.913,1.0,1,1.0,0.595,0.444,1,0.824,0.913,1.0,1,1.0,0.595,0.444,1,0.824,0.913,1.0,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,0.118,0.565,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,0.745,0.874,1.0,1,0.863,0.932,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,0.745,0.874,1.0,1,1.0,0.319,0.067,1,0.745,0.874,1.0,1,1.0,0.319,0.067,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.745,0.874,1.0,1,1.0,0.319,0.067,1,0.745,0.874,1.0,1,1.0,0.319,0.067,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.745,0.874,1.0,1,0.118,0.565,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.843,0.923,1.0,1,0.745,0.874,1.0,1,0.843,0.923,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.843,0.923,1.0,1,0.745,0.874,1.0,1,0.843,0.923,1.0,1,0.745,0.874,1.0,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.843,0.923,1.0,1,1.0,0.692,0.578,1,0.843,0.923,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.863,0.932,1.0,1,1.0,0.546,0.378,1,0.863,0.932,1.0,1,1.0,0.546,0.378,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,1.0,0.546,0.378,1,0.745,0.874,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.373,0.69,1.0,1,0.745,0.874,1.0,1,0.373,0.69,1.0,1,0.745,0.874,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.863,0.932,1.0,1,0.373,0.69,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.373,0.69,1.0,1,0.863,0.932,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.373,0.69,1.0,1,0.843,0.923,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.843,0.923,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.373,0.69,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,1.0,0.692,0.578,1,0.373,0.69,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.373,0.69,1.0,1,1.0,0.692,0.578,1,0.373,0.69,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.546,0.378,1,1.0,0.692,0.578,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,0.235,0.623,1.0,1,1.0,0.692,0.578,1,0.235,0.623,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.708,0.6,1,1.0,0.319,0.067,1,1.0,0.708,0.6,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.745,0.874,1.0,1,1.0,0.546,0.378,1,0.745,0.874,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.745,0.874,1.0,1,1.0,0.546,0.378,1,0.745,0.874,1.0,1,1.0,0.546,0.378,1,0.745,0.874,1.0,1,1.0,0.708,0.6,1,0.745,0.874,1.0,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.546,0.378,1,1.0,0.708,0.6,1,1.0,0.546,0.378,1,1.0,0.708,0.6,1,1.0,0.546,0.378,1,1.0,0.708,0.6,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.708,0.6,1,1.0,0.546,0.378,1,1.0,0.708,0.6,1,1.0,0.546,0.378,1,1.0,0.708,0.6,1,1.0,0.546,0.378,1,1.0,0.708,0.6,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.708,0.6,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.708,0.6,1,0.843,0.923,1.0,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.708,0.6,1,0.843,0.923,1.0,1,1.0,0.708,0.6,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.824,0.913,1.0,1,1.0,0.595,0.444,1,0.824,0.913,1.0,1,1.0,0.595,0.444,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.863,0.932,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.692,0.578,1,1.0,0.319,0.067,1,1.0,0.692,0.578,1,1.0,0.319,0.067,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.692,0.578,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.863,0.932,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.692,0.578,1,0.863,0.932,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.745,0.874,1.0,1,0.863,0.932,1.0,1,0.745,0.874,1.0,1,0.314,0.661,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.373,0.69,1.0,1,0.745,0.874,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.745,0.874,1.0,1,0.373,0.69,1.0,1,0.745,0.874,1.0,1,0.373,0.69,1.0,1,0.922,0.961,1.0,1,0.373,0.69,1.0,1,0.922,0.961,1.0,1,0.373,0.69,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,1.0,0.595,0.444,1,0.922,0.961,1.0,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,0.922,0.961,1.0,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,0.922,0.961,1.0,1,1.0,0.384,0.156,1,0.922,0.961,1.0,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.824,0.913,1.0,1,0.373,0.69,1.0,1,0.824,0.913,1.0,1,0.373,0.69,1.0,1,0.824,0.913,1.0,1,0.373,0.69,1.0,1,0.824,0.913,1.0,1,0.373,0.69,1.0,1,1.0,0.692,0.578,1,0.373,0.69,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.824,0.913,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.692,0.578,1,1.0,0.546,0.378,1,1.0,0.692,0.578,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.824,0.913,1.0,1,1.0,0.319,0.067,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.824,0.913,1.0,1,1.0,0.546,0.378,1,0.824,0.913,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.843,0.923,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.843,0.923,1.0,1,0.373,0.69,1.0,1,0.843,0.923,1.0,1,0.373,0.69,1.0,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,1.0,0.708,0.6,1,1.0,0.595,0.444,1,1.0,0.708,0.6,1,1.0,0.595,0.444,1,1.0,0.708,0.6,1,0.373,0.69,1.0,1,1.0,0.708,0.6,1,0.373,0.69,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.708,0.6,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.824,0.913,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.843,0.923,1.0,1,0.824,0.913,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.824,0.913,1.0,1,0.843,0.923,1.0,1,0.824,0.913,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,0.863,0.932,1.0,1,1.0,0.271,0.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,1.0,0.271,0.0,1,1.0,0.384,0.156,1,1.0,0.271,0.0,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.922,0.961,1.0,1,1.0,0.595,0.444,1,0.922,0.961,1.0,1,1.0,0.595,0.444,1,0.922,0.961,1.0,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,1.0,0.595,0.444,1,0.373,0.69,1.0,1,1.0,0.595,0.444,1,0.373,0.69,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.843,0.923,1.0,1,0.373,0.69,1.0,1,0.843,0.923,1.0,1,0.373,0.69,1.0,1,1.0,0.708,0.6,1,0.373,0.69,1.0,1,1.0,0.708,0.6,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.863,0.932,1.0,1,1.0,0.546,0.378,1,0.863,0.932,1.0,1,1.0,0.546,0.378,1,0.863,0.932,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.863,0.932,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,1.0,0.384,0.156,1,1.0,0.271,0.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.373,0.69,1.0,1,1.0,0.595,0.444,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.745,0.874,1.0,1,0.314,0.661,1.0,1,0.745,0.874,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.319,0.067,1,0.745,0.874,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.118,0.565,1.0,1,0.843,0.923,1.0,1,0.118,0.565,1.0,1,0.843,0.923,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.745,0.874,1.0,1,1.0,0.271,0.0,1,0.745,0.874,1.0,1,1.0,0.271,0.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.384,0.156,1,1.0,0.708,0.6,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.708,0.6,1,1.0,0.384,0.156,1,1.0,0.708,0.6,1,1.0,0.384,0.156,1,1.0,0.692,0.578,1,1.0,0.384,0.156,1,1.0,0.692,0.578,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.824,0.913,1.0,1,0.235,0.623,1.0,1,0.824,0.913,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.824,0.913,1.0,1,0.118,0.565,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,1.0,0.546,0.378,1,1.0,0.692,0.578,1,0.863,0.932,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.271,0.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,1.0,0.692,0.578,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.118,0.565,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.922,0.961,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.824,0.913,1.0,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,0.824,0.913,1.0,1,1.0,0.384,0.156,1,0.824,0.913,1.0,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,1.0,0.271,0.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.235,0.623,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.373,0.69,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,1.0,0.384,0.156,1,0.686,0.845,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.824,0.913,1.0,1,0.118,0.565,1.0,1,1.0,0.384,0.156,1,0.824,0.913,1.0,1,1.0,0.384,0.156,1,0.824,0.913,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.922,0.961,1.0,1,0.118,0.565,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.118,0.565,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.863,0.932,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,0.373,0.69,1.0,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.373,0.69,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.824,0.913,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.824,0.913,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,1.0,0.271,0.0,1,0.922,0.961,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.235,0.623,1.0,1,0.922,0.961,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.686,0.845,1.0,1,1.0,0.384,0.156,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.384,0.156,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.373,0.69,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.373,0.69,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.692,0.578,1,1.0,0.384,0.156,1,1.0,0.708,0.6,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.692,0.578,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,1.0,0.708,0.6,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,1.0,0.271,0.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.118,0.565,1.0,1,0.235,0.623,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.235,0.623,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.271,0.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.843,0.923,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,0.922,0.961,1.0,1,0.843,0.923,1.0,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,0.235,0.623,1.0,1,1.0,0.319,0.067,1,1.0,0.384,0.156,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.686,0.845,1.0,1,0.843,0.923,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,0.118,0.565,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.745,0.874,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.922,0.961,1.0,1,1.0,0.319,0.067,1,0.235,0.623,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,1.0,0.708,0.6,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.319,0.067,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.373,0.69,1.0,1,0.922,0.961,1.0,1,0.373,0.69,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.922,0.961,1.0,1,0.686,0.845,1.0,1,0.922,0.961,1.0,1,0.118,0.565,1.0,1,0.922,0.961,1.0,1,0.118,0.565,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,1.0,0.384,0.156,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.373,0.69,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.118,0.565,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.692,0.578,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.373,0.69,1.0,1,0.843,0.923,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.843,0.923,1.0,1,0.745,0.874,1.0,1,0.235,0.623,1.0,1,0.843,0.923,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.824,0.913,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.235,0.623,1.0,1,0.745,0.874,1.0,1,0.863,0.932,1.0,1,0.745,0.874,1.0,1,0.118,0.565,1.0,1,0.745,0.874,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.863,0.932,1.0,1,1.0,0.692,0.578,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.118,0.565,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.373,0.69,1.0,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,0.373,0.69,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.843,0.923,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.314,0.661,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.824,0.913,1.0,1,1.0,0.546,0.378,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,0.843,0.923,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,1.0,0.595,0.444,1,0.745,0.874,1.0,1,1.0,0.319,0.067,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,0.843,0.923,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.546,0.378,1,0.745,0.874,1.0,1,0.863,0.932,1.0,1,0.745,0.874,1.0,1,1.0,0.546,0.378,1,0.745,0.874,1.0,1,0.373,0.69,1.0,1,1.0,0.546,0.378,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.373,0.69,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.922,0.961,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.922,0.961,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.373,0.69,1.0,1,0.863,0.932,1.0,1,0.373,0.69,1.0,1,0.863,0.932,1.0,1,0.373,0.69,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.708,0.6,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.546,0.378,1,1.0,0.708,0.6,1,0.745,0.874,1.0,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,1.0,0.708,0.6,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.843,0.923,1.0,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.708,0.6,1,0.843,0.923,1.0,1,1.0,0.708,0.6,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.745,0.874,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,1.0,0.384,0.156,1,1.0,0.595,0.444,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.373,0.69,1.0,1,0.824,0.913,1.0,1,0.373,0.69,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.373,0.69,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.692,0.578,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.824,0.913,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.824,0.913,1.0,1,1.0,0.546,0.378,1,0.824,0.913,1.0,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,1.0,0.546,0.378,1,0.373,0.69,1.0,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,1.0,0.708,0.6,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.271,0.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,1.0,0.708,0.6,1,0.373,0.69,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.863,0.932,1.0,1,1.0,0.546,0.378,1,0.863,0.932,1.0,1,1.0,0.546,0.378,1,0.863,0.932,1.0,1,1.0,0.546,0.378,1,0.863,0.932,1.0,1,1.0,0.546,0.378,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,1.0,0.271,0.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.373,0.69,1.0,1,0.922,0.961,1.0,1,0.745,0.874,1.0,1,1.0,0.319,0.067,1,0.745,0.874,1.0,1,0.863,0.932,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.118,0.565,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.824,0.913,1.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.271,0.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.118,0.565,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.686,0.845,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.595,0.444,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.745,0.874,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.692,0.578,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.708,0.6,1,1.0,0.708,0.6,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.863,0.932,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.843,0.923,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.708,0.6,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.922,0.961,1.0,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,1.0,0.595,0.444,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.235,0.623,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.271,0.0,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,1.0,0.271,0.0,1,0.843,0.923,1.0,1,1.0,0.271,0.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.271,0.0,1,0.843,0.923,1.0,1,1.0,0.271,0.0,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.271,0.0,1,0.863,0.932,1.0,1,1.0,0.271,0.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.843,0.923,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.384,0.156,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.271,0.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.686,0.845,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.686,0.845,1.0,1,1.0,0.271,0.0,1,0.686,0.845,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.686,0.845,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.686,0.845,1.0,1,1.0,0.271,0.0,1,0.922,0.961,1.0,1,1.0,0.271,0.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.922,0.961,1.0,1,1.0,0.271,0.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,1.0,0.271,0.0,1,0.843,0.923,1.0,1,1.0,0.271,0.0,1,0.843,0.923,1.0,1,0.745,0.874,1.0,1,0.843,0.923,1.0,1,0.922,0.961,1.0,1,0.745,0.874,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.271,0.0,1,0.686,0.845,1.0,1,1.0,0.271,0.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.745,0.874,1.0,1,0.843,0.923,1.0,1,0.745,0.874,1.0,1,0.922,0.961,1.0,1,0.745,0.874,1.0,1,0.922,0.961,1.0,1,0.745,0.874,1.0,1,0.922,0.961,1.0,1,0.745,0.874,1.0,1,0.922,0.961,1.0,1,0.745,0.874,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.686,0.845,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.843,0.923,1.0,1,0.922,0.961,1.0,1,0.745,0.874,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,1.0,0.271,0.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.271,0.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.271,0.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.843,0.923,1.0,1,1.0,0.271,0.0,1,0.843,0.923,1.0,1,1.0,0.271,0.0,1,0.745,0.874,1.0,1,1.0,0.271,0.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,1.0,0.271,0.0,1,0.863,0.932,1.0,1,0.745,0.874,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.843,0.923,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.843,0.923,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.271,0.0,1,0.843,0.923,1.0,1,1.0,0.271,0.0,1,0.843,0.923,1.0,1,1.0,0.271,0.0,1,0.863,0.932,1.0,1,1.0,0.271,0.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.271,0.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.271,0.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.745,0.874,1.0,1,0.843,0.923,1.0,1,0.745,0.874,1.0,1,1.0,0.271,0.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,1.0,0.271,0.0,1,0.863,0.932,1.0,1,1.0,0.271,0.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.745,0.874,1.0,1,0.863,0.932,1.0,1,0.745,0.874,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.745,0.874,1.0,1,0.843,0.923,1.0,1,0.745,0.874,1.0,1,0.843,0.923,1.0,1,0.745,0.874,1.0,1,0.843,0.923,1.0,1,0.745,0.874,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.863,0.932,1.0,1,1.0,0.271,0.0,1,0.843,0.923,1.0,1,0.863,0.932,1.0,1,1.0,0.271,0.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,1.0,0.271,0.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.745,0.874,1.0,1,0.745,0.874,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.384,0.156,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.271,0.0,1,1.0,0.384,0.156,1,1.0,0.271,0.0,1,1.0,0.384,0.156,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.384,0.156,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.271,0.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.373,0.69,1.0,1,0.118,0.565,1.0,1,0.843,0.923,1.0,1,0.118,0.565,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.118,0.565,1.0,1,0.843,0.923,1.0,1,0.118,0.565,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.118,0.565,1.0,1,0.843,0.923,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.118,0.565,1.0,1,0.373,0.69,1.0,1,0.118,0.565,1.0,1,0.373,0.69,1.0,1,0.118,0.565,1.0,1,0.843,0.923,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,0.843,0.923,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.118,0.565,1.0,1,1.0,0.384,0.156,1,0.118,0.565,1.0,1,1.0,0.384,0.156,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.118,0.565,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,0.118,0.565,1.0,1,1.0,0.384,0.156,1,0.843,0.923,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,0.863,0.932,1.0,1,0.118,0.565,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.922,0.961,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.922,0.961,1.0,1,1.0,0.546,0.378,1,0.922,0.961,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.922,0.961,1.0,1,1.0,0.546,0.378,1,0.922,0.961,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.922,0.961,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.922,0.961,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.692,0.578,1,1.0,0.546,0.378,1,1.0,0.271,0.0,1,1.0,0.692,0.578,1,1.0,0.271,0.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.686,0.845,1.0,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.692,0.578,1,0.686,0.845,1.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.546,0.378,1,1.0,0.271,0.0,1,1.0,0.546,0.378,1,1.0,0.271,0.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.692,0.578,1,1.0,0.546,0.378,1,1.0,0.692,0.578,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.922,0.961,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.686,0.845,1.0,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,0.686,0.845,1.0,1,0.922,0.961,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.922,0.961,1.0,1,0.922,0.961,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.271,0.0,1,1.0,0.546,0.378,1,0.686,0.845,1.0,1,1.0,0.546,0.378,1,1.0,0.692,0.578,1,1.0,0.546,0.378,1,1.0,0.692,0.578,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.692,0.578,1,1.0,0.546,0.378,1,1.0,0.692,0.578,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.271,0.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.546,0.378,1,1.0,0.692,0.578,1,1.0,0.319,0.067,1,1.0,0.692,0.578,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.546,0.378,1,1.0,0.271,0.0,1,1.0,0.546,0.378,1,1.0,0.271,0.0,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.271,0.0,1,1.0,0.692,0.578,1,1.0,0.271,0.0,1,1.0,0.692,0.578,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.546,0.378,1,1.0,0.271,0.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,1.0,0.546,0.378,1,1.0,0.692,0.578,1,1.0,0.546,0.378,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.319,0.067,1,1.0,0.692,0.578,1,1.0,0.319,0.067,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.319,0.067,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.271,0.0,1,1.0,0.319,0.067,1,1.0,0.271,0.0,1,1.0,0.692,0.578,1,1.0,0.271,0.0,1,1.0,0.692,0.578,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.271,0.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,1.0,0.546,0.378,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,1.0,0.271,0.0,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.692,0.578,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.319,0.067,1,1.0,0.319,0.067,1,1.0,0.271,0.0,1,1.0,0.319,0.067,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.546,0.378,1,1.0,0.319,0.067,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,1.0,0.546,0.378,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.863,0.932,1.0,1,1.0,0.546,0.378,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,0.863,0.932,1.0,1,0.863,0.932,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.271,0.0,1,0.843,0.923,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.271,0.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,1.0,0.271,0.0,1,0.843,0.923,1.0,1,1.0,0.271,0.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.271,0.0,1,0.843,0.923,1.0,1,1.0,0.271,0.0,1,0.843,0.923,1.0,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,1.0,0.271,0.0,1,1.0,0.546,0.378,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.271,0.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.271,0.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.843,0.923,1.0,1,0.843,0.923,1.0,1,1.0,0.546,0.378,1,0.843,0.923,1.0,1,0.373,0.69,1.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,0.373,0.69,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.271,0.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.271,0.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.271,0.0,1,1.0,0.546,0.378,1,1.0,0.271,0.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,0.824,0.913,1.0,1,1.0,0.271,0.0,1,0.824,0.913,1.0,1,1.0,0.271,0.0,1,0.824,0.913,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.271,0.0,1,0.373,0.69,1.0,1,1.0,0.271,0.0,1,0.373,0.69,1.0,1,1.0,0.271,0.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.384,0.156,1,1.0,0.271,0.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.271,0.0,1,1.0,0.546,0.378,1,0.824,0.913,1.0,1,0.824,0.913,1.0,1,1.0,0.271,0.0,1,0.824,0.913,1.0,1,1.0,0.271,0.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.271,0.0,1,1.0,0.546,0.378,1,1.0,0.271,0.0,1,1.0,0.271,0.0,1,1.0,0.546,0.378,1,1.0,0.271,0.0,1,1.0,0.546,0.378,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,1.0,0.271,0.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,1.0,0.271,0.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.314,0.661,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.373,0.69,1.0,1,0.824,0.913,1.0,1,0.314,0.661,1.0,1,1.0,0.271,0.0,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.384,0.156,1,1.0,0.271,0.0,1,1.0,0.546,0.378,1,1.0,0.271,0.0,1,1.0,0.546,0.378,1,0.824,0.913,1.0,1,1.0,0.546,0.378,1,1.0,0.546,0.378,1,1.0,0.384,0.156,1,0.314,0.661,1.0,1,1.0,0.384,0.156,1],[2,0,1,6483,3,4,6483,4,6430,6483,6430,5,0,6428,1,1,6428,6429,6428,4,6429,6429,4,3,8,6,6437,6437,6,6436,6436,6,6433,6436,6433,7,4,6431,6430,6430,6431,13934,6430,13934,5,5,13934,6434,6431,6432,13934,13934,6432,13935,13934,13935,6434,6434,13935,6435,6432,7,13935,13935,7,6433,13935,6433,6435,6435,6433,6,11,9,6439,11,6439,6441,6441,6439,6438,6441,6438,6440,6440,6438,10,7,10,6436,6436,10,6438,6436,6438,6437,6437,6438,6439,6437,6439,8,8,6439,9,14,12,6445,6445,12,6443,6445,6443,6444,6444,6443,6442,6444,6442,13,10,13,6440,6440,13,6442,6440,6442,6441,6441,6442,6443,6441,6443,11,11,6443,12,6454,15,6447,6454,6447,6446,6454,6446,17,17,6446,16,13,16,6444,6444,16,6446,6444,6446,6445,6445,6446,6447,6445,6447,14,14,6447,15,16,6448,17,17,6448,6451,6448,6449,6451,6451,6449,6452,6449,6450,6452,6452,6450,6453,6450,0,6453,6453,0,2,6495,18,6455,6495,6455,20,20,6455,19,17,19,6454,6454,19,6455,6454,6455,15,15,6455,18,23,21,22,19,6456,20,20,6456,6459,6456,6457,6459,6459,6457,6460,6457,6458,6460,6460,6458,6461,6458,22,6461,6461,22,21,22,6462,23,23,6462,6465,6462,6463,6465,6465,6463,6466,6463,6464,6466,6466,6464,6467,6464,2,6467,6467,2,1,6509,24,25,6509,25,26,23,25,21,21,25,24,29,27,28,25,28,26,26,28,27,6525,30,6478,6525,6478,6479,6525,6479,32,6478,30,31,28,6468,29,29,6468,6473,6468,6469,6473,6473,6469,6474,6469,6470,6474,6474,6470,6475,6470,6471,6475,6475,6471,6476,6471,6472,6476,6476,6472,6477,6472,31,6477,6477,31,30,35,33,6481,35,6481,6482,6482,6481,6480,6482,6480,34,31,34,6478,6478,34,6480,6478,6480,6479,6479,6480,6481,6479,6481,32,32,6481,33,34,3,6482,6482,3,6483,6482,6483,35,35,6483,5,38,36,37,35,37,33,33,37,36,41,39,40,37,40,38,38,40,39,40,6484,41,41,6484,6485,6484,6,6485,6485,6,8,44,42,43,41,43,39,39,43,42,6549,45,46,6549,46,47,43,46,44,44,46,45,6491,48,49,6491,49,6490,6490,49,50,46,6486,47,47,6486,6488,6486,6487,6488,6488,6487,6489,6487,49,6489,6489,49,48,49,9,50,50,9,11,131,51,6493,131,6493,6492,131,6492,13936,131,13936,132,132,13936,53,53,13936,52,52,13936,6492,50,52,6490,6490,52,6492,6490,6492,6491,6491,6492,6493,6491,6493,48,48,6493,51,56,54,55,52,55,53,53,55,54,55,12,56,56,12,14,59,57,58,56,58,54,54,58,57,6497,60,61,6497,61,6496,6496,61,6494,6496,6494,62,58,61,59,59,61,60,61,18,6494,6494,18,6495,6494,6495,62,62,6495,20,65,63,6499,65,6499,6498,65,6498,6500,6500,6498,64,62,64,6496,6496,64,6498,6496,6498,6497,6497,6498,6499,6497,6499,60,60,6499,63,68,66,6501,68,6501,6502,6502,6501,67,64,67,6500,6500,67,6501,6500,6501,65,65,6501,66,71,69,6505,6505,69,6503,6505,6503,6504,6504,6503,70,67,70,6502,6502,70,6503,6502,6503,68,68,6503,69,74,72,6507,74,6507,6508,6508,6507,6506,6508,6506,73,70,73,6504,6504,73,6506,6504,6506,6505,6505,6506,6507,6505,6507,71,71,6507,72,73,24,6508,6508,24,6509,6508,6509,74,74,6509,26,6622,75,76,6622,76,77,74,6510,72,72,6510,6511,6510,76,6511,6511,76,75,6514,78,79,6514,79,80,76,6512,77,77,6512,6513,6512,79,6513,6513,79,78,79,27,80,80,27,29,83,81,6516,83,6516,82,80,6515,6514,6514,6515,13937,6514,13937,78,78,13937,6517,6515,82,13937,13937,82,6516,13937,6516,6517,6517,6516,81,86,84,6518,6518,84,85,82,85,83,83,85,84,89,87,6519,89,6519,6520,6520,6519,88,85,88,6518,6518,88,6519,6518,6519,86,86,6519,87,6529,90,6521,6529,6521,13939,6529,13939,13938,6529,13938,6528,6528,13938,6522,6528,6522,92,6522,13938,13939,6522,13939,91,91,13939,6521,88,91,6520,6520,91,6521,6520,6521,89,89,6521,90,91,6523,6522,6522,6523,13940,6522,13940,92,92,13940,6526,6523,6524,13940,13940,6524,13941,13940,13941,6526,6526,13941,6527,6524,30,13941,13941,30,6525,13941,6525,6527,6527,6525,32,95,93,13942,95,13942,6533,6533,13942,6532,6532,13942,6530,6532,6530,94,6530,13942,6531,6531,13942,93,92,94,6528,6528,94,6530,6528,6530,6529,6529,6530,6531,6529,6531,90,90,6531,93,6663,96,6535,6663,6535,6664,6664,6535,6534,6664,6534,98,98,6534,97,94,97,6532,6532,97,6534,6532,6534,6533,6533,6534,6535,6533,6535,95,95,6535,96,101,99,6538,6538,99,100,97,6536,98,98,6536,6537,6536,100,6537,6537,100,99,104,102,6542,6542,102,6540,6542,6540,103,100,6539,6538,6538,6539,13943,6538,13943,101,101,13943,6541,6539,103,13943,13943,103,6540,13943,6540,6541,6541,6540,102,6544,105,6543,6544,6543,106,6544,106,107,103,106,6542,6542,106,6543,6542,6543,104,104,6543,105,106,36,107,107,36,38,6546,108,6545,6546,6545,110,110,6545,109,107,109,6544,6544,109,6545,6544,6545,105,105,6545,108,109,42,110,110,42,44,115,111,6547,115,6547,6550,6550,6547,112,6550,112,6548,6550,6548,114,114,6548,113,110,112,6546,6546,112,6547,6546,6547,108,108,6547,111,112,45,6548,6548,45,6549,6548,6549,113,113,6549,47,13945,13944,13946,6681,116,115,6681,115,13945,6681,13945,13946,6681,13946,118,118,13946,13944,118,13944,6551,6551,13944,114,6551,114,117,114,13944,6550,6550,13944,13945,6550,13945,115,116,111,115,113,117,114,121,119,6552,121,6552,120,117,120,6551,6551,120,6552,6551,6552,118,118,6552,119,124,122,123,120,6553,121,121,6553,6555,6553,6554,6555,6555,6554,6556,6554,123,6556,6556,123,122,127,125,126,123,6557,124,124,6557,6558,6557,126,6558,6558,126,125,6561,128,129,6561,129,131,6561,131,6560,6560,131,132,6560,132,6559,6559,132,130,126,129,127,127,129,128,53,130,132,129,51,131,13949,13947,13950,13949,13950,13951,13951,13950,13952,6709,133,13952,6709,13952,13950,6709,13950,6710,6710,13950,13947,6710,13947,135,135,13947,6565,6565,13947,13949,6565,13949,13948,6565,13948,134,134,13948,6562,6562,13948,13951,6562,13951,6563,6563,13951,13952,6563,13952,6564,6564,13952,133,13951,13948,13949,130,134,6559,6559,134,6562,6559,6562,6560,6560,6562,6563,6560,6563,6561,6561,6563,6564,6561,6564,128,128,6564,133,6714,136,6568,6714,6568,140,6714,140,138,6568,136,13953,6568,13953,6567,6567,13953,139,139,13953,6566,139,6566,137,6566,13953,136,134,137,6565,6565,137,6566,6565,6566,135,135,6566,136,13955,13954,13956,13957,13955,13958,13955,13956,13958,13957,13958,13959,6725,141,13954,6725,13954,6726,6726,13954,13955,6726,13955,143,143,13955,6570,6570,13955,13957,6570,13957,6569,6569,13957,13959,6569,13959,142,142,13959,139,139,13959,6567,6567,13959,13958,6567,13958,6568,6568,13958,13956,6568,13956,140,140,13956,13954,140,13954,141,141,138,140,137,142,139,6416,144,6572,6416,6572,6571,6416,6571,6417,6417,6571,145,6417,145,146,142,145,6569,6569,145,6571,6569,6571,6570,6570,6571,6572,6570,6572,143,143,6572,144,149,147,148,145,6573,146,146,6573,6577,6573,6574,6577,6577,6574,6578,6574,6575,6578,6578,6575,6579,6575,6576,6579,6579,6576,6580,6576,148,6580,6580,148,147,152,150,151,148,151,149,149,151,150,151,57,152,152,57,59,155,153,154,152,154,150,150,154,153,158,156,157,154,6581,155,155,6581,6584,6581,6582,6584,6584,6582,6585,6582,6583,6585,6585,6583,6586,6583,157,6586,6586,157,156,13899,159,6587,13899,6587,6588,13899,6588,13898,13898,6588,161,6587,159,160,157,160,158,158,160,159,6597,162,6590,6597,6590,13960,6597,13960,6596,6596,13960,13961,6596,13961,6595,6595,13961,164,164,13961,163,163,13961,6589,6589,13961,13960,6589,13960,6590,160,163,6587,6587,163,6589,6587,6589,6588,6588,6589,6590,6588,6590,161,161,6590,162,163,6591,164,164,6591,6593,6591,6592,6593,6593,6592,6594,6592,63,6594,6594,63,65,6737,165,6600,6737,6600,13962,6737,13962,167,167,13962,6601,6601,13962,6598,6601,6598,166,6598,13962,6599,6599,13962,6600,164,166,6595,6595,166,6598,6595,6598,6596,6596,6598,6599,6596,6599,6597,6597,6599,6600,6597,6600,162,162,6600,165,6739,168,172,6739,172,170,172,168,6603,6603,168,6602,6603,6602,171,171,6602,169,166,169,6601,6601,169,6602,6601,6602,167,167,6602,168,13897,173,172,13897,172,175,175,172,6603,175,6603,6604,6604,6603,171,6604,171,174,173,170,172,169,174,171,6611,176,6605,6611,6605,13963,6611,13963,6610,6610,13963,6606,6610,6606,178,6606,13963,177,177,13963,6605,174,177,6604,6604,177,6605,6604,6605,175,175,6605,176,181,179,6608,181,6608,180,177,6607,6606,6606,6607,13964,6606,13964,178,178,13964,6609,6607,180,13964,13964,180,6608,13964,6608,6609,6609,6608,179,180,66,181,181,66,68,181,69,179,179,69,71,13896,182,13965,13896,13965,186,13896,186,184,186,13965,13966,186,13966,185,185,13966,6612,185,6612,183,6612,13966,6613,6613,13966,13965,6613,13965,182,178,183,6610,6610,183,6612,6610,6612,6611,6611,6612,6613,6611,6613,176,176,6613,182,189,187,191,191,187,186,191,186,6614,6614,186,185,6614,185,190,190,185,188,187,184,186,183,188,185,6759,192,191,6759,191,6614,6759,6614,194,194,6614,6615,6615,6614,190,6615,190,193,192,189,191,188,193,190,6761,195,13967,6761,13967,197,197,13967,6617,6617,13967,6616,6617,6616,196,6616,13967,195,193,196,6615,6615,196,6616,6615,6616,194,194,6616,195,6623,198,13968,6623,13968,13969,6623,13969,200,200,13969,6621,6621,13969,199,199,13969,6619,6619,13969,13968,6619,13968,198,196,6618,6617,6617,6618,13970,6617,13970,197,197,13970,6620,6618,199,13970,13970,199,6619,13970,6619,6620,6620,6619,198,199,75,6621,6621,75,6622,6621,6622,200,200,6622,77,6777,201,6625,6777,6625,6627,6777,6627,203,6627,6625,202,200,6624,6623,6623,6624,13971,6623,13971,198,198,13971,6626,6624,202,13971,13971,202,6625,13971,6625,6626,6626,6625,201,206,204,6628,206,6628,205,202,205,6627,6627,205,6628,6627,6628,203,203,6628,204,209,207,208,205,6629,206,206,6629,6631,6629,6630,6631,6631,6630,6632,6630,208,6632,6632,208,207,208,81,209,209,81,83,209,84,207,207,84,86,212,210,211,206,211,204,204,211,210,6641,213,214,6641,214,215,211,6633,212,212,6633,6634,6633,214,6634,6634,214,213,218,216,217,214,6635,215,215,6635,6638,6635,6636,6638,6638,6636,6639,6636,6637,6639,6639,6637,6640,6637,217,6640,6640,217,216,217,87,218,218,87,89,218,93,216,216,93,95,6787,219,6642,6787,6642,6643,6787,6643,221,6643,6642,220,215,220,6641,6641,220,6642,6641,6642,213,213,6642,219,224,222,6646,6646,222,6644,6646,6644,6645,6645,6644,223,220,223,6643,6643,223,6644,6643,6644,221,221,6644,222,227,225,6648,227,6648,6649,6649,6648,6647,6649,6647,226,223,226,6645,6645,226,6647,6645,6647,6646,6646,6647,6648,6646,6648,224,224,6648,225,230,228,6652,6652,228,6650,6652,6650,6651,6651,6650,229,226,229,6649,6649,229,6650,6649,6650,227,227,6650,228,6803,231,13972,6803,13972,6657,6803,6657,233,6657,13972,6656,6656,13972,6655,6655,13972,6653,6655,6653,232,6653,13972,6654,6654,13972,231,229,232,6651,6651,232,6653,6651,6653,6652,6652,6653,6654,6652,6654,230,230,6654,231,6665,234,6660,6665,6660,236,236,6660,6659,236,6659,6662,6662,6659,13973,6662,13973,6661,6661,13973,6658,6661,6658,235,6658,13973,6659,232,235,6655,6655,235,6658,6655,6658,6656,6656,6658,6659,6656,6659,6657,6657,6659,6660,6657,6660,233,233,6660,234,235,96,6661,6661,96,6663,6661,6663,6662,6662,6663,6664,6662,6664,236,236,6664,98,239,237,6666,239,6666,238,236,238,6665,6665,238,6666,6665,6666,234,234,6666,237,242,240,241,238,241,239,239,241,240,241,99,242,242,99,101,245,243,244,242,6667,240,240,6667,6670,6667,6668,6670,6670,6668,6671,6668,6669,6671,6671,6669,6672,6669,244,6672,6672,244,243,244,6673,245,245,6673,6674,6673,102,6674,6674,102,104,248,246,6677,6677,246,247,245,6675,243,243,6675,6676,6675,247,6676,6676,247,246,6683,249,6678,6683,6678,6679,6683,6679,251,6679,6678,250,247,250,6677,6677,250,6678,6677,6678,248,248,6678,249,250,6680,6679,6679,6680,13974,6679,13974,251,251,13974,6682,6680,116,13974,13974,116,6681,13974,6681,6682,6682,6681,118,254,252,6685,6685,252,6684,6685,6684,253,251,253,6683,6683,253,6684,6683,6684,249,249,6684,252,257,255,6686,257,6686,6687,6687,6686,256,253,256,6685,6685,256,6686,6685,6686,254,254,6686,255,6823,258,6688,6823,6688,259,6823,259,260,256,259,6687,6687,259,6688,6687,6688,257,257,6688,258,263,261,262,259,262,260,260,262,261,262,6689,263,263,6689,6690,6689,119,6690,6690,119,121,266,264,265,263,6691,261,261,6691,6695,6691,6692,6695,6695,6692,6696,6692,6693,6696,6696,6693,6697,6693,6694,6697,6697,6694,6698,6694,265,6698,6698,265,264,265,122,266,266,122,124,6843,267,6699,6843,6699,6700,6843,6700,6844,6844,6700,271,6844,271,269,6699,267,270,270,267,268,266,268,264,264,268,267,437,272,271,437,271,6700,437,6700,13976,437,13976,6862,6862,13976,13975,6862,13975,438,438,13975,274,274,13975,13977,274,13977,273,273,13977,270,270,13977,6699,6699,13977,13975,6699,13975,13976,6699,13976,6700,272,269,271,268,273,270,6711,275,13978,6711,13978,6704,6711,6704,277,6704,13978,6703,6703,13978,275,6703,275,276,273,6701,274,274,6701,6702,6701,276,6702,6702,276,275,6708,278,6706,6708,6706,6705,6708,6705,6707,6707,6705,279,6707,279,280,276,279,6703,6703,279,6705,6703,6705,6704,6704,6705,6706,6704,6706,277,277,6706,278,279,125,280,280,125,127,280,133,6707,6707,133,6709,6707,6709,6708,6708,6709,6710,6708,6710,278,278,6710,135,6716,281,13979,6716,13979,6715,6715,13979,6713,6715,6713,283,6713,13979,6712,6713,6712,282,6712,13979,281,277,282,6711,6711,282,6712,6711,6712,275,275,6712,281,282,136,6713,6713,136,6714,6713,6714,283,283,6714,138,6869,284,6718,6869,6718,6717,6869,6717,286,286,6717,285,283,285,6715,6715,285,6717,6715,6717,6716,6716,6717,6718,6716,6718,281,281,6718,284,6886,287,288,6886,288,6719,6886,6719,289,285,288,286,286,288,287,294,290,6721,294,6721,13980,294,13980,6727,6727,13980,6723,6727,6723,6724,6727,6724,293,293,6724,292,6723,13980,291,291,13980,6721,288,6720,6719,6719,6720,13981,6719,13981,289,289,13981,6722,6720,291,13981,13981,291,6721,13981,6721,6722,6722,6721,290,291,141,6723,6723,141,6725,6723,6725,6724,6724,6725,6726,6724,6726,292,292,6726,143,6899,295,294,6899,294,6727,6899,6727,6900,6900,6727,297,297,6727,293,297,293,296,295,290,294,292,296,293,300,298,299,296,6728,297,297,6728,6729,6728,299,6729,6729,299,298,303,301,302,299,302,300,300,302,301,6740,304,6732,6740,6732,306,6732,304,305,302,6730,303,303,6730,6731,6730,305,6731,6731,305,304,309,307,6733,309,6733,6734,6734,6733,308,305,308,6732,6732,308,6733,6732,6733,306,306,6733,307,6738,310,6735,6738,6735,6736,6738,6736,312,6736,6735,311,308,311,6734,6734,311,6735,6734,6735,309,309,6735,310,311,165,6736,6736,165,6737,6736,6737,312,312,6737,167,312,168,6738,6738,168,6739,6738,6739,310,310,6739,170,309,187,307,307,187,189,6910,313,13982,6910,13982,6745,6910,6745,315,6745,13982,6744,6744,13982,314,314,13982,6742,6742,13982,313,306,6741,6740,6740,6741,13983,6740,13983,304,304,13983,6743,6741,314,13983,13983,314,6742,13983,6742,6743,6743,6742,313,6929,316,6747,6929,6747,318,318,6747,6746,318,6746,317,314,317,6744,6744,317,6746,6744,6746,6745,6745,6746,6747,6745,6747,315,315,6747,316,321,319,6752,6752,319,320,317,6748,318,318,6748,6750,6748,6749,6750,6750,6749,6751,6749,320,6751,6751,320,319,6763,322,13984,6763,13984,6762,6762,13984,6755,6762,6755,324,6755,13984,6754,6754,13984,6753,6754,6753,323,6753,13984,322,320,323,6752,6752,323,6753,6752,6753,321,321,6753,322,6760,325,13985,6760,13985,327,327,13985,6758,6758,13985,6756,6758,6756,326,6756,13985,6757,6757,13985,325,323,326,6754,6754,326,6756,6754,6756,6755,6755,6756,6757,6755,6757,324,324,6757,325,326,192,6758,6758,192,6759,6758,6759,327,327,6759,194,327,195,6760,6760,195,6761,6760,6761,325,325,6761,197,330,328,6765,330,6765,6764,330,6764,329,324,329,6762,6762,329,6764,6762,6764,6763,6763,6764,6765,6763,6765,322,322,6765,328,333,331,6770,6770,331,332,329,6766,330,330,6766,6768,6766,6767,6768,6768,6767,6769,6767,332,6769,6769,332,331,6779,334,6772,6779,6772,13986,6779,13986,6778,6778,13986,6774,6778,6774,336,6774,13986,335,335,13986,6772,332,6771,6770,6770,6771,13987,6770,13987,333,333,13987,6773,6771,335,13987,13987,335,6772,13987,6772,6773,6773,6772,334,339,337,6775,339,6775,6776,6776,6775,338,335,338,6774,6774,338,6775,6774,6775,336,336,6775,337,338,201,6776,6776,201,6777,6776,6777,339,339,6777,203,339,210,337,337,210,212,6960,340,6781,6960,6781,13988,6960,13988,342,342,13988,6782,6782,13988,341,341,13988,6780,6780,13988,6781,336,341,6778,6778,341,6780,6778,6780,6779,6779,6780,6781,6779,6781,334,334,6781,340,6788,343,6784,6788,6784,6786,6788,6786,345,6786,6784,344,341,6783,6782,6782,6783,13989,6782,13989,342,342,13989,6785,6783,344,13989,13989,344,6784,13989,6784,6785,6785,6784,343,344,219,6786,6786,219,6787,6786,6787,345,345,6787,221,348,346,6790,6790,346,6789,6790,6789,347,345,347,6788,6788,347,6789,6788,6789,343,343,6789,346,6986,349,6791,6986,6791,351,351,6791,350,347,350,6790,6790,350,6791,6790,6791,348,348,6791,349,354,352,353,350,353,351,351,353,352,353,222,354,354,222,224,6995,355,356,6995,356,6794,6995,6794,6996,6996,6794,357,354,6792,352,352,6792,6793,6792,356,6793,6793,356,355,360,358,13990,360,13990,6796,6796,13990,6795,6796,6795,359,6795,13990,358,356,359,6794,6794,359,6795,6794,6795,357,357,6795,358,6800,361,6798,6800,6798,363,363,6798,362,359,6797,6796,6796,6797,13991,6796,13991,360,360,13991,6799,6797,362,13991,13991,362,6798,13991,6798,6799,6799,6798,361,366,364,365,362,365,363,363,365,364,365,225,366,366,225,227,366,228,364,364,228,230,6804,367,6801,6804,6801,6802,6804,6802,369,6802,6801,368,363,368,6800,6800,368,6801,6800,6801,361,361,6801,367,368,231,6802,6802,231,6803,6802,6803,369,369,6803,233,372,370,6806,6806,370,6805,6806,6805,371,369,371,6804,6804,371,6805,6804,6805,367,367,6805,370,6811,373,6808,6811,6808,6810,6810,6808,374,6810,374,375,371,6807,6806,6806,6807,13992,6806,13992,372,372,13992,6809,6807,374,13992,13992,374,6808,13992,6808,6809,6809,6808,373,374,237,375,375,237,239,378,376,380,380,376,13993,380,13993,379,379,13993,6813,379,6813,6812,379,6812,377,6813,13993,376,375,377,6810,6810,377,6812,6810,6812,6811,6811,6812,6813,6811,6813,373,373,6813,376,7029,381,380,7029,380,7030,7030,380,379,7030,379,383,383,379,382,381,378,380,377,382,379,386,384,385,382,6814,383,383,6814,6815,6814,385,6815,6815,385,384,385,6816,386,386,6816,6817,6816,246,6817,6817,246,248,389,387,388,386,388,384,384,388,387,392,390,391,388,6818,389,389,6818,6819,6818,391,6819,6819,391,390,391,252,392,392,252,254,7040,393,394,7040,394,395,392,394,390,390,394,393,6820,396,397,6820,397,398,394,397,395,395,397,396,397,255,398,398,255,257,6825,399,6821,6825,6821,400,6825,400,6824,6824,400,6822,6824,6822,401,398,400,6820,6820,400,6821,6820,6821,396,396,6821,399,400,258,6822,6822,258,6823,6822,6823,401,401,6823,260,7053,402,6827,7053,6827,13994,7053,13994,404,404,13994,6829,6829,13994,6828,6828,13994,6826,6828,6826,403,6826,13994,6827,401,403,6824,6824,403,6826,6824,6826,6825,6825,6826,6827,6825,6827,399,399,6827,402,7063,405,6832,7063,6832,13996,7063,13996,13995,7063,13995,407,407,13995,6835,6835,13995,6834,6834,13995,13996,6834,13996,6831,6834,6831,406,6831,13996,6832,403,6830,6828,6828,6830,13997,6828,13997,6829,6829,13997,13998,6829,13998,404,404,13998,6833,6830,406,13997,13997,406,6831,13997,6831,13998,13998,6831,6832,13998,6832,6833,6833,6832,405,7067,408,6839,7067,6839,412,7067,412,410,6839,408,6837,6839,6837,6838,6838,6837,6836,6838,6836,411,411,6836,409,406,409,6834,6834,409,6836,6834,6836,6835,6835,6836,6837,6835,6837,407,407,6837,408,415,413,412,415,412,13999,415,13999,6841,6841,13999,14000,6841,14000,6840,6840,14000,6838,6840,6838,411,6840,411,414,6838,14000,6839,6839,14000,13999,6839,13999,412,413,410,412,409,414,411,414,6842,6840,6840,6842,14001,6840,14001,6841,6841,14001,14002,6841,14002,415,415,14002,6845,6842,267,14001,14001,267,6843,14001,6843,14002,14002,6843,6844,14002,6844,6845,6845,6844,269,418,416,417,415,6846,413,413,6846,6847,6846,417,6847,6847,417,416,421,419,420,417,420,418,418,420,419,7089,422,6852,7089,6852,6853,7089,6853,424,6852,422,423,420,6848,421,421,6848,6850,6848,6849,6850,6850,6849,6851,6849,423,6851,6851,423,422,13890,425,6855,13890,6855,13891,13891,6855,6854,13891,6854,427,427,6854,426,423,426,6852,6852,426,6854,6852,6854,6853,6853,6854,6855,6853,6855,424,424,6855,425,13894,428,6856,13894,6856,6857,13894,6857,13895,13895,6857,430,6856,428,429,426,429,427,427,429,428,433,431,6859,433,6859,6860,6860,6859,6858,6860,6858,432,429,432,6856,6856,432,6858,6856,6858,6857,6857,6858,6859,6857,6859,430,430,6859,431,6864,434,14004,6864,14004,14003,6864,14003,6863,6863,14003,438,6863,438,436,438,14003,6862,6862,14003,14004,6862,14004,437,437,14004,6861,437,6861,435,6861,14004,434,432,435,6860,6860,435,6861,6860,6861,433,433,6861,434,274,436,438,435,272,437,14005,14006,14007,6873,439,6866,6873,6866,14006,6873,14006,6872,6872,14006,6871,6871,14006,14005,6871,14005,441,441,14005,6867,6867,14005,14007,6867,14007,440,440,14007,6865,6865,14007,14006,6865,14006,6866,436,440,6863,6863,440,6865,6863,6865,6864,6864,6865,6866,6864,6866,434,434,6866,439,440,6868,6867,6867,6868,14008,6867,14008,441,441,14008,6870,6868,284,14008,14008,284,6869,14008,6869,6870,6870,6869,286,444,442,6876,444,6876,6878,6878,6876,6875,6878,6875,6877,6877,6875,6874,6877,6874,443,441,443,6871,6871,443,6874,6871,6874,6872,6872,6874,6875,6872,6875,6873,6873,6875,6876,6873,6876,439,439,6876,442,14010,14009,14011,14011,14009,14012,14012,14009,14013,6409,445,14013,6409,14013,14009,6409,14009,6408,6408,14009,14010,6408,14010,447,447,14010,6881,6881,14010,14011,6881,14011,446,446,14011,6879,6879,14011,14012,6879,14012,6880,6880,14012,14013,6880,14013,445,443,446,6877,6877,446,6879,6877,6879,6878,6878,6879,6880,6878,6880,444,444,6880,445,450,448,6883,450,6883,6885,6885,6883,449,446,6882,6881,6881,6882,14014,6881,14014,447,447,14014,6884,6882,449,14014,14014,449,6883,14014,6883,6884,6884,6883,448,449,287,6885,6885,287,6886,6885,6886,450,450,6886,289,453,451,452,450,6887,448,448,6887,6890,6887,6888,6890,6890,6888,6891,6888,6889,6891,6891,6889,6892,6889,452,6892,6892,452,451,6902,454,455,6902,455,6897,6902,6897,6901,6901,6897,6898,6901,6898,456,452,6893,453,453,6893,6895,6893,6894,6895,6895,6894,6896,6894,455,6896,6896,455,454,455,295,6897,6897,295,6899,6897,6899,6898,6898,6899,6900,6898,6900,456,456,6900,297,7114,457,6904,7114,6904,6903,7114,6903,7115,7115,6903,458,7115,458,459,456,458,6901,6901,458,6903,6901,6903,6902,6902,6903,6904,6902,6904,454,454,6904,457,462,460,461,458,6905,459,459,6905,6906,6905,461,6906,6906,461,460,461,298,462,462,298,300,465,463,464,462,464,460,460,464,463,464,301,465,465,301,303,7128,466,467,7128,467,468,465,467,463,463,467,466,471,469,6909,6909,469,470,467,6907,468,468,6907,6908,6907,470,6908,6908,470,469,470,313,6909,6909,313,6910,6909,6910,471,471,6910,315,474,472,473,471,6911,469,469,6911,6912,6911,473,6912,6912,473,472,477,475,476,473,476,474,474,476,475,7150,478,14015,7150,14015,482,7150,482,7151,7151,482,480,482,14015,481,481,14015,479,479,14015,478,476,6913,477,477,6913,6914,6913,479,6914,6914,479,478,7165,483,14016,7165,14016,14017,7165,14017,485,485,14017,6916,6916,14017,14018,6916,14018,6915,6915,14018,484,484,14018,481,481,14018,14016,481,14016,482,482,14016,483,14016,14018,14017,483,480,482,479,484,481,488,486,6920,6920,486,6918,6920,6918,6919,6919,6918,6917,6919,6917,487,484,487,6915,6915,487,6917,6915,6917,6916,6916,6917,6918,6916,6918,485,485,6918,486,491,489,14019,491,14019,6924,6924,14019,14020,6924,14020,6923,6923,14020,6921,6923,6921,490,6921,14020,6922,6922,14020,14019,6922,14019,489,487,490,6919,6919,490,6921,6919,6921,6920,6920,6921,6922,6920,6922,488,488,6922,489,6931,492,6926,6931,6926,494,494,6926,6925,494,6925,6927,6927,6925,493,490,493,6923,6923,493,6925,6923,6925,6924,6924,6925,6926,6924,6926,491,491,6926,492,493,6928,6927,6927,6928,14021,6927,14021,494,494,14021,6930,6928,316,14021,14021,316,6929,14021,6929,6930,6930,6929,318,6935,495,6933,6935,6933,496,6935,496,497,494,6932,6931,6931,6932,14022,6931,14022,492,492,14022,6934,6932,496,14022,14022,496,6933,14022,6933,6934,6934,6933,495,496,319,497,497,319,321,732,498,6937,732,6937,14023,732,14023,733,733,14023,6939,733,6939,500,6939,14023,499,499,14023,6937,497,6936,6935,6935,6936,14024,6935,14024,495,495,14024,6938,6936,499,14024,14024,499,6937,14024,6937,6938,6938,6937,498,503,501,6940,503,6940,502,499,502,6939,6939,502,6940,6939,6940,500,500,6940,501,502,6941,503,503,6941,6943,6941,6942,6943,6943,6942,6944,6942,328,6944,6944,328,330,506,504,505,503,6945,501,501,6945,6947,6945,6946,6947,6947,6946,6948,6946,505,6948,6948,505,504,505,331,506,506,331,333,509,507,508,506,508,504,504,508,507,512,510,511,508,6949,509,509,6949,6953,6949,6950,6953,6953,6950,6954,6950,6951,6954,6954,6951,6955,6951,6952,6955,6955,6952,6956,6952,511,6956,6956,511,510,515,513,514,511,514,512,512,514,513,7195,516,517,7195,517,518,514,517,515,515,517,516,6964,519,520,6964,520,6957,6964,6957,6963,6963,6957,521,517,520,518,518,520,519,520,6958,6957,6957,6958,14025,6957,14025,521,521,14025,6961,6958,6959,14025,14025,6959,14026,14025,14026,6961,6961,14026,6962,6959,340,14026,14026,340,6960,14026,6960,6962,6962,6960,342,14028,14027,14029,14028,14029,14030,7209,522,6966,7209,6966,14029,7209,14029,7210,7210,14029,14027,7210,14027,524,524,14027,6968,6968,14027,14028,6968,14028,6967,6967,14028,14030,6967,14030,523,523,14030,6965,6965,14030,6966,6966,14030,14029,521,523,6963,6963,523,6965,6963,6965,6964,6964,6965,6966,6964,6966,519,519,6966,522,7217,525,6970,7217,6970,14031,7217,14031,527,527,14031,6971,6971,14031,6969,6971,6969,526,6969,14031,6970,523,526,6967,6967,526,6969,6967,6969,6968,6968,6969,6970,6968,6970,524,524,6970,525,6977,528,6973,6977,6973,530,530,6973,529,526,6972,6971,6971,6972,14032,6971,14032,527,527,14032,6974,6972,529,14032,14032,529,6973,14032,6973,6974,6974,6973,528,529,6975,530,530,6975,6976,6975,346,6976,6976,346,348,533,531,6980,6980,531,6979,6979,531,6978,6979,6978,532,530,532,6977,6977,532,6978,6977,6978,528,528,6978,531,536,534,6982,536,6982,6983,6983,6982,6981,6983,6981,535,532,535,6979,6979,535,6981,6979,6981,6980,6980,6981,6982,6980,6982,533,533,6982,534,6987,537,6984,6987,6984,6985,6987,6985,539,6985,6984,538,535,538,6983,6983,538,6984,6983,6984,536,536,6984,537,538,349,6985,6985,349,6986,6985,6986,539,539,6986,351,7232,540,14033,7232,14033,7233,7233,14033,6990,7233,6990,542,6990,14033,6989,6989,14033,6988,6989,6988,541,6988,14033,540,539,541,6987,6987,541,6988,6987,6988,537,537,6988,540,14035,14034,14036,14035,14036,14038,6998,543,14034,6998,14034,14035,6998,14035,6997,6997,14035,14038,6997,14038,545,545,14038,6994,6994,14038,14036,6994,14036,14037,6994,14037,6993,6993,14037,544,544,14037,6991,6991,14037,14036,6991,14036,14034,6991,14034,6992,6992,14034,543,541,544,6989,6989,544,6991,6989,6991,6990,6990,6991,6992,6990,6992,542,542,6992,543,544,355,6993,6993,355,6995,6993,6995,6994,6994,6995,6996,6994,6996,545,545,6996,357,7237,546,14039,7237,14039,14040,7237,14040,548,548,14040,7001,7001,14040,6999,7001,6999,547,6999,14040,7000,7000,14040,14039,7000,14039,546,545,547,6997,6997,547,6999,6997,6999,6998,6998,6999,7000,6998,7000,543,543,7000,546,13887,549,7002,13887,7002,551,551,7002,550,547,550,7001,7001,550,7002,7001,7002,548,548,7002,549,554,552,553,550,553,551,551,553,552,553,358,554,554,358,360,557,555,556,554,556,552,552,556,555,556,7003,557,557,7003,7004,7003,370,7004,7004,370,372,13886,558,559,13886,559,7005,13886,7005,560,557,559,555,555,559,558,7244,561,7007,7244,7007,562,7244,562,7245,7245,562,563,559,7006,7005,7005,7006,14041,7005,14041,560,560,14041,7008,7006,562,14041,14041,562,7007,14041,7007,7008,7008,7007,561,566,564,565,562,7009,563,563,7009,7011,7009,7010,7011,7011,7010,7012,7010,565,7012,7012,565,564,569,567,568,565,568,566,566,568,567,568,376,569,569,376,378,572,570,571,569,571,567,567,571,570,7255,573,7013,7255,7013,7014,7255,7014,575,7013,573,574,571,574,572,572,574,573,578,576,7016,578,7016,7017,7017,7016,7015,7017,7015,577,574,577,7013,7013,577,7015,7013,7015,7014,7014,7015,7016,7014,7016,575,575,7016,576,581,579,7019,581,7019,7021,7021,7019,580,577,7018,7017,7017,7018,14042,7017,14042,578,578,14042,7020,7018,580,14042,14042,580,7019,14042,7019,7020,7020,7019,579,7287,582,7022,7287,7022,7023,7287,7023,584,7023,7022,583,580,583,7021,7021,583,7022,7021,7022,581,581,7022,582,587,585,7024,587,7024,586,583,586,7023,7023,586,7024,7023,7024,584,584,7024,585,7031,588,7027,7031,7027,7028,7031,7028,590,7027,588,589,586,7025,587,587,7025,7026,7025,589,7026,7026,589,588,589,381,7027,7027,381,7029,7027,7029,7028,7028,7029,7030,7028,7030,590,590,7030,383,7034,591,7032,7034,7032,14043,7034,14043,7033,7033,14043,593,593,14043,592,592,14043,7032,590,592,7031,7031,592,7032,7031,7032,588,588,7032,591,592,387,593,593,387,389,7294,594,7036,7294,7036,7295,7295,7036,7035,7295,7035,596,596,7035,595,593,595,7033,7033,595,7035,7033,7035,7034,7034,7035,7036,7034,7036,591,591,7036,594,599,597,7037,7037,597,598,595,598,596,596,598,597,598,7038,7037,7037,7038,14044,7037,14044,599,599,14044,7041,7038,7039,14044,14044,7039,14045,14044,14045,7041,7041,14045,7042,7039,393,14045,14045,393,7040,14045,7040,7042,7042,7040,395,7301,600,601,7301,601,602,599,601,597,597,601,600,605,603,7051,7051,603,604,601,7043,602,602,7043,7047,7043,7044,7047,7047,7044,7048,7044,7045,7048,7048,7045,7049,7045,7046,7049,7049,7046,7050,7046,604,7050,7050,604,603,604,7052,7051,7051,7052,14046,7051,14046,605,605,14046,7054,7052,402,14046,14046,402,7053,14046,7053,7054,7054,7053,404,7316,606,607,7316,607,14047,7316,14047,7317,7317,14047,7056,7317,7056,7318,7318,7056,608,7056,14047,7055,7055,14047,607,605,607,603,603,607,606,611,609,613,613,609,7058,613,7058,612,612,7058,7057,612,7057,610,607,610,7055,7055,610,7057,7055,7057,7056,7056,7057,7058,7056,7058,608,608,7058,609,7346,614,613,7346,613,14049,7346,14049,7347,7347,14049,616,616,14049,7059,7059,14049,14048,7059,14048,615,615,14048,612,612,14048,14049,612,14049,613,614,611,613,610,615,612,14051,14050,14052,7350,617,14050,7350,14050,14051,7350,14051,7351,7351,14051,621,7351,621,619,621,14051,7061,7061,14051,14052,7061,14052,620,620,14052,7060,620,7060,618,7060,14052,14050,7060,14050,617,615,618,7059,7059,618,7060,7059,7060,616,616,7060,617,7064,622,621,7064,621,14054,7064,14054,624,624,14054,14053,624,14053,7062,7062,14053,620,7062,620,623,620,14053,7061,7061,14053,14054,7061,14054,621,622,619,621,618,623,620,623,405,7062,7062,405,7063,7062,7063,624,624,7063,407,627,625,7065,627,7065,7066,7066,7065,626,624,626,7064,7064,626,7065,7064,7065,622,622,7065,625,626,408,7066,7066,408,7067,7066,7067,627,627,7067,410,630,628,629,627,7068,625,625,7068,7070,7068,7069,7070,7070,7069,7071,7069,629,7071,7071,629,628,633,631,632,629,632,630,630,632,631,636,634,635,632,635,633,633,635,634,639,637,638,635,7072,636,636,7072,7073,7072,638,7073,7073,638,637,642,640,7074,7074,640,641,638,641,639,639,641,640,645,643,7075,645,7075,644,641,644,7074,7074,644,7075,7074,7075,642,642,7075,643,644,416,645,645,416,418,645,419,643,643,419,421,7375,646,7078,7375,7078,7079,7375,7079,648,7078,646,647,642,7076,640,640,7076,7077,7076,647,7077,7077,647,646,14056,14055,14057,14056,14057,14058,14058,14057,14059,7385,649,14057,7385,14057,14055,7385,14055,651,651,14055,653,653,14055,7083,7083,14055,14056,7083,14056,14058,7083,14058,7082,7082,14058,7080,7082,7080,652,652,7080,650,7080,14058,14059,7080,14059,7081,7081,14059,649,649,14059,14057,647,650,7078,7078,650,7080,7078,7080,7079,7079,7080,7081,7079,7081,648,648,7081,649,13885,654,653,13885,653,7083,13885,7083,656,656,7083,7082,656,7082,7084,7084,7082,652,7084,652,655,654,651,653,650,655,652,659,657,7086,7086,657,7085,7086,7085,658,655,658,7084,7084,658,7085,7084,7085,656,656,7085,657,658,7087,7086,7086,7087,14060,7086,14060,659,659,14060,7090,7087,7088,14060,14060,7088,14061,14060,14061,7090,7090,14061,7091,7088,422,14061,14061,422,7089,14061,7089,7091,7091,7089,424,13884,660,7092,13884,7092,7093,13884,7093,662,7092,660,661,659,661,657,657,661,660,7097,663,7095,7097,7095,14062,7097,14062,7096,7096,14062,7094,7096,7094,665,665,7094,664,7094,14062,7095,661,664,7092,7092,664,7094,7092,7094,7093,7093,7094,7095,7093,7095,662,662,7095,663,664,451,665,665,451,453,7399,666,7100,7399,7100,7099,7399,7099,668,668,7099,667,665,7098,7096,7096,7098,14063,7096,14063,7097,7097,14063,14064,7097,14064,663,663,14064,7101,7098,667,14063,14063,667,7099,14063,7099,14064,14064,7099,7100,14064,7100,7101,7101,7100,666,966,669,670,966,670,7104,966,7104,967,967,7104,7105,967,7105,671,667,7102,668,668,7102,7103,7102,670,7103,7103,670,669,13883,672,7107,13883,7107,14065,13883,14065,674,674,14065,7109,7109,14065,7108,7108,14065,7106,7108,7106,673,7106,14065,7107,670,673,7104,7104,673,7106,7104,7106,7105,7105,7106,7107,7105,7107,671,671,7107,672,677,675,7113,7113,675,7111,7113,7111,7112,7112,7111,7110,7112,7110,676,673,676,7108,7108,676,7110,7108,7110,7109,7109,7110,7111,7109,7111,674,674,7111,675,676,457,7112,7112,457,7114,7112,7114,7113,7113,7114,7115,7113,7115,677,677,7115,459,13882,678,7116,13882,7116,7117,13882,7117,680,7116,678,679,677,679,675,675,679,678,7425,681,7119,7425,7119,7118,7425,7118,683,683,7118,682,679,682,7116,7116,682,7118,7116,7118,7117,7117,7118,7119,7117,7119,680,680,7119,681,7131,684,685,7131,685,7122,7131,7122,7130,7130,7122,7123,7130,7123,686,682,7120,683,683,7120,7121,7120,685,7121,7121,685,684,689,687,7125,689,7125,7126,7126,7125,7124,7126,7124,688,685,688,7122,7122,688,7124,7122,7124,7123,7123,7124,7125,7123,7125,686,686,7125,687,688,7127,7126,7126,7127,14066,7126,14066,689,689,14066,7129,7127,466,14066,14066,466,7128,14066,7128,7129,7129,7128,468,692,690,691,689,691,687,687,691,690,691,472,692,692,472,474,692,475,690,690,475,477,14067,14068,14069,7427,693,14069,7427,14069,14068,7427,14068,695,695,14068,7136,7136,14068,7135,7135,14068,14067,7135,14067,7134,7134,14067,7132,7134,7132,694,7132,14067,14069,7132,14069,7133,7133,14069,693,686,694,7130,7130,694,7132,7130,7132,7131,7131,7132,7133,7131,7133,684,684,7133,693,7439,696,7139,7439,7139,7138,7439,7138,698,698,7138,7137,698,7137,697,694,697,7134,7134,697,7137,7134,7137,7135,7135,7137,7138,7135,7138,7136,7136,7138,7139,7136,7139,695,695,7139,696,7441,699,7140,7441,7140,7141,7441,7141,701,7140,699,700,697,700,698,698,700,699,7153,702,7145,7153,7145,14071,7153,14071,7152,7152,14071,14070,7152,14070,704,704,14070,7149,7149,14070,7148,7148,14070,14072,7148,14072,703,703,14072,7144,7144,14072,7145,7145,14072,14071,14071,14072,14070,700,7142,7140,7140,7142,14073,7140,14073,7141,7141,14073,14074,7141,14074,701,701,14074,7146,7142,7143,14073,14073,7143,14075,14073,14075,14074,14074,14075,14076,14074,14076,7146,7146,14076,7147,7143,703,14075,14075,703,7144,14075,7144,14076,14076,7144,7145,14076,7145,7147,7147,7145,702,703,478,7148,7148,478,7150,7148,7150,7149,7149,7150,7151,7149,7151,704,704,7151,480,707,705,14077,707,14077,7157,7157,14077,7156,7156,14077,7154,7156,7154,706,7154,14077,7155,7155,14077,705,704,706,7152,7152,706,7154,7152,7154,7153,7153,7154,7155,7153,7155,702,702,7155,705,7460,708,7159,7460,7159,7158,7460,7158,7461,7461,7158,709,7461,709,710,706,709,7156,7156,709,7158,7156,7158,7157,7157,7158,7159,7157,7159,707,707,7159,708,7478,711,712,7478,712,713,709,7160,710,710,7160,7162,7160,7161,7162,7162,7161,7163,7161,712,7163,7163,712,711,716,714,7164,7164,714,715,712,715,713,713,715,714,715,483,7164,7164,483,7165,7164,7165,716,716,7165,485,719,717,718,716,718,714,714,718,717,718,486,719,719,486,488,722,720,721,719,7166,717,717,7166,7168,7166,7167,7168,7168,7167,7169,7167,721,7169,7169,721,720,725,723,724,721,724,722,722,724,723,7172,726,727,7172,727,728,724,727,725,725,727,726,727,7170,728,728,7170,7171,7170,489,7171,7171,489,491,14081,14078,14080,7177,729,14078,7177,14078,14081,7177,14081,7176,7176,14081,731,731,14081,733,733,14081,14080,733,14080,732,732,14080,14078,732,14078,14079,732,14079,730,730,14079,7174,7174,14079,14078,7174,14078,729,728,7173,7172,7172,7173,14082,7172,14082,726,726,14082,7175,7173,730,14082,14082,730,7174,14082,7174,7175,7175,7174,729,500,731,733,730,498,732,6406,734,7179,6406,7179,13880,13880,7179,7178,13880,7178,13881,13881,7178,735,13881,735,6407,6407,735,736,731,735,7176,7176,735,7178,7176,7178,7177,7177,7178,7179,7177,7179,729,729,7179,734,739,737,738,735,7180,736,736,7180,7182,7180,7181,7182,7182,7181,7183,7181,738,7183,7183,738,737,742,740,741,738,741,739,739,741,740,741,507,742,742,507,509,745,743,744,742,744,740,740,744,743,748,746,747,744,7184,745,745,7184,7187,7184,7185,7187,7187,7185,7188,7185,7186,7188,7188,7186,7189,7186,747,7189,7189,747,746,747,510,748,748,510,512,751,749,750,748,750,746,746,750,749,750,513,751,751,513,515,6407,752,753,6407,753,13881,13881,753,7190,13881,7190,13880,13880,7190,7191,13880,7191,6406,6406,7191,754,751,753,749,749,753,752,7197,755,7193,7197,7193,14083,7197,14083,7196,7196,14083,757,757,14083,7194,7194,14083,7192,7194,7192,756,7192,14083,7193,753,756,7190,7190,756,7192,7190,7192,7191,7191,7192,7193,7191,7193,754,754,7193,755,756,516,7194,7194,516,7195,7194,7195,757,757,7195,518,760,758,7201,7201,758,7199,7201,7199,7200,7200,7199,7198,7200,7198,759,757,759,7196,7196,759,7198,7196,7198,7197,7197,7198,7199,7197,7199,755,755,7199,758,13879,761,7203,13879,7203,14084,13879,14084,763,763,14084,7204,7204,14084,7202,7204,7202,762,7202,14084,7203,759,762,7200,7200,762,7202,7200,7202,7201,7201,7202,7203,7201,7203,760,760,7203,761,7212,764,14086,7212,14086,14085,7212,14085,766,766,14085,7207,7207,14085,7206,7206,14085,14086,7206,14086,7205,7206,7205,765,7205,14086,764,762,765,7204,7204,765,7205,7204,7205,763,763,7205,764,765,7208,7206,7206,7208,14087,7206,14087,7207,7207,14087,14088,7207,14088,766,766,14088,7211,7208,522,14087,14087,522,7209,14087,7209,14088,14088,7209,7210,14088,7210,7211,7211,7210,524,13878,767,14089,13878,14089,771,13878,771,769,771,14089,770,770,14089,7213,770,7213,768,7213,14089,767,766,768,7212,7212,768,7213,7212,7213,764,764,7213,767,7513,772,771,7513,771,774,774,771,770,774,770,7214,7214,770,773,772,769,771,768,773,770,777,775,7215,777,7215,776,773,776,7214,7214,776,7215,7214,7215,774,774,7215,775,7218,778,779,7218,779,7216,7218,7216,780,776,779,777,777,779,778,779,525,7216,7216,525,7217,7216,7217,780,780,7217,527,7530,781,7220,7530,7220,782,7530,782,7222,7530,7222,7531,7531,7222,783,780,7219,7218,7218,7219,14090,7218,14090,778,778,14090,7221,7219,782,14090,14090,782,7220,14090,7220,7221,7221,7220,781,786,784,7225,7225,784,7224,7224,784,7223,7224,7223,785,782,785,7222,7222,785,7223,7222,7223,783,783,7223,784,789,787,7227,789,7227,7226,789,7226,7228,7228,7226,788,785,788,7224,7224,788,7226,7224,7226,7225,7225,7226,7227,7225,7227,786,786,7227,787,792,790,7229,792,7229,791,788,791,7228,7228,791,7229,7228,7229,789,789,7229,790,791,531,792,792,531,533,7553,793,794,7553,794,795,792,794,790,790,794,793,798,796,797,794,797,795,795,797,796,797,534,798,798,534,536,7234,799,14091,7234,14091,7231,7234,7231,801,7231,14091,7230,7230,14091,800,800,14091,799,798,800,796,796,800,799,800,540,7230,7230,540,7232,7230,7232,7231,7231,7232,7233,7231,7233,801,801,7233,542,7563,802,7235,7563,7235,803,7563,803,804,801,803,7234,7234,803,7235,7234,7235,799,799,7235,802,7238,805,7236,7238,7236,807,7236,805,806,803,806,804,804,806,805,806,546,7236,7236,546,7237,7236,7237,807,807,7237,548,7572,808,7239,7572,7239,810,810,7239,809,807,809,7238,7238,809,7239,7238,7239,805,805,7239,808,813,811,7240,7240,811,812,809,812,810,810,812,811,7247,814,7241,7247,7241,14092,7247,14092,7246,7246,14092,7243,7246,7243,816,7243,14092,7242,7242,14092,7241,7242,7241,815,812,815,7240,7240,815,7241,7240,7241,813,813,7241,814,815,561,7242,7242,561,7244,7242,7244,7243,7243,7244,7245,7243,7245,816,816,7245,563,819,817,7249,819,7249,7250,7250,7249,7248,7250,7248,818,816,818,7246,7246,818,7248,7246,7248,7247,7247,7248,7249,7247,7249,814,814,7249,817,7258,820,14093,7258,14093,822,822,14093,7252,7252,14093,7251,7252,7251,821,7251,14093,820,818,821,7250,7250,821,7251,7250,7251,819,819,7251,820,821,7253,7252,7252,7253,14094,7252,14094,822,822,14094,7256,7253,7254,14094,14094,7254,14095,14094,14095,7256,7256,14095,7257,7254,573,14095,14095,573,7255,14095,7255,7257,7257,7255,575,825,823,7259,825,7259,824,822,824,7258,7258,824,7259,7258,7259,820,820,7259,823,828,826,827,824,7260,825,825,7260,7262,7260,7261,7262,7262,7261,7263,7261,827,7263,7263,827,826,827,7264,828,828,7264,7269,7264,7265,7269,7269,7265,7270,7265,7266,7270,7270,7266,7271,7266,7267,7271,7271,7267,7272,7267,7268,7272,7272,7268,7273,7268,576,7273,7273,576,578,831,829,830,828,7274,826,826,7274,7279,7274,7275,7279,7279,7275,7280,7275,7276,7280,7280,7276,7281,7276,7277,7281,7281,7277,7282,7277,7278,7282,7282,7278,7283,7278,830,7283,7283,830,829,830,579,831,831,579,581,7602,832,833,7602,833,7284,7602,7284,834,831,833,829,829,833,832,7617,835,7285,7617,7285,837,837,7285,836,833,836,7284,7284,836,7285,7284,7285,834,834,7285,835,840,838,7286,7286,838,839,836,839,837,837,839,838,839,582,7286,7286,582,7287,7286,7287,840,840,7287,584,843,841,7288,7288,841,842,840,842,838,838,842,841,7632,844,7289,7632,7289,846,846,7289,845,842,845,7288,7288,845,7289,7288,7289,843,843,7289,844,849,847,848,845,848,846,846,848,847,848,7290,849,849,7290,7291,7290,585,7291,7291,585,587,852,850,7293,7293,850,7292,7292,850,851,849,851,847,847,851,850,851,594,7292,7292,594,7294,7292,7294,7293,7293,7294,7295,7293,7295,852,852,7295,596,855,853,7296,7296,853,854,852,854,850,850,854,853,1174,856,14097,1174,14097,14096,1174,14096,1175,1175,14096,860,1175,860,858,860,14096,859,859,14096,7298,7298,14096,14097,7298,14097,857,857,14097,7297,7297,14097,856,854,857,7296,7296,857,7297,7296,7297,855,855,7297,856,7302,861,860,7302,860,863,863,860,859,863,859,7299,863,7299,7300,7300,7299,862,861,858,860,857,862,7298,7298,862,7299,7298,7299,859,862,600,7300,7300,600,7301,7300,7301,863,863,7301,602,7641,864,7308,7641,7308,7642,7642,7308,868,7642,868,866,7308,864,14098,7308,14098,867,867,14098,7305,867,7305,865,7305,14098,864,863,7303,7302,7302,7303,14099,7302,14099,861,861,14099,7306,7303,7304,14099,14099,7304,14100,14099,14100,7306,7306,14100,7307,7304,865,14100,14100,865,7305,14100,7305,7307,7307,7305,864,14103,14101,14104,14105,14101,14102,13877,869,14105,13877,14105,14102,13877,14102,871,871,14102,7310,7310,14102,14101,7310,14101,14103,7310,14103,7309,7309,14103,14104,7309,14104,867,7309,867,870,867,14104,7308,7308,14104,14101,7308,14101,14105,7308,14105,868,868,14105,869,869,866,868,865,870,867,874,872,7315,7315,872,7312,7315,7312,7314,7314,7312,7311,7314,7311,7313,7313,7311,873,870,873,7309,7309,873,7311,7309,7311,7310,7310,7311,7312,7310,7312,871,871,7312,872,873,606,7313,7313,606,7316,7313,7316,7314,7314,7316,7317,7314,7317,7315,7315,7317,7318,7315,7318,874,874,7318,608,13876,875,7319,13876,7319,877,7319,875,876,874,876,872,872,876,875,7660,878,7320,7660,7320,880,880,7320,879,876,879,7319,7319,879,7320,7319,7320,877,877,7320,878,883,881,882,879,882,880,880,882,881,886,884,885,882,885,883,883,885,884,885,609,886,886,609,611,889,887,888,886,7321,884,884,7321,7328,7321,7322,7328,7328,7322,7329,7322,7323,7329,7329,7323,7330,7323,7324,7330,7330,7324,7331,7324,7325,7331,7331,7325,7332,7325,7326,7332,7332,7326,7333,7326,7327,7333,7333,7327,7334,7327,888,7334,7334,888,887,7685,890,891,7685,891,7335,7685,7335,7686,7686,7335,892,888,891,889,889,891,890,895,893,7338,7338,893,7336,7338,7336,7337,7337,7336,894,891,894,7335,7335,894,7336,7335,7336,892,892,7336,893,898,896,7343,898,7343,900,7343,896,7342,7342,896,7340,7342,7340,7341,7341,7340,7339,7341,7339,899,899,7339,897,894,897,7337,7337,897,7339,7337,7339,7338,7338,7339,7340,7338,7340,895,895,7340,896,14106,14107,14109,14109,14107,14110,14111,14106,14108,14108,14106,14109,14111,14108,14112,7349,901,14110,7349,14110,14107,7349,14107,7348,7348,14107,14106,7348,14106,903,903,14106,7345,7345,14106,14111,7345,14111,7344,7344,14111,14112,7344,14112,902,902,14112,899,899,14112,7341,7341,14112,14108,7341,14108,7342,7342,14108,14109,7342,14109,7343,7343,14109,14110,7343,14110,900,900,14110,901,901,898,900,897,902,899,902,614,7344,7344,614,7346,7344,7346,7345,7345,7346,7347,7345,7347,903,903,7347,616,903,617,7348,7348,617,7350,7348,7350,7349,7349,7350,7351,7349,7351,901,901,7351,619,906,904,7355,7355,904,7354,7354,904,905,898,7352,896,896,7352,7353,7352,905,7353,7353,905,904,7358,907,7357,7358,7357,7356,7358,7356,909,909,7356,908,905,908,7354,7354,908,7356,7354,7356,7355,7355,7356,7357,7355,7357,906,906,7357,907,908,628,909,909,628,630,7361,910,7359,7361,7359,7360,7360,7359,911,7360,911,912,909,911,7358,7358,911,7359,7358,7359,907,907,7359,910,915,913,914,911,914,912,912,914,913,914,631,915,915,631,633,915,634,913,913,634,636,918,916,14114,918,14114,7366,7366,14114,7365,7365,14114,14113,7365,14113,7364,7364,14113,7362,7364,7362,917,7362,14113,7363,7363,14113,14114,7363,14114,916,912,917,7360,7360,917,7362,7360,7362,7361,7361,7362,7363,7361,7363,910,910,7363,916,7725,919,7369,7725,7369,7368,7725,7368,14115,7725,14115,7726,7726,14115,921,921,14115,7367,921,7367,920,7367,14115,7368,917,920,7364,7364,920,7367,7364,7367,7365,7365,7367,7368,7365,7368,7366,7366,7368,7369,7366,7369,918,918,7369,919,7372,922,923,7372,923,924,920,7370,921,921,7370,7371,7370,923,7371,7371,923,922,923,637,924,924,637,639,927,925,7373,927,7373,7374,7374,7373,926,924,926,7372,7372,926,7373,7372,7373,922,922,7373,925,926,646,7374,7374,646,7375,7374,7375,927,927,7375,648,930,928,929,927,7376,925,925,7376,7377,7376,929,7377,7377,929,928,7728,931,7378,7728,7378,933,7378,931,932,929,932,930,930,932,931,7747,934,14116,7747,14116,7381,7747,7381,936,7381,14116,7380,7380,14116,7379,7380,7379,935,7379,14116,934,932,935,7378,7378,935,7379,7378,7379,933,933,7379,934,939,937,7383,939,7383,7384,7384,7383,7382,7384,7382,938,935,938,7380,7380,938,7382,7380,7382,7381,7381,7382,7383,7381,7383,936,936,7383,937,938,649,7384,7384,649,7385,7384,7385,939,939,7385,651,942,940,941,939,7386,937,937,7386,7390,7386,7387,7390,7390,7387,7391,7387,7388,7391,7391,7388,7392,7388,7389,7392,7392,7389,7393,7389,941,7393,7393,941,940,7771,943,7394,7771,7394,7395,7771,7395,945,7394,943,944,941,944,942,942,944,943,7792,946,7397,7792,7397,7396,7792,7396,948,948,7396,947,944,947,7394,7394,947,7396,7394,7396,7395,7395,7396,7397,7395,7397,945,945,7397,946,7401,949,950,7401,950,7398,7401,7398,7400,7400,7398,951,947,950,948,948,950,949,950,666,7398,7398,666,7399,7398,7399,951,951,7399,668,14117,14118,14119,14119,14118,14120,14121,14119,14122,14119,14120,14122,7795,952,14120,7795,14120,14118,7795,14118,7796,7796,14118,954,954,14118,956,956,14118,14117,956,14117,955,955,14117,14119,955,14119,14121,955,14121,953,953,14121,7402,7402,14121,14122,7402,14122,7403,7403,14122,952,952,14122,14120,951,953,7400,7400,953,7402,7400,7402,7401,7401,7402,7403,7401,7403,949,949,7403,952,7798,957,14123,7798,14123,959,959,14123,7405,7405,14123,14124,7405,14124,14125,7405,14125,7404,7404,14125,958,958,14125,955,955,14125,14124,955,14124,956,956,14124,14123,956,14123,957,957,954,956,953,958,955,13875,960,7407,13875,7407,962,962,7407,7406,962,7406,961,958,961,7404,7404,961,7406,7404,7406,7405,7405,7406,7407,7405,7407,959,959,7407,960,7409,963,966,7409,966,967,7409,967,7408,7408,967,965,966,963,964,961,964,962,962,964,963,671,965,967,964,669,966,13874,968,14126,13874,14126,970,970,14126,7412,7412,14126,7410,7412,7410,969,7410,14126,7411,7411,14126,968,965,969,7408,7408,969,7410,7408,7410,7409,7409,7410,7411,7409,7411,963,963,7411,968,7802,971,7413,7802,7413,7414,7802,7414,973,7414,7413,972,969,972,7412,7412,972,7413,7412,7413,970,970,7413,971,976,974,7417,7417,974,7415,7417,7415,7416,7416,7415,975,972,975,7414,7414,975,7415,7414,7415,973,973,7415,974,979,977,14127,979,14127,981,981,14127,7419,981,7419,980,980,7419,7418,980,7418,978,7419,14127,977,975,978,7416,7416,978,7418,7416,7418,7417,7417,7418,7419,7417,7419,976,976,7419,977,7827,982,981,7827,981,984,984,981,980,984,980,7420,7420,980,983,982,979,981,978,983,980,987,985,7421,987,7421,986,983,986,7420,7420,986,7421,7420,7421,984,984,7421,985,990,988,989,986,989,987,987,989,988,7428,991,7422,7428,7422,993,7422,991,992,989,992,990,990,992,991,7426,994,7423,7426,7423,7424,7426,7424,996,7424,7423,995,992,995,7422,7422,995,7423,7422,7423,993,993,7423,994,995,681,7424,7424,681,7425,7424,7425,996,996,7425,683,996,693,7426,7426,693,7427,7426,7427,994,994,7427,695,999,997,7430,7430,997,7429,7430,7429,998,993,998,7428,7428,998,7429,7428,7429,991,991,7429,997,7843,1000,14129,7843,14129,14128,7843,14128,7844,7844,14128,1002,1002,14128,7432,7432,14128,14130,7432,14130,1001,1001,14130,7431,7431,14130,14129,7431,14129,1000,14129,14130,14128,998,1001,7430,7430,1001,7431,7430,7431,999,999,7431,1000,1005,1003,7435,7435,1003,7433,7435,7433,7434,7434,7433,1004,1001,1004,7432,7432,1004,7433,7432,7433,1002,1002,7433,1003,1008,1006,7437,1008,7437,7438,7438,7437,7436,7438,7436,1007,1004,1007,7434,7434,1007,7436,7434,7436,7435,7435,7436,7437,7435,7437,1005,1005,7437,1006,1007,696,7438,7438,696,7439,7438,7439,1008,1008,7439,698,1011,1009,7440,7440,1009,1010,1008,1010,1006,1006,1010,1009,1010,699,7440,7440,699,7441,7440,7441,1011,1011,7441,701,1014,1012,7443,7443,1012,7442,7442,1012,1013,1011,1013,1009,1009,1013,1012,14132,14131,14133,7853,1015,7445,7853,7445,14133,7853,14133,14131,7853,14131,7854,7854,14131,1017,1017,14131,14132,1017,14132,7446,7446,14132,1016,1016,14132,7444,7444,14132,14133,7444,14133,7445,1013,1016,7442,7442,1016,7444,7442,7444,7443,7443,7444,7445,7443,7445,1014,1014,7445,1015,1020,1018,7447,1020,7447,7448,7448,7447,1019,1016,1019,7446,7446,1019,7447,7446,7447,1017,1017,7447,1018,1023,1021,7450,1023,7450,1022,1019,7449,7448,7448,7449,14134,7448,14134,1020,1020,14134,7451,7449,1022,14134,14134,1022,7450,14134,7450,7451,7451,7450,1021,1022,705,1023,1023,705,707,1026,1024,1025,1023,7452,1021,1021,7452,7453,7452,1025,7453,7453,1025,1024,7888,1027,7456,7888,7456,1029,7456,1027,1028,1025,7454,1026,1026,7454,7455,7454,1028,7455,7455,1028,1027,1032,1030,7457,1032,7457,1031,1028,1031,7456,7456,1031,7457,7456,7457,1029,1029,7457,1030,1035,1033,1034,1031,1034,1032,1032,1034,1033,7462,1036,7458,7462,7458,7459,7462,7459,1038,7458,1036,1037,1034,1037,1035,1035,1037,1036,1037,708,7458,7458,708,7460,7458,7460,7459,7459,7460,7461,7459,7461,1038,1038,7461,710,7904,1039,14135,7904,14135,1041,1041,14135,7467,7467,14135,7466,7466,14135,7464,7466,7464,1040,7464,14135,1039,1038,7463,7462,7462,7463,14136,7462,14136,1036,1036,14136,7465,7463,1040,14136,14136,1040,7464,14136,7464,7465,7465,7464,1039,1044,1042,7469,1044,7469,7468,1044,7468,7470,7470,7468,1043,1040,1043,7466,7466,1043,7468,7466,7468,7467,7467,7468,7469,7467,7469,1041,1041,7469,1042,1047,1045,7472,7472,1045,7471,7472,7471,1046,1043,1046,7470,7470,1046,7471,7470,7471,1044,1044,7471,1045,1050,1048,7474,1050,7474,7476,7476,7474,1049,1046,7473,7472,7472,7473,14137,7472,14137,1047,1047,14137,7475,7473,1049,14137,14137,1049,7474,14137,7474,7475,7475,7474,1048,1049,7477,7476,7476,7477,14138,7476,14138,1050,1050,14138,7479,7477,711,14138,14138,711,7478,14138,7478,7479,7479,7478,713,7481,1051,1052,7481,1052,7480,7480,1052,1053,1050,1052,1048,1048,1052,1051,1052,720,1053,1053,720,722,7499,1054,7483,7499,7483,7482,7499,7482,7498,7498,7482,1055,7498,1055,1056,1053,1055,7480,7480,1055,7482,7480,7482,7481,7481,7482,7483,7481,7483,1051,1051,7483,1054,1059,1057,1058,1055,7484,1056,1056,7484,7485,7484,1058,7485,7485,1058,1057,1058,7486,1059,1059,7486,7489,7486,7487,7489,7489,7487,7490,7487,7488,7490,7490,7488,7491,7488,723,7491,7491,723,725,1059,7492,1057,1057,7492,7495,7492,7493,7495,7495,7493,7496,7493,7494,7496,7496,7494,7497,7494,758,7497,7497,758,760,14139,14140,14141,7931,1060,7501,7931,7501,14140,7931,14140,7932,7932,14140,14139,7932,14139,1062,1062,14139,7502,7502,14139,14141,7502,14141,1061,1061,14141,7500,7500,14141,14140,7500,14140,7501,1056,1061,7498,7498,1061,7500,7498,7500,7499,7499,7500,7501,7499,7501,1054,1054,7501,1060,1065,1063,7505,7505,1063,7503,7505,7503,7504,7504,7503,1064,1061,1064,7502,7502,1064,7503,7502,7503,1062,1062,7503,1063,14143,14142,14144,7949,1066,14142,7949,14142,14143,7949,14143,1068,1068,14143,7509,7509,14143,14144,7509,14144,7508,7508,14144,7506,7508,7506,1067,7506,14144,7507,7507,14144,14142,7507,14142,1066,1064,1067,7504,7504,1067,7506,7504,7506,7505,7505,7506,7507,7505,7507,1065,1065,7507,1066,1071,1069,7511,1071,7511,7512,7512,7511,7510,7512,7510,1070,1067,1070,7508,7508,1070,7510,7508,7510,7509,7509,7510,7511,7509,7511,1068,1068,7511,1069,1070,772,7512,7512,772,7513,7512,7513,1071,1071,7513,774,1074,1072,1073,1071,1073,1069,1069,1073,1072,1073,775,1074,1074,775,777,7961,1075,1076,7961,1076,7520,7961,7520,7962,7962,7520,7521,7962,7521,1077,1074,7514,1072,1072,7514,7517,7514,7515,7517,7517,7515,7518,7515,7516,7518,7518,7516,7519,7516,1076,7519,7519,1076,1075,14145,14146,14147,7983,1078,14145,7983,14145,7984,7984,14145,14148,7984,14148,1080,1080,14148,7525,7525,14148,14147,7525,14147,7524,7524,14147,14146,7524,14146,1079,1079,14146,7522,7522,14146,7523,7523,14146,14145,7523,14145,1078,14147,14148,14145,1076,1079,7520,7520,1079,7522,7520,7522,7521,7521,7522,7523,7521,7523,1077,1077,7523,1078,1083,1081,7527,1083,7527,7529,7529,7527,7526,7529,7526,7528,7528,7526,1082,1079,1082,7524,7524,1082,7526,7524,7526,7525,7525,7526,7527,7525,7527,1080,1080,7527,1081,1082,781,7528,7528,781,7530,7528,7530,7529,7529,7530,7531,7529,7531,1083,1083,7531,783,1086,1084,1085,1083,1085,1081,1081,1085,1084,1085,784,1086,1086,784,786,1089,1087,1088,1086,1088,1084,1084,1088,1087,1092,1090,1091,1088,1091,1089,1089,1091,1090,1095,1093,1094,1091,7532,1092,1092,7532,7535,7532,7533,7535,7535,7533,7536,7533,7534,7536,7536,7534,7537,7534,1094,7537,7537,1094,1093,8018,1096,1097,8018,1097,7540,8018,7540,1098,1094,7538,1095,1095,7538,7539,7538,1097,7539,7539,1097,1096,7550,1099,7542,7550,7542,1100,7550,1100,1101,1097,7541,7540,7540,7541,14149,7540,14149,1098,1098,14149,7543,7541,1100,14149,14149,1100,7542,14149,7542,7543,7543,7542,1099,1100,7544,1101,1101,7544,7547,7544,7545,7547,7547,7545,7548,7545,7546,7548,7548,7546,7549,7546,787,7549,7549,787,789,7555,1102,7551,7555,7551,14150,7555,14150,7554,7554,14150,7552,7554,7552,1104,7552,14150,1103,1103,14150,7551,1101,1103,7550,7550,1103,7551,7550,7551,1099,1099,7551,1102,1103,793,7552,7552,793,7553,7552,7553,1104,1104,7553,795,14152,14151,14153,14154,14151,14152,8028,1105,14151,8028,14151,14154,8028,14154,8029,8029,14154,7559,8029,7559,1107,7559,14154,14152,7559,14152,7558,7558,14152,14153,7558,14153,1106,1106,14153,7556,7556,14153,7557,7557,14153,14151,7557,14151,1105,1104,1106,7554,7554,1106,7556,7554,7556,7555,7555,7556,7557,7555,7557,1102,1102,7557,1105,7564,1108,7561,7564,7561,14155,7564,14155,1110,1110,14155,7562,7562,14155,14156,7562,14156,1109,1109,14156,7560,7560,14156,14155,7560,14155,7561,1106,1109,7558,7558,1109,7560,7558,7560,7559,7559,7560,7561,7559,7561,1107,1107,7561,1108,1109,802,7562,7562,802,7563,7562,7563,1110,1110,7563,804,1115,1111,7567,1115,7567,1112,1115,1112,1114,1114,1112,7570,1114,7570,1113,1110,7565,7564,7564,7565,14157,7564,14157,1108,1108,14157,7568,7565,7566,14157,14157,7566,14158,14157,14158,7568,7568,14158,7569,7566,1112,14158,14158,1112,7567,14158,7567,7569,7569,7567,1111,1112,7571,7570,7570,7571,14159,7570,14159,1113,1113,14159,7573,7571,808,14159,14159,808,7572,14159,7572,7573,7573,7572,810,1118,1116,14160,1118,14160,7576,7576,14160,7575,7575,14160,1115,7575,1115,1114,7575,1114,7574,7574,1114,1117,1115,14160,1116,1116,1111,1115,1113,1117,1114,14163,14161,14164,8058,1119,7579,8058,7579,14161,8058,14161,8059,8059,14161,14162,8059,14162,1121,1121,14162,7580,7580,14162,14163,7580,14163,14164,7580,14164,1120,1120,14164,7577,7577,14164,7578,7578,14164,14161,7578,14161,7579,14163,14162,14161,1117,1120,7574,7574,1120,7577,7574,7577,7575,7575,7577,7578,7575,7578,7576,7576,7578,7579,7576,7579,1118,1118,7579,1119,7584,1122,7581,7584,7581,14165,7584,14165,1124,1124,14165,1123,1123,14165,7581,1120,1123,7580,7580,1123,7581,7580,7581,1121,1121,7581,1122,1123,7582,1124,1124,7582,7583,7582,811,7583,7583,811,813,1127,1125,7585,1127,7585,7586,7586,7585,1126,1124,1126,7584,7584,1126,7585,7584,7585,1122,1122,7585,1125,7595,1128,7587,7595,7587,7594,7594,7587,1129,7594,1129,1130,1126,1129,7586,7586,1129,7587,7586,7587,1127,1127,7587,1128,1133,1131,1132,1129,7588,1130,1130,7588,7591,7588,7589,7591,7591,7589,7592,7589,7590,7592,7592,7590,7593,7590,1132,7593,7593,1132,1131,1132,817,1133,1133,817,819,1133,823,1131,1131,823,825,1136,1134,7597,1136,7597,7598,7598,7597,7596,7598,7596,1135,1130,1135,7594,7594,1135,7596,7594,7596,7595,7595,7596,7597,7595,7597,1128,1128,7597,1134,1135,7599,7598,7598,7599,14166,7598,14166,1136,1136,14166,7603,7599,7600,14166,14166,7600,14167,14166,14167,7603,7603,14167,7604,7600,7601,14167,14167,7601,14168,14167,14168,7604,7604,14168,7605,7601,832,14168,14168,832,7602,14168,7602,7605,7605,7602,834,1139,1137,7612,7612,1137,1138,1136,7606,1134,1134,7606,7609,7606,7607,7609,7609,7607,7610,7607,7608,7610,7610,7608,7611,7608,1138,7611,7611,1138,1137,1142,1140,7613,1142,7613,1141,1138,1141,7612,7612,1141,7613,7612,7613,1139,1139,7613,1140,7618,1143,1144,7618,1144,7616,7618,7616,1145,1141,7614,1142,1142,7614,7615,7614,1144,7615,7615,1144,1143,1144,835,7616,7616,835,7617,7616,7617,1145,1145,7617,837,7620,1146,7619,7620,7619,1147,7620,1147,1148,1145,1147,7618,7618,1147,7619,7618,7619,1143,1143,7619,1146,1147,841,1148,1148,841,843,1151,1149,7623,7623,1149,7621,7623,7621,7622,7622,7621,1150,1148,1150,7620,7620,1150,7621,7620,7621,1146,1146,7621,1149,1154,1152,1156,1156,1152,14170,1156,14170,7626,7626,14170,14169,7626,14169,1155,1155,14169,7624,1155,7624,1153,7624,14169,7625,7625,14169,14170,7625,14170,1152,1150,1153,7622,7622,1153,7624,7622,7624,7623,7623,7624,7625,7623,7625,1151,1151,7625,1152,13873,1157,1156,13873,1156,7626,13873,7626,14171,13873,14171,1159,1159,14171,7627,7627,14171,1155,7627,1155,1158,1155,14171,7626,1157,1154,1156,1153,1158,1155,7633,1160,7628,7633,7628,7629,7633,7629,1162,7629,7628,1161,1158,1161,7627,7627,1161,7628,7627,7628,1159,1159,7628,1160,1165,1163,7631,7631,1163,7630,7631,7630,1164,1161,1164,7629,7629,1164,7630,7629,7630,1162,1162,7630,1163,1164,844,7631,7631,844,7632,7631,7632,1165,1165,7632,846,1165,853,1163,1163,853,855,13872,1166,1170,13872,1170,1168,1170,1166,1169,1169,1166,7634,1169,7634,1167,1162,1167,7633,7633,1167,7634,7633,7634,1160,1160,7634,1166,1173,1171,14175,1173,14175,1175,1175,14175,14172,1175,14172,14173,1175,14173,1174,1174,14173,14174,1174,14174,1172,1172,14174,1169,1169,14174,14173,1169,14173,14172,1169,14172,1170,1170,14172,1171,1171,14172,14175,1171,1168,1170,1167,1172,1169,858,1173,1175,1172,856,1174,1178,1176,7637,7637,1176,1177,1173,7635,1171,1171,7635,7636,7635,1177,7636,7636,1177,1176,7643,1179,14176,7643,14176,7640,7643,7640,1181,7640,14176,7639,7639,14176,7638,7639,7638,1180,7638,14176,1179,1177,1180,7637,7637,1180,7638,7637,7638,1178,1178,7638,1179,1180,864,7639,7639,864,7641,7639,7641,7640,7640,7641,7642,7640,7642,1181,1181,7642,866,1184,1182,7647,7647,1182,7645,7647,7645,1183,1181,7644,7643,7643,7644,14177,7643,14177,1179,1179,14177,7646,7644,1183,14177,14177,1183,7645,14177,7645,7646,7646,7645,1182,14179,14178,14180,8120,1185,14178,8120,14178,14179,8120,14179,7650,8120,7650,1187,7650,14179,7649,7649,14179,14180,7649,14180,7648,7649,7648,1186,7648,14180,1185,1185,14180,14178,1183,1186,7647,7647,1186,7648,7647,7648,1184,1184,7648,1185,8129,1188,7652,8129,7652,8130,8130,7652,7651,8130,7651,1190,1190,7651,1189,1186,1189,7649,7649,1189,7651,7649,7651,7650,7650,7651,7652,7650,7652,1187,1187,7652,1188,7661,1191,7659,7661,7659,1193,7659,1191,1192,1189,7653,1190,1190,7653,7656,7653,7654,7656,7656,7654,7657,7654,7655,7657,7657,7655,7658,7655,1192,7658,7658,1192,1191,1192,878,7659,7659,878,7660,7659,7660,1193,1193,7660,880,7664,1194,7662,7664,7662,7663,7663,7662,1195,7663,1195,1196,1193,1195,7661,7661,1195,7662,7661,7662,1191,1191,7662,1194,1195,881,1196,1196,881,883,7675,1197,7666,7675,7666,7665,7675,7665,1199,1199,7665,1198,1196,1198,7663,7663,1198,7665,7663,7665,7664,7664,7665,7666,7664,7666,1194,1194,7666,1197,1198,7667,1199,1199,7667,7671,7667,7668,7671,7671,7668,7672,7668,7669,7672,7672,7669,7673,7669,7670,7673,7673,7670,7674,7670,887,7674,7674,887,889,1202,1200,7677,7677,1200,7676,7677,7676,1201,1199,1201,7675,7675,1201,7676,7675,7676,1197,1197,7676,1200,8144,1203,7680,8144,7680,1204,8144,1204,1205,1201,7678,7677,7677,7678,14181,7677,14181,1202,1202,14181,7681,7678,7679,14181,14181,7679,14182,14181,14182,7681,7681,14182,7682,7679,1204,14182,14182,1204,7680,14182,7680,7682,7682,7680,1203,1208,1206,1207,1204,1207,1205,1205,1207,1206,7687,1209,7683,7687,7683,7684,7687,7684,1211,7683,1209,1210,1207,1210,1208,1208,1210,1209,1210,890,7683,7683,890,7685,7683,7685,7684,7684,7685,7686,7684,7686,1211,1211,7686,892,8149,1212,7688,8149,7688,14183,8149,14183,1214,1214,14183,7689,7689,14183,7688,7689,7688,1213,1211,1213,7687,7687,1213,7688,7687,7688,1209,1209,7688,1212,1217,1215,7690,1217,7690,1216,1213,1216,7689,7689,1216,7690,7689,7690,1214,1214,7690,1215,1220,1218,1219,1216,1219,1217,1217,1219,1218,1223,1221,7691,7691,1221,1222,1219,1222,1220,1220,1222,1221,1226,1224,7693,1226,7693,1225,1222,7692,7691,7691,7692,14184,7691,14184,1223,1223,14184,7694,7692,1225,14184,14184,1225,7693,14184,7693,7694,7694,7693,1224,1225,893,1226,1226,893,895,1229,1227,1228,1226,1228,1224,1224,1228,1227,1228,7695,1229,1229,7695,7696,7695,904,7696,7696,904,906,1232,1230,1231,1229,1231,1227,1227,1231,1230,1235,1233,1234,1231,1234,1232,1232,1234,1233,1238,1236,1237,1234,7697,1235,1235,7697,7699,7697,7698,7699,7699,7698,7700,7698,1237,7700,7700,1237,1236,1237,916,1238,1238,916,918,1241,1239,1240,1238,7701,1236,1236,7701,7708,7701,7702,7708,7708,7702,7709,7702,7703,7709,7709,7703,7710,7703,7704,7710,7710,7704,7711,7704,7705,7711,7711,7705,7712,7705,7706,7712,7712,7706,7713,7706,7707,7713,7713,7707,7714,7707,1240,7714,7714,1240,1239,8194,1242,1243,8194,1243,7715,8194,7715,8195,8195,7715,1244,1240,1243,1241,1241,1243,1242,1247,1245,7718,7718,1245,7716,7718,7716,7717,7717,7716,1246,1243,1246,7715,7715,1246,7716,7715,7716,1244,1244,7716,1245,1250,1248,7720,1250,7720,7721,7721,7720,7719,7721,7719,1249,1246,1249,7717,7717,1249,7719,7717,7719,7718,7718,7719,7720,7718,7720,1247,1247,7720,1248,1253,1251,7724,7724,1251,7722,7724,7722,7723,7723,7722,1252,1249,1252,7721,7721,1252,7722,7721,7722,1250,1250,7722,1251,1252,919,7723,7723,919,7725,7723,7725,7724,7724,7725,7726,7724,7726,1253,1253,7726,921,1256,1254,1255,1253,1255,1251,1251,1255,1254,1259,1257,1258,1255,1258,1256,1256,1258,1257,1262,1260,1261,1258,1261,1259,1259,1261,1260,1261,928,1262,1262,928,930,1265,1263,1264,1262,1264,1260,1260,1264,1263,7730,1266,1267,7730,1267,7727,7730,7727,7729,7729,7727,1268,1264,1267,1265,1265,1267,1266,1267,931,7727,7727,931,7728,7727,7728,1268,1268,7728,933,1271,1269,7732,1271,7732,7731,1271,7731,1270,1268,1270,7729,7729,1270,7731,7729,7731,7730,7730,7731,7732,7730,7732,1266,1266,7732,1269,8232,1272,14186,8232,14186,14185,8232,14185,8233,8233,14185,7734,8233,7734,1274,7734,14185,7733,7733,14185,14186,7733,14186,1273,1273,14186,1272,1270,1273,1271,1271,1273,1272,8255,1275,7737,8255,7737,14188,8255,14188,8256,8256,14188,14187,8256,14187,1277,1277,14187,7740,7740,14187,7739,7739,14187,14188,7739,14188,7736,7739,7736,1276,7736,14188,7737,1273,7735,7733,7733,7735,14189,7733,14189,7734,7734,14189,14190,7734,14190,1274,1274,14190,7738,7735,1276,14189,14189,1276,7736,14189,7736,14190,14190,7736,7737,14190,7737,7738,7738,7737,1275,7761,1278,7742,7761,7742,7741,7761,7741,7743,7761,7743,1280,7743,7741,1279,1276,1279,7739,7739,1279,7741,7739,7741,7740,7740,7741,7742,7740,7742,1277,1277,7742,1278,1283,1281,7744,1283,7744,7745,7745,7744,1282,1279,1282,7743,7743,1282,7744,7743,7744,1280,1280,7744,1281,1282,7746,7745,7745,7746,14191,7745,14191,1283,1283,14191,7748,7746,934,14191,14191,934,7747,14191,7747,7748,7748,7747,936,1283,7749,1281,1281,7749,7755,7749,7750,7755,7755,7750,7756,7750,7751,7756,7756,7751,7757,7751,7752,7757,7757,7752,7758,7752,7753,7758,7758,7753,7759,7753,7754,7759,7759,7754,7760,7754,940,7760,7760,940,942,1286,1284,7764,1286,7764,1285,1280,7762,7761,7761,7762,14192,7761,14192,1278,1278,14192,7765,7762,7763,14192,14192,7763,14193,14192,14193,7765,7765,14193,7766,7763,1285,14193,14193,1285,7764,14193,7764,7766,7766,7764,1284,1289,1287,7769,7769,1287,1288,1285,7767,1286,1286,7767,7768,7767,1288,7768,7768,1288,1287,1288,7770,7769,7769,7770,14194,7769,14194,1289,1289,14194,7772,7770,943,14194,14194,943,7771,14194,7771,7772,7772,7771,945,1292,1290,1291,1289,1291,1287,1287,1291,1290,8280,1293,7773,8280,7773,1295,7773,1293,1294,1291,1294,1292,1292,1294,1293,8282,1296,14195,8282,14195,1298,1298,14195,7775,7775,14195,7774,7775,7774,1297,7774,14195,1296,1294,1297,7773,7773,1297,7774,7773,7774,1295,1295,7774,1296,1301,1299,14196,1301,14196,7780,7780,14196,7779,7779,14196,7777,7779,7777,1300,7777,14196,1299,1297,7776,7775,7775,7776,14197,7775,14197,1298,1298,14197,7778,7776,1300,14197,14197,1300,7777,14197,7777,7778,7778,7777,1299,1304,1302,7782,1304,7782,7784,7784,7782,7781,7784,7781,7783,7783,7781,1303,1300,1303,7779,7779,1303,7781,7779,7781,7780,7780,7781,7782,7780,7782,1301,1301,7782,1302,7804,1305,7786,7804,7786,7785,7804,7785,1307,1307,7785,7787,7787,7785,1306,1303,1306,7783,7783,1306,7785,7783,7785,7784,7784,7785,7786,7784,7786,1304,1304,7786,1305,1310,1308,7789,7789,1308,7788,7789,7788,1309,1306,1309,7787,7787,1309,7788,7787,7788,1307,1307,7788,1308,7794,1311,7790,7794,7790,14198,7794,14198,7793,7793,14198,14199,7793,14199,1313,1313,14199,7791,7791,14199,14198,7791,14198,1312,1312,14198,7790,1309,1312,7789,7789,1312,7790,7789,7790,1310,1310,7790,1311,1312,946,7791,7791,946,7792,7791,7792,1313,1313,7792,948,1313,952,7793,7793,952,7795,7793,7795,7794,7794,7795,7796,7794,7796,1311,1311,7796,954,7799,1314,1315,7799,1315,7797,7799,7797,1316,1310,1315,1308,1308,1315,1314,1315,957,7797,7797,957,7798,7797,7798,1316,1316,7798,959,7803,1317,14200,7803,14200,1319,1319,14200,7801,7801,14200,7800,7801,7800,1318,7800,14200,1317,1316,1318,7799,7799,1318,7800,7799,7800,1314,1314,7800,1317,1318,971,7801,7801,971,7802,7801,7802,1319,1319,7802,973,1319,1305,7803,7803,1305,7804,7803,7804,1317,1317,7804,1307,1304,974,1302,1302,974,976,8297,1320,1321,8297,1321,7805,8297,7805,8298,8298,7805,1322,1301,1321,1299,1299,1321,1320,1325,1323,7806,1325,7806,1324,1321,1324,7805,7805,1324,7806,7805,7806,1322,1322,7806,1323,1324,7807,1325,1325,7807,7808,7807,977,7808,7808,977,979,1328,1326,1327,1325,7809,1323,1323,7809,7810,7809,1327,7810,7810,1327,1326,1331,1329,1330,1327,7811,1328,1328,7811,7817,7811,7812,7817,7817,7812,7818,7812,7813,7818,7818,7813,7819,7813,7814,7819,7819,7814,7820,7814,7815,7820,7820,7815,7821,7815,7816,7821,7821,7816,7822,7816,1330,7822,7822,1330,1329,1334,1332,7825,7825,1332,1333,1330,7823,1331,1331,7823,7824,7823,1333,7824,7824,1333,1332,1333,7826,7825,7825,7826,14201,7825,14201,1334,1334,14201,7828,7826,982,14201,14201,982,7827,14201,7827,7828,7828,7827,984,8329,1335,1336,8329,1336,1337,1334,7829,1332,1332,7829,7830,7829,1336,7830,7830,1336,1335,1340,1338,14202,1340,14202,7831,7831,14202,1339,1339,14202,1338,1336,1339,1337,1337,1339,1338,8342,1341,7832,8342,7832,7833,8342,7833,1343,7833,7832,1342,1339,1342,7831,7831,1342,7832,7831,7832,1340,1340,7832,1341,1346,1344,7834,1346,7834,1345,1342,1345,7833,7833,1345,7834,7833,7834,1343,1343,7834,1344,1345,7835,1346,1346,7835,7837,7835,7836,7837,7837,7836,7838,7836,985,7838,7838,985,987,1349,1347,1348,1346,7839,1344,1344,7839,7840,7839,1348,7840,7840,1348,1347,1352,1350,1351,1348,1351,1349,1349,1351,1350,1355,1353,1354,1351,1354,1352,1352,1354,1353,1354,988,1355,1355,988,990,1355,997,1353,1353,997,999,7845,1356,7841,7845,7841,7842,7845,7842,1358,7841,1356,1357,1352,1357,1350,1350,1357,1356,1357,1000,7841,7841,1000,7843,7841,7843,7842,7842,7843,7844,7842,7844,1358,1358,7844,1002,8365,1359,7847,8365,7847,14204,8365,14204,8366,8366,14204,14203,8366,14203,1361,1361,14203,7849,7849,14203,14204,7849,14204,1360,1360,14204,7847,1358,7846,7845,7845,7846,14205,7845,14205,1356,1356,14205,7848,7846,1360,14205,14205,1360,7847,14205,7847,7848,7848,7847,1359,7856,1362,7850,7856,7850,14206,7856,14206,7855,7855,14206,7852,7855,7852,1364,7852,14206,7851,7851,14206,7850,7851,7850,1363,1360,1363,7849,7849,1363,7850,7849,7850,1361,1361,7850,1362,1363,1015,7851,7851,1015,7853,7851,7853,7852,7852,7853,7854,7852,7854,1364,1364,7854,1017,8370,1365,14208,8370,14208,14207,8370,14207,7860,8370,7860,1367,7860,14207,7859,7859,14207,14209,7859,14209,1366,1366,14209,7857,7857,14209,7858,7858,14209,14207,7858,14207,14208,7858,14208,1365,1364,1366,7855,7855,1366,7857,7855,7857,7856,7856,7857,7858,7856,7858,1362,1362,7858,1365,1370,1368,7862,1370,7862,14210,1370,14210,7864,7864,14210,7863,7863,14210,7861,7863,7861,1369,7861,14210,7862,1366,1369,7859,7859,1369,7861,7859,7861,7860,7860,7861,7862,7860,7862,1367,1367,7862,1368,7879,1371,7866,7879,7866,7865,7879,7865,1373,1373,7865,1372,1369,1372,7863,7863,1372,7865,7863,7865,7864,7864,7865,7866,7864,7866,1370,1370,7866,1371,1376,1374,1375,1372,1375,1373,1373,1375,1374,1375,7867,1376,1376,7867,7869,7867,7868,7869,7869,7868,7870,7868,1018,7870,7870,1018,1020,1376,7871,1374,1374,7871,7875,7871,7872,7875,7875,7872,7876,7872,7873,7876,7876,7873,7877,7873,7874,7877,7877,7874,7878,7874,1024,7878,7878,1024,1026,1379,1377,7881,1379,7881,1378,1373,7880,7879,7879,7880,14211,7879,14211,1371,1371,14211,7882,7880,1378,14211,14211,1378,7881,14211,7881,7882,7882,7881,1377,7889,1380,7887,7889,7887,1382,7887,1380,1381,1378,7883,1379,1379,7883,7885,7883,7884,7885,7885,7884,7886,7884,1381,7886,7886,1381,1380,1381,1027,7887,7887,1027,7888,7887,7888,1382,1382,7888,1029,1385,1383,7893,7893,1383,7891,7893,7891,1384,1382,7890,7889,7889,7890,14212,7889,14212,1380,1380,14212,7892,7890,1384,14212,14212,1384,7891,14212,7891,7892,7892,7891,1383,8411,1386,7894,8411,7894,14213,8411,14213,1388,1388,14213,1387,1387,14213,7894,1384,1387,7893,7893,1387,7894,7893,7894,1385,1385,7894,1386,1391,1389,1390,1387,1390,1388,1388,1390,1389,7901,1392,7899,7901,7899,1394,7899,1392,1393,1390,7895,1391,1391,7895,7897,7895,7896,7897,7897,7896,7898,7896,1393,7898,7898,1393,1392,1397,1395,7900,1397,7900,1396,1393,1396,7899,7899,1396,7900,7899,7900,1394,1394,7900,1395,1396,1030,1397,1397,1030,1032,1397,1033,1395,1395,1033,1035,7905,1398,7902,7905,7902,7903,7905,7903,1400,7903,7902,1399,1394,1399,7901,7901,1399,7902,7901,7902,1392,1392,7902,1398,1399,1039,7903,7903,1039,7904,7903,7904,1400,1400,7904,1041,1403,1401,7910,7910,1401,7907,7910,7907,7909,7909,7907,1402,1400,7906,7905,7905,7906,14214,7905,14214,1398,1398,14214,7908,7906,1402,14214,14214,1402,7907,14214,7907,7908,7908,7907,1401,8424,1404,14215,8424,14215,1408,8424,1408,1406,1408,14215,1407,1407,14215,14216,1407,14216,7911,1407,7911,1405,7911,14216,7912,7912,14216,14215,7912,14215,1404,1402,1405,7909,7909,1405,7911,7909,7911,7910,7910,7911,7912,7910,7912,1403,1403,7912,1404,8450,1409,1408,8450,1408,14217,8450,14217,8451,8451,14217,14218,8451,14218,1411,1411,14218,1410,1410,14218,1407,1407,14218,14217,1407,14217,1408,1409,1406,1408,1405,1410,1407,1414,1412,1413,1410,7913,1411,1411,7913,7915,7913,7914,7915,7915,7914,7916,7914,1413,7916,7916,1413,1412,7921,1415,1416,7921,1416,1417,1413,1416,1414,1414,1416,1415,1420,1418,1419,1416,7917,1417,1417,7917,7919,7917,7918,7919,7919,7918,7920,7918,1419,7920,7920,1419,1418,1419,1042,1420,1420,1042,1044,1420,1045,1418,1418,1045,1047,1423,1421,7923,7923,1421,7922,7923,7922,1422,1417,1422,7921,7921,1422,7922,7921,7922,1415,1415,7922,1421,1426,1424,7926,7926,1424,7924,7926,7924,7925,7925,7924,1425,1422,1425,7923,7923,1425,7924,7923,7924,1423,1423,7924,1424,1429,1427,7930,7930,1427,7928,7930,7928,7929,7929,7928,7927,7929,7927,1428,1425,1428,7925,7925,1428,7927,7925,7927,7926,7926,7927,7928,7926,7928,1426,1426,7928,1427,1428,1060,7929,7929,1060,7931,7929,7931,7930,7930,7931,7932,7930,7932,1429,1429,7932,1062,7933,1430,1431,7933,1431,1432,1429,1431,1427,1427,1431,1430,1431,1063,1432,1432,1063,1065,1435,1433,7937,7937,1433,7935,7937,7935,1434,1432,7934,7933,7933,7934,14219,7933,14219,1430,1430,14219,7936,7934,1434,14219,14219,1434,7935,14219,7935,7936,7936,7935,1433,1438,1436,14220,1438,14220,7939,7939,14220,7938,7939,7938,1437,7938,14220,1436,1434,1437,7937,7937,1437,7938,7937,7938,1435,1435,7938,1436,8475,1439,7940,8475,7940,1441,1441,7940,1440,1437,1440,7939,7939,1440,7940,7939,7940,1438,1438,7940,1439,7951,1442,7947,7951,7947,1444,7947,1442,1443,1440,7941,1441,1441,7941,7944,7941,7942,7944,7944,7942,7945,7942,7943,7945,7945,7943,7946,7943,1443,7946,7946,1443,1442,1443,7948,7947,7947,7948,14221,7947,14221,1444,1444,14221,7950,7948,1066,14221,14221,1066,7949,14221,7949,7950,7950,7949,1068,1447,1445,7955,7955,1445,7953,7955,7953,1446,1444,7952,7951,7951,7952,14222,7951,14222,1442,1442,14222,7954,7952,1446,14222,14222,1446,7953,14222,7953,7954,7954,7953,1445,13854,1448,7956,13854,7956,14223,13854,14223,13855,13855,14223,7957,13855,7957,1450,7957,14223,1449,1449,14223,7956,1446,1449,7955,7955,1449,7956,7955,7956,1447,1447,7956,1448,1453,1451,7960,7960,1451,7958,7960,7958,7959,7959,7958,1452,1449,1452,7957,7957,1452,7958,7957,7958,1450,1450,7958,1451,1452,1075,7959,7959,1075,7961,7959,7961,7960,7960,7961,7962,7960,7962,1453,1453,7962,1077,13853,1454,7963,13853,7963,7964,13853,7964,13852,13852,7964,1456,7963,1454,1455,1453,1455,1451,1451,1455,1454,8489,1457,7966,8489,7966,7965,8489,7965,1459,1459,7965,1458,1455,1458,7963,7963,1458,7965,7963,7965,7964,7964,7965,7966,7964,7966,1456,1456,7966,1457,8491,1460,7967,8491,7967,7968,8491,7968,1462,7967,1460,1461,1458,1461,1459,1459,1461,1460,1465,1463,7972,7972,1463,7970,7972,7970,7971,7971,7970,7969,7971,7969,1464,1461,1464,7967,7967,1464,7969,7967,7969,7968,7968,7969,7970,7968,7970,1462,1462,7970,1463,14227,14224,14225,14225,14224,14226,14225,14226,14228,14227,14225,14228,8512,1466,14224,8512,14224,14227,8512,14227,8513,8513,14227,1468,1468,14227,14228,1468,14228,7976,7976,14228,7975,7975,14228,14226,7975,14226,1467,1467,14226,7973,7973,14226,14224,7973,14224,7974,7974,14224,1466,1464,1467,7971,7971,1467,7973,7971,7973,7972,7972,7973,7974,7972,7974,1465,1465,7974,1466,1471,1469,7978,1471,7978,7979,7979,7978,7977,7979,7977,1470,1467,1470,7975,7975,1470,7977,7975,7977,7976,7976,7977,7978,7976,7978,1468,1468,7978,1469,1474,1472,7982,7982,1472,7980,7982,7980,7981,7981,7980,1473,1470,1473,7979,7979,1473,7980,7979,7980,1471,1471,7980,1472,1473,1078,7981,7981,1078,7983,7981,7983,7982,7982,7983,7984,7982,7984,1474,1474,7984,1080,7985,1475,1476,7985,1476,1477,1474,1476,1472,1472,1476,1475,1476,1087,1477,1477,1087,1089,1480,1478,7989,7989,1478,7987,7989,7987,1479,1477,7986,7985,7985,7986,14229,7985,14229,1475,1475,14229,7988,7986,1479,14229,14229,1479,7987,14229,7987,7988,7988,7987,1478,8001,1481,7990,8001,7990,1483,1483,7990,1482,1479,1482,7989,7989,1482,7990,7989,7990,1480,1480,7990,1481,1482,7991,1483,1483,7991,7996,7991,7992,7996,7996,7992,7997,7992,7993,7997,7997,7993,7998,7993,7994,7998,7998,7994,7999,7994,7995,7999,7999,7995,8000,7995,1090,8000,8000,1090,1092,8014,1484,8002,8014,8002,8013,8013,8002,1485,8013,1485,1486,1483,1485,8001,8001,1485,8002,8001,8002,1481,1481,8002,1484,1485,8003,1486,1486,8003,8008,8003,8004,8008,8008,8004,8009,8004,8005,8009,8009,8005,8010,8005,8006,8010,8010,8006,8011,8006,8007,8011,8011,8007,8012,8007,1093,8012,8012,1093,1095,1489,1487,8016,1489,8016,8017,8017,8016,8015,8017,8015,1488,1486,1488,8013,8013,1488,8015,8013,8015,8014,8014,8015,8016,8014,8016,1484,1484,8016,1487,1488,1096,8017,8017,1096,8018,8017,8018,1489,1489,8018,1098,8530,1490,14231,8530,14231,14230,8530,14230,8531,8531,14230,8021,8531,8021,1492,8021,14230,8020,8020,14230,14231,8020,14231,8019,8019,14231,1491,1491,14231,1490,1489,1491,1487,1487,1491,1490,8031,1493,14232,8031,14232,1495,1495,14232,14233,1495,14233,8026,8026,14233,14234,8026,14234,8025,8025,14234,1494,1494,14234,8022,8022,14234,8023,8023,14234,14233,8023,14233,8024,8024,14233,14232,8024,14232,1493,1491,1494,8019,8019,1494,8022,8019,8022,8020,8020,8022,8023,8020,8023,8021,8021,8023,8024,8021,8024,1492,1492,8024,1493,1494,8027,8025,8025,8027,14235,8025,14235,8026,8026,14235,14236,8026,14236,1495,1495,14236,8030,8027,1105,14235,14235,1105,8028,14235,8028,14236,14236,8028,8029,14236,8029,8030,8030,8029,1107,8039,1496,8034,8039,8034,1497,8039,1497,1498,1495,8032,8031,8031,8032,14237,8031,14237,1493,1493,14237,8035,8032,8033,14237,14237,8033,14238,14237,14238,8035,8035,14238,8036,8033,1497,14238,14238,1497,8034,14238,8034,8036,8036,8034,1496,1497,8037,1498,1498,8037,8038,8037,1116,8038,8038,1116,1118,8545,1499,14239,8545,14239,1501,1501,14239,8042,8042,14239,14240,8042,14240,8041,8041,14240,1500,1500,14240,8040,8040,14240,1499,1499,14240,14239,1498,1500,8039,8039,1500,8040,8039,8040,1496,1496,8040,1499,1504,1502,8044,1504,8044,8045,8045,8044,8043,8045,8043,1503,1500,1503,8041,8041,1503,8043,8041,8043,8042,8042,8043,8044,8042,8044,1501,1501,8044,1502,8553,1505,8046,8553,8046,8047,8553,8047,1507,8047,8046,1506,1503,1506,8045,8045,1506,8046,8045,8046,1504,1504,8046,1505,1510,1508,8049,8049,1508,8048,8049,8048,1509,1506,1509,8047,8047,1509,8048,8047,8048,1507,1507,8048,1508,8561,1511,14241,8561,14241,8052,8561,8052,1513,8052,14241,8051,8051,14241,8050,8051,8050,1512,8050,14241,1511,1509,1512,8049,8049,1512,8050,8049,8050,1510,1510,8050,1511,14244,14242,14245,14242,14243,14245,14244,14245,14246,8062,1514,14244,8062,14244,14246,8062,14246,8061,8061,14246,1516,1516,14246,8056,8056,14246,14245,8056,14245,8055,8055,14245,14243,8055,14243,1515,1515,14243,8053,8053,14243,14242,8053,14242,8054,8054,14242,14244,8054,14244,1514,1512,1515,8051,8051,1515,8053,8051,8053,8052,8052,8053,8054,8052,8054,1513,1513,8054,1514,1515,8057,8055,8055,8057,14247,8055,14247,8056,8056,14247,14248,8056,14248,1516,1516,14248,8060,8057,1119,14247,14247,1119,8058,14247,8058,14248,14248,8058,8059,14248,8059,8060,8060,8059,1121,8079,1517,8064,8079,8064,14249,8079,14249,1519,1519,14249,8065,8065,14249,8063,8065,8063,1518,8063,14249,8064,1516,1518,8061,8061,1518,8063,8061,8063,8062,8062,8063,8064,8062,8064,1514,1514,8064,1517,1522,1520,8067,1522,8067,1521,1518,8066,8065,8065,8066,14250,8065,14250,1519,1519,14250,8068,8066,1521,14250,14250,1521,8067,14250,8067,8068,8068,8067,1520,1521,8069,1522,1522,8069,8072,8069,8070,8072,8072,8070,8073,8070,8071,8073,8073,8071,8074,8071,1125,8074,8074,1125,1127,1522,8075,1520,1520,8075,8077,8075,8076,8077,8077,8076,8078,8076,1137,8078,8078,1137,1139,8563,1523,8080,8563,8080,14251,8563,14251,8081,8563,8081,1525,8081,14251,1524,1524,14251,8080,1519,1524,8079,8079,1524,8080,8079,8080,1517,1517,8080,1523,8565,1526,8083,8565,8083,8085,8565,8085,1528,8085,8083,1527,1524,8082,8081,8081,8082,14252,8081,14252,1525,1525,14252,8084,8082,1527,14252,14252,1527,8083,14252,8083,8084,8084,8083,1526,8577,1529,8088,8577,8088,8091,8577,8091,1531,8091,8088,1530,1527,8086,8085,8085,8086,14253,8085,14253,1528,1528,14253,8089,8086,8087,14253,14253,8087,14254,14253,14254,8089,8089,14254,8090,8087,1530,14254,14254,1530,8088,14254,8088,8090,8090,8088,1529,1534,1532,8092,1534,8092,1533,1530,1533,8091,8091,1533,8092,8091,8092,1531,1531,8092,1532,1537,1535,1536,1533,1536,1534,1534,1536,1535,1536,1140,1537,1537,1140,1142,1537,8093,1535,1535,8093,8094,8093,1149,8094,8094,1149,1151,8101,1538,1539,8101,1539,1540,1534,1539,1532,1532,1539,1538,1543,1541,1542,1539,8095,1540,1540,8095,8096,8095,1542,8096,8096,1542,1541,1542,8097,1543,1543,8097,8098,8097,1152,8098,8098,1152,1154,1543,8099,1541,1541,8099,8100,8099,1176,8100,8100,1176,1178,8107,1544,8102,8107,8102,1546,1546,8102,1545,1540,1545,8101,8101,1545,8102,8101,8102,1538,1538,8102,1544,1545,8103,1546,1546,8103,8105,8103,8104,8105,8105,8104,8106,8104,1182,8106,8106,1182,1184,8582,1547,8108,8582,8108,14256,8582,14256,14255,8582,14255,8583,8583,14255,8109,8583,8109,1549,8109,14255,14256,8109,14256,1548,1548,14256,8108,1546,1548,8107,8107,1548,8108,8107,8108,1544,1544,8108,1547,8590,1550,14258,8590,14258,1552,1552,14258,8116,8116,14258,14257,8116,14257,8115,8115,14257,1551,1551,14257,8112,8112,14257,14258,8112,14258,1550,1548,8110,8109,8109,8110,14259,8109,14259,1549,1549,14259,8113,8110,8111,14259,14259,8111,14260,14259,14260,8113,8113,14260,8114,8111,1551,14260,14260,1551,8112,14260,8112,8114,8114,8112,1550,8121,1553,8118,8121,8118,14261,8121,14261,1555,1555,14261,8119,8119,14261,8117,8119,8117,1554,8117,14261,8118,1551,1554,8115,8115,1554,8117,8115,8117,8116,8116,8117,8118,8116,8118,1552,1552,8118,1553,1554,1185,8119,8119,1185,8120,8119,8120,1555,1555,8120,1187,1558,1556,14262,1558,14262,8123,8123,14262,8122,8123,8122,1557,8122,14262,1556,1555,1557,8121,8121,1557,8122,8121,8122,1553,1553,8122,1556,8611,1559,8124,8611,8124,1561,1561,8124,1560,1557,1560,8123,8123,1560,8124,8123,8124,1558,1558,8124,1559,8135,1562,8125,8135,8125,1564,8125,1562,1563,1560,1563,1561,1561,1563,1562,1567,1565,8128,8128,1565,8126,8128,8126,8127,8127,8126,1566,1563,1566,8125,8125,1566,8126,8125,8126,1564,1564,8126,1565,1566,1188,8127,8127,1188,8129,8127,8129,8128,8128,8129,8130,8128,8130,1567,1567,8130,1190,1567,8131,1565,1565,8131,8133,8131,8132,8133,8133,8132,8134,8132,1200,8134,8134,1200,1202,1570,1568,8137,1570,8137,8139,8139,8137,1569,1564,8136,8135,8135,8136,14263,8135,14263,1562,1562,14263,8138,8136,1569,14263,14263,1569,8137,14263,8137,8138,8138,8137,1568,8625,1571,8141,8625,8141,1573,1573,8141,1572,1569,8140,8139,8139,8140,14264,8139,14264,1570,1570,14264,8142,8140,1572,14264,14264,1572,8141,14264,8141,8142,8142,8141,1571,8145,1574,1575,8145,1575,8143,8145,8143,1576,1572,1575,1573,1573,1575,1574,1575,1203,8143,8143,1203,8144,8143,8144,1576,1576,8144,1205,8630,1577,14267,8630,14267,14265,8630,14265,8631,8631,14265,1581,8631,1581,1579,1581,14265,8147,8147,14265,14267,8147,14267,14266,8147,14266,1580,1580,14266,1578,1578,14266,8146,8146,14266,14267,8146,14267,1577,1576,1578,8145,8145,1578,8146,8145,8146,1574,1574,8146,1577,1589,1582,1581,1589,1581,8151,8151,1581,8147,8151,8147,14268,8151,14268,8150,8150,14268,1588,1588,14268,1583,1588,1583,1584,1583,14268,1580,1580,14268,8147,1582,1579,1581,1578,1583,1580,8148,1585,1586,8148,1586,1587,1583,1586,1584,1584,1586,1585,1586,1206,1587,1587,1206,1208,1587,1212,8148,8148,1212,8149,8148,8149,1585,1585,8149,1214,8646,1590,1589,8646,1589,8151,8646,8151,8647,8647,8151,8150,8647,8150,1592,1592,8150,1588,1592,1588,1591,1590,1582,1589,1584,1591,1588,8649,1593,8153,8649,8153,8154,8649,8154,1595,8153,1593,8152,8152,1593,1594,1591,1594,1592,1592,1594,1593,8656,1596,8157,8656,8157,14269,8656,14269,8657,8657,14269,1598,1598,14269,14270,1598,14270,8158,8158,14270,1597,1597,14270,8155,8155,14270,8156,8156,14270,14269,8156,14269,8157,1594,1597,8152,8152,1597,8155,8152,8155,8153,8153,8155,8156,8153,8156,8154,8154,8156,8157,8154,8157,1595,1595,8157,1596,1601,1599,8161,8161,1599,8160,8160,1599,8159,8160,8159,1600,1597,1600,8158,8158,1600,8159,8158,8159,1598,1598,8159,1599,1604,1602,8163,1604,8163,8162,1604,8162,1603,1600,1603,8160,8160,1603,8162,8160,8162,8161,8161,8162,8163,8161,8163,1601,1601,8163,1602,1603,8164,1604,1604,8164,8165,8164,1215,8165,8165,1215,1217,13849,1605,1606,13849,1606,1607,1604,8166,1602,1602,8166,8168,8166,8167,8168,8168,8167,8169,8167,1606,8169,8169,1606,1605,1610,1608,1609,1606,1609,1607,1607,1609,1608,1609,1218,1610,1610,1218,1220,8170,1611,1612,8170,1612,1613,1610,1612,1608,1608,1612,1611,1612,1221,1613,1613,1221,1223,13848,1614,8173,13848,8173,8174,13848,8174,1616,8173,1614,8171,8173,8171,8172,8172,8171,1615,1613,1615,8170,8170,1615,8171,8170,8171,1611,1611,8171,1614,8681,1617,8177,8681,8177,8176,8681,8176,1619,1619,8176,8178,8178,8176,8175,8178,8175,1618,1615,1618,8172,8172,1618,8175,8172,8175,8173,8173,8175,8176,8173,8176,8174,8174,8176,8177,8174,8177,1616,1616,8177,1617,1622,1620,8179,1622,8179,1621,1618,1621,8178,8178,1621,8179,8178,8179,1619,1619,8179,1620,8196,1623,8180,8196,8180,8181,8196,8181,1625,8180,1623,1624,1621,1624,1622,1622,1624,1623,8193,1626,8183,8193,8183,14271,8193,14271,8192,8192,14271,1628,1628,14271,1627,1627,14271,8182,8182,14271,8183,1624,1627,8180,8180,1627,8182,8180,8182,8181,8181,8182,8183,8181,8183,1625,1625,8183,1626,1627,8184,1628,1628,8184,8188,8184,8185,8188,8188,8185,8189,8185,8186,8189,8189,8186,8190,8186,8187,8190,8190,8187,8191,8187,1230,8191,8191,1230,1232,1628,1242,8192,8192,1242,8194,8192,8194,8193,8193,8194,8195,8193,8195,1626,1626,8195,1244,8691,1629,8197,8691,8197,1631,1631,8197,1630,1625,1630,8196,8196,1630,8197,8196,8197,1623,1623,8197,1629,1634,1632,8198,8198,1632,1633,1630,1633,1631,1631,1633,1632,14272,14273,14274,14274,14273,14275,2063,1635,14275,2063,14275,14273,2063,14273,2064,2064,14273,14272,2064,14272,8201,2064,8201,1637,8201,14272,8200,8200,14272,14274,8200,14274,1636,1636,14274,8199,8199,14274,14275,8199,14275,1635,1633,1636,8198,8198,1636,8199,8198,8199,1634,1634,8199,1635,8209,1638,8203,8209,8203,8208,8208,8203,8202,8208,8202,1640,1640,8202,1639,1636,1639,8200,8200,1639,8202,8200,8202,8201,8201,8202,8203,8201,8203,1637,1637,8203,1638,1639,8204,1640,1640,8204,8206,8204,8205,8206,8206,8205,8207,8205,1245,8207,8207,1245,1247,8225,1641,8212,8225,8212,8224,8224,8212,8211,8224,8211,1643,1643,8211,1642,1640,8210,8208,8208,8210,14276,8208,14276,8209,8209,14276,14277,8209,14277,1638,1638,14277,8213,8210,1642,14276,14276,1642,8211,14276,8211,14277,14277,8211,8212,14277,8212,8213,8213,8212,1641,1646,1644,1645,1642,8214,1643,1643,8214,8219,8214,8215,8219,8219,8215,8220,8215,8216,8220,8220,8216,8221,8216,8217,8221,8221,8217,8222,8217,8218,8222,8222,8218,8223,8218,1645,8223,8223,1645,1644,1645,1257,1646,1646,1257,1259,1646,1263,1644,1644,1263,1265,8707,1647,8227,8707,8227,14278,8707,14278,8708,8708,14278,8228,8708,8228,1649,8228,14278,8226,8228,8226,1648,8226,14278,8227,1643,1648,8224,8224,1648,8226,8224,8226,8225,8225,8226,8227,8225,8227,1641,1641,8227,1647,8234,1650,1654,8234,1654,1652,1654,1650,1653,1653,1650,8229,1653,8229,1651,1648,1651,8228,8228,1651,8229,8228,8229,1649,1649,8229,1650,8231,1655,1654,8231,1654,8230,8230,1654,14279,8230,14279,1657,1657,14279,1656,1656,14279,1653,1653,14279,1654,1655,1652,1654,1651,1656,1653,1656,1269,1657,1657,1269,1271,1657,1272,8230,8230,1272,8232,8230,8232,8231,8231,8232,8233,8231,8233,1655,1655,8233,1274,1660,1658,8235,1660,8235,8236,8236,8235,1659,1652,1659,8234,8234,1659,8235,8234,8235,1650,1650,8235,1658,14280,14281,14282,14282,14281,14283,8722,1661,14283,8722,14283,14281,8722,14281,8723,8723,14281,8724,8724,14281,14280,8724,14280,8240,8724,8240,1663,8240,14280,8239,8239,14280,8238,8238,14280,14282,8238,14282,1662,1662,14282,8237,8237,14282,14283,8237,14283,1661,1659,1662,8236,8236,1662,8237,8236,8237,1660,1660,8237,1661,1666,1664,14284,1666,14284,1668,1668,14284,14285,1668,14285,8244,8244,14285,14286,8244,14286,1667,1667,14286,8241,1667,8241,1665,8241,14286,8242,8242,14286,8243,8243,14286,14285,8243,14285,14284,8243,14284,1664,1662,1665,8238,8238,1665,8241,8238,8241,8239,8239,8241,8242,8239,8242,8240,8240,8242,8243,8240,8243,1663,1663,8243,1664,8750,1669,1668,8750,1668,8244,8750,8244,8751,8751,8244,1667,8751,1667,1671,1671,1667,1670,1669,1666,1668,1665,1670,1667,8258,1672,1673,8258,1673,8253,8258,8253,8257,8257,8253,8254,8257,8254,1674,1670,8245,1671,1671,8245,8249,8245,8246,8249,8249,8246,8250,8246,8247,8250,8250,8247,8251,8247,8248,8251,8251,8248,8252,8248,1673,8252,8252,1673,1672,1673,1275,8253,8253,1275,8255,8253,8255,8254,8254,8255,8256,8254,8256,1674,1674,8256,1277,1677,1675,14287,1677,14287,8262,8262,14287,8260,8262,8260,8261,8261,8260,8259,8261,8259,1676,8260,14287,1675,1674,1676,8257,8257,1676,8259,8257,8259,8258,8258,8259,8260,8258,8260,1672,1672,8260,1675,8773,1678,8264,8773,8264,8263,8773,8263,1680,1680,8263,1679,1676,1679,8261,8261,1679,8263,8261,8263,8262,8262,8263,8264,8262,8264,1677,1677,8264,1678,1683,1681,1682,1679,8265,1680,1680,8265,8267,8265,8266,8267,8267,8266,8268,8266,1682,8268,8268,1682,1681,1686,1684,1685,1682,1685,1683,1683,1685,1684,1685,8269,1686,1686,8269,8270,8269,1284,8270,8270,1284,1286,8802,1687,8271,8802,8271,8272,8802,8272,1689,8271,1687,1688,1686,1688,1684,1684,1688,1687,1692,1690,8276,8276,1690,8274,8276,8274,8275,8275,8274,8273,8275,8273,1691,1688,1691,8271,8271,1691,8273,8271,8273,8272,8272,8273,8274,8272,8274,1689,1689,8274,1690,8279,1693,8278,8279,8278,1695,1695,8278,8277,1695,8277,1694,1691,1694,8275,8275,1694,8277,8275,8277,8276,8276,8277,8278,8276,8278,1692,1692,8278,1693,1694,1290,1695,1695,1290,1292,1695,1293,8279,8279,1293,8280,8279,8280,1693,1693,8280,1295,1698,1696,1697,1692,1697,1690,1690,1697,1696,1701,1699,8281,8281,1699,1700,1697,1700,1698,1698,1700,1699,1700,1296,8281,8281,1296,8282,8281,8282,1701,1701,8282,1298,1704,1702,1703,1701,8283,1699,1699,8283,8285,8283,8284,8285,8285,8284,8286,8284,1703,8286,8286,1703,1702,1707,1705,8287,8287,1705,1706,1703,1706,1704,1704,1706,1705,1710,1708,8289,8289,1708,8288,8289,8288,1709,1706,1709,8287,8287,1709,8288,8287,8288,1707,1707,8288,1708,1713,1711,8296,8296,1711,8292,8296,8292,8295,8295,8292,1712,1709,8290,8289,8289,8290,14288,8289,14288,1710,1710,14288,8293,8290,8291,14288,14288,8291,14289,14288,14289,8293,8293,14289,8294,8291,1712,14289,14289,1712,8292,14289,8292,8294,8294,8292,1711,1712,1320,8295,8295,1320,8297,8295,8297,8296,8296,8297,8298,8296,8298,1713,1713,8298,1322,1716,1714,1715,1713,8299,1711,1711,8299,8305,8299,8300,8305,8305,8300,8306,8300,8301,8306,8306,8301,8307,8301,8302,8307,8307,8302,8308,8302,8303,8308,8308,8303,8309,8303,8304,8309,8309,8304,8310,8304,1715,8310,8310,1715,1714,1715,8311,1716,1716,8311,8317,8311,8312,8317,8317,8312,8318,8312,8313,8318,8318,8313,8319,8313,8314,8319,8319,8314,8320,8314,8315,8320,8320,8315,8321,8315,8316,8321,8321,8316,8322,8316,1326,8322,8322,1326,1328,1719,1717,1718,1716,1718,1714,1714,1718,1717,1718,8323,1719,1719,8323,8324,8323,1329,8324,8324,1329,1331,1719,8325,1717,1717,8325,8326,8325,1708,8326,8326,1708,1710,1722,1720,8327,8327,1720,1721,1707,1721,1705,1705,1721,1720,1721,8328,8327,8327,8328,14290,8327,14290,1722,1722,14290,8330,8328,1335,14290,14290,1335,8329,14290,8329,8330,8330,8329,1337,1725,1723,1724,1722,1724,1720,1720,1724,1723,1728,1726,1727,1724,1727,1725,1725,1727,1726,1731,1729,1730,1727,1730,1728,1728,1730,1729,1734,1732,1733,1730,1733,1731,1731,1733,1732,1733,1338,1734,1734,1338,1340,8840,1735,8337,8840,8337,1737,8337,1735,1736,1734,8331,1732,1732,8331,8334,8331,8332,8334,8334,8332,8335,8332,8333,8335,8335,8333,8336,8333,1736,8336,8336,1736,1735,8345,1738,14291,8345,14291,1740,1740,14291,8339,8339,14291,8338,8339,8338,1739,8338,14291,1738,1736,1739,8337,8337,1739,8338,8337,8338,1737,1737,8338,1738,1739,8340,8339,8339,8340,14292,8339,14292,1740,1740,14292,8343,8340,8341,14292,14292,8341,14293,14292,14293,8343,8343,14293,8344,8341,1341,14293,14293,1341,8342,14293,8342,8344,8344,8342,1343,8353,1741,8346,8353,8346,1743,1743,8346,1742,1740,1742,8345,8345,1742,8346,8345,8346,1738,1738,8346,1741,1742,8347,1743,1743,8347,8350,8347,8348,8350,8350,8348,8351,8348,8349,8351,8351,8349,8352,8349,1347,8352,8352,1347,1349,1746,1744,8355,8355,1744,8354,8355,8354,1745,1743,1745,8353,8353,1745,8354,8353,8354,1741,1741,8354,1744,8852,1747,14295,8852,14295,14294,8852,14294,8359,8852,8359,1749,8359,14294,8358,8358,14294,8357,8357,14294,8356,8357,8356,1748,8356,14294,14295,8356,14295,1747,1745,1748,8355,8355,1748,8356,8355,8356,1746,1746,8356,1747,1752,1750,14296,1752,14296,8364,8364,14296,14297,8364,14297,8363,8363,14297,8360,8363,8360,1751,8360,14297,8361,8361,14297,8362,8362,14297,14296,8362,14296,1750,1748,1751,8357,8357,1751,8360,8357,8360,8358,8358,8360,8361,8358,8361,8359,8359,8361,8362,8359,8362,1749,1749,8362,1750,1751,1359,8363,8363,1359,8365,8363,8365,8364,8364,8365,8366,8364,8366,1752,1752,8366,1361,1755,1753,8367,8367,1753,1754,1752,1754,1750,1750,1754,1753,1758,1756,14298,1758,14298,8369,8369,14298,8368,8369,8368,1757,8368,14298,1756,1754,1757,8367,8367,1757,8368,8367,8368,1755,1755,8368,1756,1757,1365,8369,8369,1365,8370,8369,8370,1758,1758,8370,1367,1761,1759,8371,8371,1759,1760,1758,1760,1756,1756,1760,1759,8374,1762,8372,8374,8372,1763,8374,1763,8373,8373,1763,1764,1760,1763,8371,8371,1763,8372,8371,8372,1761,1761,8372,1762,1763,1368,1764,1764,1368,1370,8869,1765,8378,8869,8378,14299,8869,14299,1767,1767,14299,8381,8381,14299,8377,8381,8377,1766,8377,14299,8378,1764,8375,8373,8373,8375,14300,8373,14300,8374,8374,14300,14301,8374,14301,1762,1762,14301,8379,8375,8376,14300,14300,8376,14302,14300,14302,14301,14301,14302,14303,14301,14303,8379,8379,14303,8380,8376,1766,14302,14302,1766,8377,14302,8377,14303,14303,8377,8378,14303,8378,8380,8380,8378,1765,1770,1768,8383,1770,8383,1769,1766,8382,8381,8381,8382,14304,8381,14304,1767,1767,14304,8384,8382,1769,14304,14304,1769,8383,14304,8383,8384,8384,8383,1768,1773,1771,1772,1769,1772,1770,1770,1772,1771,1776,1774,1775,1772,1775,1773,1773,1775,1774,1779,1777,1778,1775,1778,1776,1776,1778,1777,1778,8385,1779,1779,8385,8387,8385,8386,8387,8387,8386,8388,8386,1377,8388,8388,1377,1379,1782,1780,1781,1779,1781,1777,1777,1781,1780,1781,1383,1782,1782,1383,1385,1782,1774,1780,1780,1774,1776,8882,1783,8389,8882,8389,8390,8882,8390,1785,8389,1783,1784,1773,1784,1771,1771,1784,1783,1788,1786,8394,8394,1786,8392,8394,8392,8393,8393,8392,8391,8393,8391,1787,1784,1787,8389,8389,1787,8391,8389,8391,8390,8390,8391,8392,8390,8392,1785,1785,8392,1786,1791,1789,8396,1791,8396,8398,8398,8396,8395,8398,8395,8397,8397,8395,1790,1787,1790,8393,8393,1790,8395,8393,8395,8394,8394,8395,8396,8394,8396,1788,1788,8396,1789,1794,1792,8403,8403,1792,14305,8403,14305,8402,8402,14305,8401,8401,14305,8399,8401,8399,1793,8399,14305,8400,8400,14305,1792,1790,1793,8397,8397,1793,8399,8397,8399,8398,8398,8399,8400,8398,8400,1791,1791,8400,1792,1797,1795,1799,1799,1795,8409,8409,1795,14306,8409,14306,8408,8408,14306,8406,8408,8406,8405,8408,8405,8407,8407,8405,8404,8407,8404,1798,1798,8404,1796,8406,14306,1795,1793,1796,8401,8401,1796,8404,8401,8404,8402,8402,8404,8405,8402,8405,8403,8403,8405,8406,8403,8406,1794,1794,8406,1795,8413,1800,1799,8413,1799,8409,8413,8409,8412,8412,8409,8408,8412,8408,1802,1802,8408,8407,1802,8407,8410,8410,8407,1798,8410,1798,1801,1800,1797,1799,1796,1801,1798,1801,1386,8410,8410,1386,8411,8410,8411,1802,1802,8411,1388,1805,1803,8416,1805,8416,8419,8419,8416,8415,8419,8415,8418,8418,8415,1804,1802,8414,8412,8412,8414,14307,8412,14307,8413,8413,14307,14308,8413,14308,1800,1800,14308,8417,8414,1804,14307,14307,1804,8415,14307,8415,14308,14308,8415,8416,14308,8416,8417,8417,8416,1803,8426,1806,8421,8426,8421,14309,8426,14309,1808,1808,14309,8422,8422,14309,8420,8422,8420,1807,8420,14309,8421,1804,1807,8418,8418,1807,8420,8418,8420,8419,8419,8420,8421,8419,8421,1805,1805,8421,1806,1807,8423,8422,8422,8423,14310,8422,14310,1808,1808,14310,8425,8423,1404,14310,14310,1404,8424,14310,8424,8425,8425,8424,1406,8916,1809,8429,8916,8429,1810,8916,1810,8432,8916,8432,1811,1808,8427,8426,8426,8427,14311,8426,14311,1806,1806,14311,8430,8427,8428,14311,14311,8428,14312,14311,14312,8430,8430,14312,8431,8428,1810,14312,14312,1810,8429,14312,8429,8431,8431,8429,1809,8920,1812,8435,8920,8435,8436,8920,8436,1814,8435,1812,8433,8435,8433,8434,8434,8433,1813,1810,1813,8432,8432,1813,8433,8432,8433,1811,1811,8433,1812,1817,1815,1819,1819,1815,8441,8441,1815,8439,8441,8439,8438,8441,8438,8440,8440,8438,8437,8440,8437,1818,1818,8437,1816,1813,1816,8434,8434,1816,8437,8434,8437,8435,8435,8437,8438,8435,8438,8436,8436,8438,8439,8436,8439,1814,1814,8439,1815,1822,1820,1819,1822,1819,8441,1822,8441,8444,8444,8441,8443,8443,8441,8440,8443,8440,8442,8442,8440,1818,8442,1818,1821,1820,1817,1819,1816,1821,1818,8945,1823,8447,8945,8447,14313,8945,14313,8946,8946,14313,8446,8946,8446,8445,8946,8445,1825,1825,8445,1824,8446,14313,8447,1821,1824,8442,8442,1824,8445,8442,8445,8443,8443,8445,8446,8443,8446,8444,8444,8446,8447,8444,8447,1822,1822,8447,1823,8452,1826,8448,8452,8448,8449,8452,8449,1828,8448,1826,1827,1824,1827,1825,1825,1827,1826,1827,1409,8448,8448,1409,8450,8448,8450,8449,8449,8450,8451,8449,8451,1828,1828,8451,1411,8949,1829,14314,8949,14314,8950,8950,14314,8455,8950,8455,1831,8455,14314,8454,8454,14314,8453,8454,8453,1830,8453,14314,1829,1828,1830,8452,8452,1830,8453,8452,8453,1826,1826,8453,1829,8462,1832,8458,8462,8458,1834,1834,8458,8460,8460,8458,8457,8460,8457,1833,1830,8456,8454,8454,8456,14315,8454,14315,8455,8455,14315,14316,8455,14316,1831,1831,14316,8459,8456,1833,14315,14315,1833,8457,14315,8457,14316,14316,8457,8458,14316,8458,8459,8459,8458,1832,1837,1835,8461,1837,8461,1836,1833,1836,8460,8460,1836,8461,8460,8461,1834,1834,8461,1835,1840,1838,1839,1836,1839,1837,1837,1839,1838,1839,1412,1840,1840,1412,1414,1843,1841,1842,1840,1842,1838,1838,1842,1841,1842,1421,1843,1843,1421,1423,1843,1424,1841,1841,1424,1426,1837,1433,1835,1835,1433,1435,8464,1844,8463,8464,8463,1845,8464,1845,1846,1834,1845,8462,8462,1845,8463,8462,8463,1832,1832,8463,1844,1845,1436,1846,1846,1436,1438,8957,1847,14317,8957,14317,8958,8958,14317,8467,8958,8467,1849,8467,14317,8466,8466,14317,14318,8466,14318,1848,1848,14318,8465,8465,14318,14317,8465,14317,1847,1846,1848,8464,8464,1848,8465,8464,8465,1844,1844,8465,1847,1852,1850,8469,1852,8469,8470,8470,8469,8468,8470,8468,1851,1848,1851,8466,8466,1851,8468,8466,8468,8467,8467,8468,8469,8467,8469,1849,1849,8469,1850,1855,1853,8471,1855,8471,1854,1851,1854,8470,8470,1854,8471,8470,8471,1852,1852,8471,1853,8481,1856,1857,8481,1857,8472,8481,8472,8480,8480,8472,1858,1854,1857,1855,1855,1857,1856,1861,1859,8474,8474,1859,8473,8474,8473,1860,1857,1860,8472,8472,1860,8473,8472,8473,1858,1858,8473,1859,1860,1439,8474,8474,1439,8475,8474,8475,1861,1861,8475,1441,1861,8476,1859,1859,8476,8478,8476,8477,8478,8478,8477,8479,8477,1445,8479,8479,1445,1447,1864,1862,8483,1864,8483,14319,1864,14319,8484,8484,14319,8482,8484,8482,1863,8482,14319,8483,1858,1863,8480,8480,1863,8482,8480,8482,8481,8481,8482,8483,8481,8483,1856,1856,8483,1862,8492,1865,14320,8492,14320,1869,8492,1869,1867,1869,14320,1868,1868,14320,8486,1868,8486,1866,8486,14320,1865,1863,8485,8484,8484,8485,14321,8484,14321,1864,1864,14321,8487,8485,1866,14321,14321,1866,8486,14321,8486,8487,8487,8486,1865,8490,1870,1869,8490,1869,14322,8490,14322,1872,1872,14322,8488,8488,14322,1868,8488,1868,1871,1868,14322,1869,1870,1867,1869,1866,1871,1868,1871,1457,8488,8488,1457,8489,8488,8489,1872,1872,8489,1459,1872,1460,8490,8490,1460,8491,8490,8491,1870,1870,8491,1462,8996,1873,8493,8996,8493,14323,8996,14323,1875,1875,14323,8494,8494,14323,1874,1874,14323,8493,1867,1874,8492,8492,1874,8493,8492,8493,1865,1865,8493,1873,8498,1876,8495,8498,8495,1877,8498,1877,1878,1874,1877,8494,8494,1877,8495,8494,8495,1875,1875,8495,1876,1877,8496,1878,1878,8496,8497,8496,1463,8497,8497,1463,1465,1881,1879,8499,1881,8499,8500,8500,8499,1880,1878,1880,8498,8498,1880,8499,8498,8499,1876,1876,8499,1879,1884,1882,14324,1884,14324,8503,8503,14324,8502,8502,14324,8501,8502,8501,1883,8501,14324,1882,1880,1883,8500,8500,1883,8501,8500,8501,1881,1881,8501,1882,9024,1885,8505,9024,8505,8504,9024,8504,1887,1887,8504,1886,1883,1886,8502,8502,1886,8504,8502,8504,8503,8503,8504,8505,8503,8505,1884,1884,8505,1885,8515,1888,8510,8515,8510,8511,8515,8511,8514,8514,8511,1890,8510,1888,1889,1886,8506,1887,1887,8506,8508,8506,8507,8508,8508,8507,8509,8507,1889,8509,8509,1889,1888,1889,1466,8510,8510,1466,8512,8510,8512,8511,8511,8512,8513,8511,8513,1890,1890,8513,1468,1893,1891,14325,1893,14325,1895,1895,14325,1894,1894,14325,14326,1894,14326,8517,1894,8517,1892,8517,14326,8518,8518,14326,14325,8518,14325,1891,1890,8516,8514,8514,8516,14327,8514,14327,8515,8515,14327,14328,8515,14328,1888,1888,14328,8519,8516,1892,14327,14327,1892,8517,14327,8517,14328,14328,8517,8518,14328,8518,8519,8519,8518,1891,9039,1896,1895,9039,1895,9040,9040,1895,1894,9040,1894,1898,1898,1894,1897,1896,1893,1895,1892,1897,1894,9046,1899,8523,9046,8523,8524,9046,8524,1901,8523,1899,8522,8522,1899,1900,1897,8520,1898,1898,8520,8521,8520,1900,8521,8521,1900,1899,1904,1902,8527,1904,8527,8529,8529,8527,8526,8529,8526,8528,8528,8526,8525,8528,8525,1903,1900,1903,8522,8522,1903,8525,8522,8525,8523,8523,8525,8526,8523,8526,8524,8524,8526,8527,8524,8527,1901,1901,8527,1902,1903,1490,8528,8528,1490,8530,8528,8530,8529,8529,8530,8531,8529,8531,1904,1904,8531,1492,9056,1905,8536,9056,8536,8537,9056,8537,1907,8536,1905,1906,1904,8532,1902,1902,8532,8534,8532,8533,8534,8534,8533,8535,8533,1906,8535,8535,1906,1905,9064,1908,14329,9064,14329,8541,9064,8541,1910,8541,14329,8540,8540,14329,8538,8540,8538,1909,8538,14329,8539,8539,14329,1908,1906,1909,8536,8536,1909,8538,8536,8538,8537,8537,8538,8539,8537,8539,1907,1907,8539,1908,8546,1911,8543,8546,8543,14330,8546,14330,1913,1913,14330,8544,8544,14330,8542,8544,8542,1912,8542,14330,8543,1909,1912,8540,8540,1912,8542,8540,8542,8541,8541,8542,8543,8541,8543,1910,1910,8543,1911,1912,1499,8544,8544,1499,8545,8544,8545,1913,1913,8545,1501,1916,1914,8547,1916,8547,1915,1913,1915,8546,8546,1915,8547,8546,8547,1911,1911,8547,1914,1919,1917,1918,1915,1918,1916,1916,1918,1917,1918,1502,1919,1919,1502,1504,9082,1920,1921,9082,1921,8548,9082,8548,1922,1919,1921,1917,1917,1921,1920,8554,1923,8549,8554,8549,8550,8554,8550,1925,8550,8549,1924,1921,1924,8548,8548,1924,8549,8548,8549,1922,1922,8549,1923,1928,1926,8551,1928,8551,8552,8552,8551,1927,1924,1927,8550,8550,1927,8551,8550,8551,1925,1925,8551,1926,1927,1505,8552,8552,1505,8553,8552,8553,1928,1928,8553,1507,1928,1508,1926,1926,1508,1510,9086,1929,8555,9086,8555,8556,9086,8556,1931,8556,8555,1930,1925,1930,8554,8554,1930,8555,8554,8555,1923,1923,8555,1929,1934,1932,8558,8558,1932,8557,8558,8557,1933,1930,1933,8556,8556,1933,8557,8556,8557,1931,1931,8557,1932,8562,1935,8559,8562,8559,8560,8562,8560,1937,8560,8559,1936,1933,1936,8558,8558,1936,8559,8558,8559,1934,1934,8559,1935,1936,1511,8560,8560,1511,8561,8560,8561,1937,1937,8561,1513,1937,1523,8562,8562,1523,8563,8562,8563,1935,1935,8563,1525,8566,1938,8564,8566,8564,1940,8564,1938,1939,1934,1939,1932,1932,1939,1938,1939,1526,8564,8564,1526,8565,8564,8565,1940,1940,8565,1528,9088,1941,14331,9088,14331,8568,9088,8568,1943,8568,14331,8567,8568,8567,1942,8567,14331,1941,1940,1942,8566,8566,1942,8567,8566,8567,1938,1938,8567,1941,1946,1944,8570,1946,8570,8572,8572,8570,1945,1942,8569,8568,8568,8569,14332,8568,14332,1943,1943,14332,8571,8569,1945,14332,14332,1945,8570,14332,8570,8571,8571,8570,1944,9102,1947,8573,9102,8573,1948,9102,1948,1949,1945,1948,8572,8572,1948,8573,8572,8573,1946,1946,8573,1947,1952,1950,8574,8574,1950,1951,1948,1951,1949,1949,1951,1950,8578,1953,8575,8578,8575,14333,8578,14333,8576,8578,8576,1955,8576,14333,1954,1954,14333,8575,1951,1954,8574,8574,1954,8575,8574,8575,1952,1952,8575,1953,1954,1529,8576,8576,1529,8577,8576,8577,1955,1955,8577,1531,1958,1956,8581,8581,1956,8579,8581,8579,8580,8580,8579,1957,1955,1957,8578,8578,1957,8579,8578,8579,1953,1953,8579,1956,1957,1547,8580,8580,1547,8582,8580,8582,8581,8581,8582,8583,8581,8583,1958,1958,8583,1549,1961,1959,1960,1958,8584,1956,1956,8584,8586,8584,8585,8586,8586,8585,8587,8585,1960,8587,8587,1960,1959,1964,1962,1963,1960,1963,1961,1961,1963,1962,8592,1965,8588,8592,8588,1967,8588,1965,1966,1963,1966,1964,1964,1966,1965,1966,8589,8588,8588,8589,14334,8588,14334,1967,1967,14334,8591,8589,1550,14334,14334,1550,8590,14334,8590,8591,8591,8590,1552,9121,1968,8593,9121,8593,9122,9122,8593,1969,9122,1969,1970,1967,1969,8592,8592,1969,8593,8592,8593,1965,1965,8593,1968,1973,1971,1972,1969,1972,1970,1970,1972,1971,1972,8594,1973,1973,8594,8596,8594,8595,8596,8596,8595,8597,8595,1556,8597,8597,1556,1558,1976,1974,1975,1973,1975,1971,1971,1975,1974,1979,1977,8600,8600,1977,1978,1975,8598,1976,1976,8598,8599,8598,1978,8599,8599,1978,1977,9151,1980,8605,9151,8605,1982,8605,1980,8604,8604,1980,8602,8604,8602,1981,1978,8601,8600,8600,8601,14335,8600,14335,1979,1979,14335,8603,8601,1981,14335,14335,1981,8602,14335,8602,8603,8603,8602,1980,8614,1983,8607,8614,8607,14336,8614,14336,1985,1985,14336,8608,8608,14336,8606,8608,8606,1984,8606,14336,8607,1981,1984,8604,8604,1984,8606,8604,8606,8605,8605,8606,8607,8605,8607,1982,1982,8607,1983,1984,8609,8608,8608,8609,14337,8608,14337,1985,1985,14337,8612,8609,8610,14337,14337,8610,14338,14337,14338,8612,8612,14338,8613,8610,1559,14338,14338,1559,8611,14338,8611,8613,8613,8611,1561,1988,1986,8615,1988,8615,1987,1985,1987,8614,8614,1987,8615,8614,8615,1983,1983,8615,1986,1991,1989,1990,1987,8616,1988,1988,8616,8617,8616,1990,8617,8617,1990,1989,1990,1568,1991,1991,1568,1570,9161,1992,1993,9161,1993,8618,9161,8618,1994,1991,1993,1989,1989,1993,1992,9175,1995,8620,9175,8620,1997,1997,8620,1996,1993,8619,8618,8618,8619,14339,8618,14339,1994,1994,14339,8621,8619,1996,14339,14339,1996,8620,14339,8620,8621,8621,8620,1995,2000,1998,8622,8622,1998,1999,1996,1999,1997,1997,1999,1998,8626,2001,8623,8626,8623,8624,8626,8624,2003,8624,8623,2002,1999,2002,8622,8622,2002,8623,8622,8623,2000,2000,8623,2001,2002,1571,8624,8624,1571,8625,8624,8625,2003,2003,8625,1573,2006,2004,8629,8629,2004,8627,8629,8627,8628,8628,8627,2005,2003,2005,8626,8626,2005,8627,8626,8627,2001,2001,8627,2004,2005,1577,8628,8628,1577,8630,8628,8630,8629,8629,8630,8631,8629,8631,2006,2006,8631,1579,2009,2007,2008,2006,2008,2004,2004,2008,2007,9180,2010,2011,9180,2011,9181,9181,2011,8634,9181,8634,2012,2008,8632,2009,2009,8632,8633,8632,2011,8633,8633,2011,2010,8650,2013,14340,8650,14340,8641,8650,8641,2015,8641,14340,8640,8640,14340,14341,8640,14341,2014,2014,14341,8637,8637,14341,2013,2013,14341,14340,2011,8635,8634,8634,8635,14342,8634,14342,2012,2012,14342,8638,8635,8636,14342,14342,8636,14343,14342,14343,8638,8638,14343,8639,8636,2014,14343,14343,2014,8637,14343,8637,8639,8639,8637,2013,14345,14344,14346,8648,2016,14344,8648,14344,14345,8648,14345,2018,2018,14345,8645,8645,14345,14346,8645,14346,8644,8644,14346,8642,8644,8642,2017,8642,14346,14344,8642,14344,8643,8643,14344,2016,2014,2017,8640,8640,2017,8642,8640,8642,8641,8641,8642,8643,8641,8643,2015,2015,8643,2016,2017,1590,8644,8644,1590,8646,8644,8646,8645,8645,8646,8647,8645,8647,2018,2018,8647,1592,2018,1593,8648,8648,1593,8649,8648,8649,2016,2016,8649,1595,2021,2019,8652,8652,2019,8651,8652,8651,2020,2015,2020,8650,8650,2020,8651,8650,8651,2013,2013,8651,2019,13847,2022,8653,13847,8653,2024,2024,8653,2023,2020,2023,8652,8652,2023,8653,8652,8653,2021,2021,8653,2022,8659,2025,8654,8659,8654,8655,8659,8655,8658,8658,8655,2027,8654,2025,2026,2023,2026,2024,2024,2026,2025,2026,1596,8654,8654,1596,8656,8654,8656,8655,8655,8656,8657,8655,8657,2027,2027,8657,1598,8662,2028,8661,8662,8661,8660,8662,8660,2030,2030,8660,2029,2027,2029,8658,8658,2029,8660,8658,8660,8659,8659,8660,8661,8659,8661,2025,2025,8661,2028,2029,1599,2030,2030,1599,1601,13846,2031,8663,13846,8663,8664,13846,8664,2033,8664,8663,2032,2030,2032,8662,8662,2032,8663,8662,8663,2028,2028,8663,2031,9215,2034,14347,9215,14347,9216,9216,14347,8671,9216,8671,2036,8671,14347,8670,8670,14347,2035,2035,14347,8667,8667,14347,2034,2032,8665,8664,8664,8665,14348,8664,14348,2033,2033,14348,8668,8665,8666,14348,14348,8666,14349,14348,14349,8668,8668,14349,8669,8666,2035,14349,14349,2035,8667,14349,8667,8669,8669,8667,2034,9239,2037,8674,9239,8674,14350,9239,14350,2039,2039,14350,8676,8676,14350,8673,8676,8673,2038,8673,14350,8674,2035,8672,8670,8670,8672,14351,8670,14351,8671,8671,14351,14352,8671,14352,2036,2036,14352,8675,8672,2038,14351,14351,2038,8673,14351,8673,14352,14352,8673,8674,14352,8674,8675,8675,8674,2037,8695,2040,8677,8695,8677,8678,8695,8678,2042,8678,8677,2041,2038,2041,8676,8676,2041,8677,8676,8677,2039,2039,8677,2040,8694,2043,8679,8694,8679,2044,8694,2044,2045,2041,2044,8678,8678,2044,8679,8678,8679,2042,2042,8679,2043,8682,2046,8680,8682,8680,2048,8680,2046,2047,2044,2047,2045,2045,2047,2046,2047,1617,8680,8680,1617,8681,8680,8681,2048,2048,8681,1619,8685,2049,8683,8685,8683,2050,8685,2050,8684,8684,2050,2051,2048,2050,8682,8682,2050,8683,8682,8683,2046,2046,8683,2049,2050,1620,2051,2051,1620,1622,14355,14353,14356,14353,14354,14356,14356,14354,14357,14355,14356,14358,14358,14356,14359,14356,14357,14359,2059,2052,14354,2059,14354,14353,2059,14353,8692,8692,14353,2058,2058,14353,14355,2058,14355,2054,2054,14355,8688,8688,14355,14358,8688,14358,2053,2053,14358,14359,2053,14359,8686,8686,14359,14357,8686,14357,8687,8687,14357,14354,8687,14354,2052,2051,2053,8684,8684,2053,8686,8684,8686,8685,8685,8686,8687,8685,8687,2049,2049,8687,2052,2057,2055,8689,2057,8689,8690,8690,8689,2056,2053,2056,8688,8688,2056,8689,8688,8689,2054,2054,8689,2055,2056,1629,8690,8690,1629,8691,8690,8691,2057,2057,8691,1631,2057,1632,2055,2055,1632,1634,14361,14360,14362,14363,14361,14364,14364,14361,14365,14361,14362,14365,14365,14362,14366,14363,14364,14367,14367,14364,14368,14368,14364,14369,14364,14365,14369,8693,2060,14366,8693,14366,14362,8693,14362,14360,8693,14360,2062,2062,14360,2064,2064,14360,14361,2064,14361,14363,2064,14363,2063,2063,14363,14367,2063,14367,2061,2061,14367,2058,2058,14367,14368,2058,14368,8692,8692,14368,14369,8692,14369,2059,2059,14369,14365,2059,14365,14366,2059,14366,2060,2060,2052,2059,2054,2061,2058,1637,2062,2064,2061,1635,2063,2062,2043,8693,8693,2043,8694,8693,8694,2060,2060,8694,2045,9241,2065,8696,9241,8696,8697,9241,8697,2067,8697,8696,2066,2042,2066,8695,8695,2066,8696,8695,8696,2040,2040,8696,2065,9261,2068,14370,9261,14370,2070,2070,14370,8699,8699,14370,8698,8699,8698,2069,8698,14370,2068,2066,2069,8697,8697,2069,8698,8697,8698,2067,2067,8698,2068,2073,2071,8702,8702,2071,8700,8702,8700,8701,8701,8700,2072,2069,2072,8699,8699,2072,8700,8699,8700,2070,2070,8700,2071,2076,2074,8704,2076,8704,8703,2076,8703,2075,2072,2075,8701,8701,2075,8703,8701,8703,8702,8702,8703,8704,8702,8704,2073,2073,8704,2074,8709,2077,8705,8709,8705,8706,8709,8706,2079,8705,2077,2078,2075,2078,2076,2076,2078,2077,2078,1647,8705,8705,1647,8707,8705,8707,8706,8706,8707,8708,8706,8708,2079,2079,8708,1649,2082,2080,14371,2082,14371,8712,8712,14371,8711,8711,14371,8710,8711,8710,2081,8710,14371,2080,2079,2081,8709,8709,2081,8710,8709,8710,2077,2077,8710,2080,8716,2083,8714,8716,8714,8715,8715,8714,8713,8715,8713,2085,2085,8713,2084,2081,2084,8711,8711,2084,8713,8711,8713,8712,8712,8713,8714,8712,8714,2082,2082,8714,2083,2084,1658,2085,2085,1658,1660,14373,14372,14374,14375,14373,14376,14373,14374,14376,14376,14374,14377,14375,14376,14378,14378,14376,14379,14376,14377,14379,8726,2086,14377,8726,14377,14374,8726,14374,8725,8725,14374,14372,8725,14372,2088,2088,14372,8721,8721,14372,14373,8721,14373,8720,8720,14373,14375,8720,14375,8719,8719,14375,14378,8719,14378,2087,2087,14378,8717,8717,14378,8718,8718,14378,14379,8718,14379,2086,2086,14379,14377,2085,2087,8715,8715,2087,8717,8715,8717,8716,8716,8717,8718,8716,8718,2083,2083,8718,2086,2087,1661,8719,8719,1661,8722,8719,8722,8720,8720,8722,8723,8720,8723,8721,8721,8723,8724,8721,8724,2088,2088,8724,1663,8730,2089,8728,8730,8728,14380,8730,14380,8729,8729,14380,8727,8729,8727,2091,2091,8727,2090,8727,14380,8728,2088,2090,8725,8725,2090,8727,8725,8727,8726,8726,8727,8728,8726,8728,2086,2086,8728,2089,2090,1664,2091,2091,1664,1666,14384,14382,14385,14382,14381,14385,14385,14381,14383,14385,14383,14387,14387,14383,14386,2589,2092,14384,2589,14384,14385,2589,14385,14387,2589,14387,2590,2590,14387,14386,2590,14386,2094,2094,14386,8734,8734,14386,14383,8734,14383,8733,8733,14383,14381,8733,14381,2093,2093,14381,8731,8731,14381,14382,8731,14382,8732,8732,14382,14384,8732,14384,2092,2091,2093,8729,8729,2093,8731,8729,8731,8730,8730,8731,8732,8730,8732,2089,2089,8732,2092,2097,2095,8736,2097,8736,8738,8738,8736,8735,8738,8735,8737,8737,8735,2096,2093,2096,8733,8733,2096,8735,8733,8735,8734,8734,8735,8736,8734,8736,2094,2094,8736,2095,9288,2098,8741,9288,8741,8740,9288,8740,9289,9289,8740,2099,9289,2099,2100,2096,8739,8737,8737,8739,14388,8737,14388,8738,8738,14388,14389,8738,14389,2097,2097,14389,8742,8739,2099,14388,14388,2099,8740,14388,8740,14389,14389,8740,8741,14389,8741,8742,8742,8741,2098,9302,2101,2102,9302,2102,8743,9302,8743,2103,2099,2102,2100,2100,2102,2101,2106,2104,8744,2106,8744,2105,2102,2105,8743,8743,2105,8744,8743,8744,2103,2103,8744,2104,2109,2107,8745,8745,2107,2108,2105,2108,2106,2106,2108,2107,8753,2110,8748,8753,8748,2112,8748,2110,8747,8747,2110,8746,8747,8746,2111,2108,2111,8745,8745,2111,8746,8745,8746,2109,2109,8746,2110,2111,8749,8747,8747,8749,14390,8747,14390,8748,8748,14390,14391,8748,14391,2112,2112,14391,8752,8749,1669,14390,14390,1669,8750,14390,8750,14391,14391,8750,8751,14391,8751,8752,8752,8751,1671,2115,2113,8754,2115,8754,8755,8755,8754,2114,2112,2114,8753,8753,2114,8754,8753,8754,2110,2110,8754,2113,2118,2116,8756,2118,8756,2117,2114,2117,8755,8755,2117,8756,8755,8756,2115,2115,8756,2116,2117,8757,2118,2118,8757,8759,8757,8758,8759,8759,8758,8760,8758,1675,8760,8760,1675,1677,2121,2119,2120,2118,8761,2116,2116,8761,8764,8761,8762,8764,8764,8762,8765,8762,8763,8765,8765,8763,8766,8763,2120,8766,8766,2120,2119,2126,2122,2123,2126,2123,2125,2125,2123,8771,2125,8771,2124,2120,8767,2121,2121,8767,8769,8767,8768,8769,8769,8768,8770,8768,2123,8770,8770,2123,2122,2123,8772,8771,8771,8772,14392,8771,14392,2124,2124,14392,8774,8772,1678,14392,14392,1678,8773,14392,8773,8774,8774,8773,1680,2129,2127,2126,2129,2126,2125,2129,2125,8775,8775,2125,2128,2127,2122,2126,2124,2128,2125,2132,2130,8776,2132,8776,8777,8777,8776,2131,2128,2131,8775,8775,2131,8776,8775,8776,2129,2129,8776,2130,8787,2133,8778,8787,8778,2134,8787,2134,2135,2131,2134,8777,8777,2134,8778,8777,8778,2132,2132,8778,2133,2134,8779,2135,2135,8779,8783,8779,8780,8783,8783,8780,8784,8780,8781,8784,8784,8781,8785,8781,8782,8785,8785,8782,8786,8782,1681,8786,8786,1681,1683,9334,2136,14394,9334,14394,14393,9334,14393,9335,9335,14393,8790,9335,8790,2138,8790,14393,8789,8789,14393,2137,2137,14393,8788,8788,14393,14394,8788,14394,2136,2135,2137,8787,8787,2137,8788,8787,8788,2133,2133,8788,2136,9346,2139,14395,9346,14395,2143,9346,2143,2141,2143,14395,2142,2142,14395,14396,2142,14396,8791,2142,8791,2140,8791,14396,8792,8792,14396,2139,2139,14396,14395,2137,2140,8789,8789,2140,8791,8789,8791,8790,8790,8791,8792,8790,8792,2138,2138,8792,2139,2146,2144,2143,2146,2143,8794,8794,2143,2142,8794,2142,8793,8793,2142,2145,2144,2141,2143,2140,2145,2142,8806,2147,14397,8806,14397,8805,8805,14397,14398,8805,14398,8799,8805,8799,2149,8799,14398,2148,2148,14398,8796,8796,14398,14397,8796,14397,8797,8797,14397,2147,2145,8795,8793,8793,8795,14399,8793,14399,8794,8794,14399,14400,8794,14400,2146,2146,14400,8798,8795,2148,14399,14399,2148,8796,14399,8796,14400,14400,8796,8797,14400,8797,8798,8798,8797,2147,2148,8800,8799,8799,8800,14401,8799,14401,2149,2149,14401,8803,8800,8801,14401,14401,8801,14402,14401,14402,8803,8803,14402,8804,8801,1687,14402,14402,1687,8802,14402,8802,8804,8804,8802,1689,2152,2150,8808,2152,8808,8809,8809,8808,8807,8809,8807,2151,2149,2151,8805,8805,2151,8807,8805,8807,8806,8806,8807,8808,8806,8808,2147,2147,8808,2150,13844,2153,14403,13844,14403,14404,13844,14404,8812,13844,8812,2155,8812,14404,8811,8811,14404,8810,8811,8810,2154,8810,14404,14403,8810,14403,2153,2151,2154,8809,8809,2154,8810,8809,8810,2152,2152,8810,2153,2158,2156,8814,2158,8814,8813,2158,8813,2157,2154,2157,8811,8811,2157,8813,8811,8813,8812,8812,8813,8814,8812,8814,2155,2155,8814,2156,2161,2159,2160,2157,8815,2158,2158,8815,8816,8815,2160,8816,8816,2160,2159,2160,1696,2161,2161,1696,1698,2161,8817,2159,2159,8817,8820,8817,8818,8820,8820,8818,8821,8818,8819,8821,8821,8819,8822,8819,1726,8822,8822,1726,1728,2164,2162,2163,2158,8823,2156,2156,8823,8825,8823,8824,8825,8825,8824,8826,8824,2163,8826,8826,2163,2162,2163,8827,2164,2164,8827,8830,8827,8828,8830,8830,8828,8831,8828,8829,8831,8831,8829,8832,8829,1729,8832,8832,1729,1731,8841,2165,2166,8841,2166,8839,8841,8839,2167,2164,8833,2162,2162,8833,8836,8833,8834,8836,8836,8834,8837,8834,8835,8837,8837,8835,8838,8835,2166,8838,8838,2166,2165,2166,1735,8839,8839,1735,8840,8839,8840,2167,2167,8840,1737,13842,2168,8842,13842,8842,2170,2170,8842,2169,2167,2169,8841,8841,2169,8842,8841,8842,2165,2165,8842,2168,2173,2171,2172,2169,2172,2170,2170,2172,2171,2176,2174,2175,2172,2175,2173,2173,2175,2174,9365,2177,8843,9365,8843,8844,9365,8844,2179,8843,2177,2178,2175,2178,2176,2176,2178,2177,8849,2180,8847,8849,8847,8846,8849,8846,2182,2182,8846,2181,2178,8845,8843,8843,8845,14405,8843,14405,8844,8844,14405,14406,8844,14406,2179,2179,14406,8848,8845,2181,14405,14405,2181,8846,14405,8846,14406,14406,8846,8847,14406,8847,8848,8848,8847,2180,2181,1744,2182,2182,1744,1746,2185,2183,14407,2185,14407,8851,8851,14407,8850,8851,8850,2184,8850,14407,2183,2182,2184,8849,8849,2184,8850,8849,8850,2180,2180,8850,2183,2184,1747,8851,8851,1747,8852,8851,8852,2185,2185,8852,1749,8853,2186,2187,8853,2187,2188,2185,2187,2183,2183,2187,2186,2187,1753,2188,2188,1753,1755,9380,2189,8854,9380,8854,9381,9381,8854,2190,9381,2190,2191,2188,2190,8853,8853,2190,8854,8853,8854,2186,2186,8854,2189,2194,2192,2193,2190,2193,2191,2191,2193,2192,2193,1759,2194,2194,1759,1761,2197,2195,2196,2194,2196,2192,2192,2196,2195,2200,2198,2199,2196,8855,2197,2197,8855,8860,8855,8856,8860,8860,8856,8861,8856,8857,8861,8861,8857,8862,8857,8858,8862,8862,8858,8863,8858,8859,8863,8863,8859,8864,8859,2199,8864,8864,2199,2198,2203,2201,2202,2199,8865,2200,2200,8865,8866,8865,2202,8866,8866,2202,2201,2206,2204,8867,8867,2204,2205,2202,2205,2203,2203,2205,2204,2205,8868,8867,8867,8868,14408,8867,14408,2206,2206,14408,8870,8868,1765,14408,14408,1765,8869,14408,8869,8870,8870,8869,1767,9415,2207,2208,9415,2208,8871,9415,8871,2209,2206,2208,2204,2204,2208,2207,8883,2210,14409,8883,14409,8876,8883,8876,2212,8876,14409,8875,8875,14409,8873,8875,8873,2211,8873,14409,2210,2208,8872,8871,8871,8872,14410,8871,14410,2209,2209,14410,8874,8872,2211,14410,14410,2211,8873,14410,8873,8874,8874,8873,2210,2215,2213,8878,2215,8878,8877,2215,8877,8879,8879,8877,2214,2211,2214,8875,8875,2214,8877,8875,8877,8876,8876,8877,8878,8876,8878,2212,2212,8878,2213,8881,2216,8880,8881,8880,2218,2218,8880,2217,2214,2217,8879,8879,2217,8880,8879,8880,2215,2215,8880,2216,2217,1768,2218,2218,1768,1770,2218,1783,8881,8881,1783,8882,8881,8882,2216,2216,8882,1785,2215,1786,2213,2213,1786,1788,2221,2219,8885,2221,8885,2220,2212,8884,8883,8883,8884,14411,8883,14411,2210,2210,14411,8886,8884,2220,14411,14411,2220,8885,14411,8885,8886,8886,8885,2219,9433,2222,8887,9433,8887,2224,8887,2222,2223,2220,2223,2221,2221,2223,2222,2227,2225,14412,2227,14412,8889,8889,14412,8888,8889,8888,2226,8888,14412,2225,2223,2226,8887,8887,2226,8888,8887,8888,2224,2224,8888,2225,9445,2228,8890,9445,8890,2230,2230,8890,2229,2226,2229,8889,8889,2229,8890,8889,8890,2227,2227,8890,2228,2233,2231,2232,2229,8891,2230,2230,8891,8892,8891,2232,8892,8892,2232,2231,2236,2234,2235,2232,2235,2233,2233,2235,2234,2235,1789,2236,2236,1789,1791,8895,2237,8893,8895,8893,2239,8893,2237,2238,2236,2238,2234,2234,2238,2237,2242,2240,8894,2242,8894,2241,2238,2241,8893,8893,2241,8894,8893,8894,2239,2239,8894,2240,2241,1792,2242,2242,1792,1794,2242,1795,2240,2240,1795,1797,2245,2243,8897,8897,2243,8896,8897,8896,2244,2239,2244,8895,8895,2244,8896,8895,8896,2237,2237,8896,2243,9449,2246,8898,9449,8898,2248,2248,8898,2247,2244,2247,8897,8897,2247,8898,8897,8898,2245,2245,8898,2246,2251,2249,2250,2247,8899,2248,2248,8899,8902,8899,8900,8902,8902,8900,8903,8900,8901,8903,8903,8901,8904,8901,2250,8904,8904,2250,2249,2254,2252,2253,2250,2253,2251,2251,2253,2252,2253,1803,2254,2254,1803,1805,2257,2255,2256,2254,2256,2252,2252,2256,2255,9465,2258,8907,9465,8907,2260,8907,2258,2259,2256,8905,2257,2257,8905,8906,8905,2259,8906,8906,2259,2258,14416,14413,14417,14413,14414,14417,14415,14416,14418,14418,14416,14419,14416,14417,14419,14419,14417,14420,2783,2261,14414,2783,14414,14413,2783,14413,2784,2784,14413,14415,2784,14415,2263,2263,14415,14418,2263,14418,8911,8911,14418,8910,8910,14418,14419,8910,14419,8909,8909,14419,14420,8909,14420,2262,2262,14420,8908,8908,14420,14417,8908,14417,14414,8908,14414,2261,14415,14413,14416,2259,2262,8907,8907,2262,8908,8907,8908,2260,2260,8908,2261,8917,2264,8914,8917,8914,14421,8917,14421,2266,2266,14421,14422,2266,14422,8915,8915,14422,8912,8915,8912,2265,8912,14422,8913,8913,14422,14421,8913,14421,8914,2262,2265,8909,8909,2265,8912,8909,8912,8910,8910,8912,8913,8910,8913,8911,8911,8913,8914,8911,8914,2263,2263,8914,2264,2265,1809,8915,8915,1809,8916,8915,8916,2266,2266,8916,1811,2269,2267,8918,2269,8918,2268,2266,2268,8917,8917,2268,8918,8917,8918,2264,2264,8918,2267,8921,2270,2271,8921,2271,8919,8921,8919,2272,2268,2271,2269,2269,2271,2270,2271,1812,8919,8919,1812,8920,8919,8920,2272,2272,8920,1814,2275,2273,2277,2277,2273,2276,2276,2273,8922,2276,8922,2274,2272,2274,8921,8921,2274,8922,8921,8922,2270,2270,8922,2273,9499,2278,2277,9499,2277,14423,9499,14423,2280,2280,14423,14424,2280,14424,8923,8923,14424,2276,8923,2276,2279,2276,14424,2277,2277,14424,14423,2278,2275,2277,2274,2279,2276,2283,2281,14425,2283,14425,8926,8926,14425,8925,8925,14425,8924,8925,8924,2282,8924,14425,2281,2279,2282,8923,8923,2282,8924,8923,8924,2280,2280,8924,2281,9508,2284,8928,9508,8928,14426,9508,14426,9509,9509,14426,2286,2286,14426,2285,2285,14426,8927,8927,14426,8928,2282,2285,8925,8925,2285,8927,8925,8927,8926,8926,8927,8928,8926,8928,2283,2283,8928,2284,2289,2287,2288,2285,2288,2286,2286,2288,2287,2292,2290,2291,2288,2291,2289,2289,2291,2290,2291,8929,2292,2292,8929,8931,8929,8930,8931,8931,8930,8932,8930,1815,8932,8932,1815,1817,2295,2293,2294,2292,2294,2290,2290,2294,2293,2298,2296,2297,2294,8933,2295,2295,8933,8937,8933,8934,8937,8937,8934,8938,8934,8935,8938,8938,8935,8939,8935,8936,8939,8939,8936,8940,8936,2297,8940,8940,2297,2296,8951,2299,2300,8951,2300,2301,2297,2300,2298,2298,2300,2299,2304,2302,2303,2300,8941,2301,2301,8941,8942,8941,2303,8942,8942,2303,2302,2303,1820,2304,2304,1820,1822,8948,2305,8943,8948,8943,8944,8948,8944,8947,8947,8944,2307,8943,2305,2306,2304,2306,2302,2302,2306,2305,2306,1823,8943,8943,1823,8945,8943,8945,8944,8944,8945,8946,8944,8946,2307,2307,8946,1825,2307,1829,8947,8947,1829,8949,8947,8949,8948,8948,8949,8950,8948,8950,2305,2305,8950,1831,2310,2308,8953,8953,2308,8952,8953,8952,2309,2301,2309,8951,8951,2309,8952,8951,8952,2299,2299,8952,2308,8959,2311,14427,8959,14427,8956,8959,8956,2313,8956,14427,8955,8955,14427,8954,8955,8954,2312,8954,14427,2311,2309,2312,8953,8953,2312,8954,8953,8954,2310,2310,8954,2311,2312,1847,8955,8955,1847,8957,8955,8957,8956,8956,8957,8958,8956,8958,2313,2313,8958,1849,9511,2314,8964,9511,8964,2315,9511,2315,2316,2313,8960,8959,8959,8960,14428,8959,14428,2311,2311,14428,8965,8960,8961,14428,14428,8961,14429,14428,14429,8965,8965,14429,8966,8961,8962,14429,14429,8962,14430,14429,14430,8966,8966,14430,8967,8962,8963,14430,14430,8963,14431,14430,14431,8967,8967,14431,8968,8963,2315,14431,14431,2315,8964,14431,8964,8968,8968,8964,2314,2319,2317,2318,2315,2318,2316,2316,2318,2317,2322,2320,2321,2318,8969,2319,2319,8969,8973,8969,8970,8973,8973,8970,8974,8970,8971,8974,8974,8971,8975,8971,8972,8975,8975,8972,8976,8972,2321,8976,8976,2321,2320,9527,2323,8978,9527,8978,2325,8978,2323,8977,8977,2323,2324,2321,2324,2322,2322,2324,2323,13827,2326,8980,13827,8980,8979,13827,8979,2328,2328,8979,2327,2324,2327,8977,8977,2327,8979,8977,8979,8978,8978,8979,8980,8978,8980,2325,2325,8980,2326,2331,2329,2330,2327,2330,2328,2328,2330,2329,2330,8981,2331,2331,8981,8982,8981,1850,8982,8982,1850,1852,13826,2332,8983,13826,8983,8984,13826,8984,2334,8983,2332,2333,2331,2333,2329,2329,2333,2332,2337,2335,8986,2337,8986,8985,2337,8985,2336,2333,2336,8983,8983,2336,8985,8983,8985,8984,8984,8985,8986,8984,8986,2334,2334,8986,2335,13814,2338,2339,13814,2339,13815,13815,2339,8987,13815,8987,2340,2336,2339,2337,2337,2339,2338,2343,2341,8990,8990,2341,8989,8989,2341,8988,8989,8988,2342,2339,2342,8987,8987,2342,8988,8987,8988,2340,2340,8988,2341,2346,2344,8992,2346,8992,8991,2346,8991,2345,2342,2345,8989,8989,2345,8991,8989,8991,8990,8990,8991,8992,8990,8992,2343,2343,8992,2344,2345,1853,2346,2346,1853,1855,2346,1862,2344,2344,1862,1864,9000,2347,2348,9000,2348,8993,9000,8993,8999,8999,8993,2349,2343,2348,2341,2341,2348,2347,2348,8994,8993,8993,8994,14432,8993,14432,2349,2349,14432,8997,8994,8995,14432,14432,8995,14433,14432,14433,8997,8997,14433,8998,8995,1873,14433,14433,1873,8996,14433,8996,8998,8998,8996,1875,13822,2350,9002,13822,9002,14435,13822,14435,13823,13823,14435,14434,13823,14434,2352,2352,14434,9003,9003,14434,9001,9003,9001,2351,9001,14434,9002,9002,14434,14435,2349,2351,8999,8999,2351,9001,8999,9001,9000,9000,9001,9002,9000,9002,2347,2347,9002,2350,14436,14437,14439,14439,14437,14440,14437,14438,14440,14440,14438,14441,6381,2353,14438,6381,14438,14437,6381,14437,6380,6380,14437,14436,6380,14436,2355,2355,14436,9006,9006,14436,14439,9006,14439,9005,9005,14439,2354,2354,14439,14440,2354,14440,9004,9004,14440,14441,9004,14441,2353,2353,14441,14438,2351,2354,9003,9003,2354,9004,9003,9004,2352,2352,9004,2353,9543,2356,9009,9543,9009,14442,9543,14442,2358,2358,14442,9011,9011,14442,9008,9011,9008,2357,9008,14442,9009,2354,9007,9005,9005,9007,14443,9005,14443,9006,9006,14443,14444,9006,14444,2355,2355,14444,9010,9007,2357,14443,14443,2357,9008,14443,9008,14444,14444,9008,9009,14444,9009,9010,9010,9009,2356,2361,2359,9012,2361,9012,2360,2357,2360,9011,9011,2360,9012,9011,9012,2358,2358,9012,2359,2364,2362,2363,2360,2363,2361,2361,2363,2362,2363,1879,2364,2364,1879,1881,2367,2365,2366,2364,2366,2362,2362,2366,2365,2366,1882,2367,2367,1882,1884,2370,2368,2369,2367,9013,2365,2365,9013,9015,9013,9014,9015,9015,9014,9016,9014,2369,9016,9016,2369,2368,9567,2371,2372,9567,2372,2373,2369,2372,2370,2370,2372,2371,2376,2374,9021,9021,2374,2375,2372,9017,2373,2373,9017,9019,9017,9018,9019,9019,9018,9020,9018,2375,9020,9020,2375,2374,9025,2377,14445,9025,14445,9023,9025,9023,2379,9023,14445,9022,9023,9022,2378,9022,14445,2377,2375,2378,9021,9021,2378,9022,9021,9022,2376,2376,9022,2377,2378,1885,9023,9023,1885,9024,9023,9024,2379,2379,9024,1887,2382,2380,9028,2382,9028,2381,2379,9026,9025,9025,9026,14446,9025,14446,2377,2377,14446,9029,9026,9027,14446,14446,9027,14447,14446,14447,9029,9029,14447,9030,9027,2381,14447,14447,2381,9028,14447,9028,9030,9030,9028,2380,2381,1891,2382,2382,1891,1893,9581,2383,9033,9581,9033,2385,9033,2383,2384,2382,9031,2380,2380,9031,9032,9031,2384,9032,9032,2384,2383,9606,2386,9034,9606,9034,9607,9607,9034,2387,9607,2387,2388,2384,2387,9033,9033,2387,9034,9033,9034,2385,2385,9034,2386,9042,2389,14448,9042,14448,9041,9041,14448,9038,9041,9038,2391,9038,14448,9037,9037,14448,2390,2390,14448,2389,2387,9035,2388,2388,9035,9036,9035,2390,9036,9036,2390,2389,2390,1896,9037,9037,1896,9039,9037,9039,9038,9038,9039,9040,9038,9040,2391,2391,9040,1898,9047,2392,14449,9047,14449,14451,9047,14451,2394,2394,14451,9045,9045,14451,14450,9045,14450,2393,2393,14450,9043,9043,14450,9044,9044,14450,14449,9044,14449,2392,14449,14450,14451,2391,2393,9041,9041,2393,9043,9041,9043,9042,9042,9043,9044,9042,9044,2389,2389,9044,2392,2393,1899,9045,9045,1899,9046,9045,9046,2394,2394,9046,1901,2397,2395,9048,2397,9048,9049,9049,9048,2396,2394,2396,9047,9047,2396,9048,9047,9048,2392,2392,9048,2395,9611,2398,9050,9611,9050,9052,9611,9052,2400,9052,9050,9051,9051,9050,2399,2396,2399,9049,9049,2399,9050,9049,9050,2397,2397,9050,2398,2403,2401,9054,2403,9054,9055,9055,9054,9053,9055,9053,2402,2399,2402,9051,9051,2402,9053,9051,9053,9052,9052,9053,9054,9052,9054,2400,2400,9054,2401,2402,1905,9055,9055,1905,9056,9055,9056,2403,2403,9056,1907,2406,2404,2405,2403,2405,2401,2401,2405,2404,2409,2407,2408,2405,9057,2406,2406,9057,9059,9057,9058,9059,9059,9058,9060,9058,2408,9060,9060,2408,2407,2412,2410,9063,9063,2410,2411,2408,9061,2409,2409,9061,9062,9061,2411,9062,9062,2411,2410,2411,1908,9063,9063,1908,9064,9063,9064,2412,2412,9064,1910,2415,2413,2414,2412,9065,2410,2410,9065,9066,9065,2414,9066,9066,2414,2413,2418,2416,2417,2414,2417,2415,2415,2417,2416,2417,9067,2418,2418,9067,9069,9067,9068,9069,9069,9068,9070,9068,1914,9070,9070,1914,1916,9637,2419,9071,9637,9071,2421,9071,2419,2420,2418,2420,2416,2416,2420,2419,9650,2422,9072,9650,9072,14452,9650,14452,9651,9651,14452,2424,2424,14452,9073,9073,14452,2423,2423,14452,9072,2420,2423,9071,9071,2423,9072,9071,9072,2421,2421,9072,2422,9089,2425,14453,9089,14453,9078,9089,9078,2427,9078,14453,9077,9077,14453,9075,9077,9075,2426,9075,14453,2425,2423,9074,9073,9073,9074,14454,9073,14454,2424,2424,14454,9076,9074,2426,14454,14454,2426,9075,14454,9075,9076,9076,9075,2425,2430,2428,9080,2430,9080,9079,2430,9079,9081,9081,9079,2429,2426,2429,9077,9077,2429,9079,9077,9079,9078,9078,9079,9080,9078,9080,2427,2427,9080,2428,2429,1920,9081,9081,1920,9082,9081,9082,2430,2430,9082,1922,9087,2431,9085,9087,9085,2433,9085,2431,2432,2430,9083,2428,2428,9083,9084,9083,2432,9084,9084,2432,2431,2432,1929,9085,9085,1929,9086,9085,9086,2433,2433,9086,1931,2433,1941,9087,9087,1941,9088,9087,9088,2431,2431,9088,1943,2436,2434,9091,9091,2434,9090,9091,9090,2435,2427,2435,9089,9089,2435,9090,9089,9090,2425,2425,9090,2434,9095,2437,9092,9095,9092,2438,9095,2438,2439,2435,2438,9091,9091,2438,9092,9091,9092,2436,2436,9092,2437,2438,9093,2439,2439,9093,9094,9093,1944,9094,9094,1944,1946,9677,2440,14456,9677,14456,2444,9677,2444,2442,2444,14456,14455,2444,14455,2443,2443,14455,9096,2443,9096,2441,9096,14455,2440,2440,14455,14456,2439,2441,9095,9095,2441,9096,9095,9096,2437,2437,9096,2440,9683,2445,2444,9683,2444,2447,2447,2444,9097,9097,2444,2443,9097,2443,2446,2445,2442,2444,2441,2446,2443,2450,2448,9098,2450,9098,9099,9099,9098,2449,2446,2449,9097,9097,2449,9098,9097,9098,2447,2447,9098,2448,2453,2451,9101,9101,2451,9100,9101,9100,2452,2449,2452,9099,9099,2452,9100,9099,9100,2450,2450,9100,2451,2452,1947,9101,9101,1947,9102,9101,9102,2453,2453,9102,1949,9705,2454,2455,9705,2455,2456,2453,9103,2451,2451,9103,9104,9103,2455,9104,9104,2455,2454,2459,2457,2458,2455,2458,2456,2456,2458,2457,2458,1950,2459,2459,1950,1952,2462,2460,2461,2459,9105,2457,2457,9105,9107,9105,9106,9107,9107,9106,9108,9106,2461,9108,9108,2461,2460,2465,2463,2464,2461,2464,2462,2462,2464,2463,2464,1959,2465,2465,1959,1961,2465,1962,2463,2463,1962,1964,9713,2466,9111,9713,9111,9112,9713,9112,2468,9111,2466,2467,2462,9109,2460,2460,9109,9110,9109,2467,9110,9110,2467,2466,14458,14457,14459,14460,14458,14461,14458,14459,14461,14461,14459,14462,14460,14461,14463,14463,14461,14464,14461,14462,14464,6378,2469,14457,6378,14457,14458,6378,14458,13809,13809,14458,14460,13809,14460,6379,6379,14460,14463,6379,14463,2471,2471,14463,9115,9115,14463,14464,9115,14464,2470,2470,14464,14462,2470,14462,9113,9113,14462,14459,9113,14459,9114,9114,14459,14457,9114,14457,2469,2467,2470,9111,9111,2470,9113,9111,9113,9112,9112,9113,9114,9112,9114,2468,2468,9114,2469,2474,2472,9120,9120,2472,9117,9120,9117,9119,9119,9117,2473,2470,9116,9115,9115,9116,14465,9115,14465,2471,2471,14465,9118,9116,2473,14465,14465,2473,9117,14465,9117,9118,9118,9117,2472,2473,1968,9119,9119,1968,9121,9119,9121,9120,9120,9121,9122,9120,9122,2474,2474,9122,1970,2477,2475,2476,2474,2476,2472,2472,2476,2475,2476,1974,2477,2477,1974,1976,6379,2478,2481,6379,2481,9129,6379,9129,13809,13809,9129,6378,6378,9129,2482,6378,2482,2480,2481,2478,2479,2477,9123,2475,2475,9123,9126,9123,9124,9126,9126,9124,9127,9124,9125,9127,9127,9125,9128,9125,2479,9128,9128,2479,2478,3001,2483,2482,3001,2482,9129,3001,9129,3002,3002,9129,14466,3002,14466,2485,2485,14466,2484,2484,14466,2481,2481,14466,9129,2483,2480,2482,2479,2484,2481,2488,2486,2487,2484,9130,2485,2485,9130,9131,9130,2487,9131,9131,2487,2486,2487,9132,2488,2488,9132,9136,9132,9133,9136,9136,9133,9137,9133,9134,9137,9137,9134,9138,9134,9135,9138,9138,9135,9139,9135,1977,9139,9139,1977,1979,9745,2489,2490,9745,2490,9140,9745,9140,9746,9746,9140,9141,9746,9141,2491,2488,2490,2486,2486,2490,2489,2494,2492,14467,2494,14467,9147,9147,14467,14468,9147,14468,9146,9146,14468,9143,9146,9143,2493,9143,14468,9144,9144,14468,14467,9144,14467,2492,2490,9142,9140,9140,9142,14469,9140,14469,9141,9141,14469,14470,9141,14470,2491,2491,14470,9145,9142,2493,14469,14469,2493,9143,14469,9143,14470,14470,9143,9144,14470,9144,9145,9145,9144,2492,9152,2495,9149,9152,9149,14471,9152,14471,2497,2497,14471,9150,9150,14471,9148,9150,9148,2496,9148,14471,9149,2493,2496,9146,9146,2496,9148,9146,9148,9147,9147,9148,9149,9147,9149,2494,2494,9149,2495,2496,1980,9150,9150,1980,9151,9150,9151,2497,2497,9151,1982,9771,2498,9154,9771,9154,14472,9771,14472,9772,9772,14472,9156,9772,9156,2500,9156,14472,2499,2499,14472,9154,2497,9153,9152,9152,9153,14473,9152,14473,2495,2495,14473,9155,9153,2499,14473,14473,2499,9154,14473,9154,9155,9155,9154,2498,9158,2501,9157,9158,9157,2502,9158,2502,2503,2499,2502,9156,9156,2502,9157,9156,9157,2500,2500,9157,2501,2502,1986,2503,2503,1986,1988,2506,2504,14474,2506,14474,9160,9160,14474,9159,9160,9159,2505,9159,14474,2504,2503,2505,9158,9158,2505,9159,9158,9159,2501,2501,9159,2504,2505,1992,9160,9160,1992,9161,9160,9161,2506,2506,9161,1994,2509,2507,2508,2506,9162,2504,2504,9162,9164,9162,9163,9164,9164,9163,9165,9163,2508,9165,9165,2508,2507,9790,2510,9166,9790,9166,2512,9166,2510,2511,2508,2511,2509,2509,2511,2510,2515,2513,9170,2515,9170,2514,2511,9167,9166,9166,9167,14475,9166,14475,2512,2512,14475,9171,9167,9168,14475,14475,9168,14476,14475,14476,9171,9171,14476,9172,9168,9169,14476,14476,9169,14477,14476,14477,9172,9172,14477,9173,9169,2514,14477,14477,2514,9170,14477,9170,9173,9173,9170,2513,9176,2516,9174,9176,9174,2518,9174,2516,2517,2514,2517,2515,2515,2517,2516,2517,1995,9174,9174,1995,9175,9174,9175,2518,2518,9175,1997,14478,14479,14480,14480,14479,14481,2523,2519,9177,2523,9177,14481,2523,14481,9183,9183,14481,14479,9183,14479,9182,9182,14479,14478,9182,14478,2522,2522,14478,9179,2522,9179,2521,9179,14478,9178,9178,14478,14480,9178,14480,2520,2520,14480,14481,2520,14481,9177,2518,2520,9176,9176,2520,9177,9176,9177,2516,2516,9177,2519,2520,2010,9178,9178,2010,9180,9178,9180,9179,9179,9180,9181,9179,9181,2521,2521,9181,2012,9800,2524,2523,9800,2523,14483,9800,14483,2526,2526,14483,14482,2526,14482,9185,9185,14482,9184,9184,14482,9182,9184,9182,2522,9184,2522,2525,9182,14482,9183,9183,14482,14483,9183,14483,2523,2524,2519,2523,2521,2525,2522,9806,2527,14484,9806,14484,9189,9806,9189,2529,9189,14484,9188,9188,14484,9187,9188,9187,9186,9188,9186,2528,9187,14484,2527,2525,2528,9184,9184,2528,9186,9184,9186,9185,9185,9186,9187,9185,9187,2526,2526,9187,2527,2532,2530,2534,2534,2530,9193,9193,2530,9191,9193,9191,9192,9192,9191,9190,9192,9190,2533,2533,9190,2531,2528,2531,9188,9188,2531,9190,9188,9190,9189,9189,9190,9191,9189,9191,2529,2529,9191,2530,2537,2535,2534,2537,2534,9193,2537,9193,9195,9195,9193,9192,9195,9192,9194,9194,9192,2533,9194,2533,2536,2535,2532,2534,2531,2536,2533,9207,2538,9197,9207,9197,9196,9207,9196,9206,9206,9196,2539,9206,2539,2540,2536,2539,9194,9194,2539,9196,9194,9196,9195,9195,9196,9197,9195,9197,2537,2537,9197,2538,2539,9198,2540,2540,9198,9202,9198,9199,9202,9202,9199,9203,9199,9200,9203,9203,9200,9204,9200,9201,9204,9204,9201,9205,9201,2019,9205,9205,2019,2021,13805,2541,9209,13805,9209,14485,13805,14485,13806,13806,14485,14486,13806,14486,2543,2543,14486,9210,9210,14486,2542,2542,14486,9208,9208,14486,14485,9208,14485,9209,2540,2542,9206,9206,2542,9208,9206,9208,9207,9207,9208,9209,9207,9209,2538,2538,9209,2541,9218,2544,9213,9218,9213,2546,9213,2544,9212,9212,2544,9211,9212,9211,2545,2542,2545,9210,9210,2545,9211,9210,9211,2543,2543,9211,2544,2545,9214,9212,9212,9214,14487,9212,14487,9213,9213,14487,14488,9213,14488,2546,2546,14488,9217,9214,2034,14487,14487,2034,9215,14487,9215,14488,14488,9215,9216,14488,9216,9217,9217,9216,2036,13808,2547,9219,13808,9219,2548,13808,2548,2549,2546,2548,9218,9218,2548,9219,9218,9219,2544,2544,9219,2547,13799,2550,9221,13799,9221,2552,9221,2550,9220,9220,2550,2551,2548,2551,2549,2549,2551,2550,9811,2553,9223,9811,9223,9812,9812,9223,9222,9812,9222,2555,2555,9222,2554,2551,2554,9220,9220,2554,9222,9220,9222,9221,9221,9222,9223,9221,9223,2552,2552,9223,2553,2558,2556,2557,2554,9224,2555,2555,9224,9230,9224,9225,9230,9230,9225,9231,9225,9226,9231,9231,9226,9232,9226,9227,9232,9232,9227,9233,9227,9228,9233,9233,9228,9234,9228,9229,9234,9234,9229,9235,9229,2557,9235,9235,2557,2556,2561,2559,9238,9238,2559,2560,2557,9236,2558,2558,9236,9237,9236,2560,9237,9237,2560,2559,2560,2037,9238,9238,2037,9239,9238,9239,2561,2561,9239,2039,9242,2562,2563,9242,2563,9240,9242,9240,2564,2561,2563,2559,2559,2563,2562,2563,2065,9240,9240,2065,9241,9240,9241,2564,2564,9241,2067,2567,2565,9244,2567,9244,9246,9246,9244,2566,2564,9243,9242,9242,9243,14489,9242,14489,2562,2562,14489,9245,9243,2566,14489,14489,2566,9244,14489,9244,9245,9245,9244,2565,9832,2568,9247,9832,9247,2569,9832,2569,2570,2566,2569,9246,9246,2569,9247,9246,9247,2567,2567,9247,2568,9839,2571,9248,9839,9248,9249,9839,9249,9840,9840,9249,2573,9248,2571,2572,2569,2572,2570,2570,2572,2571,2576,2574,14490,2576,14490,9255,9255,14490,9252,9255,9252,9251,9255,9251,9254,9254,9251,2575,9252,14490,2574,2572,9250,9248,9248,9250,14491,9248,14491,9249,9249,14491,14492,9249,14492,2573,2573,14492,9253,9250,2575,14491,14491,2575,9251,14491,9251,14492,14492,9251,9252,14492,9252,9253,9253,9252,2574,9265,2577,9257,9265,9257,9256,9265,9256,2579,2579,9256,2578,2575,2578,9254,9254,2578,9256,9254,9256,9255,9255,9256,9257,9255,9257,2576,2576,9257,2577,9262,2580,9258,9262,9258,2582,9258,2580,2581,2578,2581,2579,2579,2581,2580,2585,2583,9259,2585,9259,9260,9260,9259,2584,2581,2584,9258,9258,2584,9259,9258,9259,2582,2582,9259,2583,2584,2068,9260,9260,2068,9261,9260,9261,2585,2585,9261,2070,2585,2071,2583,2583,2071,2073,9264,2586,2590,9264,2590,2588,2590,2586,2589,2589,2586,9263,2589,9263,2587,2582,2587,9262,9262,2587,9263,9262,9263,2580,2580,9263,2586,2094,2588,2590,2587,2092,2589,2588,2577,9264,9264,2577,9265,9264,9265,2586,2586,9265,2579,2593,2591,2592,2576,2592,2574,2574,2592,2591,2596,2594,2595,2592,9266,2593,2593,9266,9272,9266,9267,9272,9272,9267,9273,9267,9268,9273,9273,9268,9274,9268,9269,9274,9274,9269,9275,9269,9270,9275,9275,9270,9276,9270,9271,9276,9276,9271,9277,9271,2595,9277,9277,2595,2594,2595,9278,2596,2596,9278,9280,9278,9279,9280,9280,9279,9281,9279,2095,9281,9281,2095,2097,2599,2597,2598,2596,2598,2594,2594,2598,2597,2602,2600,2601,2598,2601,2599,2599,2601,2600,9873,2603,9284,9873,9284,2605,9284,2603,2604,2601,9282,2602,2602,9282,9283,9282,2604,9283,9283,2604,2603,2608,2606,9287,9287,2606,9285,9287,9285,9286,9286,9285,2607,2604,2607,9284,9284,2607,9285,9284,9285,2605,2605,9285,2606,2607,2098,9286,9286,2098,9288,9286,9288,9287,9287,9288,9289,9287,9289,2608,2608,9289,2100,9875,2609,9290,9875,9290,9291,9875,9291,2611,9290,2609,2610,2608,2610,2606,2606,2610,2609,2614,2612,9293,2614,9293,9292,2614,9292,9294,9294,9292,2613,2610,2613,9290,9290,2613,9292,9290,9292,9291,9291,9292,9293,9291,9293,2611,2611,9293,2612,9881,2615,14493,9881,14493,9297,9881,9297,2617,9297,14493,9296,9296,14493,9295,9296,9295,2616,9295,14493,2615,2613,2616,9294,9294,2616,9295,9294,9295,2614,2614,9295,2615,9897,2618,9299,9897,9299,9298,9897,9298,2620,2620,9298,2619,2616,2619,9296,9296,2619,9298,9296,9298,9297,9297,9298,9299,9297,9299,2617,2617,9299,2618,2623,2621,2622,2619,2622,2620,2620,2622,2621,2626,2624,9300,9300,2624,2625,2622,2625,2623,2623,2625,2624,2625,9301,9300,9300,9301,14494,9300,14494,2626,2626,14494,9303,9301,2101,14494,14494,2101,9302,14494,9302,9303,9303,9302,2103,2629,2627,9304,9304,2627,2628,2626,2628,2624,2624,2628,2627,9917,2630,9305,9917,9305,9306,9917,9306,2632,9306,9305,2631,2628,2631,9304,9304,2631,9305,9304,9305,2629,2629,9305,2630,2635,2633,9310,9310,2633,9308,9310,9308,2634,2631,9307,9306,9306,9307,14495,9306,14495,2632,2632,14495,9309,9307,2634,14495,14495,2634,9308,14495,9308,9309,9309,9308,2633,2638,2636,9311,2638,9311,2637,2634,2637,9310,9310,2637,9311,9310,9311,2635,2635,9311,2636,2641,2639,2640,2637,9312,2638,2638,9312,9314,9312,9313,9314,9314,9313,9315,9313,2640,9315,9315,2640,2639,2640,2104,2641,2641,2104,2106,2644,2642,2643,2641,2643,2639,2639,2643,2642,2643,2107,2644,2644,2107,2109,2644,2113,2642,2642,2113,2115,2647,2645,2646,2638,2646,2636,2636,2646,2645,2646,2119,2647,2647,2119,2121,2650,2648,2649,2647,2649,2645,2645,2649,2648,2653,2651,2652,2649,9316,2650,2650,9316,9320,9316,9317,9320,9320,9317,9321,9317,9318,9321,9321,9318,9322,9318,9319,9322,9322,9319,9323,9319,2652,9323,9323,2652,2651,9328,2654,9324,9328,9324,9325,9328,9325,2656,9324,2654,2655,2652,2655,2653,2653,2655,2654,2659,2657,9327,2659,9327,9326,2659,9326,2658,2655,2658,9324,9324,2658,9326,9324,9326,9325,9325,9326,9327,9325,9327,2656,2656,9327,2657,2658,2127,2659,2659,2127,2129,2659,2130,2657,2657,2130,2132,9945,2660,9329,9945,9329,14496,9945,14496,2662,2662,14496,9330,9330,14496,2661,2661,14496,9329,2656,2661,9328,9328,2661,9329,9328,9329,2654,2654,9329,2660,9337,2663,14498,9337,14498,14497,9337,14497,9336,9336,14497,9333,9336,9333,2665,9333,14497,9332,9332,14497,14498,9332,14498,2664,2664,14498,9331,9331,14498,2663,2661,2664,9330,9330,2664,9331,9330,9331,2662,2662,9331,2663,2664,2136,9332,9332,2136,9334,9332,9334,9333,9333,9334,9335,9333,9335,2665,2665,9335,2138,14500,14499,14501,14503,14500,14504,14500,14501,14504,14504,14501,14505,14501,14502,14505,14505,14502,14506,14503,14504,14507,14507,14504,14508,14504,14505,14508,14508,14505,14509,14505,14506,14509,14509,14506,14510,14507,14508,14511,14508,14509,14511,14511,14509,14512,14509,14510,14512,3222,2666,14510,3222,14510,14506,3222,14506,14502,3222,14502,3223,3223,14502,14499,3223,14499,2668,2668,14499,9341,9341,14499,14500,9341,14500,2670,2670,14500,14503,2670,14503,2669,2669,14503,9340,9340,14503,14507,9340,14507,2667,2667,14507,14511,2667,14511,9338,9338,14511,14512,9338,14512,9339,9339,14512,14510,9339,14510,2666,14499,14502,14501,2665,2667,9336,9336,2667,9338,9336,9338,9337,9337,9338,9339,9337,9339,2663,2663,9339,2666,9348,2671,9342,9348,9342,14513,9348,14513,2673,2673,14513,14514,2673,14514,9344,9344,14514,9343,9344,9343,2672,9343,14514,2669,2669,14514,14513,2669,14513,2670,2670,14513,9342,2668,9341,2671,2671,9341,9342,9342,9341,2670,2667,2672,9340,9340,2672,9343,9340,9343,2669,2672,9345,9344,9344,9345,14515,9344,14515,2673,2673,14515,9347,9345,2139,14515,14515,2139,9346,14515,9346,9347,9347,9346,2141,9955,2674,9349,9955,9349,2676,2676,9349,2675,2673,2675,9348,9348,2675,9349,9348,9349,2671,2671,9349,2674,2679,2677,9352,9352,2677,2678,2675,9350,2676,2676,9350,9351,9350,2678,9351,9351,2678,2677,2682,2680,9353,2682,9353,2681,2678,2681,9352,9352,2681,9353,9352,9353,2679,2679,9353,2680,9356,2683,2684,9356,2684,2685,2681,2684,2682,2682,2684,2683,2684,9354,2685,2685,9354,9355,9354,2144,9355,9355,2144,2146,2688,2686,9361,9361,2686,9358,9361,9358,9360,9360,9358,2687,2685,9357,9356,9356,9357,14516,9356,14516,2683,2683,14516,9359,9357,2687,14516,14516,2687,9358,14516,9358,9359,9359,9358,2686,13798,2689,9363,13798,9363,2691,2691,9363,9362,2691,9362,2690,2687,2690,9360,9360,2690,9362,9360,9362,9361,9361,9362,9363,9361,9363,2688,2688,9363,2689,2694,2692,2693,2690,2693,2691,2691,2693,2692,2693,2174,2694,2694,2174,2176,9366,2695,2696,9366,2696,9364,9366,9364,2697,2694,2696,2692,2692,2696,2695,2696,2177,9364,9364,2177,9365,9364,9365,2697,2697,9365,2179,13797,2698,9367,13797,9367,9368,13797,9368,2700,9368,9367,2699,2697,2699,9366,9366,2699,9367,9366,9367,2695,2695,9367,2698,2703,2701,9369,2703,9369,9370,9370,9369,2702,2699,2702,9368,9368,2702,9369,9368,9369,2700,2700,9369,2701,6370,2704,9371,6370,9371,14517,6370,14517,13782,13782,14517,9372,13782,9372,9373,13782,9373,6371,6371,9373,2706,9372,14517,2705,2705,14517,9371,2702,2705,9370,9370,2705,9371,9370,9371,2703,2703,9371,2704,2709,2707,14518,2709,14518,9379,9379,14518,9378,9378,14518,9375,9378,9375,2708,9375,14518,9376,9376,14518,2707,2705,9374,9372,9372,9374,14519,9372,14519,9373,9373,14519,14520,9373,14520,2706,2706,14520,9377,9374,2708,14519,14519,2708,9375,14519,9375,14520,14520,9375,9376,14520,9376,9377,9377,9376,2707,2708,2189,9378,9378,2189,9380,9378,9380,9379,9379,9380,9381,9379,9381,2709,2709,9381,2191,2712,2710,2711,2709,2711,2707,2707,2711,2710,2711,2195,2712,2712,2195,2197,2715,2713,2714,2712,2714,2710,2710,2714,2713,2718,2716,2717,2714,9382,2715,2715,9382,9388,9382,9383,9388,9388,9383,9389,9383,9384,9389,9389,9384,9390,9384,9385,9390,9390,9385,9391,9385,9386,9391,9391,9386,9392,9386,9387,9392,9392,9387,9393,9387,2717,9393,9393,2717,2716,2717,2198,2718,2718,2198,2200,2721,2719,2720,2718,9394,2716,2716,9394,9395,9394,2720,9395,9395,2720,2719,6371,2722,14522,6371,14522,14523,6371,14523,13782,13782,14523,14521,13782,14521,6370,6370,14521,2724,2724,14521,9398,9398,14521,9397,9397,14521,14523,9397,14523,9396,9396,14523,14522,9396,14522,2723,2723,14522,2722,2720,2723,2721,2721,2723,2722,2727,2725,9401,2727,9401,9403,9403,9401,9400,9403,9400,9402,9402,9400,9399,9402,9399,2726,2723,2726,9396,9396,2726,9399,9396,9399,9397,9397,9399,9400,9397,9400,9398,9398,9400,9401,9398,9401,2724,2724,9401,2725,2730,2728,2732,2732,2728,9405,2732,9405,2731,2731,9405,9404,2731,9404,2729,2726,2729,9402,9402,2729,9404,9402,9404,9403,9403,9404,9405,9403,9405,2727,2727,9405,2728,2735,2733,2737,2737,2733,2732,2737,2732,9407,9407,2732,9406,9406,2732,2731,9406,2731,2736,2736,2731,2734,2733,2730,2732,2729,2734,2731,9410,2738,2737,9410,2737,9407,9410,9407,14524,9410,14524,9409,9409,14524,9408,9408,14524,14525,9408,14525,2740,2740,14525,2736,2740,2736,2739,2736,14525,9406,9406,14525,14524,9406,14524,9407,2738,2735,2737,2734,2739,2736,2739,2201,2740,2740,2201,2203,9416,2741,9413,9416,9413,14526,9416,14526,2743,2743,14526,9414,9414,14526,14527,9414,14527,2742,2742,14527,9411,9411,14527,9412,9412,14527,14526,9412,14526,9413,2740,2742,9408,9408,2742,9411,9408,9411,9409,9409,9411,9412,9409,9412,9410,9410,9412,9413,9410,9413,2738,2738,9413,2741,2742,2207,9414,9414,2207,9415,9414,9415,2743,2743,9415,2209,2746,2744,9423,9423,2744,9419,9423,9419,9422,9422,9419,2745,2743,9417,9416,9416,9417,14528,9416,14528,2741,2741,14528,9420,9417,9418,14528,14528,9418,14529,14528,14529,9420,9420,14529,9421,9418,2745,14529,14529,2745,9419,14529,9419,9421,9421,9419,2744,10026,2747,9425,10026,9425,9424,10026,9424,10027,10027,9424,2748,10027,2748,2749,2745,2748,9422,9422,2748,9424,9422,9424,9423,9423,9424,9425,9423,9425,2746,2746,9425,2747,9434,2750,9428,9434,9428,9429,9434,9429,2752,9428,2750,2751,2748,9426,2749,2749,9426,9427,9426,2751,9427,9427,2751,2750,9432,2753,9431,9432,9431,2755,2755,9431,9430,2755,9430,2754,2751,2754,9428,9428,2754,9430,9428,9430,9429,9429,9430,9431,9429,9431,2752,2752,9431,2753,2754,2219,2755,2755,2219,2221,2755,2222,9432,9432,2222,9433,9432,9433,2753,2753,9433,2224,10034,2756,14530,10034,14530,10035,10035,14530,9436,10035,9436,2758,9436,14530,9435,9436,9435,2757,9435,14530,2756,2752,2757,9434,9434,2757,9435,9434,9435,2750,2750,9435,2756,9439,2759,9437,9439,9437,14531,9439,14531,9438,9438,14531,2761,2761,14531,2760,2760,14531,9437,2757,2760,9436,9436,2760,9437,9436,9437,2758,2758,9437,2759,2760,2225,2761,2761,2225,2227,10046,2762,9441,10046,9441,10047,10047,9441,9440,10047,9440,10048,10048,9440,2763,10048,2763,2764,2761,2763,9438,9438,2763,9440,9438,9440,9439,9439,9440,9441,9439,9441,2759,2759,9441,2762,9446,2765,14532,9446,14532,9444,9446,9444,2767,9444,14532,2766,2766,14532,2765,2763,9442,2764,2764,9442,9443,9442,2766,9443,9443,2766,2765,2766,2228,9444,9444,2228,9445,9444,9445,2767,2767,9445,2230,9452,2768,9447,9452,9447,14533,9452,14533,9451,9451,14533,9450,9450,14533,9448,9450,9448,2770,9448,14533,2769,2769,14533,9447,2767,2769,9446,9446,2769,9447,9446,9447,2765,2765,9447,2768,2769,2246,9448,9448,2246,9449,9448,9449,2770,2770,9449,2248,2773,2771,9455,2773,9455,9457,9457,9455,9454,9457,9454,9456,9456,9454,9453,9456,9453,2772,2770,2772,9450,9450,2772,9453,9450,9453,9451,9451,9453,9454,9451,9454,9452,9452,9454,9455,9452,9455,2768,2768,9455,2771,2776,2774,9460,2776,9460,9459,2776,9459,9462,9462,9459,2775,2772,9458,9456,9456,9458,14534,9456,14534,9457,9457,14534,14535,9457,14535,2773,2773,14535,9461,9458,2775,14534,14534,2775,9459,14534,9459,14535,14535,9459,9460,14535,9460,9461,9461,9460,2774,2775,9463,9462,9462,9463,14536,9462,14536,2776,2776,14536,9466,9463,9464,14536,14536,9464,14537,14536,14537,9466,9466,14537,9467,9464,2258,14537,14537,2258,9465,14537,9465,9467,9467,9465,2260,2779,2777,2778,2776,2778,2774,2774,2778,2777,9475,2780,2783,9475,2783,2784,9475,2784,9474,9474,2784,2782,2783,2780,2781,2778,9468,2779,2779,9468,9471,9468,9469,9471,9471,9469,9472,9469,9470,9472,9472,9470,9473,9470,2781,9473,9473,2781,2780,2263,2782,2784,2781,2261,2783,2787,2785,9477,2787,9477,9479,9479,9477,9476,9479,9476,9478,9478,9476,2786,2782,2786,9474,9474,2786,9476,9474,9476,9475,9475,9476,9477,9475,9477,2780,2780,9477,2785,9483,2788,9481,9483,9481,9482,9482,9481,9480,9482,9480,2790,2790,9480,2789,2786,2789,9478,9478,2789,9480,9478,9480,9479,9479,9480,9481,9479,9481,2787,2787,9481,2788,2793,2791,2792,2789,2792,2790,2790,2792,2791,2792,2267,2793,2793,2267,2269,2793,2273,2791,2791,2273,2275,10082,2794,9485,10082,9485,9484,10082,9484,2796,2796,9484,2795,2790,2795,9482,9482,2795,9484,9482,9484,9483,9483,9484,9485,9483,9485,2788,2788,9485,2794,2799,2797,2798,2795,9486,2796,2796,9486,9487,9486,2798,9487,9487,2798,2797,3351,2800,2801,3351,2801,10097,10097,2801,9488,10097,9488,10098,10098,9488,9489,10098,9489,3352,3352,9489,2802,2798,2801,2799,2799,2801,2800,2805,2803,9491,2805,9491,9493,9493,9491,9490,9493,9490,9492,9492,9490,2804,2801,2804,9488,9488,2804,9490,9488,9490,9489,9489,9490,9491,9489,9491,2802,2802,9491,2803,2808,2806,9496,2808,9496,9498,9498,9496,9495,9498,9495,2807,2804,9494,9492,9492,9494,14538,9492,14538,9493,9493,14538,14539,9493,14539,2805,2805,14539,9497,9494,2807,14538,14538,2807,9495,14538,9495,14539,14539,9495,9496,14539,9496,9497,9497,9496,2806,2807,2278,9498,9498,2278,9499,9498,9499,2808,2808,9499,2280,2808,2281,2806,2806,2281,2283,2811,2809,2810,2805,2810,2803,2803,2810,2809,9513,2812,2813,9513,2813,9504,9513,9504,9512,9512,9504,2814,2810,9500,2811,2811,9500,9502,9500,9501,9502,9502,9501,9503,9501,2813,9503,9503,2813,2812,9510,2815,14540,9510,14540,9507,9510,9507,2817,9507,14540,9506,9506,14540,9505,9506,9505,2816,9505,14540,2815,2813,2816,9504,9504,2816,9505,9504,9505,2814,2814,9505,2815,2816,2284,9506,9506,2284,9508,9506,9508,9507,9507,9508,9509,9507,9509,2817,2817,9509,2286,2817,2314,9510,9510,2314,9511,9510,9511,2815,2815,9511,2316,13780,2818,9515,13780,9515,13781,13781,9515,9514,13781,9514,2820,2820,9514,2819,2814,2819,9512,9512,2819,9514,9512,9514,9513,9513,9514,9515,9513,9515,2812,2812,9515,2818,2823,2821,2822,2819,2822,2820,2820,2822,2821,2822,2317,2823,2823,2317,2319,13779,2824,9516,13779,9516,9517,13779,9517,13778,13778,9517,2826,9516,2824,2825,2823,2825,2821,2821,2825,2824,10120,2827,9519,10120,9519,14541,10120,14541,2829,2829,14541,9518,2829,9518,2828,9518,14541,9519,2825,2828,9516,9516,2828,9518,9516,9518,9517,9517,9518,9519,9517,9519,2826,2826,9519,2827,2832,2830,9522,9522,2830,2831,2828,9520,2829,2829,9520,9521,9520,2831,9521,9521,2831,2830,9526,2833,9524,9526,9524,2835,2835,9524,2834,2831,9523,9522,9522,9523,14542,9522,14542,2832,2832,14542,9525,9523,2834,14542,14542,2834,9524,14542,9524,9525,9525,9524,2833,2834,2320,2835,2835,2320,2322,2835,2323,9526,9526,2323,9527,9526,9527,2833,2833,9527,2325,10124,2836,9528,10124,9528,9529,10124,9529,2838,9528,2836,2837,2832,2837,2830,2830,2837,2836,2841,2839,9532,2841,9532,9531,2841,9531,2840,2837,9530,9528,9528,9530,14543,9528,14543,9529,9529,14543,14544,9529,14544,2838,2838,14544,9533,9530,2840,14543,14543,2840,9531,14543,9531,14544,14544,9531,9532,14544,9532,9533,9533,9532,2839,2844,2842,9534,9534,2842,2843,2840,2843,2841,2841,2843,2842,2847,2845,9537,9537,2845,9536,9536,2845,9535,9536,9535,2846,2843,2846,9534,9534,2846,9535,9534,9535,2844,2844,9535,2845,9546,2848,9539,9546,9539,2850,2850,9539,9538,2850,9538,9540,9540,9538,2849,2846,2849,9536,9536,2849,9538,9536,9538,9537,9537,9538,9539,9537,9539,2847,2847,9539,2848,2849,9541,9540,9540,9541,14545,9540,14545,2850,2850,14545,9544,9541,9542,14545,14545,9542,14546,14545,14546,9544,9544,14546,9545,9542,2356,14546,14546,2356,9543,14546,9543,9545,9545,9543,2358,2853,2851,9548,2853,9548,2852,2850,9547,9546,9546,9547,14547,9546,14547,2848,2848,14547,9549,9547,2852,14547,14547,2852,9548,14547,9548,9549,9549,9548,2851,2856,2854,2855,2852,2855,2853,2853,2855,2854,2855,9550,2856,2856,9550,9552,9550,9551,9552,9552,9551,9553,9551,2359,9553,9553,2359,2361,2859,2857,9555,9555,2857,9554,9554,2857,2858,2856,2858,2854,2854,2858,2857,10160,2860,9557,10160,9557,9556,10160,9556,2862,2862,9556,2861,2858,2861,9554,9554,2861,9556,9554,9556,9555,9555,9556,9557,9555,9557,2859,2859,9557,2860,2865,2863,2864,2861,2864,2862,2862,2864,2863,2864,2368,2865,2865,2368,2370,10165,2866,14548,10165,14548,9558,10165,9558,10166,10166,9558,9559,10166,9559,2868,9558,14548,2867,2867,14548,2866,2865,2867,2863,2863,2867,2866,14549,14550,14551,10168,2869,14549,10168,14549,14551,10168,14551,2871,2871,14551,9563,9563,14551,14550,9563,14550,9562,9562,14550,2870,2870,14550,9560,9560,14550,9561,9561,14550,14549,9561,14549,2869,2867,2870,9558,9558,2870,9560,9558,9560,9559,9559,9560,9561,9559,9561,2868,2868,9561,2869,2874,2872,9565,2874,9565,9566,9566,9565,9564,9566,9564,2873,2870,2873,9562,9562,2873,9564,9562,9564,9563,9563,9564,9565,9563,9565,2871,2871,9565,2872,2873,2371,9566,9566,2371,9567,9566,9567,2874,2874,9567,2373,2877,2875,2876,2874,9568,2872,2872,9568,9569,9568,2876,9569,9569,2876,2875,2880,2878,2879,2876,9570,2877,2877,9570,9573,9570,9571,9573,9573,9571,9574,9571,9572,9574,9574,9572,9575,9572,2879,9575,9575,2879,2878,9580,2881,2882,9580,2882,2883,2879,2882,2880,2880,2882,2881,2882,9576,2883,2883,9576,9578,9576,9577,9578,9578,9577,9579,9577,2374,9579,9579,2374,2376,2883,2383,9580,9580,2383,9581,9580,9581,2881,2881,9581,2385,2886,2884,2885,2880,9582,2878,2878,9582,9585,9582,9583,9585,9585,9583,9586,9583,9584,9586,9586,9584,9587,9584,2885,9587,9587,2885,2884,10185,2887,2888,10185,2888,9590,10185,9590,10186,10186,9590,2889,2885,9588,2886,2886,9588,9589,9588,2888,9589,9589,2888,2887,2892,2890,9593,9593,2890,9591,9593,9591,9592,9592,9591,2891,2888,2891,9590,9590,2891,9591,9590,9591,2889,2889,9591,2890,2895,2893,9595,2895,9595,9596,9596,9595,9594,9596,9594,2894,2891,2894,9592,9592,2894,9594,9592,9594,9593,9593,9594,9595,9593,9595,2892,2892,9595,2893,2898,2896,9602,9602,2896,9599,9602,9599,2897,2894,9597,9596,9596,9597,14552,9596,14552,2895,2895,14552,9600,9597,9598,14552,14552,9598,14553,14552,14553,9600,9600,14553,9601,9598,2897,14553,14553,2897,9599,14553,9599,9601,9601,9599,2896,2901,2899,14554,2901,14554,9605,9605,14554,9604,9604,14554,9603,9604,9603,2900,9603,14554,2899,2897,2900,9602,9602,2900,9603,9602,9603,2898,2898,9603,2899,2900,2386,9604,9604,2386,9606,9604,9606,9605,9605,9606,9607,9605,9607,2901,2901,9607,2388,2904,2902,2903,2901,2903,2899,2899,2903,2902,2903,9608,2904,2904,9608,9609,9608,2395,9609,9609,2395,2397,9612,2905,2906,9612,2906,9610,9612,9610,2907,2904,2906,2902,2902,2906,2905,2906,2398,9610,9610,2398,9611,9610,9611,2907,2907,9611,2400,2910,2908,9615,9615,2908,9613,9615,9613,9614,9614,9613,2909,2907,2909,9612,9612,2909,9613,9612,9613,2905,2905,9613,2908,9625,2911,9617,9625,9617,9616,9625,9616,9624,9624,9616,2912,9624,2912,2913,2909,2912,9614,9614,2912,9616,9614,9616,9615,9615,9616,9617,9615,9617,2910,2910,9617,2911,2912,9618,2913,2913,9618,9621,9618,9619,9621,9621,9619,9622,9619,9620,9622,9622,9620,9623,9620,2404,9623,9623,2404,2406,10230,2914,9627,10230,9627,9626,10230,9626,10231,10231,9626,2915,10231,2915,2916,2913,2915,9624,9624,2915,9626,9624,9626,9625,9625,9626,9627,9625,9627,2911,2911,9627,2914,2919,2917,2918,2915,9628,2916,2916,9628,9631,9628,9629,9631,9631,9629,9632,9629,9630,9632,9632,9630,9633,9630,2918,9633,9633,2918,2917,2918,2407,2919,2919,2407,2409,2922,2920,2921,2919,2921,2917,2917,2921,2920,2925,2923,2924,2921,2924,2922,2922,2924,2923,2928,2926,2927,2924,2927,2925,2925,2927,2926,9636,2929,2930,9636,2930,2931,2927,9634,2928,2928,9634,9635,9634,2930,9635,9635,2930,2929,2930,2413,2931,2931,2413,2415,2931,2419,9636,9636,2419,9637,9636,9637,2929,2929,9637,2421,2934,2932,2933,2928,2933,2926,2926,2933,2932,2937,2935,9640,9640,2935,2936,2933,9638,2934,2934,9638,9639,9638,2936,9639,9639,2936,2935,9656,2938,9641,9656,9641,14556,9656,14556,14555,9656,14555,9655,9655,14555,9654,9654,14555,9643,9654,9643,2940,9643,14555,9642,9642,14555,14556,9642,14556,2939,2939,14556,9641,2936,2939,9640,9640,2939,9641,9640,9641,2937,2937,9641,2938,2943,2941,9646,2943,9646,9649,9649,9646,9645,9649,9645,9648,9648,9645,2942,2939,9644,9642,9642,9644,14557,9642,14557,9643,9643,14557,14558,9643,14558,2940,2940,14558,9647,9644,2942,14557,14557,2942,9645,14557,9645,14558,14558,9645,9646,14558,9646,9647,9647,9646,2941,2942,2422,9648,9648,2422,9650,9648,9650,9649,9649,9650,9651,9649,9651,2943,2943,9651,2424,2943,9652,2941,2941,9652,9653,9652,2434,9653,9653,2434,2436,10257,2944,14559,10257,14559,9658,10257,9658,14560,10257,14560,2946,2946,14560,9660,9660,14560,9657,9660,9657,2945,9657,14560,9658,9658,14559,9659,9659,14559,2944,2940,2945,9654,9654,2945,9657,9654,9657,9655,9655,9657,9658,9655,9658,9656,9656,9658,9659,9656,9659,2938,2938,9659,2944,10265,2947,9662,10265,9662,2948,10265,2948,2949,2945,9661,9660,9660,9661,14561,9660,14561,2946,2946,14561,9663,9661,2948,14561,14561,2948,9662,14561,9662,9663,9663,9662,2947,10278,2950,2951,10278,2951,9664,10278,9664,10279,10279,9664,2952,2948,2951,2949,2949,2951,2950,2955,2953,9665,2955,9665,9666,9666,9665,2954,2951,2954,9664,9664,2954,9665,9664,9665,2952,2952,9665,2953,2958,2956,14562,2958,14562,9676,9676,14562,9671,9676,9671,2957,9671,14562,2956,2954,9667,9666,9666,9667,14563,9666,14563,2955,2955,14563,9672,9667,9668,14563,14563,9668,14564,14563,14564,9672,9672,14564,9673,9668,9669,14564,14564,9669,14565,14564,14565,9673,9673,14565,9674,9669,9670,14565,14565,9670,14566,14565,14566,9674,9674,14566,9675,9670,2957,14566,14566,2957,9671,14566,9671,9675,9675,9671,2956,2957,2440,9676,9676,2440,9677,9676,9677,2958,2958,9677,2442,2961,2959,2960,2958,9678,2956,2956,9678,9679,9678,2960,9679,9679,2960,2959,2964,2962,2963,2960,2963,2961,2961,2963,2962,2967,2965,9680,9680,2965,2966,2963,2966,2964,2964,2966,2965,2966,9681,9680,9680,9681,14567,9680,14567,2967,2967,14567,9684,9681,9682,14567,14567,9682,14568,14567,14568,9684,9684,14568,9685,9682,2445,14568,14568,2445,9683,14568,9683,9685,9685,9683,2447,2970,2968,2969,2967,9686,2965,2965,9686,9688,9686,9687,9688,9688,9687,9689,9687,2969,9689,9689,2969,2968,10325,2971,9690,10325,9690,9691,10325,9691,2973,9690,2971,2972,2969,2972,2970,2970,2972,2971,10343,2974,9693,10343,9693,2976,2976,9693,9692,2976,9692,9694,9694,9692,2975,2972,2975,9690,9690,2975,9692,9690,9692,9691,9691,9692,9693,9691,9693,2973,2973,9693,2974,9702,2977,9696,9702,9696,2979,2979,9696,2978,2975,9695,9694,9694,9695,14569,9694,14569,2976,2976,14569,9697,9695,2978,14569,14569,2978,9696,14569,9696,9697,9697,9696,2977,2978,9698,2979,2979,9698,9700,9698,9699,9700,9700,9699,9701,9699,2448,9701,9701,2448,2450,9707,2980,9703,9707,9703,2981,9707,2981,9706,9706,2981,9704,9706,9704,2982,2979,2981,9702,9702,2981,9703,9702,9703,2977,2977,9703,2980,2981,2454,9704,9704,2454,9705,9704,9705,2982,2982,9705,2456,14570,14571,14572,9715,2983,14571,9715,14571,9714,9714,14571,14570,9714,14570,2985,2985,14570,9712,9712,14570,14572,9712,14572,2984,2984,14572,9709,9709,14572,9710,9710,14572,14571,9710,14571,2983,2982,9708,9706,9706,9708,14573,9706,14573,9707,9707,14573,14574,9707,14574,2980,2980,14574,9711,9708,2984,14573,14573,2984,9709,14573,9709,14574,14574,9709,9710,14574,9710,9711,9711,9710,2983,2984,2466,9712,9712,2466,9713,9712,9713,2985,2985,9713,2468,10352,2986,9717,10352,9717,10353,10353,9717,9716,10353,9716,2988,2988,9716,2987,2985,2987,9714,9714,2987,9716,9714,9716,9715,9715,9716,9717,9715,9717,2983,2983,9717,2986,2991,2989,2990,2987,9718,2988,2988,9718,9721,9718,9719,9721,9721,9719,9722,9719,9720,9722,9722,9720,9723,9720,2990,9723,9723,2990,2989,10361,2992,9725,10361,9725,2994,9725,2992,9724,9724,2992,2993,2990,2993,2991,2991,2993,2992,13768,2995,9727,13768,9727,14575,13768,14575,13769,13769,14575,2997,2997,14575,2996,2996,14575,9726,9726,14575,9727,2993,2996,9724,9724,2996,9726,9724,9726,9725,9725,9726,9727,9725,9727,2994,2994,9727,2995,9729,2998,14576,9729,14576,14577,9729,14577,9728,9728,14577,3002,9728,3002,3000,3002,14577,3001,3001,14577,14576,3001,14576,2999,2999,14576,2998,2996,2999,2997,2997,2999,2998,2485,3000,3002,2999,2483,3001,13771,3003,9731,13771,9731,3005,3005,9731,9730,3005,9730,9732,9732,9730,3004,3000,3004,9728,9728,3004,9730,9728,9730,9729,9729,9730,9731,9729,9731,2998,2998,9731,3003,13763,3006,14578,13763,14578,13762,13762,14578,9734,13762,9734,3010,13762,3010,3008,9734,14578,14579,9734,14579,3009,3009,14579,9733,3009,9733,3007,9733,14579,3006,3006,14579,14578,3004,3007,9732,9732,3007,9733,9732,9733,3005,3005,9733,3006,10368,3011,3010,10368,3010,9734,10368,9734,10369,10369,9734,3013,3013,9734,3009,3013,3009,3012,3011,3008,3010,3007,3012,3009,10371,3014,9736,10371,9736,3016,9736,3014,9735,9735,3014,3015,3012,3015,3013,3013,3015,3014,10392,3017,9738,10392,9738,10393,10393,9738,9737,10393,9737,3019,3019,9737,3018,3015,3018,9735,9735,3018,9737,9735,9737,9736,9736,9737,9738,9736,9738,3016,3016,9738,3017,10395,3020,9739,10395,9739,9740,10395,9740,3022,9739,3020,3021,3018,3021,3019,3019,3021,3020,3025,3023,9744,9744,3023,9742,9744,9742,9743,9743,9742,9741,9743,9741,3024,3021,3024,9739,9739,3024,9741,9739,9741,9740,9740,9741,9742,9740,9742,3022,3022,9742,3023,3024,2489,9743,9743,2489,9745,9743,9745,9744,9744,9745,9746,9744,9746,3025,3025,9746,2491,10409,3026,3027,10409,3027,9751,10409,9751,10410,10410,9751,9752,10410,9752,10411,10411,9752,3028,3025,9747,3023,3023,9747,9749,9747,9748,9749,9749,9748,9750,9748,3027,9750,9750,3027,3026,10428,3029,14581,10428,14581,10429,10429,14581,14580,10429,14580,3031,3031,14580,3030,3030,14580,9754,9754,14580,9755,9755,14580,14581,9755,14581,3029,3027,9753,9751,9751,9753,14582,9751,14582,9752,9752,14582,14583,9752,14583,3028,3028,14583,9756,9753,3030,14582,14582,3030,9754,14582,9754,14583,14583,9754,9755,14583,9755,9756,9756,9755,3029,10431,3032,3033,10431,3033,3034,3030,3033,3031,3031,3033,3032,3037,3035,3036,3033,3036,3034,3034,3036,3035,3036,9757,3037,3037,9757,9759,9757,9758,9759,9759,9758,9760,9758,2492,9760,9760,2492,2494,9774,3038,9769,9774,9769,9770,9774,9770,9773,9773,9770,3040,9769,3038,3039,3037,9761,3035,3035,9761,9765,9761,9762,9765,9765,9762,9766,9762,9763,9766,9766,9763,9767,9763,9764,9767,9767,9764,9768,9764,3039,9768,9768,3039,3038,3039,2498,9769,9769,2498,9771,9769,9771,9770,9770,9771,9772,9770,9772,3040,3040,9772,2500,3043,3041,14584,3043,14584,9780,9780,14584,9779,9779,14584,9777,9779,9777,9776,9779,9776,3042,9777,14584,3041,3040,9775,9773,9773,9775,14585,9773,14585,9774,9774,14585,14586,9774,14586,3038,3038,14586,9778,9775,3042,14585,14585,3042,9776,14585,9776,14586,14586,9776,9777,14586,9777,9778,9778,9777,3041,4314,3044,9782,4314,9782,11283,11283,9782,9781,11283,9781,11284,11284,9781,3045,11284,3045,4315,4315,3045,3046,3042,3045,9779,9779,3045,9781,9779,9781,9780,9780,9781,9782,9780,9782,3043,3043,9782,3044,11295,3047,9784,11295,9784,3049,9784,3047,9783,9783,3047,3048,3045,3048,3046,3046,3048,3047,9787,3050,9786,9787,9786,9785,9787,9785,3052,3052,9785,3051,3048,3051,9783,9783,3051,9785,9783,9785,9784,9784,9785,9786,9784,9786,3049,3049,9786,3050,3051,2507,3052,3052,2507,2509,3055,3053,9788,3055,9788,9789,9789,9788,3054,3052,3054,9787,9787,3054,9788,9787,9788,3050,3050,9788,3053,3054,2510,9789,9789,2510,9790,9789,9790,3055,3055,9790,2512,3058,3056,3057,3055,3057,3053,3053,3057,3056,3061,3059,9791,9791,3059,3060,3057,3060,3058,3058,3060,3059,9807,3062,9792,9807,9792,9793,9807,9793,3064,9793,9792,3063,3060,3063,9791,9791,3063,9792,9791,9792,3061,3061,9792,3062,9796,3065,9794,9796,9794,9795,9795,9794,3066,9795,3066,3067,3063,3066,9793,9793,3066,9794,9793,9794,3064,3064,9794,3065,3066,2513,3067,3067,2513,2515,14588,14587,14590,14590,14587,14589,9802,3068,9798,9802,9798,14589,9802,14589,14587,9802,14587,9801,9801,14587,14588,9801,14588,3070,3070,14588,9799,9799,14588,14590,9799,14590,3069,3069,14590,9797,9797,14590,14589,9797,14589,9798,3067,3069,9795,9795,3069,9797,9795,9797,9796,9796,9797,9798,9796,9798,3065,3065,9798,3068,3069,2524,9799,9799,2524,9800,9799,9800,3070,3070,9800,2526,3073,3071,9804,3073,9804,9803,3073,9803,9805,9805,9803,3072,3070,3072,9801,9801,3072,9803,9801,9803,9802,9802,9803,9804,9802,9804,3068,3068,9804,3071,3072,2527,9805,9805,2527,9806,9805,9806,3073,3073,9806,2529,3073,2530,3071,3071,2530,2532,3076,3074,9808,3076,9808,3075,3064,3075,9807,9807,3075,9808,9807,9808,3062,3062,9808,3074,9814,3077,3078,9814,3078,9809,9814,9809,9813,9813,9809,9810,9813,9810,3079,3075,3078,3076,3076,3078,3077,3078,2553,9809,9809,2553,9811,9809,9811,9810,9810,9811,9812,9810,9812,3079,3079,9812,2555,3082,3080,9816,3082,9816,9817,9817,9816,9815,9817,9815,3081,3079,3081,9813,9813,3081,9815,9813,9815,9814,9814,9815,9816,9814,9816,3077,3077,9816,3080,3085,3083,9820,9820,3083,9818,9820,9818,9819,9819,9818,3084,3081,3084,9817,9817,3084,9818,9817,9818,3082,3082,9818,3083,10610,3086,9823,10610,9823,9822,10610,9822,3088,3088,9822,3087,3084,9821,9819,9819,9821,14591,9819,14591,9820,9820,14591,14592,9820,14592,3085,3085,14592,9824,9821,3087,14591,14591,3087,9822,14591,9822,14592,14592,9822,9823,14592,9823,9824,9824,9823,3086,3091,3089,3090,3087,9825,3088,3088,9825,9826,9825,3090,9826,9826,3090,3089,3090,9827,3091,3091,9827,9828,9827,2556,9828,9828,2556,2558,3094,3092,3093,3091,3093,3089,3089,3093,3092,3097,3095,3096,3093,3096,3094,3094,3096,3095,3100,3098,3099,3096,3099,3097,3097,3099,3098,3099,2565,3100,3100,2565,2567,10617,3101,3102,10617,3102,9829,10617,9829,10618,10618,9829,3103,3100,3102,3098,3098,3102,3101,9833,3104,9830,9833,9830,9831,9833,9831,3106,9831,9830,3105,3102,3105,9829,9829,3105,9830,9829,9830,3103,3103,9830,3104,3105,2568,9831,9831,2568,9832,9831,9832,3106,3106,9832,2570,10622,3107,9834,10622,9834,9835,10622,9835,3109,9835,9834,3108,3106,3108,9833,9833,3108,9834,9833,9834,3104,3104,9834,3107,3112,3110,9838,9838,3110,9836,9838,9836,9837,9837,9836,3111,3108,3111,9835,9835,3111,9836,9835,9836,3109,3109,9836,3110,3111,2571,9837,9837,2571,9839,9837,9839,9838,9838,9839,9840,9838,9840,3112,3112,9840,2573,3115,3113,9842,9842,3113,9841,9841,3113,3114,3112,3114,3110,3110,3114,3113,3118,3116,3120,3120,3116,9844,3120,9844,3119,3119,9844,9843,3119,9843,3117,3114,3117,9841,9841,3117,9843,9841,9843,9842,9842,9843,9844,9842,9844,3115,3115,9844,3116,3123,3121,3125,3125,3121,3120,3125,3120,9845,9845,3120,3119,9845,3119,3124,3124,3119,3122,3121,3118,3120,3117,3122,3119,9861,3126,3125,9861,3125,9845,9861,9845,9860,9860,9845,3128,3128,9845,3124,3128,3124,3127,3126,3123,3125,3122,3127,3124,3131,3129,3130,3127,3130,3128,3128,3130,3129,3130,9846,3131,3131,9846,9852,9846,9847,9852,9852,9847,9853,9847,9848,9853,9853,9848,9854,9848,9849,9854,9854,9849,9855,9849,9850,9855,9855,9850,9856,9850,9851,9856,9856,9851,9857,9851,2591,9857,9857,2591,2593,3131,9858,3129,3129,9858,9859,9858,2597,9859,9859,2597,2599,3134,3132,9863,3134,9863,9862,3134,9862,9864,9864,9862,3133,3128,3133,9860,9860,3133,9862,9860,9862,9861,9861,9862,9863,9861,9863,3126,3126,9863,3132,9866,3135,9865,9866,9865,3137,3137,9865,3136,3133,3136,9864,9864,3136,9865,9864,9865,3134,3134,9865,3135,3136,2600,3137,3137,2600,2602,10653,3138,9867,10653,9867,3139,10653,3139,10654,10654,3139,9868,10654,9868,3140,3137,3139,9866,9866,3139,9867,9866,9867,3135,3135,9867,3138,3143,3141,9870,3143,9870,3142,3139,9869,9868,9868,9869,14593,9868,14593,3140,3140,14593,9871,9869,3142,14593,14593,3142,9870,14593,9870,9871,9871,9870,3141,9874,3144,14594,9874,14594,9872,9874,9872,3146,9872,14594,3145,3145,14594,3144,3142,3145,3143,3143,3145,3144,3145,2603,9872,9872,2603,9873,9872,9873,3146,3146,9873,2605,3146,2609,9874,9874,2609,9875,9874,9875,3144,3144,9875,2611,3149,3147,3148,3143,3148,3141,3141,3148,3147,10679,3150,3151,10679,3151,3152,3148,9876,3149,3149,9876,9878,9876,9877,9878,9878,9877,9879,9877,3151,9879,9879,3151,3150,3155,3153,3154,3151,3154,3152,3152,3154,3153,3158,3156,3157,3154,3157,3155,3155,3157,3156,3157,2612,3158,3158,2612,2614,9882,3159,3160,9882,3160,9880,9882,9880,3161,3158,3160,3156,3156,3160,3159,3160,2615,9880,9880,2615,9881,9880,9881,3161,3161,9881,2617,3164,3162,9883,3164,9883,3163,3161,3163,9882,9882,3163,9883,9882,9883,3159,3159,9883,3162,3167,3165,9886,9886,3165,3166,3163,9884,3164,3164,9884,9885,9884,3166,9885,9885,3166,3165,10690,3168,14595,10690,14595,9888,10690,9888,3170,9888,14595,3169,3169,14595,9887,9887,14595,3168,3166,3169,9886,9886,3169,9887,9886,9887,3167,3167,9887,3168,3173,3171,9889,3173,9889,3172,3169,3172,9888,9888,3172,9889,9888,9889,3170,3170,9889,3171,9898,3174,14596,9898,14596,9896,9898,9896,3176,9896,14596,3175,3175,14596,3174,3172,9890,3173,3173,9890,9893,9890,9891,9893,9893,9891,9894,9891,9892,9894,9894,9892,9895,9892,3175,9895,9895,3175,3174,3175,2618,9896,9896,2618,9897,9896,9897,3176,3176,9897,2620,3179,3177,9899,3179,9899,9900,9900,9899,3178,3176,3178,9898,9898,3178,9899,9898,9899,3174,3174,9899,3177,9904,3180,14597,9904,14597,9902,9904,9902,3182,9902,14597,3181,3181,14597,9901,9901,14597,3180,3178,3181,9900,9900,3181,9901,9900,9901,3179,3179,9901,3180,3185,3183,9903,3185,9903,3184,3181,3184,9902,9902,3184,9903,9902,9903,3182,3182,9903,3183,3184,2621,3185,3185,2621,2623,3185,2627,3183,3183,2627,2629,14598,14599,14600,10714,3186,14599,10714,14599,9908,10714,9908,3188,9908,14599,14598,9908,14598,9907,9907,14598,9906,9906,14598,14600,9906,14600,3187,3187,14600,9905,9905,14600,14599,9905,14599,3186,3182,3187,9904,9904,3187,9905,9904,9905,3180,3180,9905,3186,3191,3189,9911,3191,9911,9910,3191,9910,9912,9912,9910,9909,9912,9909,3190,3187,3190,9906,9906,3190,9909,9906,9909,9907,9907,9909,9910,9907,9910,9908,9908,9910,9911,9908,9911,3188,3188,9911,3189,9924,3192,9913,9924,9913,14601,9924,14601,9923,9923,14601,14602,9923,14602,9922,9922,14602,3194,3194,14602,9914,9914,14602,3193,3193,14602,14601,3193,14601,9913,3190,3193,9912,9912,3193,9913,9912,9913,3191,3191,9913,3192,3197,3195,9915,3197,9915,9916,9916,9915,3196,3193,3196,9914,9914,3196,9915,9914,9915,3194,3194,9915,3195,3196,2630,9916,9916,2630,9917,9916,9917,3197,3197,9917,2632,3200,3198,3199,3197,9918,3195,3195,9918,9920,9918,9919,9920,9920,9919,9921,9919,3199,9921,9921,3199,3198,3199,2633,3200,3200,2633,2635,3200,2648,3198,3198,2648,2650,10726,3201,14604,10726,14604,14603,10726,14603,3203,3203,14603,9928,9928,14603,9925,9928,9925,3202,9925,14603,9926,9926,14603,14604,9926,14604,9927,9927,14604,3201,3194,3202,9922,9922,3202,9925,9922,9925,9923,9923,9925,9926,9923,9926,9924,9924,9926,9927,9924,9927,3192,3192,9927,3201,3206,3204,9930,3206,9930,3205,3202,9929,9928,9928,9929,14605,9928,14605,3203,3203,14605,9931,9929,3205,14605,14605,3205,9930,14605,9930,9931,9931,9930,3204,3209,3207,3208,3205,9932,3206,3206,9932,9936,9932,9933,9936,9936,9933,9937,9933,9934,9937,9937,9934,9938,9934,9935,9938,9938,9935,9939,9935,3208,9939,9939,3208,3207,9947,3210,9940,9947,9940,9941,9947,9941,9946,9946,9941,3212,9940,3210,3211,3208,3211,3209,3209,3211,3210,9944,3213,9943,9944,9943,9942,9944,9942,3215,3215,9942,3214,3211,3214,9940,9940,3214,9942,9940,9942,9941,9941,9942,9943,9941,9943,3212,3212,9943,3213,3214,2651,3215,3215,2651,2653,3215,2660,9944,9944,2660,9945,9944,9945,3213,3213,9945,2662,3218,3216,9949,3218,9949,9950,9950,9949,9948,9950,9948,3217,3212,3217,9946,9946,3217,9948,9946,9948,9947,9947,9948,9949,9947,9949,3210,3210,9949,3216,9952,3219,14607,9952,14607,14606,9952,14606,3221,3221,14606,3223,3223,14606,14607,3223,14607,3222,3222,14607,9951,3222,9951,3220,9951,14607,3219,3217,3220,9950,9950,3220,9951,9950,9951,3218,3218,9951,3219,2668,3221,3223,3220,2666,3222,9957,3224,9953,9957,9953,14608,9957,14608,9956,9956,14608,9954,9956,9954,3226,9954,14608,3225,3225,14608,9953,3221,3225,9952,9952,3225,9953,9952,9953,3219,3219,9953,3224,3225,2674,9954,9954,2674,9955,9954,9955,3226,3226,9955,2676,3229,3227,9959,3229,9959,9960,9960,9959,9958,9960,9958,3228,3226,3228,9956,9956,3228,9958,9956,9958,9957,9957,9958,9959,9957,9959,3224,3224,9959,3227,3232,3230,9961,3232,9961,9962,9962,9961,3231,3228,3231,9960,9960,3231,9961,9960,9961,3229,3229,9961,3230,3235,3233,9963,3235,9963,3234,3231,3234,9962,9962,3234,9963,9962,9963,3232,3232,9963,3233,3234,2677,3235,3235,2677,2679,10749,3236,3237,10749,3237,3238,3235,3237,3233,3233,3237,3236,3241,3239,3240,3237,3240,3238,3238,3240,3239,3240,2680,3241,3241,2680,2682,9971,3242,3243,9971,3243,9970,9970,3243,3244,3241,9964,3239,3239,9964,9966,9964,9965,9966,9966,9965,9967,9965,3243,9967,9967,3243,3242,3243,9968,3244,3244,9968,9969,9968,2686,9969,9969,2686,2688,3249,3245,9973,3249,9973,9972,3249,9972,9978,9978,9972,3246,9978,3246,3248,3248,3246,3247,3244,3246,9970,9970,3246,9972,9970,9972,9971,9971,9972,9973,9971,9973,3242,3242,9973,3245,3246,9974,3247,3247,9974,9976,9974,9975,9976,9976,9975,9977,9975,2701,9977,9977,2701,2703,14610,14611,14612,10754,3250,14611,10754,14611,3252,3252,14611,14610,3252,14610,9981,9981,14610,9980,9980,14610,14609,9980,14609,9979,9979,14609,3248,9979,3248,3251,3248,14609,9978,9978,14609,14612,9978,14612,3249,3249,14612,3250,3250,14612,14611,14612,14609,14610,3250,3245,3249,3247,3251,3248,10770,3253,9984,10770,9984,14613,10770,14613,3255,3255,14613,9985,9985,14613,9983,9985,9983,9982,9985,9982,3254,9983,14613,9984,3251,3254,9979,9979,3254,9982,9979,9982,9980,9980,9982,9983,9980,9983,9981,9981,9983,9984,9981,9984,3252,3252,9984,3253,9993,3256,9986,9993,9986,3257,9993,3257,3258,3254,3257,9985,9985,3257,9986,9985,9986,3255,3255,9986,3256,3261,3259,3260,3257,9987,3258,3258,9987,9990,9987,9988,9990,9990,9988,9991,9988,9989,9991,9991,9989,9992,9989,3260,9992,9992,3260,3259,3260,2725,3261,3261,2725,2727,3261,2728,3259,3259,2728,2730,10010,3262,9994,10010,9994,10009,10009,9994,3263,10009,3263,3264,3258,3263,9993,9993,3263,9994,9993,9994,3256,3256,9994,3262,3267,3265,3266,3263,9995,3264,3264,9995,9998,9995,9996,9998,9998,9996,9999,9996,9997,9999,9999,9997,10000,9997,3266,10000,10000,3266,3265,3266,10001,3267,3267,10001,10003,10001,10002,10003,10003,10002,10004,10002,2733,10004,10004,2733,2735,3267,10005,3265,3265,10005,10007,10005,10006,10007,10007,10006,10008,10006,2744,10008,10008,2744,2746,3270,3268,3272,3272,3268,10012,3272,10012,10013,10013,10012,10011,10013,10011,3271,3271,10011,3269,3264,3269,10009,10009,3269,10011,10009,10011,10010,10010,10011,10012,10010,10012,3262,3262,10012,3268,10787,3273,3272,10787,3272,10013,10787,10013,10788,10788,10013,3271,10788,3271,3275,3275,3271,3274,3273,3270,3272,3269,3274,3271,10792,3276,10014,10792,10014,10015,10792,10015,3278,10014,3276,3277,3274,3277,3275,3275,3277,3276,10798,3279,10021,10798,10021,10022,10798,10022,10799,10799,10022,10023,10799,10023,3281,3281,10023,3283,10021,3279,10020,10020,3279,10017,10020,10017,10019,10019,10017,10016,10019,10016,10018,10018,10016,3280,10018,3280,3282,3277,3280,10014,10014,3280,10016,10014,10016,10015,10015,10016,10017,10015,10017,3278,3278,10017,3279,10029,3284,10023,10029,10023,10022,10029,10022,10028,10028,10022,10021,10028,10021,3286,3286,10021,10020,3286,10020,10025,10025,10020,10019,10025,10019,10024,10024,10019,10018,10024,10018,3285,3285,10018,3282,10023,3284,3283,3284,3281,3283,3280,3285,3282,3285,2747,10024,10024,2747,10026,10024,10026,10025,10025,10026,10027,10025,10027,3286,3286,10027,2749,3289,3287,14614,3289,14614,10033,10033,14614,10030,10033,10030,10032,10032,10030,3288,10030,14614,10031,10031,14614,3287,3286,3288,10028,10028,3288,10030,10028,10030,10029,10029,10030,10031,10029,10031,3284,3284,10031,3287,3288,2756,10032,10032,2756,10034,10032,10034,10033,10033,10034,10035,10033,10035,3289,3289,10035,2758,3292,3290,3291,3289,3291,3287,3287,3291,3290,3295,3293,3294,3291,10036,3292,3292,10036,10039,10036,10037,10039,10039,10037,10040,10037,10038,10040,10040,10038,10041,10038,3294,10041,10041,3294,3293,4004,3300,3298,3294,3297,3295,3295,3297,3296,3303,3301,3300,3303,3300,3305,3305,3300,3299,3305,3299,3304,3304,3299,3302,3301,3298,3300,3297,3302,3299,14616,14617,14618,14618,14617,14619,10049,3306,14615,10049,14615,3308,3308,14615,10045,10045,14615,14616,10045,14616,14618,10045,14618,10044,10044,14618,10043,10043,14618,14619,10043,14619,3307,3307,14619,3304,3304,14619,14617,3304,14617,3305,3305,14617,14616,3305,14616,3306,3306,14616,14615,3306,3303,3305,3302,3307,3304,3307,2762,10043,10043,2762,10046,10043,10046,10044,10044,10046,10047,10044,10047,10045,10045,10047,10048,10045,10048,3308,3308,10048,2764,3311,3309,10050,3311,10050,3310,3308,3310,10049,10049,3310,10050,10049,10050,3306,3306,10050,3309,3314,3312,3313,3310,10051,3311,3311,10051,10053,10051,10052,10053,10053,10052,10054,10052,3313,10054,10054,3313,3312,3313,2771,3314,3314,2771,2773,3317,3315,3316,3314,10055,3312,3312,10055,10059,10055,10056,10059,10059,10056,10060,10056,10057,10060,10060,10057,10061,10057,10058,10061,10061,10058,10062,10058,3316,10062,10062,3316,3315,3320,3318,3319,3316,3319,3317,3317,3319,3318,10077,3321,3322,10077,3322,3323,3319,10063,3320,3320,10063,10064,10063,3322,10064,10064,3322,3321,3326,3324,3325,3322,3325,3323,3323,3325,3324,3325,10065,3326,3326,10065,10068,10065,10066,10068,10068,10066,10069,10066,10067,10069,10069,10067,10070,10067,2777,10070,10070,2777,2779,3326,10071,3324,3324,10071,10074,10071,10072,10074,10074,10072,10075,10072,10073,10075,10075,10073,10076,10073,2785,10076,10076,2785,2787,10868,3327,10078,10868,10078,10079,10868,10079,3329,10079,10078,3328,3323,3328,10077,10077,3328,10078,10077,10078,3321,3321,10078,3327,10083,3330,14620,10083,14620,3332,3332,14620,10081,10081,14620,10080,10081,10080,3331,10080,14620,3330,3328,3331,10079,10079,3331,10080,10079,10080,3329,3329,10080,3330,3331,2794,10081,10081,2794,10082,10081,10082,3332,3332,10082,2796,10085,3333,10084,10085,10084,3335,3335,10084,3334,3332,3334,10083,10083,3334,10084,10083,10084,3330,3330,10084,3333,3334,2797,3335,3335,2797,2799,3338,3336,10087,10087,3336,10086,10087,10086,3337,3335,3337,10085,10085,3337,10086,10085,10086,3333,3333,10086,3336,3341,3339,10090,10090,3339,10088,10090,10088,10089,10089,10088,3340,3337,3340,10087,10087,3340,10088,10087,10088,3338,3338,10088,3339,10903,3342,10092,10903,10092,10091,10903,10091,3344,3344,10091,3343,3340,3343,10089,10089,3343,10091,10089,10091,10090,10090,10091,10092,10090,10092,3341,3341,10092,3342,10927,3345,14621,10927,14621,10928,10928,14621,10094,10928,10094,3347,10094,14621,10093,10093,14621,3346,3346,14621,3345,3343,3346,3344,3344,3346,3345,10099,3348,10098,10099,10098,3352,10099,3352,3350,10098,3348,10096,10098,10096,10097,10097,10096,10095,10097,10095,3351,3351,10095,3349,3346,3349,10093,10093,3349,10095,10093,10095,10094,10094,10095,10096,10094,10096,3347,3347,10096,3348,2802,3350,3352,3349,2800,3351,3355,3353,10100,3355,10100,3354,3350,3354,10099,10099,3354,10100,10099,10100,3348,3348,10100,3353,3358,3356,3357,3354,3357,3355,3355,3357,3356,3357,2809,3358,3358,2809,2811,10951,3359,14622,10951,14622,10952,10952,14622,10104,10952,10104,3361,10104,14622,10103,10103,14622,3360,3360,14622,3359,3358,10101,3356,3356,10101,10102,10101,3360,10102,10102,3360,3359,10960,3362,14624,10960,14624,10108,10960,10108,3364,10108,14624,14623,10108,14623,10107,10107,14623,3363,3363,14623,10105,10105,14623,14624,10105,14624,10106,10106,14624,3362,3360,3363,10103,10103,3363,10105,10103,10105,10104,10104,10105,10106,10104,10106,3361,3361,10106,3362,3367,3365,10116,10116,3365,10112,10116,10112,10115,10115,10112,10111,10115,10111,3366,3363,10109,10107,10107,10109,14625,10107,14625,10108,10108,14625,14626,10108,14626,3364,3364,14626,10113,10109,10110,14625,14625,10110,14627,14625,14627,14626,14626,14627,14628,14626,14628,10113,10113,14628,10114,10110,3366,14627,14627,3366,10111,14627,10111,14628,14628,10111,10112,14628,10112,10114,10114,10112,3365,14629,14630,14631,10121,3368,14629,10121,14629,14631,10121,14631,3370,3370,14631,10119,10119,14631,14630,10119,14630,3369,3369,14630,10117,10117,14630,10118,10118,14630,14629,10118,14629,3368,3366,3369,10115,10115,3369,10117,10115,10117,10116,10116,10117,10118,10116,10118,3367,3367,10118,3368,3369,2827,10119,10119,2827,10120,10119,10120,3370,3370,10120,2829,3373,3371,10122,3373,10122,10123,10123,10122,3372,3370,3372,10121,10121,3372,10122,10121,10122,3368,3368,10122,3371,3372,2836,10123,10123,2836,10124,10123,10124,3373,3373,10124,2838,3376,3374,3375,3373,10125,3371,3371,10125,10130,10125,10126,10130,10130,10126,10131,10126,10127,10131,10131,10127,10132,10127,10128,10132,10132,10128,10133,10128,10129,10133,10133,10129,10134,10129,3375,10134,10134,3375,3374,3379,3377,3378,3375,3378,3376,3376,3378,3377,3378,2839,3379,3379,2839,2841,10140,3380,3381,10140,3381,10135,10140,10135,10139,10139,10135,10136,10139,10136,3382,3379,3381,3377,3377,3381,3380,3385,3383,10138,3385,10138,10137,3385,10137,3384,3381,3384,10135,10135,3384,10137,10135,10137,10136,10136,10137,10138,10136,10138,3382,3382,10138,3383,3384,2842,3385,3385,2842,2844,3385,2845,3383,3383,2845,2847,10996,3386,10142,10996,10142,10997,10997,10142,10141,10997,10141,3388,3388,10141,3387,3382,3387,10139,10139,3387,10141,10139,10141,10140,10140,10141,10142,10140,10142,3380,3380,10142,3386,11001,3389,10143,11001,10143,10144,11001,10144,3391,10143,3389,3390,3387,3390,3388,3388,3390,3389,11017,3392,10146,11017,10146,10147,11017,10147,3394,10147,10146,10145,10147,10145,3393,3390,3393,10143,10143,3393,10145,10143,10145,10144,10144,10145,10146,10144,10146,3391,3391,10146,3392,3397,3395,10148,3397,10148,10149,10149,10148,3396,3393,3396,10147,10147,3396,10148,10147,10148,3394,3394,10148,3395,3402,3398,10154,3402,10154,10162,10162,10154,3399,10162,3399,10161,10161,3399,10159,10161,10159,3401,3401,10159,3400,3396,10150,10149,10149,10150,14632,10149,14632,3397,3397,14632,10155,10150,10151,14632,14632,10151,14633,14632,14633,10155,10155,14633,10156,10151,10152,14633,14633,10152,14634,14633,14634,10156,10156,14634,10157,10152,10153,14634,14634,10153,14635,14634,14635,10157,10157,14635,10158,10153,3399,14635,14635,3399,10154,14635,10154,10158,10158,10154,3398,3399,2860,10159,10159,2860,10160,10159,10160,3400,3400,10160,2862,14638,14636,14639,3405,3403,14637,3405,14637,14636,3405,14636,14638,3405,14638,10164,10164,14638,10163,10163,14638,14639,10163,14639,3401,10163,3401,3404,3401,14639,10161,10161,14639,10162,10162,14639,14636,10162,14636,3402,3402,14636,14637,3402,14637,3403,3403,3398,3402,3400,3404,3401,3404,2866,10163,10163,2866,10165,10163,10165,10164,10164,10165,10166,10164,10166,3405,3405,10166,2868,10170,3406,3407,10170,3407,10167,10170,10167,10169,10169,10167,3408,3405,3407,3403,3403,3407,3406,3407,2869,10167,10167,2869,10168,10167,10168,3408,3408,10168,2871,3411,3409,10172,3411,10172,14640,3411,14640,10174,10174,14640,10173,10173,14640,10171,10173,10171,3410,10171,14640,10172,3408,3410,10169,10169,3410,10171,10169,10171,10170,10170,10171,10172,10170,10172,3406,3406,10172,3409,3414,3412,10176,3414,10176,10177,10177,10176,10175,10177,10175,3413,3410,3413,10173,10173,3413,10175,10173,10175,10174,10174,10175,10176,10174,10176,3411,3411,10176,3412,3417,3415,10181,10181,3415,10179,10181,10179,3416,3413,10178,10177,10177,10178,14641,10177,14641,3414,3414,14641,10180,10178,3416,14641,14641,3416,10179,14641,10179,10180,10180,10179,3415,3420,3418,10184,10184,3418,10182,10184,10182,10183,10183,10182,3419,3416,3419,10181,10181,3419,10182,10181,10182,3417,3417,10182,3418,3419,2887,10183,10183,2887,10185,10183,10185,10184,10184,10185,10186,10184,10186,3420,3420,10186,2889,11061,3421,3422,11061,3422,11062,11062,3422,10193,11062,10193,3423,3420,10187,3418,3418,10187,10190,10187,10188,10190,10190,10188,10191,10188,10189,10191,10191,10189,10192,10189,3422,10192,10192,3422,3421,10202,3424,10195,10202,10195,10201,10201,10195,3425,10201,3425,3426,3422,10194,10193,10193,10194,14642,10193,14642,3423,3423,14642,10196,10194,3425,14642,14642,3425,10195,14642,10195,10196,10196,10195,3424,3425,10197,3426,3426,10197,10199,10197,10198,10199,10199,10198,10200,10198,2890,10200,10200,2890,2892,3429,3427,10206,10206,3427,10204,10206,10204,10205,10205,10204,10203,10205,10203,3428,3426,3428,10201,10201,3428,10203,10201,10203,10202,10202,10203,10204,10202,10204,3424,3424,10204,3427,3432,3430,10208,3432,10208,10210,10210,10208,10207,10210,10207,10209,10209,10207,3431,3428,3431,10205,10205,3431,10207,10205,10207,10206,10206,10207,10208,10206,10208,3429,3429,10208,3430,3435,3433,10212,3435,10212,10213,10213,10212,10211,10213,10211,3434,3431,3434,10209,10209,3434,10211,10209,10211,10210,10210,10211,10212,10210,10212,3432,3432,10212,3433,11099,3436,14644,11099,14644,3440,11099,3440,3438,3440,14644,3439,3439,14644,14643,3439,14643,3437,3437,14643,10214,10214,14643,3436,3436,14643,14644,3434,3437,10213,10213,3437,10214,10213,10214,3435,3435,10214,3436,3443,3441,3445,3445,3441,3440,3445,3440,10215,10215,3440,3439,10215,3439,3444,3444,3439,3442,3441,3438,3440,3437,3442,3439,10223,3446,3445,10223,3445,10215,10223,10215,10222,10222,10215,3448,3448,10215,3444,3448,3444,3447,3446,3443,3445,3442,3447,3444,3447,10216,3448,3448,10216,10219,10216,10217,10219,10219,10217,10220,10217,10218,10220,10220,10218,10221,10218,2893,10221,10221,2893,2895,10232,3449,14646,10232,14646,3451,3451,14646,10229,10229,14646,14645,10229,14645,10228,10228,14645,10225,10228,10225,3450,10225,14645,10226,10226,14645,14646,10226,14646,3449,3448,10224,10222,10222,10224,14647,10222,14647,10223,10223,14647,14648,10223,14648,3446,3446,14648,10227,10224,3450,14647,14647,3450,10225,14647,10225,14648,14648,10225,10226,14648,10226,10227,10227,10226,3449,3450,2914,10228,10228,2914,10230,10228,10230,10229,10229,10230,10231,10229,10231,3451,3451,10231,2916,3454,3452,10235,3454,10235,3453,3451,10233,10232,10232,10233,14649,10232,14649,3449,3449,14649,10236,10233,10234,14649,14649,10234,14650,14649,14650,10236,10236,14650,10237,10234,3453,14650,14650,3453,10235,14650,10235,10237,10237,10235,3452,3453,2920,3454,3454,2920,2922,3457,3455,3456,3454,3456,3452,3452,3456,3455,3456,2923,3457,3457,2923,2925,3460,3458,3459,3457,3459,3455,3455,3459,3458,3459,2932,3460,3460,2932,2934,3463,3461,3462,3460,10238,3458,3458,10238,10242,10238,10239,10242,10242,10239,10243,10239,10240,10243,10243,10240,10244,10240,10241,10244,10244,10241,10245,10241,3462,10245,10245,3462,3461,3462,10246,3463,3463,10246,10249,10246,10247,10249,10249,10247,10250,10247,10248,10250,10250,10248,10251,10248,2935,10251,10251,2935,2937,3466,3464,3465,3463,3465,3461,3461,3465,3464,11101,3467,3468,11101,3468,10252,11101,10252,3469,3465,3468,3466,3466,3468,3467,3472,3470,10253,3472,10253,3471,3468,3471,10252,10252,3471,10253,10252,10253,3469,3469,10253,3470,3475,3473,10256,10256,3473,3474,3471,10254,3472,3472,10254,10255,10254,3474,10255,10255,3474,3473,3474,2944,10256,10256,2944,10257,10256,10257,3475,3475,10257,2946,11112,3476,14651,11112,14651,11113,11113,14651,10259,11113,10259,3478,10259,14651,10258,10258,14651,3477,3477,14651,3476,3475,3477,3473,3473,3477,3476,11134,3479,10261,11134,10261,14652,11134,14652,14653,11134,14653,11135,11135,14653,10262,11135,10262,3481,10262,14653,3480,3480,14653,10260,10260,14653,14652,10260,14652,10261,3477,3480,10258,10258,3480,10260,10258,10260,10259,10259,10260,10261,10259,10261,3478,3478,10261,3479,10266,3482,10263,10266,10263,14654,10266,14654,3484,3484,14654,10264,10264,14654,3483,3483,14654,10263,3480,3483,10262,10262,3483,10263,10262,10263,3481,3481,10263,3482,3483,2947,10264,10264,2947,10265,10264,10265,3484,3484,10265,2949,3487,3485,10269,10269,3485,10268,10268,3485,10267,10268,10267,3486,3484,3486,10266,10266,3486,10267,10266,10267,3482,3482,10267,3485,10299,3488,14655,10299,14655,14656,10299,14656,10298,10298,14656,3490,3490,14656,10272,10272,14656,14657,10272,14657,3489,3489,14657,10270,10270,14657,10271,10271,14657,14655,10271,14655,3488,14655,14657,14656,3486,3489,10268,10268,3489,10270,10268,10270,10269,10269,10270,10271,10269,10271,3487,3487,10271,3488,3493,3491,10273,3493,10273,10274,10274,10273,3492,3489,3492,10272,10272,3492,10273,10272,10273,3490,3490,10273,3491,3496,3494,10277,10277,3494,10275,10277,10275,10276,10276,10275,3495,3492,3495,10274,10274,3495,10275,10274,10275,3493,3493,10275,3494,3495,2950,10276,10276,2950,10278,10276,10278,10277,10277,10278,10279,10277,10279,3496,3496,10279,2952,3499,3497,3498,3496,3498,3494,3494,3498,3497,3502,3500,3501,3498,3501,3499,3499,3501,3500,3505,3503,3504,3501,3504,3502,3502,3504,3503,3504,2953,3505,3505,2953,2955,3508,3506,3507,3505,10280,3503,3503,10280,10284,10280,10281,10284,10284,10281,10285,10281,10282,10285,10285,10282,10286,10282,10283,10286,10286,10283,10287,10283,3507,10287,10287,3507,3506,3507,2959,3508,3508,2959,2961,3511,3509,3510,3508,3510,3506,3506,3510,3509,3510,2962,3511,3511,2962,2964,3511,10288,3509,3509,10288,10293,10288,10289,10293,10293,10289,10294,10289,10290,10294,10294,10290,10295,10290,10291,10295,10295,10291,10296,10291,10292,10296,10296,10292,10297,10292,3500,10297,10297,3500,3502,3499,3491,3497,3497,3491,3493,3514,3512,10305,10305,3512,10302,10305,10302,10304,10304,10302,10301,10304,10301,3513,3490,10300,10298,10298,10300,14658,10298,14658,10299,10299,14658,14659,10299,14659,3488,3488,14659,10303,10300,3513,14658,14658,3513,10301,14658,10301,14659,14659,10301,10302,14659,10302,10303,10303,10302,3512,14661,14660,14662,11164,3515,14660,11164,14660,14661,11164,14661,3517,3517,14661,10309,10309,14661,14662,10309,14662,10308,10308,14662,10306,10308,10306,3516,10306,14662,14660,10306,14660,10307,10307,14660,3515,3513,3516,10304,10304,3516,10306,10304,10306,10305,10305,10306,10307,10305,10307,3514,3514,10307,3515,10315,3518,10312,10315,10312,10314,10314,10312,10311,10314,10311,3520,3520,10311,3519,3516,10310,10308,10308,10310,14663,10308,14663,10309,10309,14663,14664,10309,14664,3517,3517,14664,10313,10310,3519,14663,14663,3519,10311,14663,10311,14664,14664,10311,10312,14664,10312,10313,10313,10312,3518,3519,2968,3520,3520,2968,2970,3523,3521,10317,3523,10317,10319,10319,10317,10316,10319,10316,10318,10318,10316,3522,3520,3522,10314,10314,3522,10316,10314,10316,10315,10315,10316,10317,10315,10317,3518,3518,10317,3521,3526,3524,10321,3526,10321,10322,10322,10321,10320,10322,10320,3525,3522,3525,10318,10318,3525,10320,10318,10320,10319,10319,10320,10321,10319,10321,3523,3523,10321,3524,3529,3527,10324,10324,3527,10323,10324,10323,3528,3525,3528,10322,10322,3528,10323,10322,10323,3526,3526,10323,3527,3528,2971,10324,10324,2971,10325,10324,10325,3529,3529,10325,2973,3532,3530,3531,3529,3531,3527,3527,3531,3530,3535,3533,3534,3531,10326,3532,3532,10326,10327,10326,3534,10327,10327,3534,3533,4247,3536,3537,4247,3537,4248,4248,3537,10334,4248,10334,3538,3534,10328,3535,3535,10328,10331,10328,10329,10331,10331,10329,10332,10329,10330,10332,10332,10330,10333,10330,3537,10333,10333,3537,3536,11211,3539,10335,11211,10335,14665,11211,14665,3541,3541,14665,3540,3540,14665,10335,3537,3540,10334,10334,3540,10335,10334,10335,3538,3538,10335,3539,3544,3542,3543,3540,10336,3541,3541,10336,10338,10336,10337,10338,10338,10337,10339,10337,3543,10339,10339,3543,3542,10346,3545,3546,10346,3546,10340,10346,10340,3547,3543,3546,3544,3544,3546,3545,3546,10341,10340,10340,10341,14666,10340,14666,3547,3547,14666,10344,10341,10342,14666,14666,10342,14667,14666,14667,10344,10344,14667,10345,10342,2974,14667,14667,2974,10343,14667,10343,10345,10345,10343,2976,3550,3548,10347,3550,10347,10348,10348,10347,3549,3547,3549,10346,10346,3549,10347,10346,10347,3545,3545,10347,3548,3553,3551,10351,10351,3551,10349,10351,10349,10350,10350,10349,3552,3549,3552,10348,10348,3552,10349,10348,10349,3550,3550,10349,3551,3552,2986,10350,10350,2986,10352,10350,10352,10351,10351,10352,10353,10351,10353,3553,3553,10353,2988,3556,3554,3555,3553,3555,3551,3551,3555,3554,3559,3557,3558,3555,3558,3556,3556,3558,3557,11216,3560,3561,11216,3561,10356,11216,10356,11217,11217,10356,10357,11217,10357,3562,3558,10354,3559,3559,10354,10355,10354,3561,10355,10355,3561,3560,3565,3563,10359,3565,10359,10358,3565,10358,3564,3561,3564,10356,10356,3564,10358,10356,10358,10357,10357,10358,10359,10357,10359,3562,3562,10359,3563,3564,2989,3565,3565,2989,2991,3568,3566,3567,3565,3567,3563,3563,3567,3566,10362,3569,3570,10362,3570,10360,10362,10360,3571,3567,3570,3568,3568,3570,3569,3570,2992,10360,10360,2992,10361,10360,10361,3571,3571,10361,2994,10372,3572,10363,10372,10363,10364,10372,10364,3574,10364,10363,3573,3571,3573,10362,10362,3573,10363,10362,10363,3569,3569,10363,3572,10370,3575,14668,10370,14668,10367,10370,10367,3577,10367,14668,10366,10366,14668,10365,10366,10365,3576,10365,14668,3575,3573,3576,10364,10364,3576,10365,10364,10365,3574,3574,10365,3575,3576,3011,10366,10366,3011,10368,10366,10368,10367,10367,10368,10369,10367,10369,3577,3577,10369,3013,3577,3014,10370,10370,3014,10371,10370,10371,3575,3575,10371,3016,3580,3578,10375,10375,3578,10373,10375,10373,10374,10374,10373,3579,3574,3579,10372,10372,3579,10373,10372,10373,3572,3572,10373,3578,3583,3581,10381,10381,3581,10378,10381,10378,10380,10380,10378,10377,10380,10377,3582,3579,10376,10374,10374,10376,14669,10374,14669,10375,10375,14669,14670,10375,14670,3580,3580,14670,10379,10376,3582,14669,14669,3582,10377,14669,10377,14670,14670,10377,10378,14670,10378,10379,10379,10378,3581,11263,3584,10383,11263,10383,10382,11263,10382,11264,11264,10382,3585,11264,3585,3586,3582,3585,10380,10380,3585,10382,10380,10382,10381,10381,10382,10383,10381,10383,3583,3583,10383,3584,10397,3587,10384,10397,10384,10385,10397,10385,10396,10396,10385,3589,10384,3587,3588,3585,3588,3586,3586,3588,3587,10394,3590,10388,10394,10388,14671,10394,14671,3592,3592,14671,10391,10391,14671,10390,10390,14671,10387,10390,10387,3591,10387,14671,10388,3588,10386,10384,10384,10386,14672,10384,14672,10385,10385,14672,14673,10385,14673,3589,3589,14673,10389,10386,3591,14672,14672,3591,10387,14672,10387,14673,14673,10387,10388,14673,10388,10389,10389,10388,3590,3591,3017,10390,10390,3017,10392,10390,10392,10391,10391,10392,10393,10391,10393,3592,3592,10393,3019,3592,3020,10394,10394,3020,10395,10394,10395,3590,3590,10395,3022,11278,3593,10399,11278,10399,10398,11278,10398,11279,11279,10398,3594,11279,3594,3595,3589,3594,10396,10396,3594,10398,10396,10398,10397,10397,10398,10399,10397,10399,3587,3587,10399,3593,3598,3596,3597,3594,3597,3595,3595,3597,3596,3601,3599,10403,10403,3599,10402,10402,3599,3600,3597,10400,3598,3598,10400,10401,10400,3600,10401,10401,3600,3599,3604,3602,10408,10408,3602,10405,10408,10405,10407,10407,10405,10404,10407,10404,10406,10406,10404,3603,3600,3603,10402,10402,3603,10404,10402,10404,10403,10403,10404,10405,10403,10405,3601,3601,10405,3602,3603,3026,10406,10406,3026,10409,10406,10409,10407,10407,10409,10410,10407,10410,10408,10408,10410,10411,10408,10411,3604,3604,10411,3028,3607,3605,3606,3604,10412,3602,3602,10412,10413,10412,3606,10413,10413,3606,3605,3610,3608,3609,3606,3609,3607,3607,3609,3608,3613,3611,10414,10414,3611,3612,3609,3612,3610,3610,3612,3611,3616,3614,10418,3616,10418,3615,3612,10415,10414,10414,10415,14674,10414,14674,3613,3613,14674,10419,10415,10416,14674,14674,10416,14675,14674,14675,10419,10419,14675,10420,10416,10417,14675,14675,10417,14676,14675,14676,10420,10420,14676,10421,10417,3615,14676,14676,3615,10418,14676,10418,10421,10421,10418,3614,3619,3617,10422,10422,3617,3618,3615,3618,3616,3616,3618,3617,10495,3620,10423,10495,10423,10424,10495,10424,3622,10424,10423,3621,3618,3621,10422,10422,3621,10423,10422,10423,3619,3619,10423,3620,3625,3623,14677,3625,14677,10427,10427,14677,10426,10426,14677,10425,10426,10425,3624,10425,14677,3623,3621,3624,10424,10424,3624,10425,10424,10425,3622,3622,10425,3623,3624,3029,10426,10426,3029,10428,10426,10428,10427,10427,10428,10429,10427,10429,3625,3625,10429,3031,10509,3626,3627,10509,3627,3628,3625,3627,3623,3623,3627,3626,10433,3629,3630,10433,3630,10430,10433,10430,10432,10432,10430,3631,3627,3630,3628,3628,3630,3629,3630,3032,10430,10430,3032,10431,10430,10431,3631,3631,10431,3034,10438,3632,10436,10438,10436,3634,3634,10436,10435,3634,10435,3633,3631,10434,10432,10432,10434,14678,10432,14678,10433,10433,14678,14679,10433,14679,3629,3629,14679,10437,10434,3633,14678,14678,3633,10435,14678,10435,14679,14679,10435,10436,14679,10436,10437,10437,10436,3632,3633,3041,3634,3634,3041,3043,3637,3635,10440,10440,3635,10439,10440,10439,3636,3634,3636,10438,10438,3636,10439,10438,10439,3632,3632,10439,3635,10531,3638,10443,10531,10443,10446,10531,10446,3640,10446,10443,3639,3636,10441,10440,10440,10441,14680,10440,14680,3637,3637,14680,10444,10441,10442,14680,14680,10442,14681,14680,14681,10444,10444,14681,10445,10442,3639,14681,14681,3639,10443,14681,10443,10445,10445,10443,3638,3643,3641,10447,3643,10447,3642,3639,3642,10446,10446,3642,10447,10446,10447,3640,3640,10447,3641,3642,3596,3643,3643,3596,3598,13757,3644,3645,13757,3645,10448,13757,10448,3646,3643,3645,3641,3641,3645,3644,3649,3647,10450,3649,10450,3648,3645,10449,10448,10448,10449,14682,10448,14682,3646,3646,14682,10451,10449,3648,14682,14682,3648,10450,14682,10450,10451,10451,10450,3647,3648,3599,3649,3649,3599,3601,3652,3650,10452,10452,3650,3651,3649,3651,3647,3647,3651,3650,10459,3653,10455,10459,10455,3654,10459,3654,10458,10458,3654,3655,3651,10453,10452,10452,10453,14683,10452,14683,3652,3652,14683,10456,10453,10454,14683,14683,10454,14684,14683,14684,10456,10456,14684,10457,10454,3654,14684,14684,3654,10455,14684,10455,10457,10457,10455,3653,3654,3605,3655,3655,3605,3607,11871,3656,10461,11871,10461,10460,11871,10460,3658,3658,10460,3657,3655,3657,10458,10458,3657,10460,10458,10460,10459,10459,10460,10461,10459,10461,3653,3653,10461,3656,3661,3659,3660,3657,3660,3658,3658,3660,3659,3664,3662,3663,3660,3663,3661,3661,3663,3662,3663,3608,3664,3664,3608,3610,3667,3665,3666,3664,3666,3662,3662,3666,3665,3670,3668,10462,10462,3668,3669,3666,3669,3667,3667,3669,3668,3673,3671,10463,3673,10463,3672,3669,3672,10462,10462,3672,10463,10462,10463,3670,3670,10463,3671,3672,3611,3673,3673,3611,3613,3676,3674,3675,3673,10464,3671,3671,10464,10466,10464,10465,10466,10466,10465,10467,10465,3675,10467,10467,3675,3674,3679,3677,3678,3675,10468,3676,3676,10468,10472,10468,10469,10472,10472,10469,10473,10469,10470,10473,10473,10470,10474,10470,10471,10474,10474,10471,10475,10471,3678,10475,10475,3678,3677,3678,3614,3679,3679,3614,3616,10477,3680,3681,10477,3681,10476,10476,3681,3682,3679,3681,3677,3677,3681,3680,3681,3617,3682,3682,3617,3619,11911,3683,10479,11911,10479,10478,11911,10478,11912,11912,10478,3684,11912,3684,3685,3682,3684,10476,10476,3684,10478,10476,10478,10477,10477,10478,10479,10477,10479,3680,3680,10479,3683,3688,3686,3687,3684,3687,3685,3685,3687,3686,3691,3689,3690,3687,10480,3688,3688,10480,10485,10480,10481,10485,10485,10481,10486,10481,10482,10486,10486,10482,10487,10482,10483,10487,10487,10483,10488,10483,10484,10488,10488,10484,10489,10484,3690,10489,10489,3690,3689,11954,3692,3693,11954,3693,11955,11955,3693,10490,11955,10490,3694,3690,3693,3691,3691,3693,3692,3697,3695,10492,10492,3695,10491,10492,10491,3696,3693,3696,10490,10490,3696,10491,10490,10491,3694,3694,10491,3695,3696,10493,10492,10492,10493,14685,10492,14685,3697,3697,14685,10496,10493,10494,14685,14685,10494,14686,14685,14686,10496,10496,14686,10497,10494,3620,14686,14686,3620,10495,14686,10495,10497,10497,10495,3622,3700,3698,10498,10498,3698,3699,3697,3699,3695,3695,3699,3698,13754,3701,10499,13754,10499,10500,13754,10500,3703,10500,10499,3702,3699,3702,10498,10498,3702,10499,10498,10499,3700,3700,10499,3701,3706,3704,10503,10503,3704,14687,10503,14687,10502,10502,14687,10501,10502,10501,3705,10501,14687,3704,3702,3705,10500,10500,3705,10501,10500,10501,3703,3703,10501,3704,3709,3707,10506,3709,10506,10508,10508,10506,10505,10508,10505,3708,3705,10504,10502,10502,10504,14688,10502,14688,10503,10503,14688,14689,10503,14689,3706,3706,14689,10507,10504,3708,14688,14688,3708,10505,14688,10505,14689,14689,10505,10506,14689,10506,10507,10507,10506,3707,3708,3626,10508,10508,3626,10509,10508,10509,3709,3709,10509,3628,3712,3710,3711,3709,10510,3707,3707,10510,10514,10510,10511,10514,10514,10511,10515,10511,10512,10515,10515,10512,10516,10512,10513,10516,10516,10513,10517,10513,3711,10517,10517,3711,3710,3711,3635,3712,3712,3635,3637,3715,3713,3714,3712,3714,3710,3710,3714,3713,10553,3716,10518,10553,10518,3718,10518,3716,3717,3714,3717,3715,3715,3717,3716,10567,3719,14690,10567,14690,10521,10567,10521,3721,10521,14690,10520,10520,14690,10519,10520,10519,3720,10519,14690,3719,3717,3720,10518,10518,3720,10519,10518,10519,3718,3718,10519,3719,3724,3722,10525,3724,10525,10528,10528,10525,10524,10528,10524,3723,3720,10522,10520,10520,10522,14691,10520,14691,10521,10521,14691,14692,10521,14692,3721,3721,14692,10526,10522,10523,14691,14691,10523,14693,14691,14693,14692,14692,14693,14694,14692,14694,10526,10526,14694,10527,10523,3723,14693,14693,3723,10524,14693,10524,14694,14694,10524,10525,14694,10525,10527,10527,10525,3722,3727,3725,10529,3727,10529,3726,3723,3726,10528,10528,3726,10529,10528,10529,3724,3724,10529,3725,3730,3728,3729,3726,3729,3727,3727,3729,3728,10532,3731,10530,10532,10530,3733,10530,3731,3732,3729,3732,3730,3730,3732,3731,3732,3638,10530,10530,3638,10531,10530,10531,3733,3733,10531,3640,3736,3734,10533,3736,10533,3735,3733,3735,10532,10532,3735,10533,10532,10533,3731,3731,10533,3734,3735,10534,3736,3736,10534,10535,10534,3704,10535,10535,3704,3706,3739,3737,3738,3736,3738,3734,3734,3738,3737,3742,3740,3741,3738,3741,3739,3739,3741,3740,10554,3743,14695,10554,14695,10549,10554,10549,3745,10549,14695,10548,10548,14695,3744,3744,14695,3743,3741,10536,3742,3742,10536,10542,10536,10537,10542,10542,10537,10543,10537,10538,10543,10543,10538,10544,10538,10539,10544,10544,10539,10545,10539,10540,10545,10545,10540,10546,10540,10541,10546,10546,10541,10547,10541,3744,10547,10547,3744,3743,10552,3746,10551,10552,10551,10550,10552,10550,3748,3748,10550,3747,3744,3747,10548,10548,3747,10550,10548,10550,10549,10549,10550,10551,10549,10551,3745,3745,10551,3746,3747,3713,3748,3748,3713,3715,3748,3716,10552,10552,3716,10553,10552,10553,3746,3746,10553,3718,3751,3749,10555,3751,10555,10556,10556,10555,3750,3745,3750,10554,10554,3750,10555,10554,10555,3743,3743,10555,3749,3754,3752,10558,3754,10558,3753,3750,10557,10556,10556,10557,14696,10556,14696,3751,3751,14696,10559,10557,3753,14696,14696,3753,10558,14696,10558,10559,10559,10558,3752,3757,3755,3756,3753,3756,3754,3754,3756,3755,3760,3758,10566,10566,3758,3759,3756,10560,3757,3757,10560,10563,10560,10561,10563,10563,10561,10564,10561,10562,10564,10564,10562,10565,10562,3759,10565,10565,3759,3758,3759,3719,10566,10566,3719,10567,10566,10567,3760,3760,10567,3721,3760,3056,3758,3758,3056,3058,3763,3761,3762,3757,3762,3755,3755,3762,3761,3766,3764,3765,3762,3765,3763,3763,3765,3764,3769,3767,3768,3765,3768,3766,3766,3768,3767,3768,10568,3769,3769,10568,10570,10568,10569,10570,10570,10569,10571,10569,3059,10571,10571,3059,3061,3772,3770,3771,3769,3771,3767,3767,3771,3770,3775,3773,3774,3771,3774,3772,3772,3774,3773,3774,10572,3775,3775,10572,10576,10572,10573,10576,10576,10573,10577,10573,10574,10577,10577,10574,10578,10574,10575,10578,10578,10575,10579,10575,3074,10579,10579,3074,3076,3778,3776,3777,3775,10580,3773,3773,10580,10581,10580,3777,10581,10581,3777,3776,3781,3779,3780,3777,10582,3778,3778,10582,10583,10582,3780,10583,10583,3780,3779,3784,3782,3783,3780,10584,3781,3781,10584,10586,10584,10585,10586,10586,10585,10587,10585,3783,10587,10587,3783,3782,3783,3080,3784,3784,3080,3082,3784,3083,3782,3782,3083,3085,11359,3785,10592,11359,10592,10593,11359,10593,3787,10592,3785,3786,3781,10588,3779,3779,10588,10590,10588,10589,10590,10590,10589,10591,10589,3786,10591,10591,3786,3785,3790,3788,10597,10597,3788,10595,10597,10595,10596,10596,10595,10594,10596,10594,3789,3786,3789,10592,10592,3789,10594,10592,10594,10593,10593,10594,10595,10593,10595,3787,3787,10595,3788,10630,3791,10602,10630,10602,10603,10630,10603,10629,10629,10603,10604,10629,10604,3793,3793,10604,3795,10602,3791,10599,10602,10599,10601,10601,10599,10598,10601,10598,10600,10600,10598,3792,10600,3792,3794,3789,3792,10596,10596,3792,10598,10596,10598,10597,10597,10598,10599,10597,10599,3790,3790,10599,3791,10627,3796,10604,10627,10604,10603,10627,10603,10628,10628,10603,10602,10628,10602,3798,3798,10602,10606,10606,10602,10601,10606,10601,10605,10605,10601,10600,10605,10600,3797,3797,10600,3794,10604,3796,3795,3796,3793,3795,3792,3797,3794,10611,3799,14697,10611,14697,3801,3801,14697,10609,10609,14697,10607,10609,10607,3800,10607,14697,10608,10608,14697,3799,3797,3800,10605,10605,3800,10607,10605,10607,10606,10606,10607,10608,10606,10608,3798,3798,10608,3799,3800,3086,10609,10609,3086,10610,10609,10610,3801,3801,10610,3088,10613,3802,10612,10613,10612,3804,3804,10612,3803,3801,3803,10611,10611,3803,10612,10611,10612,3799,3799,10612,3802,3803,3092,3804,3804,3092,3094,3807,3805,10614,3807,10614,3806,3804,3806,10613,10613,3806,10614,10613,10614,3802,3802,10614,3805,3806,3095,3807,3807,3095,3097,10619,3808,10615,10619,10615,10616,10619,10616,3810,10615,3808,3809,3807,3809,3805,3805,3809,3808,3809,3101,10615,10615,3101,10617,10615,10617,10616,10616,10617,10618,10616,10618,3810,3810,10618,3103,10623,3811,10620,10623,10620,3812,10623,3812,3813,3810,3812,10619,10619,3812,10620,10619,10620,3808,3808,10620,3811,3816,3814,3815,3812,3815,3813,3813,3815,3814,3819,3817,10621,10621,3817,3818,3815,3818,3816,3816,3818,3817,3818,3107,10621,10621,3107,10622,10621,10622,3819,3819,10622,3109,3819,3113,3817,3817,3113,3115,3816,3116,3814,3814,3116,3118,10626,3820,10624,10626,10624,10625,10625,10624,3821,10625,3821,3822,3813,3821,10623,10623,3821,10624,10623,10624,3811,3811,10624,3820,3821,3121,3822,3822,3121,3123,3822,3796,10625,10625,3796,10627,10625,10627,10626,10626,10627,10628,10626,10628,3820,3820,10628,3798,3825,3823,14698,3825,14698,10634,10634,14698,10633,10633,14698,10632,10633,10632,10631,10633,10631,3824,10632,14698,3823,3793,3824,10629,10629,3824,10631,10629,10631,10630,10630,10631,10632,10630,10632,3791,3791,10632,3823,11380,3826,10636,11380,10636,3828,3828,10636,10635,3828,10635,3827,3824,3827,10633,10633,3827,10635,10633,10635,10634,10634,10635,10636,10634,10636,3825,3825,10636,3826,11382,3829,10640,11382,10640,3831,10640,3829,10639,10639,3829,3830,3827,10637,3828,3828,10637,10638,10637,3830,10638,10638,3830,3829,11399,3832,10642,11399,10642,10641,11399,10641,11400,11400,10641,3833,11400,3833,3834,3830,3833,10639,10639,3833,10641,10639,10641,10640,10640,10641,10642,10640,10642,3831,3831,10642,3832,3837,3835,3836,3833,10643,3834,3834,10643,10647,10643,10644,10647,10647,10644,10648,10644,10645,10648,10648,10645,10649,10645,10646,10649,10649,10646,10650,10646,3836,10650,10650,3836,3835,3836,3132,3837,3837,3132,3134,10656,3838,3839,10656,3839,10651,10656,10651,10655,10655,10651,10652,10655,10652,3840,3837,3839,3835,3835,3839,3838,3839,3138,10651,10651,3138,10653,10651,10653,10652,10652,10653,10654,10652,10654,3840,3840,10654,3140,11409,3841,10658,11409,10658,11410,11410,10658,10657,11410,10657,3843,3843,10657,3842,3840,3842,10655,10655,3842,10657,10655,10657,10656,10656,10657,10658,10656,10658,3838,3838,10658,3841,3846,3844,3845,3842,3845,3843,3843,3845,3844,3845,10659,3846,3846,10659,10663,10659,10660,10663,10663,10660,10664,10660,10661,10664,10664,10661,10665,10661,10662,10665,10665,10662,10666,10662,3147,10666,10666,3147,3149,3849,3847,10671,10671,3847,3848,3846,10667,3844,3844,10667,10669,10667,10668,10669,10669,10668,10670,10668,3848,10670,10670,3848,3847,3852,3850,10674,10674,3850,10673,10673,3850,10672,10673,10672,3851,3848,3851,10671,10671,3851,10672,10671,10672,3849,3849,10672,3850,3855,3853,10676,3855,10676,10675,3855,10675,10677,10677,10675,3854,3851,3854,10673,10673,3854,10675,10673,10675,10674,10674,10675,10676,10674,10676,3852,3852,10676,3853,3854,10678,10677,10677,10678,14699,10677,14699,3855,3855,14699,10680,10678,3150,14699,14699,3150,10679,14699,10679,10680,10680,10679,3152,3858,3856,3857,3855,3857,3853,3853,3857,3856,3861,3859,3860,3857,3860,3858,3858,3860,3859,3860,3153,3861,3861,3153,3155,3861,3162,3859,3859,3162,3164,3864,3862,3863,3858,3863,3856,3856,3863,3862,3863,10681,3864,3864,10681,10682,10681,3165,10682,10682,3165,3167,3867,3865,3866,3864,10683,3862,3862,10683,10684,10683,3866,10684,10684,3866,3865,3870,3868,3869,3866,3869,3867,3867,3869,3868,3873,3871,3872,3869,3872,3870,3870,3872,3871,10692,3874,3875,10692,3875,10689,10692,10689,10691,10691,10689,3876,3872,10685,3873,3873,10685,10687,10685,10686,10687,10687,10686,10688,10686,3875,10688,10688,3875,3874,3875,3168,10689,10689,3168,10690,10689,10690,3876,3876,10690,3170,11446,3877,10694,11446,10694,14700,11446,14700,3879,3879,14700,3878,3878,14700,10693,10693,14700,10694,3876,3878,10691,10691,3878,10693,10691,10693,10692,10692,10693,10694,10692,10694,3874,3874,10694,3877,3882,3880,3881,3878,3881,3879,3879,3881,3880,3885,3883,3884,3881,10695,3882,3882,10695,10696,10695,3884,10696,10696,3884,3883,11468,3886,10697,11468,10697,10698,11468,10698,3888,10697,3886,3887,3884,3887,3885,3885,3887,3886,3891,3889,10700,3891,10700,10699,3891,10699,3890,3887,3890,10697,10697,3890,10699,10697,10699,10698,10698,10699,10700,10698,10700,3888,3888,10700,3889,3890,10701,3891,3891,10701,10703,10701,10702,10703,10703,10702,10704,10702,3171,10704,10704,3171,3173,10715,3892,14701,10715,14701,10705,10715,10705,3894,10705,14701,3893,3893,14701,3892,3891,3893,3889,3889,3893,3892,10713,3895,10709,10713,10709,3897,3897,10709,3896,3893,10706,10705,10705,10706,14702,10705,14702,3894,3894,14702,10710,10706,10707,14702,14702,10707,14703,14702,14703,10710,10710,14703,10711,10707,10708,14703,14703,10708,14704,14703,14704,10711,10711,14704,10712,10708,3896,14704,14704,3896,10709,14704,10709,10712,10712,10709,3895,3896,3177,3897,3897,3177,3179,3897,3186,10713,10713,3186,10714,10713,10714,3895,3895,10714,3188,11479,3898,10716,11479,10716,11480,11480,10716,3899,11480,3899,3900,3894,3899,10715,10715,3899,10716,10715,10716,3892,3892,10716,3898,3903,3901,3902,3899,10717,3900,3900,10717,10719,10717,10718,10719,10719,10718,10720,10718,3902,10720,10720,3902,3901,10728,3904,10721,10728,10721,10722,10728,10722,10727,10727,10722,3906,10721,3904,3905,3902,3905,3903,3903,3905,3904,10725,3907,10724,10725,10724,10723,10725,10723,3909,3909,10723,3908,3905,3908,10721,10721,3908,10723,10721,10723,10722,10722,10723,10724,10722,10724,3906,3906,10724,3907,3908,3189,3909,3909,3189,3191,3909,3201,10725,10725,3201,10726,10725,10726,3907,3907,10726,3203,3912,3910,10733,10733,3910,10730,10733,10730,10732,10732,10730,10729,10732,10729,10731,10731,10729,3911,3906,3911,10727,10727,3911,10729,10727,10729,10728,10728,10729,10730,10728,10730,3904,3904,10730,3910,3915,3913,10736,3915,10736,10735,3915,10735,10737,10737,10735,10734,10737,10734,3914,3911,3914,10731,10731,3914,10734,10731,10734,10732,10732,10734,10735,10732,10735,10733,10733,10735,10736,10733,10736,3912,3912,10736,3913,10758,3916,10738,10758,10738,10757,10757,10738,3917,10757,3917,3918,3914,3917,10737,10737,3917,10738,10737,10738,3915,3915,10738,3916,3921,3919,3920,3917,10739,3918,3918,10739,10741,10739,10740,10741,10741,10740,10742,10740,3920,10742,10742,3920,3919,3924,3922,3923,3920,10743,3921,3921,10743,10745,10743,10744,10745,10745,10744,10746,10744,3923,10746,10746,3923,3922,3923,3204,3924,3924,3204,3206,3927,3925,10747,10747,3925,3926,3924,3926,3922,3922,3926,3925,3926,10748,10747,10747,10748,14705,10747,14705,3927,3927,14705,10750,10748,3236,14705,14705,3236,10749,14705,10749,10750,10750,10749,3238,3930,3928,10753,10753,3928,3929,3927,10751,3925,3925,10751,10752,10751,3929,10752,10752,3929,3928,3929,3250,10753,10753,3250,10754,10753,10754,3930,3930,10754,3252,3930,10755,3928,3928,10755,10756,10755,3919,10756,10756,3919,3921,14707,14708,14709,4477,3931,14710,4477,14710,11507,11507,14710,14709,11507,14709,14708,11507,14708,14706,11507,14706,4478,4478,14706,3933,3933,14706,10762,10762,14706,14707,10762,14707,10761,10761,14707,3932,3932,14707,10759,10759,14707,14709,10759,14709,10760,10760,14709,14710,10760,14710,3931,14707,14706,14708,3918,3932,10757,10757,3932,10759,10757,10759,10758,10758,10759,10760,10758,10760,3916,3916,10760,3931,3936,3934,10765,3936,10765,10764,3936,10764,10767,10767,10764,3935,3932,10763,10761,10761,10763,14711,10761,14711,10762,10762,14711,14712,10762,14712,3933,3933,14712,10766,10763,3935,14711,14711,3935,10764,14711,10764,14712,14712,10764,10765,14712,10765,10766,10766,10765,3934,3935,10768,10767,10767,10768,14713,10767,14713,3936,3936,14713,10771,10768,10769,14713,14713,10769,14714,14713,14714,10771,10771,14714,10772,10769,3253,14714,14714,3253,10770,14714,10770,10772,10772,10770,3255,3939,3937,3938,3936,10773,3934,3934,10773,10776,10773,10774,10776,10776,10774,10777,10774,10775,10777,10777,10775,10778,10775,3938,10778,10778,3938,3937,3938,3268,3939,3939,3268,3270,11519,3940,3941,11519,3941,10779,11519,10779,11520,11520,10779,10780,11520,10780,3942,3939,3941,3937,3937,3941,3940,13743,3943,10782,13743,10782,14715,13743,14715,3945,3945,14715,10783,10783,14715,10781,10783,10781,3944,10781,14715,10782,3941,3944,10779,10779,3944,10781,10779,10781,10780,10780,10781,10782,10780,10782,3942,3942,10782,3943,13749,3946,10784,13749,10784,3948,3948,10784,3947,3944,3947,10783,10783,3947,10784,10783,10784,3945,3945,10784,3946,3953,3949,3950,3953,3950,14716,3953,14716,3952,3952,14716,10786,3952,10786,3951,10786,14716,10785,10785,14716,3950,3947,3950,3948,3948,3950,3949,3950,3273,10785,10785,3273,10787,10785,10787,10786,10786,10787,10788,10786,10788,3951,3951,10788,3275,14717,14718,14719,14719,14718,14720,14719,14720,14721,13752,3954,14721,13752,14721,14720,13752,14720,13753,13753,14720,14718,13753,14718,3956,3956,14718,10789,10789,14718,14717,10789,14717,3955,3955,14717,3952,3952,14717,14719,3952,14719,3953,3953,14719,14721,3953,14721,3954,3954,3949,3953,3951,3955,3952,3959,3957,10791,10791,3957,10790,10791,10790,3958,3955,3958,10789,10789,3958,10790,10789,10790,3956,3956,10790,3957,3958,3276,10791,10791,3276,10792,10791,10792,3959,3959,10792,3278,13751,3960,3963,13751,3963,3964,13751,3964,13750,13750,3964,3962,3963,3960,3961,3959,3961,3957,3957,3961,3960,14722,14723,14724,14724,14723,14725,13748,3965,14725,13748,14725,3967,3967,14725,3969,3969,14725,14723,3969,14723,10793,10793,14723,14722,10793,14722,3968,3968,14722,3963,3968,3963,3966,3963,14722,14724,3963,14724,3964,3964,14724,14725,3964,14725,3965,3965,3962,3964,3961,3966,3963,14728,14726,14729,14728,14729,14730,14730,14729,14731,13746,3970,14731,13746,14731,14729,13746,14729,13747,13747,14729,14726,13747,14726,3972,3972,14726,10794,10794,14726,14727,10794,14727,3971,3971,14727,3968,3968,14727,10793,10793,14727,14730,10793,14730,3969,3969,14730,14731,3969,14731,3970,14730,14727,14728,14728,14727,14726,3970,3967,3969,3966,3971,3968,3975,3973,10797,10797,3973,10795,10797,10795,10796,10796,10795,3974,3971,3974,10794,10794,3974,10795,10794,10795,3972,3972,10795,3973,3974,3279,10796,10796,3279,10798,10796,10798,10797,10797,10798,10799,10797,10799,3975,3975,10799,3281,13739,3976,10800,13739,10800,10801,13739,10801,13738,13738,10801,3980,13738,3980,3978,10800,3976,3979,3979,3976,3977,3975,3977,3973,3973,3977,3976,10815,3981,3980,10815,3980,10801,10815,10801,3985,3985,10801,3984,3984,10801,10800,3984,10800,10814,10814,10800,3979,10814,3979,3983,3983,3979,3982,3981,3978,3980,3977,3982,3979,3982,10802,3983,3983,10802,10808,10802,10803,10808,10808,10803,10809,10803,10804,10809,10809,10804,10810,10804,10805,10810,10810,10805,10811,10805,10806,10811,10811,10806,10812,10806,10807,10812,10812,10807,10813,10807,3290,10813,10813,3290,3292,14732,14733,14734,14734,14733,14735,11536,3986,14736,11536,14736,14735,11536,14735,11537,11537,14735,14733,11537,14733,3988,3988,14733,10818,10818,14733,14732,10818,14732,3987,3987,14732,10817,10817,14732,14734,10817,14734,3984,3984,14734,3985,3985,14734,14736,3985,14736,10816,10816,14736,3986,14736,14734,14735,3981,10815,3986,3986,10815,10816,10816,10815,3985,3983,3987,10814,10814,3987,10817,10814,10817,3984,10832,3989,10819,10832,10819,3991,3991,10819,3990,3987,3990,10818,10818,3990,10819,10818,10819,3988,3988,10819,3989,3990,10820,3991,3991,10820,10826,10820,10821,10826,10826,10821,10827,10821,10822,10827,10827,10822,10828,10822,10823,10828,10828,10823,10829,10823,10824,10829,10829,10824,10830,10824,10825,10830,10830,10825,10831,10825,3293,10831,10831,3293,3295,14740,14737,14741,14738,14739,14743,14740,14741,14743,14741,14742,14743,14742,14738,14743,11548,3992,14742,11548,14742,14741,11548,14741,11549,11549,14741,14737,11549,14737,3994,3994,14737,3996,3996,14737,10840,10840,14737,14740,10840,14740,10839,10839,14740,14743,10839,14743,10838,10838,14743,14739,10838,14739,3995,3995,14739,3993,3993,14739,10835,10835,14739,14738,10835,14738,3992,3992,14738,14742,3991,10833,10832,10832,10833,14744,10832,14744,3989,3989,14744,10836,10833,10834,14744,14744,10834,14745,14744,14745,10836,10836,14745,10837,10834,3993,14745,14745,3993,10835,14745,10835,10837,10837,10835,3992,13736,3997,3996,13736,3996,10840,13736,10840,13737,13737,10840,10839,13737,10839,3999,3999,10839,10838,3999,10838,3995,3999,3995,3998,3997,3994,3996,3993,3998,3995,4001,4003,10042,4001,10042,4000,4000,10042,3299,3998,4001,3999,3999,4001,4000,3298,4002,4004,4001,3296,4003,13735,4005,3299,13735,3299,14747,13735,14747,13734,13734,14747,3300,13734,3300,14746,13734,14746,4007,4007,14746,4006,4006,14746,3300,3300,14747,3299,4005,4000,3299,4002,4006,3300,4010,4008,4009,4006,4009,4007,4007,4009,4008,4013,4011,4012,4009,4012,4010,4010,4012,4011,10876,4014,14748,10876,14748,10875,10875,14748,10848,10875,10848,4016,10848,14748,10847,10847,14748,4014,10847,4014,4015,4012,10841,4013,4013,10841,10844,10841,10842,10844,10844,10842,10845,10842,10843,10845,10845,10843,10846,10843,4015,10846,10846,4015,4014,10865,4017,10850,10865,10850,10849,10865,10849,4019,4019,10849,4018,4015,4018,10847,10847,4018,10849,10847,10849,10848,10848,10849,10850,10848,10850,4016,4016,10850,4017,4022,4020,4021,4018,10851,4019,4019,10851,10852,10851,4021,10852,10852,4021,4020,4025,4023,4024,4021,4024,4022,4022,4024,4023,4024,10853,4025,4025,10853,10857,10853,10854,10857,10857,10854,10858,10854,10855,10858,10858,10855,10859,10855,10856,10859,10859,10856,10860,10856,3301,10860,10860,3301,3303,4028,4026,4027,4025,4027,4023,4023,4027,4026,4027,10861,4028,4028,10861,10863,10861,10862,10863,10863,10862,10864,10862,3309,10864,10864,3309,3311,4028,3315,4026,4026,3315,3317,4022,3318,4020,4020,3318,3320,4031,4029,10866,4031,10866,10867,10867,10866,4030,4019,4030,10865,10865,4030,10866,10865,10866,4017,4017,10866,4029,4030,3327,10867,10867,3327,10868,10867,10868,4031,4031,10868,3329,4031,10869,4029,4029,10869,10872,10869,10870,10872,10872,10870,10873,10870,10871,10873,10873,10871,10874,10871,3336,10874,10874,3336,3338,10891,4032,10878,10891,10878,10877,10891,10877,4034,4034,10877,4033,4016,4033,10875,10875,4033,10877,10875,10877,10876,10876,10877,10878,10876,10878,4014,4014,10878,4032,4033,10879,4034,4034,10879,10885,10879,10880,10885,10885,10880,10886,10880,10881,10886,10886,10881,10887,10881,10882,10887,10887,10882,10888,10882,10883,10888,10888,10883,10889,10883,10884,10889,10889,10884,10890,10884,3339,10890,10890,3339,3341,11553,4035,10893,11553,10893,4037,4037,10893,4036,4034,10892,10891,10891,10892,14749,10891,14749,4032,4032,14749,10894,10892,4036,14749,14749,4036,10893,14749,10893,10894,10894,10893,4035,10905,4038,10901,10905,10901,4040,10901,4038,4039,4036,10895,4037,4037,10895,10898,10895,10896,10898,10898,10896,10899,10896,10897,10899,10899,10897,10900,10897,4039,10900,10900,4039,4038,4039,10902,10901,10901,10902,14750,10901,14750,4040,4040,14750,10904,10902,3342,14750,14750,3342,10903,14750,10903,10904,10904,10903,3344,4043,4041,10907,4043,10907,10909,10909,10907,4042,4040,10906,10905,10905,10906,14751,10905,14751,4038,4038,14751,10908,10906,4042,14751,14751,4042,10907,14751,10907,10908,10908,10907,4041,11561,4044,14752,11561,14752,10912,11561,10912,4046,10912,14752,10911,10911,14752,10910,10911,10910,4045,10910,14752,4044,4042,4045,10909,10909,4045,10910,10909,10910,4043,4043,10910,4044,11570,4047,14753,11570,14753,4049,4049,14753,10916,10916,14753,14754,10916,14754,10915,10915,14754,10913,10915,10913,4048,10913,14754,10914,10914,14754,4047,4047,14754,14753,4045,4048,10911,10911,4048,10913,10911,10913,10912,10912,10913,10914,10912,10914,4046,4046,10914,4047,11588,4050,10918,11588,10918,14755,11588,14755,11589,11589,14755,4052,4052,14755,10917,4052,10917,4051,10917,14755,10918,4048,4051,10915,10915,4051,10917,10915,10917,10916,10916,10917,10918,10916,10918,4049,4049,10918,4050,11591,4053,10920,11591,10920,4055,10920,4053,10919,10919,4053,4054,4051,4054,4052,4052,4054,4053,11599,4056,10922,11599,10922,4058,4058,10922,10921,4058,10921,4057,4054,4057,10919,10919,4057,10921,10919,10921,10920,10920,10921,10922,10920,10922,4055,4055,10922,4056,10931,4059,14756,10931,14756,10924,10931,10924,4061,10924,14756,10923,10923,14756,4059,10923,4059,4060,4057,4060,4058,4058,4060,4059,4060,10925,10923,10923,10925,14757,10923,14757,10924,10924,14757,14758,10924,14758,4061,4061,14758,10929,10925,10926,14757,14757,10926,14759,14757,14759,14758,14758,14759,14760,14758,14760,10929,10929,14760,10930,10926,3345,14759,14759,3345,10927,14759,10927,14760,14760,10927,10928,14760,10928,10930,10930,10928,3347,11601,4062,10932,11601,10932,4063,11601,4063,4064,4061,4063,10931,10931,4063,10932,10931,10932,4059,4059,10932,4062,11619,4065,4066,11619,4066,10935,11619,10935,11620,11620,10935,10936,11620,10936,11621,11621,10936,4067,4063,10933,4064,4064,10933,10934,10933,4066,10934,10934,4066,4065,4070,4068,10939,4070,10939,10942,10942,10939,10938,10942,10938,10941,10941,10938,4069,4066,10937,10935,10935,10937,14761,10935,14761,10936,10936,14761,14762,10936,14762,4067,4067,14762,10940,10937,4069,14761,14761,4069,10938,14761,10938,14762,14762,10938,10939,14762,10939,10940,10940,10939,4068,10947,4071,10944,10947,10944,10943,10947,10943,14763,10947,14763,4073,4073,14763,4072,4072,14763,10943,4069,4072,10941,10941,4072,10943,10941,10943,10942,10942,10943,10944,10942,10944,4070,4070,10944,4071,4072,10945,4073,4073,10945,10946,10945,3353,10946,10946,3353,3355,10953,4074,14764,10953,14764,10950,10953,10950,4076,10950,14764,10949,10949,14764,10948,10949,10948,4075,10948,14764,4074,4073,4075,10947,10947,4075,10948,10947,10948,4071,4071,10948,4074,4075,3359,10949,10949,3359,10951,10949,10951,10950,10950,10951,10952,10950,10952,4076,4076,10952,3361,4079,4077,10956,10956,4077,10954,10956,10954,10955,10955,10954,4078,4076,4078,10953,10953,4078,10954,10953,10954,4074,4074,10954,4077,10982,4080,10958,10982,10958,10957,10982,10957,10981,10981,10957,4081,10981,4081,4082,4078,4081,10955,10955,4081,10957,10955,10957,10956,10956,10957,10958,10956,10958,4079,4079,10958,4080,4085,4083,10959,10959,4083,4084,4081,4084,4082,4082,4084,4083,4084,3362,10959,10959,3362,10960,10959,10960,4085,4085,10960,3364,4088,4086,4087,4085,10961,4083,4083,10961,10963,10961,10962,10963,10963,10962,10964,10962,4087,10964,10964,4087,4086,4087,10965,4088,4088,10965,10970,10965,10966,10970,10970,10966,10971,10966,10967,10971,10971,10967,10972,10967,10968,10972,10972,10968,10973,10968,10969,10973,10973,10969,10974,10969,3365,10974,10974,3365,3367,4088,10975,4086,4086,10975,10978,10975,10976,10978,10978,10976,10979,10976,10977,10979,10979,10977,10980,10977,3374,10980,10980,3374,3376,11630,4089,10987,11630,10987,4091,4091,10987,4093,10987,4089,10986,10986,4089,10984,10986,10984,10985,10985,10984,10983,10985,10983,4090,10985,4090,4092,4082,4090,10981,10981,4090,10983,10981,10983,10982,10982,10983,10984,10982,10984,4080,4080,10984,4089,11645,4094,10987,11645,10987,4096,4096,10987,10986,4096,10986,10989,10989,10986,10985,10989,10985,10988,10988,10985,4095,4095,10985,4092,10987,4094,4093,4094,4091,4093,4090,4095,4092,11647,4097,10991,11647,10991,14765,11647,14765,4099,4099,14765,10992,10992,14765,10990,10992,10990,4098,10990,14765,10991,4095,4098,10988,10988,4098,10990,10988,10990,10989,10989,10990,10991,10989,10991,4096,4096,10991,4097,11656,4100,14766,11656,14766,4104,11656,4104,11657,11657,4104,4102,4104,14766,4103,4103,14766,10993,4103,10993,4101,10993,14766,4100,4098,4101,10992,10992,4101,10993,10992,10993,4099,4099,10993,4100,10998,4105,14767,10998,14767,14769,10998,14769,4107,4107,14769,10995,10995,14769,14768,10995,14768,10994,10994,14768,4106,4106,14768,4103,4103,14768,4104,4104,14768,14767,4104,14767,4105,14767,14768,14769,4105,4102,4104,4101,4106,4103,4106,3386,10994,10994,3386,10996,10994,10996,10995,10995,10996,10997,10995,10997,4107,4107,10997,3388,4110,4108,11000,11000,4108,10999,11000,10999,4109,4107,4109,10998,10998,4109,10999,10998,10999,4105,4105,10999,4108,4109,3389,11000,11000,3389,11001,11000,11001,4110,4110,11001,3391,11669,4111,4114,11669,4114,11008,11669,11008,11670,11670,11008,4115,11670,4115,11671,11671,4115,4113,4114,4111,4112,4110,11002,4108,4108,11002,11005,11002,11003,11005,11005,11003,11006,11003,11004,11006,11006,11004,11007,11004,4112,11007,11007,4112,4111,11697,4116,4115,11697,4115,11698,11698,4115,11008,11698,11008,11699,11699,11008,4114,11699,4114,4118,4118,4114,4117,4116,4113,4115,4112,4117,4114,4121,4119,4120,4117,4120,4118,4118,4120,4119,4124,4122,4123,4120,4123,4121,4121,4123,4122,4127,4125,4126,4123,4126,4124,4124,4126,4125,11019,4128,11015,11019,11015,4130,11015,4128,4129,4126,11009,4127,4127,11009,11012,11009,11010,11012,11012,11010,11013,11010,11011,11013,11013,11011,11014,11011,4129,11014,11014,4129,4128,4129,11016,11015,11015,11016,14770,11015,14770,4130,4130,14770,11018,11016,3392,14770,14770,3392,11017,14770,11017,11018,11018,11017,3394,11039,4131,11021,11039,11021,4132,11039,4132,4133,4130,11020,11019,11019,11020,14771,11019,14771,4128,4128,14771,11022,11020,4132,14771,14771,4132,11021,14771,11021,11022,11022,11021,4131,4136,4134,4135,4132,11023,4133,4133,11023,11027,11023,11024,11027,11027,11024,11028,11024,11025,11028,11028,11025,11029,11025,11026,11029,11029,11026,11030,11026,4135,11030,11030,4135,4134,4135,11031,4136,4136,11031,11035,11031,11032,11035,11035,11032,11036,11032,11033,11036,11036,11033,11037,11033,11034,11037,11037,11034,11038,11034,3395,11038,11038,3395,3397,4136,3409,4134,4134,3409,3411,4139,4137,11041,11041,4137,11040,11041,11040,4138,4133,4138,11039,11039,4138,11040,11039,11040,4131,4131,11040,4137,11049,4140,11042,11049,11042,4141,11049,4141,4142,4138,4141,11041,11041,4141,11042,11041,11042,4139,4139,11042,4140,4141,11043,4142,4142,11043,11046,11043,11044,11046,11046,11044,11047,11044,11045,11047,11047,11045,11048,11045,3412,11048,11048,3412,3414,11713,4143,11050,11713,11050,11051,11713,11051,4145,11051,11050,4144,4142,4144,11049,11049,4144,11050,11049,11050,4140,4140,11050,4143,4148,4146,11052,4148,11052,4147,4144,4147,11051,11051,4147,11052,11051,11052,4145,4145,11052,4146,4147,11053,4148,4148,11053,11055,11053,11054,11055,11055,11054,11056,11054,3415,11056,11056,3415,3417,11720,4149,4150,11720,4150,14772,11720,14772,11721,11721,14772,11057,11721,11057,4151,11057,14772,4150,4148,4150,4146,4146,4150,4149,4154,4152,11060,11060,4152,11059,11059,4152,11058,11059,11058,4153,4150,4153,11057,11057,4153,11058,11057,11058,4151,4151,11058,4152,4153,3421,11059,11059,3421,11061,11059,11061,11060,11060,11061,11062,11060,11062,4154,4154,11062,3423,4157,4155,4156,4154,11063,4152,4152,11063,11065,11063,11064,11065,11065,11064,11066,11064,4156,11066,11066,4156,4155,11737,4158,4159,11737,4159,11067,11737,11067,11738,11738,11067,11068,11738,11068,11739,11739,11068,4160,4156,4159,4157,4157,4159,4158,4163,4161,4165,4165,4161,14773,4165,14773,11071,11071,14773,11070,11071,11070,11069,11071,11069,4164,4164,11069,4162,11070,14773,4161,4159,4162,11067,11067,4162,11069,11067,11069,11068,11068,11069,11070,11068,11070,4160,4160,11070,4161,4168,4166,4165,4168,4165,11073,11073,4165,11071,11073,11071,11072,11072,11071,4164,11072,4164,4167,4166,4163,4165,4162,4167,4164,11085,4169,11075,11085,11075,11084,11084,11075,11074,11084,11074,4171,4171,11074,4170,4167,4170,11072,11072,4170,11074,11072,11074,11073,11073,11074,11075,11073,11075,4168,4168,11075,4169,4170,11076,4171,4171,11076,11080,11076,11077,11080,11080,11077,11081,11077,11078,11081,11081,11078,11082,11078,11079,11082,11082,11079,11083,11079,3427,11083,11083,3427,3429,4174,4172,11087,4174,11087,11088,11088,11087,11086,11088,11086,4173,4171,4173,11084,11084,4173,11086,11084,11086,11085,11085,11086,11087,11085,11087,4169,4169,11087,4172,14774,14775,14776,11103,4175,11091,11103,11091,14774,11103,14774,11102,11102,14774,14776,11102,14776,4177,4177,14776,11094,11094,14776,14775,11094,14775,4176,4176,14775,11091,11091,14775,14774,4173,11089,11088,11088,11089,14777,11088,14777,4174,4174,14777,11092,11089,11090,14777,14777,11090,14778,14777,14778,11092,11092,14778,11093,11090,4176,14778,14778,4176,11091,14778,11091,11093,11093,11091,4175,4180,4178,11095,4180,11095,4179,4176,4179,11094,11094,4179,11095,11094,11095,4177,4177,11095,4178,4179,3430,4180,4180,3430,3432,11100,4181,14779,11100,14779,11096,11100,11096,4183,11096,14779,4182,4182,14779,4181,4180,4182,4178,4178,4182,4181,11098,4184,11097,11098,11097,4185,11098,4185,4186,4182,4185,11096,11096,4185,11097,11096,11097,4183,4183,11097,4184,4185,3433,4186,4186,3433,3435,4186,3436,11098,11098,3436,11099,11098,11099,4184,4184,11099,3438,4183,3467,11100,11100,3467,11101,11100,11101,4181,4181,11101,3469,14781,14780,14782,11780,4187,14780,11780,14780,14781,11780,14781,4189,4189,14781,11106,11106,14781,14782,11106,14782,4188,4188,14782,11104,11104,14782,11105,11105,14782,14780,11105,14780,4187,4177,4188,11102,11102,4188,11104,11102,11104,11103,11103,11104,11105,11103,11105,4175,4175,11105,4187,11108,4190,11107,11108,11107,4192,4192,11107,4191,4188,4191,11106,11106,4191,11107,11106,11107,4189,4189,11107,4190,4191,3470,4192,4192,3470,3472,4195,4193,11111,11111,4193,11109,11111,11109,11110,11110,11109,4194,4192,4194,11108,11108,4194,11109,11108,11109,4190,4190,11109,4193,4194,3476,11110,11110,3476,11112,11110,11112,11111,11111,11112,11113,11111,11113,4195,4195,11113,3478,4198,4196,4197,4195,11114,4193,4193,11114,11118,11114,11115,11118,11118,11115,11119,11115,11116,11119,11119,11116,11120,11116,11117,11120,11120,11117,11121,11117,4197,11121,11121,4197,4196,11793,4199,11123,11793,11123,4201,11123,4199,11122,11122,4199,4200,4197,4200,4198,4198,4200,4199,4204,4202,11128,11128,4202,11125,11128,11125,11127,11127,11125,11124,11127,11124,11126,11126,11124,4203,4200,4203,11122,11122,4203,11124,11122,11124,11123,11123,11124,11125,11123,11125,4201,4201,11125,4202,13727,4205,11131,13727,11131,11130,13727,11130,4207,4207,11130,11129,4207,11129,4206,4203,4206,11126,11126,4206,11129,11126,11129,11127,11127,11129,11130,11127,11130,11128,11128,11130,11131,11128,11131,4204,4204,11131,4205,11137,4208,14783,11137,14783,14784,11137,14784,11136,11136,14784,11133,11136,11133,4210,11133,14784,11132,11132,14784,14783,11132,14783,4209,4209,14783,4208,4206,4209,4207,4207,4209,4208,4209,3479,11132,11132,3479,11134,11132,11134,11133,11133,11134,11135,11133,11135,4210,4210,11135,3481,14786,14785,14787,13726,4211,14785,13726,14785,4213,4213,14785,11141,11141,14785,14786,11141,14786,11140,11140,14786,14787,11140,14787,4212,4212,14787,11138,11138,14787,11139,11139,14787,14785,11139,14785,4211,4210,4212,11136,11136,4212,11138,11136,11138,11137,11137,11138,11139,11137,11139,4208,4208,11139,4211,11805,4214,11143,11805,11143,11142,11805,11142,4216,4216,11142,4215,4212,4215,11140,11140,4215,11142,11140,11142,11141,11141,11142,11143,11141,11143,4213,4213,11143,4214,4219,4217,4218,4215,4218,4216,4216,4218,4217,4222,4220,4221,4218,4221,4219,4219,4221,4220,4221,11144,4222,4222,11144,11146,11144,11145,11146,11146,11145,11147,11145,3485,11147,11147,3485,3487,4225,4223,4224,4222,4224,4220,4220,4224,4223,4228,4226,4227,4224,4227,4225,4225,4227,4226,4227,11148,4228,4228,11148,11151,11148,11149,11151,11151,11149,11152,11149,11150,11152,11152,11150,11153,11150,3512,11153,11153,3512,3514,4231,4229,4230,4228,4230,4226,4226,4230,4229,4234,4232,4233,4230,4233,4231,4231,4233,4232,11176,4235,4236,11176,4236,11160,11176,11160,4237,4233,11154,4234,4234,11154,11157,11154,11155,11157,11157,11155,11158,11155,11156,11158,11158,11156,11159,11156,4236,11159,11159,4236,4235,4240,4238,11162,11162,4238,11161,11162,11161,4239,4236,4239,11160,11160,4239,11161,11160,11161,4237,4237,11161,4238,4239,11163,11162,11162,11163,14788,11162,14788,4240,4240,14788,11165,11163,3515,14788,14788,3515,11164,14788,11164,11165,11165,11164,3517,4240,11166,4238,4238,11166,11171,11166,11167,11171,11171,11167,11172,11167,11168,11172,11172,11168,11173,11168,11169,11173,11173,11169,11174,11169,11170,11174,11174,11170,11175,11170,3521,11175,11175,3521,3523,11196,4241,14789,11196,14789,11181,11196,11181,4243,11181,14789,11180,11180,14789,11178,11180,11178,4242,11178,14789,4241,4237,11177,11176,11176,11177,14790,11176,14790,4235,4235,14790,11179,11177,4242,14790,14790,4242,11178,14790,11178,11179,11179,11178,4241,4248,4244,11183,4248,11183,11182,4248,11182,4247,4247,11182,4245,4247,4245,4246,4242,4245,11180,11180,4245,11182,11180,11182,11181,11181,11182,11183,11181,11183,4243,4243,11183,4244,4245,11184,4246,4246,11184,11190,11184,11185,11190,11190,11185,11191,11185,11186,11191,11191,11186,11192,11186,11187,11192,11192,11187,11193,11187,11188,11193,11193,11188,11194,11188,11189,11194,11194,11189,11195,11189,3533,11195,11195,3533,3535,3538,4244,4248,4246,3536,4247,4251,4249,11198,4251,11198,11200,11200,11198,4250,4243,11197,11196,11196,11197,14791,11196,14791,4241,4241,14791,11199,11197,4250,14791,14791,4250,11198,14791,11198,11199,11199,11198,4249,11809,4252,11201,11809,11201,4253,11809,4253,4254,4250,4253,11200,11200,4253,11201,11200,11201,4251,4251,11201,4252,11220,4255,4258,11220,4258,11208,11220,11208,11219,11219,11208,4259,11219,4259,4257,4258,4255,4256,4253,11202,4254,4254,11202,11205,11202,11203,11205,11205,11203,11206,11203,11204,11206,11206,11204,11207,11204,4256,11207,11207,4256,4255,14795,14792,14796,14792,14793,14796,11214,4260,4259,11214,4259,14795,11214,14795,11213,11213,14795,14796,11213,14796,4262,4262,14796,14794,4262,14794,11209,11209,14794,4261,4261,14794,4258,4258,14794,14793,4258,14793,11208,11208,14793,14792,11208,14792,4259,4259,14792,14795,14793,14794,14796,4260,4257,4259,4256,4261,4258,4261,11210,11209,11209,11210,14797,11209,14797,4262,4262,14797,11212,11210,3539,14797,14797,3539,11211,14797,11211,11212,11212,11211,3541,4262,11215,11213,11213,11215,14798,11213,14798,11214,11214,14798,14799,11214,14799,4260,4260,14799,11218,11215,3560,14798,14798,3560,11216,14798,11216,14799,14799,11216,11217,14799,11217,11218,11218,11217,3562,4762,4263,11222,4762,11222,11824,11824,11222,11221,11824,11221,11825,11825,11221,4264,11825,4264,11826,11826,4264,11223,11826,11223,4763,4763,11223,4265,4257,4264,11219,11219,4264,11221,11219,11221,11220,11220,11221,11222,11220,11222,4255,4255,11222,4263,4268,4266,11225,4268,11225,4267,4264,11224,11223,11223,11224,14800,11223,14800,4265,4265,14800,11226,11224,4267,14800,14800,4267,11225,14800,11225,11226,11226,11225,4266,4271,4269,4270,4267,11227,4268,4268,11227,11231,11227,11228,11231,11231,11228,11232,11228,11229,11232,11232,11229,11233,11229,11230,11233,11233,11230,11234,11230,4270,11234,11234,4270,4269,4270,3566,4271,4271,3566,3568,4271,3578,4269,4269,3578,3580,11851,4272,14801,11851,14801,11236,11851,11236,4274,11236,14801,11235,11235,14801,4272,11235,4272,4273,4268,4273,4266,4266,4273,4272,4277,4275,11238,4277,11238,11240,11240,11238,11237,11240,11237,11239,11239,11237,4276,4273,4276,11235,11235,4276,11237,11235,11237,11236,11236,11237,11238,11236,11238,4274,4274,11238,4275,11245,4278,11243,11245,11243,11242,11245,11242,4280,4280,11242,4279,4276,11241,11239,11239,11241,14802,11239,14802,11240,11240,14802,14803,11240,14803,4277,4277,14803,11244,11241,4279,14802,14802,4279,11242,14802,11242,14803,14803,11242,11243,14803,11243,11244,11244,11243,4278,4279,3581,4280,4280,3581,3583,4283,4281,11248,11248,4281,11247,11247,4281,11246,11247,11246,4282,4280,4282,11245,11245,4282,11246,11245,11246,4278,4278,11246,4281,4286,4284,11250,4286,11250,11249,4286,11249,11251,11251,11249,4285,4282,4285,11247,11247,4285,11249,11247,11249,11248,11248,11249,11250,11248,11250,4283,4283,11250,4284,11969,4287,11252,11969,11252,4288,11969,4288,4289,4285,4288,11251,11251,4288,11252,11251,11252,4286,4286,11252,4287,12019,4290,11253,12019,11253,4292,11253,4290,4291,4288,4291,4289,4289,4291,4290,12021,4293,14804,12021,14804,11257,12021,11257,4295,11257,14804,11256,11256,14804,14805,11256,14805,11255,11255,14805,11254,11255,11254,4294,11254,14805,4293,4293,14805,14804,4291,4294,11253,11253,4294,11254,11253,11254,4292,4292,11254,4293,4298,4296,11260,4298,11260,11262,11262,11260,11259,11262,11259,11261,11261,11259,11258,11261,11258,4297,4294,4297,11255,11255,4297,11258,11255,11258,11256,11256,11258,11259,11256,11259,11257,11257,11259,11260,11257,11260,4295,4295,11260,4296,4297,3584,11261,11261,3584,11263,11261,11263,11262,11262,11263,11264,11262,11264,4298,4298,11264,3586,12034,4299,11269,12034,11269,11270,12034,11270,4301,11269,4299,4300,4298,11265,4296,4296,11265,11267,11265,11266,11267,11267,11266,11268,11266,4300,11268,11268,4300,4299,13719,4302,11272,13719,11272,11271,13719,11271,4304,4304,11271,4303,4300,4303,11269,11269,4303,11271,11269,11271,11270,11270,11271,11272,11270,11272,4301,4301,11272,4302,4307,4305,11273,11273,4305,4306,4303,4306,4304,4304,4306,4305,11281,4308,14806,11281,14806,11276,11281,11276,4310,11276,14806,11275,11275,14806,11274,11275,11274,4309,11274,14806,4308,4306,4309,11273,11273,4309,11274,11273,11274,4307,4307,11274,4308,4309,11277,11275,11275,11277,14807,11275,14807,11276,11276,14807,14808,11276,14808,4310,4310,14808,11280,11277,3593,14807,14807,3593,11278,14807,11278,14808,14808,11278,11279,14808,11279,11280,11280,11279,3595,11285,4311,11284,11285,11284,4315,11285,4315,4313,11284,4311,11283,11283,4311,11282,11283,11282,4314,4314,11282,4312,4310,4312,11281,11281,4312,11282,11281,11282,4308,4308,11282,4311,3046,4313,4315,4312,3044,4314,4318,4316,11288,11288,4316,11286,11288,11286,11287,11287,11286,4317,4313,4317,11285,11285,4317,11286,11285,11286,4311,4311,11286,4316,13718,4319,14810,13718,14810,14809,13718,14809,4321,4321,14809,11291,11291,14809,4320,4320,14809,11289,11289,14809,14810,11289,14810,11290,11290,14810,4319,4317,4320,11287,11287,4320,11289,11287,11289,11288,11288,11289,11290,11288,11290,4318,4318,11290,4319,11297,4322,11292,11297,11292,14811,11297,14811,4324,4324,14811,11293,11293,14811,4323,4323,14811,11292,4320,4323,11291,11291,4323,11292,11291,11292,4321,4321,11292,4322,4323,11294,11293,11293,11294,14812,11293,14812,4324,4324,14812,11296,11294,3047,14812,14812,3047,11295,14812,11295,11296,11296,11295,3049,4327,4325,11299,4327,11299,11301,11301,11299,4326,4324,11298,11297,11297,11298,14813,11297,14813,4322,4322,14813,11300,11298,4326,14813,14813,4326,11299,14813,11299,11300,11300,11299,4325,11304,4328,11302,11304,11302,11303,11303,11302,4329,11303,4329,4330,4326,4329,11301,11301,4329,11302,11301,11302,4327,4327,11302,4328,4329,3722,4330,4330,3722,3724,12051,4331,11306,12051,11306,11305,12051,11305,4333,4333,11305,4332,4330,4332,11303,11303,4332,11305,11303,11305,11304,11304,11305,11306,11304,11306,4328,4328,11306,4331,11342,4334,4335,11342,4335,11341,11341,4335,11307,11341,11307,4336,4332,4335,4333,4333,4335,4334,4339,4337,11308,4339,11308,4338,4335,4338,11307,11307,4338,11308,11307,11308,4336,4336,11308,4337,4338,11309,4339,4339,11309,11311,11309,11310,11311,11311,11310,11312,11310,3725,11312,11312,3725,3727,4342,4340,4341,4339,11313,4337,4337,11313,11314,11313,4341,11314,11314,4341,4340,4345,4343,4344,4341,4344,4342,4342,4344,4343,4348,4346,4347,4344,4347,4345,4345,4347,4346,4347,3728,4348,4348,3728,3730,4348,3737,4346,4346,3737,3739,4351,4349,4350,4345,4350,4343,4343,4350,4349,4350,3740,4351,4351,3740,3742,4354,4352,4353,4351,11315,4349,4349,11315,11322,11315,11316,11322,11322,11316,11323,11316,11317,11323,11323,11317,11324,11317,11318,11324,11324,11318,11325,11318,11319,11325,11325,11319,11326,11319,11320,11326,11326,11320,11327,11320,11321,11327,11327,11321,11328,11321,4353,11328,11328,4353,4352,4353,3749,4354,4354,3749,3751,4354,11329,4352,4352,11329,11335,11329,11330,11335,11335,11330,11336,11330,11331,11336,11336,11331,11337,11331,11332,11337,11337,11332,11338,11332,11333,11338,11338,11333,11339,11333,11334,11339,11339,11334,11340,11334,4340,11340,11340,4340,4342,4357,4355,11344,4357,11344,11346,11346,11344,11343,11346,11343,11345,11345,11343,4356,4336,4356,11341,11341,4356,11343,11341,11343,11342,11342,11343,11344,11342,11344,4334,4334,11344,4355,4360,4358,11348,4360,11348,11347,4360,11347,11349,11349,11347,4359,4356,4359,11345,11345,4359,11347,11345,11347,11346,11346,11347,11348,11346,11348,4357,4357,11348,4358,4363,4361,11350,4363,11350,4362,4359,4362,11349,11349,4362,11350,11349,11350,4360,4360,11350,4361,4362,3752,4363,4363,3752,3754,4363,3761,4361,4361,3761,3763,4360,3764,4358,4358,3764,3766,4366,4364,4365,4357,4365,4355,4355,4365,4364,4365,3770,4366,4366,3770,3772,12057,4367,4368,12057,4368,4369,4366,11351,4364,4364,11351,11352,11351,4368,11352,11352,4368,4367,11362,4370,11353,11362,11353,11354,11362,11354,11361,11361,11354,4372,11353,4370,4371,4368,4371,4369,4369,4371,4370,11357,4373,11356,11357,11356,11355,11357,11355,4375,4375,11355,4374,4371,4374,11353,11353,4374,11355,11353,11355,11354,11354,11355,11356,11354,11356,4372,4372,11356,4373,4374,3776,4375,4375,3776,3778,4375,11358,11357,11357,11358,14814,11357,14814,4373,4373,14814,11360,11358,3785,14814,14814,3785,11359,14814,11359,11360,11360,11359,3787,14816,14815,14817,12062,4376,11364,12062,11364,14817,12062,14817,12063,12063,14817,14815,12063,14815,4378,4378,14815,11365,11365,14815,14816,11365,14816,4377,4377,14816,11363,11363,14816,14817,11363,14817,11364,4372,4377,11361,11361,4377,11363,11361,11363,11362,11362,11363,11364,11362,11364,4370,4370,11364,4376,12083,4379,11367,12083,11367,4381,4381,11367,4380,4377,11366,11365,11365,11366,14818,11365,14818,4378,4378,14818,11368,11366,4380,14818,14818,4380,11367,14818,11367,11368,11368,11367,4379,12087,4382,11369,12087,11369,11370,12087,11370,4384,11369,4382,4383,4380,4383,4381,4381,4383,4382,11383,4385,14819,11383,14819,11374,11383,11374,4387,11374,14819,11373,11373,14819,11371,11373,11371,4386,11371,14819,11372,11372,14819,4385,4383,4386,11369,11369,4386,11371,11369,11371,11370,11370,11371,11372,11370,11372,4384,4384,11372,4385,11381,4388,11377,11381,11377,4390,4390,11377,11376,4390,11376,11379,11379,11376,4389,4386,11375,11373,11373,11375,14820,11373,14820,11374,11374,14820,14821,11374,14821,4387,4387,14821,11378,11375,4389,14820,14820,4389,11376,14820,11376,14821,14821,11376,11377,14821,11377,11378,11378,11377,4388,4389,3826,11379,11379,3826,11380,11379,11380,4390,4390,11380,3828,4390,3829,11381,11381,3829,11382,11381,11382,4388,4388,11382,3831,12093,4391,11384,12093,11384,4392,12093,4392,4393,4387,4392,11383,11383,4392,11384,11383,11384,4385,4385,11384,4391,4396,4394,4395,4392,11385,4393,4393,11385,11391,11385,11386,11391,11391,11386,11392,11386,11387,11392,11392,11387,11393,11387,11388,11393,11393,11388,11394,11388,11389,11394,11394,11389,11395,11389,11390,11395,11395,11390,11396,11390,4395,11396,11396,4395,4394,11402,4397,14822,11402,14822,11401,11401,14822,11398,11401,11398,4399,11398,14822,11397,11397,14822,4398,4398,14822,4397,4395,4398,4396,4396,4398,4397,4398,3832,11397,11397,3832,11399,11397,11399,11398,11398,11399,11400,11398,11400,4399,4399,11400,3834,14823,14824,14825,11411,4400,14824,11411,14824,14823,11411,14823,4402,4402,14823,11408,11408,14823,11407,11407,14823,14825,11407,14825,11404,11407,11404,4401,11404,14825,11405,11405,14825,14824,11405,14824,4400,4399,11403,11401,11401,11403,14826,11401,14826,11402,11402,14826,14827,11402,14827,4397,4397,14827,11406,11403,4401,14826,14826,4401,11404,14826,11404,14827,14827,11404,11405,14827,11405,11406,11406,11405,4400,4401,3841,11407,11407,3841,11409,11407,11409,11408,11408,11409,11410,11408,11410,4402,4402,11410,3843,4405,4403,11413,4405,11413,11415,11415,11413,4404,4402,11412,11411,11411,11412,14828,11411,14828,4400,4400,14828,11414,11412,4404,14828,14828,4404,11413,14828,11413,11414,11414,11413,4403,14829,14830,14831,11422,4406,11416,11422,11416,14830,11422,14830,11421,11421,14830,14829,11421,14829,11418,11421,11418,4408,11418,14829,11417,11417,14829,14831,11417,14831,4407,4407,14831,11416,11416,14831,14830,4404,4407,11415,11415,4407,11416,11415,11416,4405,4405,11416,4406,4411,4409,11420,4411,11420,11419,4411,11419,4410,4407,4410,11417,11417,4410,11419,11417,11419,11418,11418,11419,11420,11418,11420,4408,4408,11420,4409,4410,3847,4411,4411,3847,3849,4411,3850,4409,4409,3850,3852,4416,4412,11424,4416,11424,14834,4416,14834,11428,11428,14834,14833,11428,14833,11427,11427,14833,14832,11427,14832,4415,4415,14832,4414,4414,14832,4413,4413,14832,14833,4413,14833,11423,11423,14833,14834,11423,14834,11424,4408,4413,11421,11421,4413,11423,11421,11423,11422,11422,11423,11424,11422,11424,4406,4406,11424,4412,4413,11425,4414,4414,11425,11426,11425,3865,11426,11426,3865,3867,4419,4417,4416,4419,4416,11428,4419,11428,11430,11430,11428,11427,11430,11427,11429,11429,11427,4415,11429,4415,4418,4417,4412,4416,4414,4418,4415,12113,4420,11432,12113,11432,11433,12113,11433,4422,11433,11432,11431,11433,11431,4421,4418,4421,11429,11429,4421,11431,11429,11431,11430,11430,11431,11432,11430,11432,4419,4419,11432,4420,11441,4423,11435,11441,11435,4424,11441,4424,4425,4421,11434,11433,11433,11434,14835,11433,14835,4422,4422,14835,11436,11434,4424,14835,14835,4424,11435,14835,11435,11436,11436,11435,4423,4428,4426,4427,4424,11437,4425,4425,11437,11439,11437,11438,11439,11439,11438,11440,11438,4427,11440,11440,4427,4426,4427,3868,4428,4428,3868,3870,4428,3871,4426,4426,3871,3873,4431,4429,11442,4431,11442,11443,11443,11442,4430,4425,4430,11441,11441,4430,11442,11441,11442,4423,4423,11442,4429,4430,11444,11443,11443,11444,14836,11443,14836,4431,4431,14836,11447,11444,11445,14836,14836,11445,14837,14836,14837,11447,11447,14837,11448,11445,3877,14837,14837,3877,11446,14837,11446,11448,11448,11446,3879,12121,4432,4433,12121,4433,11451,12121,11451,12122,12122,11451,4434,4431,11449,4429,4429,11449,11450,11449,4433,11450,11450,4433,4432,4437,4435,11452,4437,11452,11453,11453,11452,4436,4433,4436,11451,11451,4436,11452,11451,11452,4434,4434,11452,4435,11459,4438,11455,11459,11455,4440,4440,11455,4439,4436,11454,11453,11453,11454,14838,11453,14838,4437,4437,14838,11456,11454,4439,14838,14838,4439,11455,14838,11455,11456,11456,11455,4438,4439,11457,4440,4440,11457,11458,11457,3880,11458,11458,3880,3882,12140,4441,11460,12140,11460,4442,12140,4442,4443,4440,4442,11459,11459,4442,11460,11459,11460,4438,4438,11460,4441,11470,4444,14839,11470,14839,11469,11469,14839,11464,11469,11464,4446,11464,14839,11463,11463,14839,4445,4445,14839,4444,4442,11461,4443,4443,11461,11462,11461,4445,11462,11462,4445,4444,11467,4447,11466,11467,11466,11465,11467,11465,4449,4449,11465,4448,4445,4448,11463,11463,4448,11465,11463,11465,11464,11464,11465,11466,11464,11466,4446,4446,11466,4447,4448,3883,4449,4449,3883,3885,4449,3886,11467,11467,3886,11468,11467,11468,4447,4447,11468,3888,12156,4450,11472,12156,11472,11471,12156,11471,12157,12157,11471,4451,12157,4451,4452,4446,4451,11469,11469,4451,11471,11469,11471,11470,11470,11471,11472,11470,11472,4444,4444,11472,4450,11482,4453,11477,11482,11477,11478,11482,11478,11481,11481,11478,4455,11477,4453,4454,4451,11473,4452,4452,11473,11475,11473,11474,11475,11475,11474,11476,11474,4454,11476,11476,4454,4453,4454,3898,11477,11477,3898,11479,11477,11479,11478,11478,11479,11480,11478,11480,4455,4455,11480,3900,12169,4456,11484,12169,11484,14840,12169,14840,4458,4458,14840,11485,11485,14840,11483,11485,11483,4457,11483,14840,11484,4455,4457,11481,11481,4457,11483,11481,11483,11482,11482,11483,11484,11482,11484,4453,4453,11484,4456,4461,4459,11488,11488,4459,11486,11488,11486,11487,11487,11486,4460,4457,4460,11485,11485,4460,11486,11485,11486,4458,4458,11486,4459,11496,4462,11491,11496,11491,14841,11496,14841,11495,11495,14841,4464,4464,14841,4463,4463,14841,11490,11490,14841,11491,4460,11489,11487,11487,11489,14842,11487,14842,11488,11488,14842,14843,11488,14843,4461,4461,14843,11492,11489,4463,14842,14842,4463,11490,14842,11490,14843,14843,11490,11491,14843,11491,11492,11492,11491,4462,4463,11493,4464,4464,11493,11494,11493,3913,11494,11494,3913,3915,14844,14845,14846,12185,4465,11498,12185,11498,14844,12185,14844,4467,4467,14844,14846,4467,14846,11499,11499,14846,14845,11499,14845,11497,11499,11497,4466,11497,14845,11498,11498,14845,14844,4464,4466,11495,11495,4466,11497,11495,11497,11496,11496,11497,11498,11496,11498,4462,4462,11498,4465,12190,4468,11500,12190,11500,4470,4470,11500,4469,4466,4469,11499,11499,4469,11500,11499,11500,4467,4467,11500,4468,12195,4471,14847,12195,14847,12196,12196,14847,11502,12196,11502,11503,12196,11503,4473,11502,14847,11501,11501,14847,4471,11501,4471,4472,4469,4472,4470,4470,4472,4471,4476,4474,4478,4478,4474,11506,4478,11506,11507,11507,11506,11505,11507,11505,4477,4477,11505,11504,4477,11504,4475,4472,4475,11501,11501,4475,11504,11501,11504,11502,11502,11504,11505,11502,11505,11503,11503,11505,11506,11503,11506,4473,4473,11506,4474,3933,4476,4478,4475,3931,4477,12201,4479,4480,12201,4480,11508,12201,11508,12202,12202,11508,11509,12202,11509,4481,4476,4480,4474,4474,4480,4479,4484,4482,11517,11517,4482,14848,11517,14848,11516,11516,14848,11512,11516,11512,4483,11512,14848,11513,11513,14848,4482,4480,11510,11508,11508,11510,14849,11508,14849,11509,11509,14849,14850,11509,14850,4481,4481,14850,11514,11510,11511,14849,14849,11511,14851,14849,14851,14850,14850,14851,14852,14850,14852,11514,11514,14852,11515,11511,4483,14851,14851,4483,11512,14851,11512,14852,14852,11512,11513,14852,11513,11515,11515,11513,4482,4483,11518,11516,11516,11518,14853,11516,14853,11517,11517,14853,14854,11517,14854,4484,4484,14854,11521,11518,3940,14853,14853,3940,11519,14853,11519,14854,14854,11519,11520,14854,11520,11521,11521,11520,3942,12213,4485,11524,12213,11524,11525,12213,11525,12214,12214,11525,4487,11524,4485,4486,4484,11522,4482,4482,11522,11523,11522,4486,11523,11523,4486,4485,12232,4488,11527,12232,11527,14855,12232,14855,4490,4490,14855,11528,11528,14855,4489,4489,14855,11526,11526,14855,11527,4486,4489,11524,11524,4489,11526,11524,11526,11525,11525,11526,11527,11525,11527,4487,4487,11527,4488,4493,4491,11535,11535,4491,11534,11534,4491,11531,11534,11531,4492,4489,11529,11528,11528,11529,14856,11528,14856,4490,4490,14856,11532,11529,11530,14856,14856,11530,14857,14856,14857,11532,11532,14857,11533,11530,4492,14857,14857,4492,11531,14857,11531,11533,11533,11531,4491,4492,3986,11534,11534,3986,11536,11534,11536,11535,11535,11536,11537,11535,11537,4493,4493,11537,3988,4496,4494,4495,4493,4495,4491,4491,4495,4494,4499,4497,4498,4495,11538,4496,4496,11538,11540,11538,11539,11540,11540,11539,11541,11539,4498,11541,11541,4498,4497,4502,4500,11543,11543,4500,11542,11542,4500,4501,4498,4501,4499,4499,4501,4500,4505,4503,11547,11547,4503,11545,11547,11545,11546,11546,11545,11544,11546,11544,4504,4501,4504,11542,11542,4504,11544,11542,11544,11543,11543,11544,11545,11543,11545,4502,4502,11545,4503,4504,3992,11546,11546,3992,11548,11546,11548,11547,11547,11548,11549,11547,11549,4505,4505,11549,3994,4508,4506,4507,4505,4507,4503,4503,4507,4506,4507,4008,4508,4508,4008,4010,4511,4509,4510,4508,4510,4506,4506,4510,4509,4510,4011,4511,4511,4011,4013,11554,4512,11552,11554,11552,4514,11552,4512,4513,4511,11550,4509,4509,11550,11551,11550,4513,11551,11551,4513,4512,4513,4035,11552,11552,4035,11553,11552,11553,4514,4514,11553,4037,4517,4515,11557,11557,4515,11556,11556,4515,11555,11556,11555,4516,4514,4516,11554,11554,4516,11555,11554,11555,4512,4512,11555,4515,11560,4518,11559,11560,11559,4520,4520,11559,11558,4520,11558,4519,4516,4519,11556,11556,4519,11558,11556,11558,11557,11557,11558,11559,11557,11559,4517,4517,11559,4518,4519,4041,4520,4520,4041,4043,4520,4044,11560,11560,4044,11561,11560,11561,4518,4518,11561,4046,4517,11562,4515,4515,11562,11564,11562,11563,11564,11564,11563,11565,11563,4500,11565,11565,4500,4502,11572,4521,4522,11572,4522,11568,11572,11568,4523,4499,11566,4497,4497,11566,11567,11566,4522,11567,11567,4522,4521,4522,11569,11568,11568,11569,14858,11568,14858,4523,4523,14858,11571,11569,4047,14858,14858,4047,11570,14858,11570,11571,11571,11570,4049,4526,4524,11576,11576,4524,11574,11576,11574,4525,4523,11573,11572,11572,11573,14859,11572,14859,4521,4521,14859,11575,11573,4525,14859,14859,4525,11574,14859,11574,11575,11575,11574,4524,12236,4527,14860,12236,14860,11579,12236,11579,4529,11579,14860,11578,11578,14860,11577,11578,11577,4528,11577,14860,4527,4525,4528,11576,11576,4528,11577,11576,11577,4526,4526,11577,4527,12242,4530,11581,12242,11581,14861,12242,14861,4532,4532,14861,11580,4532,11580,4531,11580,14861,11581,4528,4531,11578,11578,4531,11580,11578,11580,11579,11579,11580,11581,11579,11581,4529,4529,11581,4530,4535,4533,11584,11584,4533,4534,4531,11582,4532,4532,11582,11583,11582,4534,11583,11583,4534,4533,11590,4536,14862,11590,14862,4538,4538,14862,11587,11587,14862,11586,11586,14862,11585,11586,11585,4537,11585,14862,4536,4534,4537,11584,11584,4537,11585,11584,11585,4535,4535,11585,4536,4537,4050,11586,11586,4050,11588,11586,11588,11587,11587,11588,11589,11587,11589,4538,4538,11589,4052,4538,4053,11590,11590,4053,11591,11590,11591,4536,4536,11591,4055,4541,4539,4540,4535,4540,4533,4533,4540,4539,11603,4542,4543,11603,4543,11594,11603,11594,11602,11602,11594,11595,11602,11595,4544,4540,11592,4541,4541,11592,11593,11592,4543,11593,11593,4543,4542,11600,4545,11597,11600,11597,14863,11600,14863,4547,4547,14863,11598,11598,14863,11596,11598,11596,4546,11596,14863,11597,4543,4546,11594,11594,4546,11596,11594,11596,11595,11595,11596,11597,11595,11597,4544,4544,11597,4545,4546,4056,11598,11598,4056,11599,11598,11599,4547,4547,11599,4058,4547,4062,11600,11600,4062,11601,11600,11601,4545,4545,11601,4064,12264,4548,11605,12264,11605,4550,4550,11605,14864,4550,14864,11606,11606,14864,4549,4549,14864,11604,11604,14864,11605,4544,4549,11602,11602,4549,11604,11602,11604,11603,11603,11604,11605,11603,11605,4542,4542,11605,4548,4553,4551,14865,4553,14865,11609,11609,14865,11608,11608,14865,11607,11608,11607,4552,11607,14865,4551,4549,4552,11606,11606,4552,11607,11606,11607,4550,4550,11607,4551,12269,4554,11611,12269,11611,14867,12269,14867,12270,12270,14867,4556,4556,14867,11613,11613,14867,14866,11613,14866,11612,11612,14866,11610,11612,11610,4555,11610,14866,11611,11611,14866,14867,4552,4555,11608,11608,4555,11610,11608,11610,11609,11609,11610,11611,11609,11611,4553,4553,11611,4554,4559,4557,11618,11618,4557,11617,11617,4557,11615,11617,11615,11616,11616,11615,11614,11616,11614,4558,4555,4558,11612,11612,4558,11614,11612,11614,11613,11613,11614,11615,11613,11615,4556,4556,11615,4557,4558,4065,11616,11616,4065,11619,11616,11619,11617,11617,11619,11620,11617,11620,11618,11618,11620,11621,11618,11621,4559,4559,11621,4067,12278,4560,4561,12278,4561,4562,4559,4561,4557,4557,4561,4560,4565,4563,11622,11622,4563,4564,4561,4564,4562,4562,4564,4563,4568,4566,11623,4568,11623,4567,4564,4567,11622,11622,4567,11623,11622,11623,4565,4565,11623,4566,12304,4569,11624,12304,11624,4571,11624,4569,4570,4567,4570,4568,4568,4570,4569,4574,4572,11625,4574,11625,11626,11626,11625,4573,4570,4573,11624,11624,4573,11625,11624,11625,4571,4571,11625,4572,4577,4575,11628,11628,4575,11627,11628,11627,4576,4573,4576,11626,11626,4576,11627,11626,11627,4574,4574,11627,4575,4576,11629,11628,11628,11629,14868,11628,14868,4577,4577,14868,11631,11629,4089,14868,14868,4089,11630,14868,11630,11631,11631,11630,4091,4580,4578,4579,4577,11632,4575,4575,11632,11636,11632,11633,11636,11636,11633,11637,11633,11634,11637,11637,11634,11638,11634,11635,11638,11638,11635,11639,11635,4579,11639,11639,4579,4578,4583,4581,11642,11642,4581,4582,4579,11640,4580,4580,11640,11641,11640,4582,11641,11641,4582,4581,4586,4584,11644,11644,4584,11643,11644,11643,4585,4582,4585,11642,11642,4585,11643,11642,11643,4583,4583,11643,4584,4585,4094,11644,11644,4094,11645,11644,11645,4586,4586,11645,4096,11649,4587,4588,11649,4588,11646,11649,11646,11648,11648,11646,4589,4586,4588,4584,4584,4588,4587,4588,4097,11646,11646,4097,11647,11646,11647,4589,4589,11647,4099,12338,4590,11651,12338,11651,14869,12338,14869,4592,4592,14869,11652,11652,14869,14870,11652,14870,4591,4591,14870,11650,11650,14870,14869,11650,14869,11651,4589,4591,11648,11648,4591,11650,11648,11650,11649,11649,11650,11651,11649,11651,4587,4587,11651,4590,4595,4593,11655,11655,4593,11653,11655,11653,11654,11654,11653,4594,4591,4594,11652,11652,4594,11653,11652,11653,4592,4592,11653,4593,4594,4100,11654,11654,4100,11656,11654,11656,11655,11655,11656,11657,11655,11657,4595,4595,11657,4102,12340,4596,11659,12340,11659,4598,11659,4596,11658,11658,4596,4597,4595,4597,4593,4593,4597,4596,12343,4599,14871,12343,14871,14872,12343,14872,11663,12343,11663,4601,11663,14872,11662,11662,14872,14873,11662,14873,4600,4600,14873,11660,11660,14873,11661,11661,14873,14872,11661,14872,14871,11661,14871,4599,4597,4600,11658,11658,4600,11660,11658,11660,11659,11659,11660,11661,11659,11661,4598,4598,11661,4599,4604,4602,11668,11668,4602,11665,11668,11665,11667,11667,11665,11664,11667,11664,11666,11666,11664,4603,4600,4603,11662,11662,4603,11664,11662,11664,11663,11663,11664,11665,11663,11665,4601,4601,11665,4602,4603,4111,11666,11666,4111,11669,11666,11669,11667,11667,11669,11670,11667,11670,11668,11668,11670,11671,11668,11671,4604,4604,11671,4113,4607,4605,4606,4604,4606,4602,4602,4606,4605,4610,4608,11682,11682,4608,4609,4606,11672,4607,4607,11672,11677,11672,11673,11677,11677,11673,11678,11673,11674,11678,11678,11674,11679,11674,11675,11679,11679,11675,11680,11675,11676,11680,11680,11676,11681,11676,4609,11681,11681,4609,4608,12370,4611,14874,12370,14874,4613,4613,14874,11684,11684,14874,11683,11684,11683,4612,11683,14874,4611,4609,4612,11682,11682,4612,11683,11682,11683,4610,4610,11683,4611,4616,4614,11687,11687,4614,11685,11687,11685,11686,11686,11685,4615,4612,4615,11684,11684,4615,11685,11684,11685,4613,4613,11685,4614,12383,4617,11689,12383,11689,12384,12384,11689,11688,12384,11688,4619,4619,11688,4618,4615,4618,11686,11686,4618,11688,11686,11688,11687,11687,11688,11689,11687,11689,4616,4616,11689,4617,4629,4620,11692,4629,11692,11693,4629,11693,4628,4628,11693,4624,4628,4624,4622,11692,4620,4623,4623,4620,4621,4618,11690,4619,4619,11690,11691,11690,4621,11691,11691,4621,4620,4627,4625,4624,4627,4624,14876,4627,14876,11696,11696,14876,14875,11696,14875,11695,11695,14875,11692,11695,11692,11694,11694,11692,4623,11694,4623,4626,11692,14875,11693,11693,14875,14876,11693,14876,4624,4625,4622,4624,4621,4626,4623,4626,4116,11694,11694,4116,11697,11694,11697,11695,11695,11697,11698,11695,11698,11696,11696,11698,11699,11696,11699,4627,4627,11699,4118,4627,4119,4625,4625,4119,4121,12389,4630,4629,12389,4629,12390,12390,4629,14877,12390,14877,4632,4632,14877,4631,4631,14877,4628,4628,14877,4629,4630,4620,4629,4622,4631,4628,4635,4633,4634,4631,11700,4632,4632,11700,11701,11700,4634,11701,11701,4634,4633,4638,4636,11702,11702,4636,4637,4634,4637,4635,4635,4637,4636,4641,4639,14878,4641,14878,11704,11704,14878,4640,4640,14878,11703,11703,14878,4639,4637,4640,11702,11702,4640,11703,11702,11703,4638,4638,11703,4639,11712,4642,11705,11712,11705,4644,4644,11705,4643,4640,4643,11704,11704,4643,11705,11704,11705,4641,4641,11705,4642,4643,11706,4644,4644,11706,11709,11706,11707,11709,11709,11707,11710,11707,11708,11710,11710,11708,11711,11708,4122,11711,11711,4122,4124,4644,4143,11712,11712,4143,11713,11712,11713,4642,4642,11713,4145,4647,4645,11716,11716,4645,4646,4641,11714,4639,4639,11714,11715,11714,4646,11715,11715,4646,4645,11722,4648,14880,11722,14880,4650,4650,14880,11719,11719,14880,11718,11718,14880,14879,11718,14879,4649,4649,14879,11717,11717,14879,14880,11717,14880,4648,4646,4649,11716,11716,4649,11717,11716,11717,4647,4647,11717,4648,4649,4149,11718,11718,4149,11720,11718,11720,11719,11719,11720,11721,11719,11721,4650,4650,11721,4151,12410,4651,11724,12410,11724,14881,12410,14881,4653,4653,14881,11726,11726,14881,11724,11726,11724,4652,4650,11723,11722,11722,11723,14882,11722,14882,4648,4648,14882,11725,11723,4652,14882,14882,4652,11724,14882,11724,11725,11725,11724,4651,4656,4654,11728,11728,4654,11727,11728,11727,4655,4652,4655,11726,11726,4655,11727,11726,11727,4653,4653,11727,4654,11731,4657,11729,11731,11729,11730,11730,11729,4658,11730,4658,4659,4655,4658,11728,11728,4658,11729,11728,11729,4656,4656,11729,4657,4658,4155,4659,4659,4155,4157,13711,4660,11733,13711,11733,11732,13711,11732,4662,4662,11732,4661,4659,4661,11730,11730,4661,11732,11730,11732,11731,11731,11732,11733,11731,11733,4657,4657,11733,4660,11741,4663,11734,11741,11734,11735,11741,11735,11740,11740,11735,11736,11740,11736,4665,11734,4663,4664,4661,4664,4662,4662,4664,4663,4664,4158,11734,11734,4158,11737,11734,11737,11735,11735,11737,11738,11735,11738,11736,11736,11738,11739,11736,11739,4665,4665,11739,4160,13710,4666,14883,13710,14883,4668,4668,14883,11745,11745,14883,14884,11745,14884,11744,11744,14884,11742,11744,11742,4667,11742,14884,11743,11743,14884,14883,11743,14883,4666,4665,4667,11740,11740,4667,11742,11740,11742,11741,11741,11742,11743,11741,11743,4663,4663,11743,4666,12413,4669,11747,12413,11747,14886,12413,14886,12414,12414,14886,14885,12414,14885,4671,4671,14885,4670,4670,14885,11746,11746,14885,14886,11746,14886,11747,4667,4670,11744,11744,4670,11746,11744,11746,11745,11745,11746,11747,11745,11747,4668,4668,11747,4669,4674,4672,4673,4670,4673,4671,4671,4673,4672,4677,4675,4676,4673,4676,4674,4674,4676,4675,4676,4161,4677,4677,4161,4163,4680,4678,4679,4677,4679,4675,4675,4679,4678,12423,4681,11748,12423,11748,11749,12423,11749,12424,12424,11749,4683,11748,4681,4682,4679,4682,4680,4680,4682,4681,14888,14887,14889,12474,4684,11751,12474,11751,14889,12474,14889,14887,12474,14887,4686,4686,14887,11752,11752,14887,14888,11752,14888,4685,4685,14888,11750,11750,14888,14889,11750,14889,11751,4682,4685,11748,11748,4685,11750,11748,11750,11749,11749,11750,11751,11749,11751,4683,4683,11751,4684,4689,4687,11755,11755,4687,11753,11755,11753,11754,11754,11753,4688,4685,4688,11752,11752,4688,11753,11752,11753,4686,4686,11753,4687,11761,4690,11757,11761,11757,11756,11761,11756,11760,11760,11756,4691,11760,4691,4692,4688,4691,11754,11754,4691,11756,11754,11756,11755,11755,11756,11757,11755,11757,4689,4689,11757,4690,4691,11758,4692,4692,11758,11759,11758,4166,11759,11759,4166,4168,4695,4693,14890,4695,14890,11765,11765,14890,11764,11764,14890,11763,11764,11763,11762,11764,11762,4694,11763,14890,4693,4692,4694,11760,11760,4694,11762,11760,11762,11761,11761,11762,11763,11761,11763,4690,4690,11763,4693,4698,4696,11767,4698,11767,11769,11769,11767,11766,11769,11766,11768,11768,11766,4697,4694,4697,11764,11764,4697,11766,11764,11766,11765,11765,11766,11767,11765,11767,4695,4695,11767,4696,4703,4699,11771,4703,11771,11770,4703,11770,4702,4702,11770,4700,4702,4700,4701,4697,4700,11768,11768,4700,11770,11768,11770,11769,11769,11770,11771,11769,11771,4698,4698,11771,4699,4700,4172,4701,4701,4172,4174,14891,14892,14893,14893,14892,14894,14893,14894,14895,12505,4704,14892,12505,14892,14891,12505,14891,12506,12506,14891,4706,4706,14891,14893,4706,14893,11772,11772,14893,14895,11772,14895,4705,4705,14895,4702,4702,14895,14894,4702,14894,4703,4703,14894,14892,4703,14892,4704,4704,4699,4703,4701,4705,4702,14898,14897,14899,4711,4707,14896,4711,14896,11783,11783,14896,14897,11783,14897,14898,11783,14898,11782,11782,14898,4710,4710,14898,14899,4710,14899,11778,4710,11778,4709,11778,14899,4708,4708,14899,14897,4708,14897,11775,11775,14897,14896,11775,14896,4707,4705,11773,11772,11772,11773,14900,11772,14900,4706,4706,14900,11776,11773,11774,14900,14900,11774,14901,14900,14901,11776,11776,14901,11777,11774,4708,14901,14901,4708,11775,14901,11775,11777,11777,11775,4707,4708,11779,11778,11778,11779,14902,11778,14902,4709,4709,14902,11781,11779,4187,14902,14902,4187,11780,14902,11780,11781,11781,11780,4189,4716,4712,4711,4716,4711,11783,4716,11783,4715,4715,11783,11782,4715,11782,4714,4714,11782,4710,4714,4710,4713,4712,4707,4711,4709,4713,4710,4713,4196,4714,4714,4196,4198,4719,4717,4716,4719,4716,11785,11785,4716,4715,11785,4715,11784,11784,4715,4718,4717,4712,4716,4714,4718,4715,4722,4720,11787,4722,11787,11789,11789,11787,11786,11789,11786,11788,11788,11786,4721,4718,4721,11784,11784,4721,11786,11784,11786,11785,11785,11786,11787,11785,11787,4719,4719,11787,4720,11794,4723,11791,11794,11791,14903,11794,14903,4725,4725,14903,11792,11792,14903,11790,11792,11790,4724,11790,14903,11791,4721,4724,11788,11788,4724,11790,11788,11790,11789,11789,11790,11791,11789,11791,4722,4722,11791,4723,4724,4199,11792,11792,4199,11793,11792,11793,4725,4725,11793,4201,12534,4726,11795,12534,11795,4728,4728,11795,4727,4725,4727,11794,11794,4727,11795,11794,11795,4723,4723,11795,4726,4731,4729,4730,4727,4730,4728,4728,4730,4729,4734,4732,4733,4730,4733,4731,4731,4733,4732,4737,4735,4736,4733,4736,4734,4734,4736,4735,4740,4738,4739,4736,4739,4737,4737,4739,4738,4739,11796,4740,4740,11796,11799,11796,11797,11799,11799,11797,11800,11797,11798,11800,11800,11798,11801,11798,4202,11801,11801,4202,4204,11806,4741,11802,11806,11802,4743,11802,4741,4742,4740,4742,4738,4738,4742,4741,4746,4744,11803,4746,11803,11804,11804,11803,4745,4742,4745,11802,11802,4745,11803,11802,11803,4743,4743,11803,4744,4745,4214,11804,11804,4214,11805,11804,11805,4746,4746,11805,4216,4746,4229,4744,4744,4229,4231,11811,4747,11807,11811,11807,14904,11811,14904,11810,11810,14904,11808,11810,11808,4749,11808,14904,4748,4748,14904,11807,4743,4748,11806,11806,4748,11807,11806,11807,4741,4741,11807,4747,4748,4252,11808,11808,4252,11809,11808,11809,4749,4749,11809,4254,4752,4750,11815,11815,4750,11813,11815,11813,11814,11814,11813,11812,11814,11812,4751,4749,4751,11810,11810,4751,11812,11810,11812,11811,11811,11812,11813,11811,11813,4747,4747,11813,4750,12545,4753,11817,12545,11817,14905,12545,14905,12546,12546,14905,14906,12546,14906,4755,4755,14906,4754,4754,14906,11816,11816,14906,14905,11816,14905,11817,4751,4754,11814,11814,4754,11816,11814,11816,11815,11815,11816,11817,11815,11817,4752,4752,11817,4753,4758,4756,4757,4754,11818,4755,4755,11818,11821,11818,11819,11821,11821,11819,11822,11819,11820,11822,11822,11820,11823,11820,4757,11823,11823,4757,4756,4765,4759,4760,4765,4760,11824,4765,11824,11829,11829,11824,11825,11829,11825,11828,11828,11825,11826,11828,11826,11827,11827,11826,4764,4764,11826,4763,4764,4763,4761,11824,4760,4762,4757,4760,4758,4758,4760,4759,4265,4761,4763,4760,4263,4762,4768,4766,11833,4768,11833,4770,11833,4766,4765,11833,4765,11829,11833,11829,11832,11832,11829,11828,11832,11828,11831,11831,11828,11827,11831,11827,11830,11830,11827,4764,11830,4764,4769,4769,4764,4767,4766,4759,4765,4761,4767,4764,4773,4771,11833,4773,11833,4775,4775,11833,11836,11836,11833,14907,11836,14907,11835,11835,14907,14909,11835,14909,11834,11834,14909,11831,11834,11831,11830,11834,11830,14908,11834,14908,4774,4774,14908,4769,4774,4769,4772,4769,14908,11830,11831,14909,11832,11832,14909,14907,11832,14907,11833,11833,4771,4770,4771,4768,4770,4767,4772,4769,12554,4776,4775,12554,4775,11836,12554,11836,14910,12554,14910,4778,4778,14910,11838,11838,14910,14911,11838,14911,11837,11837,14911,11834,11837,11834,4774,11837,4774,4777,11834,14911,11835,11835,14911,14910,11835,14910,11836,4776,4773,4775,4772,4777,4774,12558,4779,11843,12558,11843,4783,12558,4783,4781,11843,4779,11842,11842,4779,11840,11842,11840,11841,11841,11840,11839,11841,11839,4782,4782,11839,4780,4777,4780,11837,11837,4780,11839,11837,11839,11838,11838,11839,11840,11838,11840,4778,4778,11840,4779,12005,4784,4783,12005,4783,11843,12005,11843,12004,12004,11843,11842,12004,11842,11841,12004,11841,4786,4786,11841,4782,4786,4782,4785,4784,4781,4783,4780,4785,4782,11854,4787,4788,11854,4788,11848,11854,11848,4789,4785,11844,4786,4786,11844,11846,11844,11845,11846,11846,11845,11847,11845,4788,11847,11847,4788,4787,4788,11849,11848,11848,11849,14912,11848,14912,4789,4789,14912,11852,11849,11850,14912,14912,11850,14913,14912,14913,11852,11852,14913,11853,11850,4272,14913,14913,4272,11851,14913,11851,11853,11853,11851,4274,11976,4790,11855,11976,11855,11977,11977,11855,4791,11977,4791,4792,4789,4791,11854,11854,4791,11855,11854,11855,4787,4787,11855,4790,4795,4793,4794,4791,11856,4792,4792,11856,11862,11856,11857,11862,11862,11857,11863,11857,11858,11863,11863,11858,11864,11858,11859,11864,11864,11859,11865,11859,11860,11865,11865,11860,11866,11860,11861,11866,11866,11861,11867,11861,4794,11867,11867,4794,4793,4798,4796,4797,4794,4797,4795,4795,4797,4796,4797,11868,4798,4798,11868,11869,11868,4275,11869,11869,4275,4277,4801,4799,4800,4798,4800,4796,4796,4800,4799,11872,4802,11870,11872,11870,4804,11870,4802,4803,4800,4803,4801,4801,4803,4802,4803,3656,11870,11870,3656,11871,11870,11871,4804,4804,11871,3658,11875,4805,11873,11875,11873,4806,11875,4806,11874,11874,4806,4807,4804,4806,11872,11872,4806,11873,11872,11873,4802,4802,11873,4805,4806,3659,4807,4807,3659,3661,4810,4808,11880,11880,4808,11877,11880,11877,11879,11879,11877,11876,11879,11876,11878,11878,11876,4809,4807,4809,11874,11874,4809,11876,11874,11876,11875,11875,11876,11877,11875,11877,4805,4805,11877,4808,4813,4811,11883,4813,11883,11885,11885,11883,11882,11885,11882,11884,11884,11882,11881,11884,11881,4812,4809,4812,11878,11878,4812,11881,11878,11881,11879,11879,11881,11882,11879,11882,11880,11880,11882,11883,11880,11883,4810,4810,11883,4811,11956,4814,11887,11956,11887,4816,4816,11887,11886,4816,11886,4815,4812,4815,11884,11884,4815,11886,11884,11886,11885,11885,11886,11887,11885,11887,4813,4813,11887,4814,11953,4817,4818,11953,4818,11952,11952,4818,4819,4815,4818,4816,4816,4818,4817,11944,4820,4821,11944,4821,4822,4818,4821,4819,4819,4821,4820,4825,4823,4824,4821,11888,4822,4822,11888,11889,11888,4824,11889,11889,4824,4823,4824,3665,4825,4825,3665,3667,11890,4826,4827,11890,4827,4828,4825,4827,4823,4823,4827,4826,4827,3668,4828,4828,3668,3670,4831,4829,11892,4831,11892,4830,4828,11891,11890,11890,11891,14914,11890,14914,4826,4826,14914,11893,11891,4830,14914,14914,4830,11892,14914,11892,11893,11893,11892,4829,4834,4832,4833,4830,11894,4831,4831,11894,11897,11894,11895,11897,11897,11895,11898,11895,11896,11898,11898,11896,11899,11896,4833,11899,11899,4833,4832,4833,11900,4834,4834,11900,11901,11900,3674,11901,11901,3674,3676,11915,4835,11908,11915,11908,11909,11915,11909,11914,11914,11909,4837,11908,4835,4836,4834,11902,4832,4832,11902,11905,11902,11903,11905,11905,11903,11906,11903,11904,11906,11906,11904,11907,11904,4836,11907,11907,4836,4835,4836,11910,11908,11908,11910,14915,11908,14915,11909,11909,14915,14916,11909,14916,4837,4837,14916,11913,11910,3683,14915,14915,3683,11911,14915,11911,14916,14916,11911,11912,14916,11912,11913,11913,11912,3685,4840,4838,11917,4840,11917,11918,11918,11917,11916,11918,11916,4839,4837,4839,11914,11914,4839,11916,11914,11916,11915,11915,11916,11917,11915,11917,4835,4835,11917,4838,11938,4841,11919,11938,11919,4842,11938,4842,4843,4839,4842,11918,11918,4842,11919,11918,11919,4840,4840,11919,4841,4846,4844,4845,4842,11920,4843,4843,11920,11921,11920,4845,11921,11921,4845,4844,4845,11922,4846,4846,11922,11925,11922,11923,11925,11925,11923,11926,11923,11924,11926,11926,11924,11927,11924,3686,11927,11927,3686,3688,4846,11928,4844,4844,11928,11933,11928,11929,11933,11933,11929,11934,11929,11930,11934,11934,11930,11935,11930,11931,11935,11935,11931,11936,11931,11932,11936,11936,11932,11937,11932,3689,11937,11937,3689,3691,4849,4847,11939,4849,11939,11940,11940,11939,4848,4843,4848,11938,11938,4848,11939,11938,11939,4841,4841,11939,4847,4848,11941,11940,11940,11941,14917,11940,14917,4849,4849,14917,11945,11941,11942,14917,14917,11942,14918,14917,14918,11945,11945,14918,11946,11942,11943,14918,14918,11943,14919,14918,14919,11946,11946,14919,11947,11943,4820,14919,14919,4820,11944,14919,11944,11947,11947,11944,4822,4852,4850,4851,4849,4851,4847,4847,4851,4850,4851,11948,4852,4852,11948,11950,11948,11949,11950,11950,11949,11951,11949,4829,11951,11951,4829,4831,4852,4838,4850,4850,4838,4840,4819,3692,11952,11952,3692,11954,11952,11954,11953,11953,11954,11955,11953,11955,4817,4817,11955,3694,4855,4853,11957,4855,11957,4854,4816,4854,11956,11956,4854,11957,11956,11957,4814,4814,11957,4853,4854,3698,4855,4855,3698,3700,4858,4856,4857,4855,11958,4853,4853,11958,11961,11958,11959,11961,11961,11959,11962,11959,11960,11962,11962,11960,11963,11960,4857,11963,11963,4857,4856,4861,4859,4860,4857,4860,4858,4858,4860,4859,11970,4862,11965,11970,11965,4864,11965,4862,11964,11964,4862,4863,4860,4863,4861,4861,4863,4862,11968,4865,11967,11968,11967,4867,4867,11967,11966,4867,11966,4866,4863,4866,11964,11964,4866,11966,11964,11966,11965,11965,11966,11967,11965,11967,4864,4864,11967,4865,4866,4284,4867,4867,4284,4286,4867,4287,11968,11968,4287,11969,11968,11969,4865,4865,11969,4289,4870,4868,11971,4870,11971,11972,11972,11971,4869,4864,4869,11970,11970,4869,11971,11970,11971,4862,4862,11971,4868,4873,4871,11975,11975,4871,11973,11975,11973,11974,11974,11973,4872,4869,4872,11972,11972,4872,11973,11972,11973,4870,4870,11973,4871,4872,4790,11974,11974,4790,11976,11974,11976,11975,11975,11976,11977,11975,11977,4873,4873,11977,4792,4876,4874,4875,4873,4875,4871,4871,4875,4874,4879,4877,4878,4875,4878,4876,4876,4878,4877,4878,11978,4879,4879,11978,11985,11978,11979,11985,11985,11979,11986,11979,11980,11986,11986,11980,11987,11980,11981,11987,11987,11981,11988,11981,11982,11988,11988,11982,11989,11982,11983,11989,11989,11983,11990,11983,11984,11990,11990,11984,11991,11984,4793,11991,11991,4793,4795,4879,11992,4877,4877,11992,11998,11992,11993,11998,11998,11993,11999,11993,11994,11999,11999,11994,12000,11994,11995,12000,12000,11995,12001,11995,11996,12001,12001,11996,12002,11996,11997,12002,12002,11997,12003,11997,4811,12003,12003,4811,4813,4882,4880,4881,4876,4881,4874,4874,4881,4880,4885,4883,4884,4881,4884,4882,4882,4884,4883,4884,4856,4885,4885,4856,4858,4885,4859,4883,4883,4859,4861,4882,4868,4880,4880,4868,4870,4810,4799,4808,4808,4799,4801,12590,4886,12007,12590,12007,4888,4888,12007,12006,4888,12006,12008,12008,12006,4887,4786,4887,12004,12004,4887,12006,12004,12006,12005,12005,12006,12007,12005,12007,4784,4784,12007,4886,12592,4889,12011,12592,12011,4893,12592,4893,4891,12011,4889,12010,12010,4889,12009,12010,12009,4892,4892,12009,4890,4887,4890,12008,12008,4890,12009,12008,12009,4888,4888,12009,4889,12608,4894,4893,12608,4893,12011,12608,12011,4896,4896,12011,12010,4896,12010,12012,12012,12010,4892,12012,4892,4895,4894,4891,4893,4890,4895,4892,4899,4897,12015,12015,4897,12013,12015,12013,12014,12014,12013,4898,4895,4898,12012,12012,4898,12013,12012,12013,4896,4896,12013,4897,4902,4900,12017,4902,12017,12018,12018,12017,12016,12018,12016,4901,4898,4901,12014,12014,4901,12016,12014,12016,12015,12015,12016,12017,12015,12017,4899,4899,12017,4900,4901,4290,12018,12018,4290,12019,12018,12019,4902,4902,12019,4292,12022,4903,12020,12022,12020,4905,12020,4903,4904,4902,4904,4900,4900,4904,4903,4904,4293,12020,12020,4293,12021,12020,12021,4905,4905,12021,4295,12618,4906,14921,12618,14921,14920,12618,14920,4908,4908,14920,12028,12028,14920,4907,4907,14920,12025,12025,14920,14921,12025,14921,4906,4905,12023,12022,12022,12023,14922,12022,14922,4903,4903,14922,12026,12023,12024,14922,14922,12024,14923,14922,14923,12026,12026,14923,12027,12024,4907,14923,14923,4907,12025,14923,12025,12027,12027,12025,4906,4911,4909,12029,4911,12029,12030,12030,12029,4910,4907,4910,12028,12028,4910,12029,12028,12029,4908,4908,12029,4909,12036,4912,14924,12036,14924,4914,4914,14924,12032,12032,14924,4913,4913,14924,12031,12031,14924,4912,4910,4913,12030,12030,4913,12031,12030,12031,4911,4911,12031,4912,4913,12033,12032,12032,12033,14925,12032,14925,4914,4914,14925,12035,12033,4299,14925,14925,4299,12034,14925,12034,12035,12035,12034,4301,12624,4915,14926,12624,14926,12039,12624,12039,4917,12039,14926,12038,12038,14926,12037,12038,12037,4916,12037,14926,4915,4914,4916,12036,12036,4916,12037,12036,12037,4912,4912,12037,4915,12044,4918,12041,12044,12041,12040,12044,12040,4920,4920,12040,4919,4916,4919,12038,12038,4919,12040,12038,12040,12039,12039,12040,12041,12039,12041,4917,4917,12041,4918,4919,12042,4920,4920,12042,12043,12042,4325,12043,12043,4325,4327,4923,4921,12047,12047,4921,12045,12047,12045,12046,12046,12045,4922,4920,4922,12044,12044,4922,12045,12044,12045,4918,4918,12045,4921,13705,4924,12049,13705,12049,13706,13706,12049,12048,13706,12048,4926,4926,12048,4925,4922,4925,12046,12046,4925,12048,12046,12048,12047,12047,12048,12049,12047,12049,4923,4923,12049,4924,12052,4927,12050,12052,12050,4929,12050,4927,4928,4925,4928,4926,4926,4928,4927,4928,4331,12050,12050,4331,12051,12050,12051,4929,4929,12051,4333,12058,4930,12054,12058,12054,12056,12058,12056,4932,12056,12054,4931,4929,12053,12052,12052,12053,14927,12052,14927,4927,4927,14927,12055,12053,4931,14927,14927,4931,12054,14927,12054,12055,12055,12054,4930,4931,4367,12056,12056,4367,12057,12056,12057,4932,4932,12057,4369,4935,4933,12059,4935,12059,4934,4932,4934,12058,12058,4934,12059,12058,12059,4930,4930,12059,4933,12064,4936,12060,12064,12060,12061,12064,12061,4938,12060,4936,4937,4934,4937,4935,4935,4937,4936,4937,4376,12060,12060,4376,12062,12060,12062,12061,12061,12062,12063,12061,12063,4938,4938,12063,4378,4941,4939,12067,12067,4939,12065,12067,12065,12066,12066,12065,4940,4938,4940,12064,12064,4940,12065,12064,12065,4936,4936,12065,4939,14929,14928,14930,14930,14928,14931,14929,14930,14932,14932,14930,14933,14933,14930,14934,14930,14931,14934,14932,14933,14935,14933,14934,14935,14935,14934,14936,13703,4942,14936,13703,14936,14934,13703,14934,13702,13702,14934,14931,13702,14931,4944,4944,14931,12072,12072,14931,14928,12072,14928,12071,12071,14928,14929,12071,14929,12070,12070,14929,4943,4943,14929,14932,4943,14932,12068,12068,14932,14935,12068,14935,12069,12069,14935,14936,12069,14936,4942,4940,4943,12066,12066,4943,12068,12066,12068,12067,12067,12068,12069,12067,12069,4941,4941,12069,4942,14940,14937,14941,14937,14938,14941,14938,14939,14941,14941,14939,14942,5440,4945,12075,5440,12075,14942,5440,14942,14939,5440,14939,12645,12645,14939,14938,12645,14938,12646,12646,14938,14937,12646,14937,5441,5441,14937,4947,4947,14937,12076,12076,14937,14940,12076,14940,4946,4946,14940,12073,12073,14940,14941,12073,14941,12074,12074,14941,14942,12074,14942,12075,4943,4946,12070,12070,4946,12073,12070,12073,12071,12071,12073,12074,12071,12074,12072,12072,12074,12075,12072,12075,4944,4944,12075,4945,13699,4948,12078,13699,12078,12080,13699,12080,4950,12080,12078,4949,4946,12077,12076,12076,12077,14943,12076,14943,4947,4947,14943,12079,12077,4949,14943,14943,4949,12078,14943,12078,12079,12079,12078,4948,12084,4951,12081,12084,12081,12082,12084,12082,4953,12082,12081,4952,4949,4952,12080,12080,4952,12081,12080,12081,4950,4950,12081,4951,4952,4379,12082,12082,4379,12083,12082,12083,4953,4953,12083,4381,12089,4954,12085,12089,12085,4955,12089,4955,12086,12089,12086,12088,12088,12086,4956,4953,4955,12084,12084,4955,12085,12084,12085,4951,4951,12085,4954,4955,4382,12086,12086,4382,12087,12086,12087,4956,4956,12087,4384,13701,4957,12091,13701,12091,12090,13701,12090,4959,4959,12090,4958,4956,4958,12088,12088,4958,12090,12088,12090,12089,12089,12090,12091,12089,12091,4954,4954,12091,4957,4962,4960,4961,4958,4961,4959,4959,4961,4960,4965,4963,4964,4961,4964,4962,4962,4964,4963,4968,4966,12092,12092,4966,4967,4964,4967,4965,4965,4967,4966,4967,4391,12092,12092,4391,12093,12092,12093,4968,4968,12093,4393,4971,4969,4970,4968,12094,4966,4966,12094,12095,12094,4970,12095,12095,4970,4969,4970,12096,4971,4971,12096,12100,12096,12097,12100,12100,12097,12101,12097,12098,12101,12101,12098,12102,12098,12099,12102,12102,12099,12103,12099,4394,12103,12103,4394,4396,4971,12104,4969,4969,12104,12106,12104,12105,12106,12106,12105,12107,12105,4403,12107,12107,4403,4405,4965,12108,4963,4963,12108,12109,12108,4417,12109,12109,4417,4419,6360,4972,4975,6360,4975,12110,6360,12110,13697,13697,12110,6359,6359,12110,4976,6359,4976,4974,4975,4972,4973,4962,4973,4960,4960,4973,4972,14945,14944,14946,12116,4977,4976,12116,4976,14947,12116,14947,12115,12115,14947,14944,12115,14944,4979,4979,14944,12111,12111,14944,14945,12111,14945,4978,4978,14945,4975,4975,14945,14946,4975,14946,12110,12110,14946,14947,12110,14947,4976,14947,14946,14944,4977,4974,4976,4973,4978,4975,4978,12112,12111,12111,12112,14948,12111,14948,4979,4979,14948,12114,12112,4420,14948,14948,4420,12113,14948,12113,12114,12114,12113,4422,12123,4980,14949,12123,14949,12120,12123,12120,4982,12120,14949,12119,12119,14949,12117,12119,12117,4981,12117,14949,12118,12118,14949,4980,4979,4981,12115,12115,4981,12117,12115,12117,12116,12116,12117,12118,12116,12118,4977,4977,12118,4980,4981,4432,12119,12119,4432,12121,12119,12121,12120,12120,12121,12122,12120,12122,4982,4982,12122,4434,4985,4983,12124,4985,12124,4984,4982,4984,12123,12123,4984,12124,12123,12124,4980,4980,12124,4983,4988,4986,4987,4984,4987,4985,4985,4987,4986,4991,4989,4990,4987,4990,4988,4988,4990,4989,4994,4992,4993,4990,12125,4991,4991,12125,12126,12125,4993,12126,12126,4993,4992,4993,4435,4994,4994,4435,4437,12666,4995,4996,12666,4996,12137,12666,12137,4997,4994,12127,4992,4992,12127,12132,12127,12128,12132,12132,12128,12133,12128,12129,12133,12133,12129,12134,12129,12130,12134,12134,12130,12135,12130,12131,12135,12135,12131,12136,12131,4996,12136,12136,4996,4995,12142,4998,14951,12142,14951,14950,12142,14950,12141,12141,14950,12139,12141,12139,5000,12139,14950,4999,4999,14950,12138,12138,14950,14951,12138,14951,4998,4996,4999,12137,12137,4999,12138,12137,12138,4997,4997,12138,4998,4999,4441,12139,12139,4441,12140,12139,12140,5000,5000,12140,4443,5003,5001,12144,5003,12144,12146,12146,12144,12143,12146,12143,12145,12145,12143,5002,5000,5002,12141,12141,5002,12143,12141,12143,12142,12142,12143,12144,12142,12144,4998,4998,12144,5001,14953,14954,14955,14955,14954,14956,14955,14956,14957,12695,5004,14954,12695,14954,12696,12696,14954,14952,12696,14952,5006,5006,14952,12152,5006,12152,5008,12152,14952,14953,12152,14953,12151,12151,14953,14955,12151,14955,12150,12150,14955,14957,12150,14957,12149,12149,14957,12147,12149,12147,5005,12149,5005,5007,12147,14957,12148,12148,14957,14956,12148,14956,5004,5004,14956,14954,14953,14952,14954,5002,5005,12145,12145,5005,12147,12145,12147,12146,12146,12147,12148,12146,12148,5003,5003,12148,5004,5011,5009,12152,5011,12152,12151,5011,12151,5013,5013,12151,12150,5013,12150,12153,12153,12150,12149,12153,12149,5012,5012,12149,5007,5012,5007,5010,12152,5009,5008,5009,5006,5008,5005,5010,5007,14958,14959,14961,14959,14960,14961,12158,5014,5013,12158,5013,14960,12158,14960,14959,12158,14959,5016,5016,14959,12155,12155,14959,14958,12155,14958,12154,12154,14958,5012,12154,5012,5015,5012,14958,14961,5012,14961,12153,12153,14961,14960,12153,14960,5013,5014,5011,5013,5010,5015,5012,5015,4450,12154,12154,4450,12156,12154,12156,12155,12155,12156,12157,12155,12157,5016,5016,12157,4452,5019,5017,14962,5019,14962,12161,12161,14962,12160,12160,14962,12159,12160,12159,5018,12159,14962,5017,5016,5018,12158,12158,5018,12159,12158,12159,5014,5014,12159,5017,5022,5020,12164,5022,12164,12166,12166,12164,12163,12166,12163,5021,5018,12162,12160,12160,12162,14963,12160,14963,12161,12161,14963,14964,12161,14964,5019,5019,14964,12165,12162,5021,14963,14963,5021,12163,14963,12163,14964,14964,12163,12164,14964,12164,12165,12165,12164,5020,12170,5023,14966,12170,14966,14965,12170,14965,5025,5025,14965,12168,12168,14965,14966,12168,14966,5024,5024,14966,12167,12167,14966,5023,5021,5024,12166,12166,5024,12167,12166,12167,5022,5022,12167,5023,5024,4456,12168,12168,4456,12169,12168,12169,5025,5025,12169,4458,5028,5026,12173,12173,5026,12171,12173,12171,12172,12172,12171,5027,5025,5027,12170,12170,5027,12171,12170,12171,5023,5023,12171,5026,12705,5029,12175,12705,12175,12174,12705,12174,5031,5031,12174,5030,5027,5030,12172,12172,5030,12174,12172,12174,12173,12173,12174,12175,12173,12175,5028,5028,12175,5029,5034,5032,5033,5030,5033,5031,5031,5033,5032,5037,5035,5036,5033,5036,5034,5034,5036,5035,5036,4459,5037,5037,4459,4461,5040,5038,5039,5037,5039,5035,5035,5039,5038,5043,5041,5042,5039,5042,5040,5040,5042,5041,12207,5044,12180,12207,12180,5046,12180,5044,5045,5042,12176,5043,5043,12176,12178,12176,12177,12178,12178,12177,12179,12177,5045,12179,12179,5045,5044,5051,5047,12182,5051,12182,14967,5051,14967,12186,12186,14967,14968,12186,14968,5050,5050,14968,5049,5049,14968,12184,12184,14968,14967,12184,14967,5048,5048,14967,12182,5045,12181,12180,12180,12181,14969,12180,14969,5046,5046,14969,12183,12181,5048,14969,14969,5048,12182,14969,12182,12183,12183,12182,5047,5048,4465,12184,12184,4465,12185,12184,12185,5049,5049,12185,4467,14972,14971,14973,12205,5052,14970,12205,14970,14971,12205,14971,12206,12206,14971,14972,12206,14972,5054,5054,14972,12187,12187,14972,14973,12187,14973,14974,12187,14974,5053,5053,14974,5050,5050,14974,14973,5050,14973,12186,12186,14973,14971,12186,14971,14970,12186,14970,5051,5051,14970,5052,5052,5047,5051,5049,5053,5050,12191,5055,12188,12191,12188,12189,12191,12189,5057,12189,12188,5056,5053,5056,12187,12187,5056,12188,12187,12188,5054,5054,12188,5055,5056,4468,12189,12189,4468,12190,12189,12190,5057,5057,12190,4470,12197,5058,14975,12197,14975,12194,12197,12194,5060,12194,14975,12193,12193,14975,14976,12193,14976,5059,5059,14976,12192,12192,14976,14975,12192,14975,5058,5057,5059,12191,12191,5059,12192,12191,12192,5055,5055,12192,5058,5059,4471,12193,12193,4471,12195,12193,12195,12194,12194,12195,12196,12194,12196,5060,5060,12196,4473,14978,14977,14979,12204,5061,14979,12204,14979,12203,12203,14979,14977,12203,14977,12200,12203,12200,5063,12200,14977,12199,12199,14977,14978,12199,14978,5062,5062,14978,12198,12198,14978,5061,5061,14978,14979,5060,5062,12197,12197,5062,12198,12197,12198,5058,5058,12198,5061,5062,4479,12199,12199,4479,12201,12199,12201,12200,12200,12201,12202,12200,12202,5063,5063,12202,4481,5063,5052,12203,12203,5052,12205,12203,12205,12204,12204,12205,12206,12204,12206,5061,5061,12206,5054,12215,5064,14980,12215,14980,12212,12215,12212,5066,12212,14980,12211,12211,14980,12209,12211,12209,5065,12209,14980,5064,5046,12208,12207,12207,12208,14981,12207,14981,5044,5044,14981,12210,12208,5065,14981,14981,5065,12209,14981,12209,12210,12210,12209,5064,5065,4485,12211,12211,4485,12213,12211,12213,12212,12212,12213,12214,12212,12214,5066,5066,12214,4487,5069,5067,12219,12219,5067,12217,12219,12217,5068,5066,12216,12215,12215,12216,14982,12215,14982,5064,5064,14982,12218,12216,5068,14982,14982,5068,12217,14982,12217,12218,12218,12217,5067,14983,14984,14987,14987,14984,14988,14984,14985,14988,14988,14985,14989,14990,14986,14991,14986,14987,14991,14987,14988,14991,14991,14988,14992,14988,14989,14992,14990,14991,14993,14991,14992,14993,5499,5070,14990,5499,14990,12718,12718,14990,14993,12718,14993,12719,12719,14993,14992,12719,14992,14989,12719,14989,5500,5500,14989,5072,5072,14989,14985,5072,14985,5074,5074,14985,14984,5074,14984,5073,5073,14984,14983,5073,14983,5071,5071,14983,14986,5071,14986,12221,12221,14986,14990,12221,14990,5070,14986,14983,14987,5068,12220,12219,12219,12220,14994,12219,14994,5069,5069,14994,12222,12220,5071,14994,14994,5071,12221,14994,12221,12222,12222,12221,5070,12753,5075,5074,12753,5074,5077,5077,5074,5073,5077,5073,14995,5077,14995,12223,12223,14995,5076,5076,14995,5073,5075,5072,5074,5071,5076,5073,12239,5078,12224,12239,12224,5079,12239,5079,5080,5076,5079,12223,12223,5079,12224,12223,12224,5077,5077,12224,5078,12233,5081,12231,12233,12231,5083,12231,5081,5082,5079,12225,5080,5080,12225,12228,12225,12226,12228,12228,12226,12229,12226,12227,12229,12229,12227,12230,12227,5082,12230,12230,5082,5081,5082,4488,12231,12231,4488,12232,12231,12232,5083,5083,12232,4490,5083,12234,12233,12233,12234,14996,12233,14996,5081,5081,14996,12237,12234,12235,14996,14996,12235,14997,14996,14997,12237,12237,14997,12238,12235,4527,14997,14997,4527,12236,14997,12236,12238,12238,12236,4529,5086,5084,12240,5086,12240,5085,5080,5085,12239,12239,5085,12240,12239,12240,5078,5078,12240,5084,5089,5087,12241,12241,5087,5088,5085,5088,5086,5086,5088,5087,5088,4530,12241,12241,4530,12242,12241,12242,5089,5089,12242,4532,12247,5090,5091,12247,5091,5092,5089,12243,5087,5087,12243,12244,12243,5091,12244,12244,5091,5090,5091,12245,5092,5092,12245,12246,12245,4539,12246,12246,4539,4541,5095,5093,12250,12250,5093,12249,12249,5093,12248,12249,12248,5094,5092,5094,12247,12247,5094,12248,12247,12248,5090,5090,12248,5093,12760,5096,12252,12760,12252,14998,12760,14998,12761,12761,14998,14999,12761,14999,5098,5098,14999,12253,12253,14999,5097,5097,14999,12251,12251,14999,12252,12252,14999,14998,5094,5097,12249,12249,5097,12251,12249,12251,12250,12250,12251,12252,12250,12252,5095,5095,12252,5096,12767,5099,12254,12767,12254,15000,12767,15000,12256,12767,12256,5101,12256,15000,12255,12255,15000,5100,5100,15000,12254,5097,5100,12253,12253,5100,12254,12253,12254,5098,5098,12254,5099,12265,5102,12260,12265,12260,15001,12265,15001,5104,5104,15001,12263,12263,15001,12259,12263,12259,5103,12259,15001,12260,5100,12257,12255,12255,12257,15002,12255,15002,12256,12256,15002,15003,12256,15003,5101,5101,15003,12261,12257,12258,15002,15002,12258,15004,15002,15004,15003,15003,15004,15005,15003,15005,12261,12261,15005,12262,12258,5103,15004,15004,5103,12259,15004,12259,15005,15005,12259,12260,15005,12260,12262,12262,12260,5102,5103,4548,12263,12263,4548,12264,12263,12264,5104,5104,12264,4550,5107,5105,12266,5107,12266,5106,5104,5106,12265,12265,5106,12266,12265,12266,5102,5102,12266,5105,5106,4551,5107,5107,4551,4553,5112,5108,5109,5112,5109,12267,5112,12267,5111,5111,12267,12268,5111,12268,5110,5107,5109,5105,5105,5109,5108,5109,4554,12267,12267,4554,12269,12267,12269,12268,12268,12269,12270,12268,12270,5110,5110,12270,4556,5115,5113,5112,5115,5112,12272,12272,5112,5111,12272,5111,12271,12271,5111,5114,5113,5108,5112,5110,5114,5111,12788,5116,12274,12788,12274,12273,12788,12273,12789,12789,12273,5117,12789,5117,5118,5114,5117,12271,12271,5117,12273,12271,12273,12272,12272,12273,12274,12272,12274,5115,5115,12274,5116,12281,5119,5120,12281,5120,12275,12281,12275,5121,5117,5120,5118,5118,5120,5119,5120,12276,12275,12275,12276,15006,12275,15006,5121,5121,15006,12279,12276,12277,15006,15006,12277,15007,15006,15007,12279,12279,15007,12280,12277,4560,15007,15007,4560,12278,15007,12278,12280,12280,12278,4562,12796,5122,12282,12796,12282,12797,12797,12282,5123,12797,5123,5124,5121,5123,12281,12281,5123,12282,12281,12282,5119,5119,12282,5122,5127,5125,5126,5123,5126,5124,5124,5126,5125,12287,5128,5129,12287,5129,5130,5126,5129,5127,5127,5129,5128,5129,12283,5130,5130,12283,12285,12283,12284,12285,12285,12284,12286,12284,4563,12286,12286,4563,4565,13166,5131,12289,13166,12289,15008,13166,15008,13167,13167,15008,12291,13167,12291,5133,12291,15008,5132,5132,15008,12289,5130,12288,12287,12287,12288,15009,12287,15009,5128,5128,15009,12290,12288,5132,15009,15009,5132,12289,15009,12289,12290,12290,12289,5131,5136,5134,12294,12294,5134,12292,12294,12292,12293,12293,12292,5135,5132,5135,12291,12291,5135,12292,12291,12292,5133,5133,12292,5134,5139,5137,12296,5139,12296,12295,5139,12295,5138,5135,5138,12293,12293,5138,12295,12293,12295,12294,12294,12295,12296,12294,12296,5136,5136,12296,5137,12305,5140,12300,12305,12300,5142,12300,5140,12299,12299,5140,5141,5138,12297,5139,5139,12297,12298,12297,5141,12298,12298,5141,5140,12303,5143,12302,12303,12302,12301,12303,12301,5145,5145,12301,5144,5141,5144,12299,12299,5144,12301,12299,12301,12300,12300,12301,12302,12300,12302,5142,5142,12302,5143,5144,4566,5145,5145,4566,4568,5145,4569,12303,12303,4569,12304,12303,12304,5143,5143,12304,4571,5148,5146,12306,5148,12306,5147,5142,5147,12305,12305,5147,12306,12305,12306,5140,5140,12306,5146,5151,5149,5150,5147,5150,5148,5148,5150,5149,5150,12307,5151,5151,12307,12311,12307,12308,12311,12311,12308,12312,12308,12309,12312,12312,12309,12313,12309,12310,12313,12313,12310,12314,12310,4572,12314,12314,4572,4574,5151,12315,5149,5149,12315,12318,12315,12316,12318,12318,12316,12319,12316,12317,12319,12319,12317,12320,12317,4578,12320,12320,4578,4580,5154,5152,12321,12321,5152,5153,5148,5153,5146,5146,5153,5152,13177,5155,12324,13177,12324,5157,12324,5155,12323,12323,5155,12322,12323,12322,5156,5153,5156,12321,12321,5156,12322,12321,12322,5154,5154,12322,5155,5160,5158,12327,5160,12327,12330,12330,12327,12326,12330,12326,12329,12329,12326,5159,5156,12325,12323,12323,12325,15010,12323,15010,12324,12324,15010,15011,12324,15011,5157,5157,15011,12328,12325,5159,15010,15010,5159,12326,15010,12326,15011,15011,12326,12327,15011,12327,12328,12328,12327,5158,13692,5161,12332,13692,12332,5163,5163,12332,12331,5163,12331,5162,5159,5162,12329,12329,5162,12331,12329,12331,12330,12330,12331,12332,12330,12332,5160,5160,12332,5161,5166,5164,12333,12333,5164,5165,5162,5165,5163,5163,5165,5164,5169,5167,12335,5169,12335,5168,5165,12334,12333,12333,12334,15012,12333,15012,5166,5166,15012,12336,12334,5168,15012,15012,5168,12335,15012,12335,12336,12336,12335,5167,5168,4581,5169,5169,4581,4583,12339,5170,12337,12339,12337,5172,12337,5170,5171,5169,5171,5167,5167,5171,5170,5171,4590,12337,12337,4590,12338,12337,12338,5172,5172,12338,4592,5172,4596,12339,12339,4596,12340,12339,12340,5170,5170,12340,4598,12345,5173,5174,12345,5174,12341,12345,12341,5175,5166,5174,5164,5164,5174,5173,5174,12342,12341,12341,12342,15013,12341,15013,5175,5175,15013,12344,12342,4599,15013,15013,4599,12343,15013,12343,12344,12344,12343,4601,13691,5176,12346,13691,12346,5178,5178,12346,5177,5175,5177,12345,12345,5177,12346,12345,12346,5173,5173,12346,5176,12347,5179,5180,12347,5180,5181,5177,5180,5178,5178,5180,5179,5180,4605,5181,5181,4605,4607,5184,5182,12348,5184,12348,5183,5181,5183,12347,12347,5183,12348,12347,12348,5179,5179,12348,5182,5187,5185,5186,5183,12349,5184,5184,12349,12352,12349,12350,12352,12352,12350,12353,12350,12351,12353,12353,12351,12354,12351,5186,12354,12354,5186,5185,5186,12355,5187,5187,12355,12357,12355,12356,12357,12357,12356,12358,12356,4608,12358,12358,4608,4610,5190,5188,5189,5187,5189,5185,5185,5189,5188,13198,5191,12363,13198,12363,5193,12363,5191,5192,5189,12359,5190,5190,12359,12361,12359,12360,12361,12361,12360,12362,12360,5192,12362,12362,5192,5191,5196,5194,12369,12369,5194,12366,12369,12366,5195,5192,12364,12363,12363,12364,15014,12363,15014,5193,5193,15014,12367,12364,12365,15014,15014,12365,15015,15014,15015,12367,12367,15015,12368,12365,5195,15015,15015,5195,12366,15015,12366,12368,12368,12366,5194,5195,4611,12369,12369,4611,12370,12369,12370,5196,5196,12370,4613,5199,5197,5198,5196,5198,5194,5194,5198,5197,5202,5200,5201,5198,5201,5199,5199,5201,5200,5205,5203,5204,5201,5204,5202,5202,5204,5203,5204,12371,5205,5205,12371,12372,12371,4614,12372,12372,4614,4616,5208,5206,5207,5205,5207,5203,5203,5207,5206,5211,5209,5210,5207,5210,5208,5208,5210,5209,5214,5212,12377,12377,5212,5213,5210,12373,5211,5211,12373,12375,12373,12374,12375,12375,12374,12376,12374,5213,12376,12376,5213,5212,13156,5215,12378,13156,12378,15016,13156,15016,13157,13157,15016,12379,13157,12379,5217,12379,15016,5216,5216,15016,12378,5213,5216,12377,12377,5216,12378,12377,12378,5214,5214,12378,5215,12385,5218,15017,12385,15017,12382,12385,12382,5220,12382,15017,12381,12381,15017,5219,5219,15017,12380,12380,15017,5218,5216,5219,12379,12379,5219,12380,12379,12380,5217,5217,12380,5218,5219,4617,12381,12381,4617,12383,12381,12383,12382,12382,12383,12384,12382,12384,5220,5220,12384,4619,5223,5221,12386,5223,12386,5222,5220,5222,12385,12385,5222,12386,12385,12386,5218,5218,12386,5221,12392,5224,15018,12392,15018,15019,12392,15019,12391,12391,15019,12388,12391,12388,5226,12388,15019,12387,12387,15019,15018,12387,15018,5225,5225,15018,5224,5222,5225,5223,5223,5225,5224,5225,4630,12387,12387,4630,12389,12387,12389,12388,12388,12389,12390,12388,12390,5226,5226,12390,4632,5229,5227,12394,5229,12394,12393,5229,12393,12395,12395,12393,5228,5226,5228,12391,12391,5228,12393,12391,12393,12392,12392,12393,12394,12392,12394,5224,5224,12394,5227,13162,5230,12396,13162,12396,13163,13163,12396,5231,13163,5231,12397,13163,12397,5232,5228,5231,12395,12395,5231,12396,12395,12396,5229,5229,12396,5230,12399,5233,12398,12399,12398,5235,5235,12398,5234,5231,5234,12397,12397,5234,12398,12397,12398,5232,5232,12398,5233,5234,4633,5235,5235,4633,4635,12805,5236,12400,12805,12400,12401,12805,12401,5238,12401,12400,5237,5235,5237,12399,12399,5237,12400,12399,12400,5233,5233,12400,5236,5241,5239,12402,5241,12402,5240,5237,5240,12401,12401,5240,12402,12401,12402,5238,5238,12402,5239,5240,4636,5241,5241,4636,4638,5244,5242,5243,5241,5243,5239,5239,5243,5242,5243,4645,5244,5244,4645,4647,12433,5245,12403,12433,12403,12404,12433,12404,5247,12403,5245,5246,5244,5246,5242,5242,5246,5245,15020,15021,15023,12431,5248,15020,12431,15020,12432,12432,15020,15023,12432,15023,5250,5250,15023,12407,12407,15023,15022,12407,15022,5249,5249,15022,12405,12405,15022,15021,12405,15021,12406,12406,15021,15020,12406,15020,5248,15021,15022,15023,5246,5249,12403,12403,5249,12405,12403,12405,12404,12404,12405,12406,12404,12406,5247,5247,12406,5248,5253,5251,12408,5253,12408,12409,12409,12408,5252,5249,5252,12407,12407,5252,12408,12407,12408,5250,5250,12408,5251,5252,4651,12409,12409,4651,12410,12409,12410,5253,5253,12410,4653,5256,5254,5255,5253,5255,5251,5251,5255,5254,5259,5257,5258,5255,5258,5256,5256,5258,5257,5258,4654,5259,5259,4654,4656,12415,5260,12411,12415,12411,12412,12415,12412,5262,12411,5260,5261,5259,5261,5257,5257,5261,5260,5261,4669,12411,12411,4669,12413,12411,12413,12412,12412,12413,12414,12412,12414,5262,5262,12414,4671,5265,5263,12418,12418,5263,12416,12418,12416,12417,12417,12416,5264,5262,5264,12415,12415,5264,12416,12415,12416,5260,5260,12416,5263,15025,15024,15026,12426,5266,15026,12426,15026,12425,12425,15026,15024,12425,15024,5268,5268,15024,12422,12422,15024,12421,12421,15024,15025,12421,15025,5267,5267,15025,12419,12419,15025,12420,12420,15025,15026,12420,15026,5266,5264,5267,12417,12417,5267,12419,12417,12419,12418,12418,12419,12420,12418,12420,5265,5265,12420,5266,5267,4681,12421,12421,4681,12423,12421,12423,12422,12422,12423,12424,12422,12424,5268,5268,12424,4683,5271,5269,12430,12430,5269,12428,12430,12428,12429,12429,12428,12427,12429,12427,5270,5268,5270,12425,12425,5270,12427,12425,12427,12426,12426,12427,12428,12426,12428,5266,5266,12428,5269,5270,5248,12429,12429,5248,12431,12429,12431,12430,12430,12431,12432,12430,12432,5271,5271,12432,5250,5274,5272,5273,5271,5273,5269,5269,5273,5272,5273,5254,5274,5274,5254,5256,5274,5263,5272,5272,5263,5265,15027,15028,15029,12815,5275,15027,12815,15027,12816,12816,15027,15029,12816,15029,5277,5277,15029,12448,12448,15029,12447,12447,15029,15028,12447,15028,5276,5276,15028,12440,12440,15028,15027,12440,15027,5275,5247,12434,12433,12433,12434,15030,12433,15030,5245,5245,15030,12441,12434,12435,15030,15030,12435,15031,15030,15031,12441,12441,15031,12442,12435,12436,15031,15031,12436,15032,15031,15032,12442,12442,15032,12443,12436,12437,15032,15032,12437,15033,15032,15033,12443,12443,15033,12444,12437,12438,15033,15033,12438,15034,15033,15034,12444,12444,15034,12445,12438,12439,15034,15034,12439,15035,15034,15035,12445,12445,15035,12446,12439,5276,15035,15035,5276,12440,15035,12440,12446,12446,12440,5275,5280,5278,12450,5280,12450,12452,12452,12450,12449,12452,12449,12451,12451,12449,5279,5276,5279,12447,12447,5279,12449,12447,12449,12448,12448,12449,12450,12448,12450,5277,5277,12450,5278,12831,5281,15037,12831,15037,15036,12831,15036,5283,5283,15036,12455,12455,15036,15037,12455,15037,12453,12455,12453,5282,12453,15037,12454,12454,15037,5281,5279,5282,12451,12451,5282,12453,12451,12453,12452,12452,12453,12454,12452,12454,5280,5280,12454,5281,12835,5284,12456,12835,12456,15038,12835,15038,5286,5286,15038,12457,12457,15038,12456,12457,12456,5285,5282,5285,12455,12455,5285,12456,12455,12456,5283,5283,12456,5284,5289,5287,12459,5289,12459,5288,5285,12458,12457,12457,12458,15039,12457,15039,5286,5286,15039,12460,12458,5288,15039,15039,5288,12459,15039,12459,12460,12460,12459,5287,5292,5290,5291,5288,5291,5289,5289,5291,5290,5295,5293,12462,12462,5293,12461,12461,5293,5294,5291,5294,5292,5292,5294,5293,5298,5296,12470,12470,5296,12466,12470,12466,12469,12469,12466,12465,12469,12465,5297,5294,12463,12461,12461,12463,15040,12461,15040,12462,12462,15040,15041,12462,15041,5295,5295,15041,12467,12463,12464,15040,15040,12464,15042,15040,15042,15041,15041,15042,15043,15041,15043,12467,12467,15043,12468,12464,5297,15042,15042,5297,12465,15042,12465,15043,15043,12465,12466,15043,12466,12468,12468,12466,5296,5301,5299,12472,5301,12472,12473,12473,12472,12471,12473,12471,5300,5297,5300,12469,12469,5300,12471,12469,12471,12470,12470,12471,12472,12470,12472,5298,5298,12472,5299,5300,4684,12473,12473,4684,12474,12473,12474,5301,5301,12474,4686,5301,4687,5299,5299,4687,4689,5304,5302,5303,5298,5303,5296,5296,5303,5302,5303,4693,5304,5304,4693,4695,12871,5305,5306,12871,5306,5307,5304,12475,5302,5302,12475,12477,12475,12476,12477,12477,12476,12478,12476,5306,12478,12478,5306,5305,5310,5308,5309,5306,12479,5307,5307,12479,12480,12479,5309,12480,12480,5309,5308,5309,12481,5310,5310,12481,12483,12481,12482,12483,12483,12482,12484,12482,4696,12484,12484,4696,4698,5313,5311,12490,12490,5311,12489,12489,5311,5312,5310,12485,5308,5308,12485,12487,12485,12486,12487,12487,12486,12488,12486,5312,12488,12488,5312,5311,5316,5314,15044,5316,15044,12494,12494,15044,12492,12494,12492,12493,12493,12492,12491,12493,12491,5315,12492,15044,5314,5312,5315,12489,12489,5315,12491,12489,12491,12490,12490,12491,12492,12490,12492,5313,5313,12492,5314,12893,5317,12496,12893,12496,12495,12893,12495,5319,5319,12495,5318,5315,5318,12493,12493,5318,12495,12493,12495,12494,12494,12495,12496,12494,12496,5316,5316,12496,5317,12507,5320,12504,12507,12504,5322,12504,5320,12503,12503,5320,5321,5318,12497,5319,5319,12497,12500,12497,12498,12500,12500,12498,12501,12498,12499,12501,12501,12499,12502,12499,5321,12502,12502,5321,5320,5321,4704,12503,12503,4704,12505,12503,12505,12504,12504,12505,12506,12504,12506,5322,5322,12506,4706,12895,5323,12510,12895,12510,12513,12895,12513,5325,12513,12510,5324,5322,12508,12507,12507,12508,15045,12507,15045,5320,5320,15045,12511,12508,12509,15045,15045,12509,15046,15045,15046,12511,12511,15046,12512,12509,5324,15046,15046,5324,12510,15046,12510,12512,12512,12510,5323,12524,5326,12515,12524,12515,12523,12523,12515,5327,12523,5327,5328,5324,12514,12513,12513,12514,15047,12513,15047,5325,5325,15047,12516,12514,5327,15047,15047,5327,12515,15047,12515,12516,12516,12515,5326,5331,5329,5330,5327,12517,5328,5328,12517,12520,12517,12518,12520,12520,12518,12521,12518,12519,12521,12521,12519,12522,12519,5330,12522,12522,5330,5329,5330,4717,5331,5331,4717,4719,5331,4720,5329,5329,4720,4722,5334,5332,12528,12528,5332,12526,12528,12526,12527,12527,12526,12525,12527,12525,5333,5328,5333,12523,12523,5333,12525,12523,12525,12524,12524,12525,12526,12524,12526,5326,5326,12526,5332,12908,5335,12530,12908,12530,5337,5337,12530,12529,5337,12529,12531,12531,12529,5336,5333,5336,12527,12527,5336,12529,12527,12529,12528,12528,12529,12530,12528,12530,5334,5334,12530,5335,12535,5338,12532,12535,12532,12533,12535,12533,5340,12533,12532,5339,5336,5339,12531,12531,5339,12532,12531,12532,5337,5337,12532,5338,5339,4726,12533,12533,4726,12534,12533,12534,5340,5340,12534,4728,12916,5341,12536,12916,12536,5343,5343,12536,5342,5340,5342,12535,12535,5342,12536,12535,12536,5338,5338,12536,5341,5346,5344,5345,5342,12537,5343,5343,12537,12538,12537,5345,12538,12538,5345,5344,5345,4729,5346,5346,4729,4731,5349,5347,5348,5346,5348,5344,5344,5348,5347,5352,5350,5351,5348,5351,5349,5349,5351,5350,5351,4732,5352,5352,4732,4734,5355,5353,12539,12539,5353,5354,5352,5354,5350,5350,5354,5353,12943,5356,12540,12943,12540,15048,12943,15048,5358,5358,15048,12541,12541,15048,5357,5357,15048,12540,5354,5357,12539,12539,5357,12540,12539,12540,5355,5355,12540,5356,12547,5359,12544,12547,12544,5361,12544,5359,12542,12544,12542,12543,12543,12542,5360,5357,5360,12541,12541,5360,12542,12541,12542,5358,5358,12542,5359,5360,4753,12543,12543,4753,12545,12543,12545,12544,12544,12545,12546,12544,12546,5361,5361,12546,4755,5364,5362,12548,5364,12548,5363,5361,5363,12547,12547,5363,12548,12547,12548,5359,5359,12548,5362,5367,5365,5366,5363,12549,5364,5364,12549,12551,12549,12550,12551,12551,12550,12552,12550,5366,12552,12552,5366,5365,5366,4771,5367,5367,4771,4773,12555,5368,12553,12555,12553,5370,12553,5368,5369,5367,5369,5365,5365,5369,5368,5369,4776,12553,12553,4776,12554,12553,12554,5370,5370,12554,4778,5373,5371,15049,5373,15049,12557,12557,15049,12556,12557,12556,5372,12556,15049,5371,5370,5372,12555,12555,5372,12556,12555,12556,5368,5368,12556,5371,5372,4779,12557,12557,4779,12558,12557,12558,5373,5373,12558,4781,5376,5374,12565,12565,5374,5375,5373,12559,5371,5371,12559,12562,12559,12560,12562,12562,12560,12563,12560,12561,12563,12563,12561,12564,12561,5375,12564,12564,5375,5374,12951,5377,15050,12951,15050,12569,12951,12569,5379,12569,15050,12568,12568,15050,12567,12567,15050,12566,12567,12566,5378,12566,15050,5377,5375,5378,12565,12565,5378,12566,12565,12566,5376,5376,12566,5377,12962,5380,12572,12962,12572,12571,12962,12571,12963,12963,12571,12570,12963,12570,5382,5382,12570,5381,5378,5381,12567,12567,5381,12570,12567,12570,12568,12568,12570,12571,12568,12571,12569,12569,12571,12572,12569,12572,5379,5379,12572,5380,12965,5383,12573,12965,12573,5385,12573,5383,5384,5381,5384,5382,5382,5384,5383,5388,5386,15051,5388,15051,12576,12576,15051,12574,12576,12574,12575,12575,12574,5387,12574,15051,5386,5384,5387,12573,12573,5387,12574,12573,12574,5385,5385,12574,5386,5391,5389,12578,5391,12578,12580,12580,12578,12577,12580,12577,12579,12579,12577,5390,5387,5390,12575,12575,5390,12577,12575,12577,12576,12576,12577,12578,12576,12578,5388,5388,12578,5389,5394,5392,12583,5394,12583,12586,12586,12583,12582,12586,12582,12585,12585,12582,5393,5390,12581,12579,12579,12581,15052,12579,15052,12580,12580,15052,15053,12580,15053,5391,5391,15053,12584,12581,5393,15052,15052,5393,12582,15052,12582,15053,15053,12582,12583,15053,12583,12584,12584,12583,5392,12591,5395,12588,12591,12588,12587,12591,12587,12589,12591,12589,5397,12589,12587,5396,5393,5396,12585,12585,5396,12587,12585,12587,12586,12586,12587,12588,12586,12588,5394,5394,12588,5395,5396,4886,12589,12589,4886,12590,12589,12590,5397,5397,12590,4888,5397,4889,12591,12591,4889,12592,12591,12592,5395,5395,12592,4891,5400,5398,5399,5394,12593,5392,5392,12593,12598,12593,12594,12598,12598,12594,12599,12594,12595,12599,12599,12595,12600,12595,12596,12600,12600,12596,12601,12596,12597,12601,12601,12597,12602,12597,5399,12602,12602,5399,5398,5403,5401,5402,5399,5402,5400,5400,5402,5401,5406,5404,12604,12604,5404,12603,12603,5404,5405,5402,5405,5403,5403,5405,5404,5409,5407,12606,5409,12606,12607,12607,12606,12605,12607,12605,5408,5405,5408,12603,12603,5408,12605,12603,12605,12604,12604,12605,12606,12604,12606,5406,5406,12606,5407,5408,4894,12607,12607,4894,12608,12607,12608,5409,5409,12608,4896,5409,4897,5407,5407,4897,4899,5412,5410,12610,12610,5410,12609,12609,5410,5411,5406,5411,5404,5404,5411,5410,5415,5413,12614,12614,5413,12612,12614,12612,12613,12613,12612,12611,12613,12611,5414,5411,5414,12609,12609,5414,12611,12609,12611,12610,12610,12611,12612,12610,12612,5412,5412,12612,5413,12619,5416,12616,12619,12616,15054,12619,15054,5418,5418,15054,12617,12617,15054,12615,12617,12615,5417,12615,15054,12616,5414,5417,12613,12613,5417,12615,12613,12615,12614,12614,12615,12616,12614,12616,5415,5415,12616,5416,5417,4906,12617,12617,4906,12618,12617,12618,5418,5418,12618,4908,12625,5419,12620,12625,12620,15055,12625,15055,5421,5421,15055,12621,12621,15055,12620,12621,12620,5420,5418,5420,12619,12619,5420,12620,12619,12620,5416,5416,12620,5419,12623,5422,12622,12623,12622,5424,5424,12622,5423,5420,5423,12621,12621,5423,12622,12621,12622,5421,5421,12622,5422,5423,4909,5424,5424,4909,4911,5424,4915,12623,12623,4915,12624,12623,12624,5422,5422,12624,4917,12630,5425,12626,12630,12626,12629,12629,12626,5426,12629,5426,5427,5421,5426,12625,12625,5426,12626,12625,12626,5419,5419,12626,5425,5426,12627,5427,5427,12627,12628,12627,4921,12628,12628,4921,4923,13000,5428,12632,13000,12632,15056,13000,15056,5430,5430,15056,12633,12633,15056,12631,12633,12631,5429,12631,15056,12632,5427,5429,12629,12629,5429,12631,12629,12631,12630,12630,12631,12632,12630,12632,5425,5425,12632,5428,13013,5431,12636,13013,12636,5433,5433,12636,5432,5429,12634,12633,12633,12634,15057,12633,15057,5430,5430,15057,12637,12634,12635,15057,15057,12635,15058,15057,15058,12637,12637,15058,12638,12635,5432,15058,15058,5432,12636,15058,12636,12638,12638,12636,5431,5436,5434,12642,12642,5434,12641,12641,5434,5435,5432,12639,5433,5433,12639,12640,12639,5435,12640,12640,5435,5434,5439,5437,5441,5441,5437,12646,12646,5437,12644,12646,12644,12645,12645,12644,12643,12645,12643,5440,5440,12643,5438,5435,5438,12641,12641,5438,12643,12641,12643,12642,12642,12643,12644,12642,12644,5436,5436,12644,5437,4947,5439,5441,5438,4945,5440,5439,12647,5437,5437,12647,12648,12647,4983,12648,12648,4983,4985,12653,5442,5443,12653,5443,5444,5436,12649,5434,5434,12649,12651,12649,12650,12651,12651,12650,12652,12650,5443,12652,12652,5443,5442,5443,4986,5444,5444,4986,4988,5447,5445,12655,5447,12655,5446,5444,12654,12653,12653,12654,15059,12653,15059,5442,5442,15059,12656,12654,5446,15059,15059,5446,12655,15059,12655,12656,12656,12655,5445,12670,5448,5449,12670,5449,12657,12670,12657,12669,12669,12657,5450,5446,5449,5447,5447,5449,5448,12663,5451,12658,12663,12658,5452,12663,5452,5453,5449,5452,12657,12657,5452,12658,12657,12658,5450,5450,12658,5451,5452,12659,5453,5453,12659,12661,12659,12660,12661,12661,12660,12662,12660,4989,12662,12662,4989,4991,5453,12664,12663,12663,12664,15060,12663,15060,5451,5451,15060,12667,12664,12665,15060,15060,12665,15061,15060,15061,12667,12667,15061,12668,12665,4995,15061,15061,4995,12666,15061,12666,12668,12668,12666,4997,5456,5454,12672,5456,12672,12673,12673,12672,12671,12673,12671,5455,5450,5455,12669,12669,5455,12671,12669,12671,12670,12670,12671,12672,12670,12672,5448,5448,12672,5454,13016,5457,15064,13016,15064,5459,5459,15064,5461,5461,15064,12676,12676,15064,15063,12676,15063,12675,12675,15063,15062,12675,15062,5460,5460,15062,12674,5460,12674,5458,12674,15062,5457,5457,15062,15063,5457,15063,15064,5455,5458,12673,12673,5458,12674,12673,12674,5456,5456,12674,5457,15065,15066,15067,15067,15066,15068,15067,15068,15069,13024,5462,5461,13024,5461,15069,13024,15069,15068,13024,15068,5464,5464,15068,12678,12678,15068,15066,12678,15066,12677,12677,15066,15065,12677,15065,5463,5463,15065,5460,5460,15065,12675,12675,15065,15067,12675,15067,12676,12676,15067,15069,12676,15069,5461,5462,5459,5461,5458,5463,5460,15070,15071,15072,15072,15071,15073,13043,5465,15073,13043,15073,15071,13043,15071,13044,13044,15071,5467,5467,15071,15070,5467,15070,12681,12681,15070,5466,5466,15070,12679,12679,15070,15072,12679,15072,12680,12680,15072,15073,12680,15073,5465,5463,5466,12677,12677,5466,12679,12677,12679,12678,12678,12679,12680,12678,12680,5464,5464,12680,5465,12690,5468,12685,12690,12685,12689,12689,12685,5469,12689,5469,5470,5466,12682,12681,12681,12682,15074,12681,15074,5467,5467,15074,12686,12682,12683,15074,15074,12683,15075,15074,15075,12686,12686,15075,12687,12683,12684,15075,15075,12684,15076,15075,15076,12687,12687,15076,12688,12684,5469,15076,15076,5469,12685,15076,12685,12688,12688,12685,5468,5469,5001,5470,5470,5001,5003,15077,15078,15081,15078,15079,15081,15081,15079,15082,15079,15080,15082,15082,15080,15083,15081,15082,15084,15084,15082,15085,15082,15083,15085,5475,5471,15080,5475,15080,12697,12697,15080,15079,12697,15079,15078,12697,15078,5474,5474,15078,15077,5474,15077,5473,5473,15077,12694,12694,15077,15081,12694,15081,15084,12694,15084,12693,12693,15084,5472,5472,15084,15085,5472,15085,12691,12691,15085,15083,12691,15083,12692,12692,15083,15080,12692,15080,5471,5470,5472,12689,12689,5472,12691,12689,12691,12690,12690,12691,12692,12690,12692,5468,5468,12692,5471,5472,5004,12693,12693,5004,12695,12693,12695,12694,12694,12695,12696,12694,12696,5473,5473,12696,5006,5478,5476,15086,5478,15086,5480,5480,15086,12697,5480,12697,5479,5479,12697,5474,5479,5474,5477,12697,15086,5475,5475,15086,5476,5476,5471,5475,5473,5477,5474,13685,5481,5480,13685,5480,13686,13686,5480,5479,13686,5479,5483,5483,5479,5482,5481,5478,5480,5477,5482,5479,12711,5484,12700,12711,12700,12701,12711,12701,12710,12710,12701,5486,12700,5484,5485,5482,12698,5483,5483,12698,12699,12698,5485,12699,12699,5485,5484,5489,5487,12703,5489,12703,12704,12704,12703,12702,12704,12702,5488,5485,5488,12700,12700,5488,12702,12700,12702,12701,12701,12702,12703,12701,12703,5486,5486,12703,5487,5488,5029,12704,12704,5029,12705,12704,12705,5489,5489,12705,5031,5492,5490,5491,5489,5491,5487,5487,5491,5490,5491,5041,5492,5492,5041,5043,5492,12706,5490,5490,12706,12708,12706,12707,12708,12708,12707,12709,12707,5067,12709,12709,5067,5069,13690,5493,15088,13690,15088,5495,5495,15088,12715,12715,15088,15087,12715,15087,12714,12714,15087,12712,12714,12712,5494,12712,15087,12713,12713,15087,15088,12713,15088,5493,5486,5494,12710,12710,5494,12712,12710,12712,12711,12711,12712,12713,12711,12713,5484,5484,12713,5493,5498,5496,5500,5500,5496,12719,12719,5496,12717,12719,12717,12718,12718,12717,12716,12718,12716,5499,5499,12716,5497,5494,5497,12714,12714,5497,12716,12714,12716,12715,12715,12716,12717,12715,12717,5495,5495,12717,5496,5072,5498,5500,5497,5070,5499,5503,5501,5502,5498,5502,5496,5496,5502,5501,13681,5504,12720,13681,12720,12721,13681,12721,5506,12720,5504,5505,5502,5505,5503,5503,5505,5504,13067,5507,12723,13067,12723,15089,13067,15089,13068,13068,15089,5509,5509,15089,5508,5508,15089,12722,12722,15089,12723,5505,5508,12720,12720,5508,12722,12720,12722,12721,12721,12722,12723,12721,12723,5506,5506,12723,5507,5512,5510,5511,5508,12724,5509,5509,12724,12727,12724,12725,12727,12727,12725,12728,12725,12726,12728,12728,12726,12729,12726,5511,12729,12729,5511,5510,5515,5513,12730,12730,5513,5514,5511,5514,5512,5512,5514,5513,13090,5516,12731,13090,12731,5518,5518,12731,5517,5514,5517,12730,12730,5517,12731,12730,12731,5515,5515,12731,5516,5891,5519,5522,5891,5522,13101,13101,5522,12738,13101,12738,13102,13102,12738,12739,13102,12739,5523,13102,5523,5892,5892,5523,5521,5522,5519,5520,5517,12732,5518,5518,12732,12735,12732,12733,12735,12735,12733,12736,12733,12734,12736,12736,12734,12737,12734,5520,12737,12737,5520,5519,5526,5524,5523,5526,5523,12742,12742,5523,12739,12742,12739,12741,12741,12739,12738,12741,12738,12740,12740,12738,5522,12740,5522,5525,5524,5521,5523,5520,5525,5522,15090,15091,15092,15092,15091,15093,13680,5527,15092,13680,15092,15093,13680,15093,5529,5529,15093,12747,12747,15093,15091,12747,15091,12746,12746,15091,12743,12746,12743,5528,12743,15091,15090,12743,15090,12744,12744,15090,12745,12745,15090,15092,12745,15092,5527,5525,5528,12740,12740,5528,12743,12740,12743,12741,12741,12743,12744,12741,12744,12742,12742,12744,12745,12742,12745,5526,5526,12745,5527,12756,5530,12749,12756,12749,15094,12756,15094,5532,5532,15094,12750,12750,15094,12748,12750,12748,5531,12748,15094,12749,5528,5531,12746,12746,5531,12748,12746,12748,12747,12747,12748,12749,12747,12749,5529,5529,12749,5530,5531,12751,12750,12750,12751,15095,12750,15095,5532,5532,15095,12754,12751,12752,15095,15095,12752,15096,15095,15096,12754,12754,15096,12755,12752,5075,15096,15096,5075,12753,15096,12753,12755,12755,12753,5077,5535,5533,12759,12759,5533,12758,12758,5533,12757,12758,12757,5534,5532,5534,12756,12756,5534,12757,12756,12757,5530,5530,12757,5533,5534,5096,12758,12758,5096,12760,12758,12760,12759,12759,12760,12761,12759,12761,5535,5535,12761,5098,13679,5536,12762,13679,12762,5538,12762,5536,5537,5535,5537,5533,5533,5537,5536,13662,5539,12763,13662,12763,12764,13662,12764,5541,12764,12763,5540,5537,5540,12762,12762,5540,12763,12762,12763,5538,5538,12763,5539,5544,5542,12766,12766,5542,12765,12766,12765,5543,5540,5543,12764,12764,5543,12765,12764,12765,5541,5541,12765,5542,5543,5099,12766,12766,5099,12767,12766,12767,5544,5544,12767,5101,5547,5545,5546,5544,12768,5542,5542,12768,12771,12768,12769,12771,12771,12769,12772,12769,12770,12772,12772,12770,12773,12770,5546,12773,12773,5546,5545,5550,5548,5549,5546,5549,5547,5547,5549,5548,5553,5551,5552,5549,5552,5550,5550,5552,5551,5556,5554,5555,5552,5555,5553,5553,5555,5554,5555,5113,5556,5556,5113,5115,5559,5557,5558,5556,5558,5554,5554,5558,5557,13670,5560,12774,13670,12774,12775,13670,12775,5562,12774,5560,5561,5558,5561,5559,5559,5561,5560,13672,5563,15098,13672,15098,12779,13672,12779,5565,12779,15098,15097,12779,15097,12778,12778,15097,12776,12778,12776,5564,12776,15097,12777,12777,15097,15098,12777,15098,5563,5561,5564,12774,12774,5564,12776,12774,12776,12775,12775,12776,12777,12775,12777,5562,5562,12777,5563,5568,5566,12781,5568,12781,12783,12783,12781,12780,12783,12780,12782,12782,12780,5567,5564,5567,12778,12778,5567,12780,12778,12780,12779,12779,12780,12781,12779,12781,5565,5565,12781,5566,15102,15099,15103,15099,15100,15103,15103,15100,15104,15100,15101,15104,15104,15101,15105,15102,15103,15106,15106,15103,15107,15103,15104,15107,15107,15104,15108,15104,15105,15108,15106,15107,15109,15109,15107,15110,15107,15108,15110,5573,5569,15110,5573,15110,15108,5573,15108,15105,5573,15105,5572,5572,15105,15101,5572,15101,5571,5571,15101,15100,5571,15100,12787,12787,15100,15099,12787,15099,12786,12786,15099,15102,12786,15102,5570,5570,15102,12784,12784,15102,15106,12784,15106,15109,12784,15109,12785,12785,15109,5569,5569,15109,15110,5567,5570,12782,12782,5570,12784,12782,12784,12783,12783,12784,12785,12783,12785,5568,5568,12785,5569,5570,5116,12786,12786,5116,12788,12786,12788,12787,12787,12788,12789,12787,12789,5571,5571,12789,5118,5576,5574,5578,5578,5574,5573,5578,5573,12791,12791,5573,12790,12790,5573,5572,12790,5572,5577,5577,5572,5575,5574,5569,5573,5571,5575,5572,13678,5579,5578,13678,5578,15112,13678,15112,5581,5581,15112,15111,5581,15111,12792,12792,15111,12790,12792,12790,5577,12792,5577,5580,12790,15111,12791,12791,15111,15112,12791,15112,5578,5579,5576,5578,5575,5580,5577,12809,5582,15114,12809,15114,15115,12809,15115,12808,12808,15115,5584,5584,15115,5586,5586,15115,5585,5585,15115,15114,5585,15114,15113,5585,15113,5583,5583,15113,12793,12793,15113,15114,12793,15114,5582,5580,5583,12792,12792,5583,12793,12792,12793,5581,5581,12793,5582,15119,15116,15120,15116,15117,15120,15120,15117,15121,12799,5587,15121,12799,15121,15117,12799,15117,12798,12798,15117,5589,5589,15117,15116,5589,15116,12795,12795,15116,12794,12794,15116,15118,12794,15118,5588,5588,15118,5585,5585,15118,15119,5585,15119,5586,5586,15119,15120,5586,15120,15121,5586,15121,5587,15119,15118,15116,5587,5584,5586,5583,5588,5585,5588,5122,12794,12794,5122,12796,12794,12796,12795,12795,12796,12797,12795,12797,5589,5589,12797,5124,12802,5590,12801,12802,12801,12800,12802,12800,5592,5592,12800,5591,5589,5591,12798,12798,5591,12800,12798,12800,12799,12799,12800,12801,12799,12801,5587,5587,12801,5590,5591,5125,5592,5592,5125,5127,5592,12803,12802,12802,12803,15122,12802,15122,5590,5590,15122,12806,12803,12804,15122,15122,12804,15123,15122,15123,12806,12806,15123,12807,12804,5236,15123,15123,5236,12805,15123,12805,12807,12807,12805,5238,13677,5593,15125,13677,15125,5597,13677,5597,5595,5597,15125,12812,12812,15125,15124,12812,15124,5596,5596,15124,12810,5596,12810,5594,12810,15124,12811,12811,15124,5593,5593,15124,15125,5584,5594,12808,12808,5594,12810,12808,12810,12809,12809,12810,12811,12809,12811,5582,5582,12811,5593,5600,5598,5597,5600,5597,5602,5602,5597,12812,5602,12812,5601,5601,12812,5596,5601,5596,5599,5598,5595,5597,5594,5599,5596,15128,15126,15129,15127,15128,15130,15130,15128,15131,15128,15129,15131,12818,5603,15130,12818,15130,15131,12818,15131,12817,12817,15131,5605,5605,15131,15129,5605,15129,12814,12814,15129,12813,12813,15129,15126,12813,15126,5604,5604,15126,5601,5601,15126,15128,5601,15128,15127,5601,15127,5602,5602,15127,15130,5602,15130,5603,5603,5600,5602,5599,5604,5601,5604,5275,12813,12813,5275,12815,12813,12815,12814,12814,12815,12816,12814,12816,5605,5605,12816,5277,13676,5606,15132,13676,15132,12822,13676,12822,5608,12822,15132,15133,12822,15133,12821,12821,15133,12819,12821,12819,5607,12819,15133,12820,12820,15133,15132,12820,15132,5606,5605,5607,12817,12817,5607,12819,12817,12819,12818,12818,12819,12820,12818,12820,5603,5603,12820,5606,5611,5609,5613,5613,5609,12825,12825,5609,12824,12825,12824,5612,5612,12824,12823,5612,12823,5610,5607,5610,12821,12821,5610,12823,12821,12823,12822,12822,12823,12824,12822,12824,5608,5608,12824,5609,12832,5614,5613,12832,5613,15134,12832,15134,5616,5616,15134,12827,12827,15134,15135,12827,15135,12826,12826,15135,5612,12826,5612,5615,5612,15135,12825,12825,15135,15134,12825,15134,5613,5614,5611,5613,5610,5615,5612,12830,5617,12829,12830,12829,12828,12830,12828,5619,5619,12828,5618,5615,5618,12826,12826,5618,12828,12826,12828,12827,12827,12828,12829,12827,12829,5616,5616,12829,5617,5618,5278,5619,5619,5278,5280,5619,5281,12830,12830,5281,12831,12830,12831,5617,5617,12831,5283,12837,5620,12833,12837,12833,5621,12837,5621,12836,12836,5621,12834,12836,12834,5622,5616,5621,12832,12832,5621,12833,12832,12833,5614,5614,12833,5620,5621,5284,12834,12834,5284,12835,12834,12835,5622,5622,12835,5286,13663,5623,12839,13663,12839,12840,13663,12840,5625,12840,12839,12838,12840,12838,5624,5622,5624,12836,12836,5624,12838,12836,12838,12837,12837,12838,12839,12837,12839,5620,5620,12839,5623,5628,5626,12845,12845,5626,12842,12845,12842,12844,12844,12842,5627,5624,12841,12840,12840,12841,15136,12840,15136,5625,5625,15136,12843,12841,5627,15136,15136,5627,12842,15136,12842,12843,12843,12842,5626,13657,5629,12847,13657,12847,15137,13657,15137,5631,5631,15137,12848,12848,15137,12846,12848,12846,5630,12846,15137,12847,5627,5630,12844,12844,5630,12846,12844,12846,12845,12845,12846,12847,12845,12847,5628,5628,12847,5629,12851,5632,12849,12851,12849,5633,12851,5633,12850,12850,5633,5634,5630,5633,12848,12848,5633,12849,12848,12849,5631,5631,12849,5632,5633,5287,5634,5634,5287,5289,15139,15140,15141,13109,5635,15138,13109,15138,15141,13109,15141,13110,13110,15141,15140,13110,15140,5637,5637,15140,12855,12855,15140,12854,12854,15140,15139,12854,15139,5636,5636,15139,12852,12852,15139,12853,12853,15139,15141,12853,15141,15138,12853,15138,5635,5634,5636,12850,12850,5636,12852,12850,12852,12851,12851,12852,12853,12851,12853,5632,5632,12853,5635,13126,5638,12857,13126,12857,12856,13126,12856,13127,13127,12856,5639,13127,5639,5640,5636,5639,12854,12854,5639,12856,12854,12856,12855,12855,12856,12857,12855,12857,5637,5637,12857,5638,13129,5641,12858,13129,12858,5643,12858,5641,5642,5639,5642,5640,5640,5642,5641,5646,5644,12859,5646,12859,5645,5642,5645,12858,12858,5645,12859,12858,12859,5643,5643,12859,5644,5645,12860,5646,5646,12860,12861,12860,5290,12861,12861,5290,5292,12864,5647,5648,12864,5648,5649,5646,12862,5644,5644,12862,12863,12862,5648,12863,12863,5648,5647,5648,5293,5649,5649,5293,5295,13141,5650,12865,13141,12865,15142,13141,15142,5652,5652,15142,12866,12866,15142,12865,12866,12865,5651,5649,5651,12864,12864,5651,12865,12864,12865,5647,5647,12865,5650,5655,5653,12867,5655,12867,12868,12868,12867,5654,5651,5654,12866,12866,5654,12867,12866,12867,5652,5652,12867,5653,5658,5656,12870,12870,5656,12869,12870,12869,5657,5654,5657,12868,12868,5657,12869,12868,12869,5655,5655,12869,5656,5657,5305,12870,12870,5305,12871,12870,12871,5658,5658,12871,5307,5661,5659,5660,5658,5660,5656,5656,5660,5659,5664,5662,5663,5660,12872,5661,5661,12872,12873,12872,5663,12873,12873,5663,5662,12882,5665,5666,12882,5666,5667,5663,12874,5664,5664,12874,12878,12874,12875,12878,12878,12875,12879,12875,12876,12879,12879,12876,12880,12876,12877,12880,12880,12877,12881,12877,5666,12881,12881,5666,5665,5666,5311,5667,5667,5311,5313,13259,5668,12883,13259,12883,5669,13259,5669,13260,13260,5669,5670,5667,5669,12882,12882,5669,12883,12882,12883,5665,5665,12883,5668,5673,5671,5672,5669,5672,5670,5670,5672,5671,5672,5314,5673,5673,5314,5316,5676,5674,5675,5673,12884,5671,5671,12884,12886,12884,12885,12886,12886,12885,12887,12885,5675,12887,12887,5675,5674,13275,5677,5678,13275,5678,12888,13275,12888,5679,5675,5678,5676,5676,5678,5677,5682,5680,12890,12890,5680,12889,12890,12889,5681,5678,5681,12888,12888,5681,12889,12888,12889,5679,5679,12889,5680,12894,5683,12891,12894,12891,12892,12894,12892,5685,12892,12891,5684,5681,5684,12890,12890,5684,12891,12890,12891,5682,5682,12891,5683,5684,5317,12892,12892,5317,12893,12892,12893,5685,5685,12893,5319,5685,5323,12894,12894,5323,12895,12894,12895,5683,5683,12895,5325,5688,5686,5687,5682,5687,5680,5680,5687,5686,5687,12896,5688,5688,12896,12897,12896,5332,12897,12897,5332,5334,5691,5689,5690,5688,12898,5686,5686,12898,12902,12898,12899,12902,12902,12899,12903,12899,12900,12903,12903,12900,12904,12900,12901,12904,12904,12901,12905,12901,5690,12905,12905,5690,5689,5694,5692,12906,12906,5692,5693,5690,5693,5691,5691,5693,5692,5693,12907,12906,12906,12907,15143,12906,15143,5694,5694,15143,12909,12907,5335,15143,15143,5335,12908,15143,12908,12909,12909,12908,5337,5697,5695,5696,5694,12910,5692,5692,12910,12911,12910,5696,12911,12911,5696,5695,5700,5698,5699,5696,5699,5697,5697,5699,5698,12920,5701,5702,12920,5702,12912,12920,12912,5703,5699,5702,5700,5700,5702,5701,5702,12913,12912,12912,12913,15144,12912,15144,5703,5703,15144,12917,12913,12914,15144,15144,12914,15145,15144,15145,12917,12917,15145,12918,12914,12915,15145,15145,12915,15146,15145,15146,12918,12918,15146,12919,12915,5341,15146,15146,5341,12916,15146,12916,12919,12919,12916,5343,5706,5704,12923,12923,5704,12921,12923,12921,12922,12922,12921,5705,5703,5705,12920,12920,5705,12921,12920,12921,5701,5701,12921,5704,13300,5707,12925,13300,12925,15147,13300,15147,13301,13301,15147,15148,13301,15148,5709,5709,15148,12926,12926,15148,5708,5708,15148,12924,12924,15148,15147,12924,15147,12925,5705,5708,12922,12922,5708,12924,12922,12924,12923,12923,12924,12925,12923,12925,5706,5706,12925,5707,5712,5710,12927,5712,12927,5711,5708,5711,12926,12926,5711,12927,12926,12927,5709,5709,12927,5710,5715,5713,5714,5711,12928,5712,5712,12928,12930,12928,12929,12930,12930,12929,12931,12929,5714,12931,12931,5714,5713,5718,5716,5717,5714,5717,5715,5715,5717,5716,5717,5347,5718,5718,5347,5349,5721,5719,5720,5718,5720,5716,5716,5720,5719,5720,5353,5721,5721,5353,5355,5721,5713,5719,5719,5713,5715,5724,5722,5723,5712,5723,5710,5710,5723,5722,12947,5725,5726,12947,5726,12938,12947,12938,12946,12946,12938,12939,12946,12939,5727,5723,12932,5724,5724,12932,12935,12932,12933,12935,12935,12933,12936,12933,12934,12936,12936,12934,12937,12934,5726,12937,12937,5726,5725,5730,5728,12941,5730,12941,12942,12942,12941,12940,12942,12940,5729,5726,5729,12938,12938,5729,12940,12938,12940,12939,12939,12940,12941,12939,12941,5727,5727,12941,5728,5729,5356,12942,12942,5356,12943,12942,12943,5730,5730,12943,5358,5733,5731,5732,5730,5732,5728,5728,5732,5731,5732,5362,5733,5733,5362,5364,5733,12944,5731,5731,12944,12945,12944,5374,12945,12945,5374,5376,12952,5734,12949,12952,12949,15149,12952,15149,5736,5736,15149,12950,12950,15149,12948,12950,12948,5735,12948,15149,12949,5727,5735,12946,12946,5735,12948,12946,12948,12947,12947,12948,12949,12947,12949,5725,5725,12949,5734,5735,5377,12950,12950,5377,12951,12950,12951,5736,5736,12951,5379,5739,5737,12953,5739,12953,5738,5736,5738,12952,12952,5738,12953,12952,12953,5734,5734,12953,5737,5742,5740,5741,5738,5741,5739,5739,5741,5740,5761,5743,15150,5761,15150,12968,12968,15150,15152,12968,15152,15151,12968,15151,5760,5760,15151,5747,5760,5747,5745,5747,15151,5746,5746,15151,15152,5746,15152,15150,5746,15150,5744,5744,15150,5743,5741,5744,5742,5742,5744,5743,12967,5748,5747,12967,5747,5750,5750,5747,5746,5750,5746,12954,12954,5746,5749,5748,5745,5747,5744,5749,5746,5753,5751,12957,12957,5751,12955,12957,12955,12956,12956,12955,5752,5749,5752,12954,12954,5752,12955,12954,12955,5750,5750,12955,5751,12964,5754,15154,12964,15154,12961,12964,12961,5756,12961,15154,12960,12960,15154,15153,12960,15153,5755,5755,15153,12958,12958,15153,15154,12958,15154,12959,12959,15154,5754,5752,5755,12956,12956,5755,12958,12956,12958,12957,12957,12958,12959,12957,12959,5753,5753,12959,5754,5755,5380,12960,12960,5380,12962,12960,12962,12961,12961,12962,12963,12961,12963,5756,5756,12963,5382,5756,5383,12964,12964,5383,12965,12964,12965,5754,5754,12965,5385,12966,5757,5758,12966,5758,5759,5753,5758,5751,5751,5758,5757,5758,5386,5759,5759,5386,5388,5759,5748,12966,12966,5748,12967,12966,12967,5757,5757,12967,5750,13647,5762,5761,13647,5761,12968,13647,12968,13648,13648,12968,5764,5764,12968,5760,5764,5760,5763,5762,5743,5761,5745,5763,5760,5767,5765,5766,5763,12969,5764,5764,12969,12972,12969,12970,12972,12972,12970,12973,12970,12971,12973,12973,12971,12974,12971,5766,12974,12974,5766,5765,5770,5768,5769,5766,5769,5767,5767,5769,5768,5773,5771,5772,5769,12975,5770,5770,12975,12976,12975,5772,12976,12976,5772,5771,5776,5774,5775,5772,12977,5773,5773,12977,12979,12977,12978,12979,12979,12978,12980,12978,5775,12980,12980,5775,5774,5775,12981,5776,5776,12981,12982,12981,5389,12982,12982,5389,5391,5776,12983,5774,5774,12983,12990,12983,12984,12990,12990,12984,12991,12984,12985,12991,12991,12985,12992,12985,12986,12992,12992,12986,12993,12986,12987,12993,12993,12987,12994,12987,12988,12994,12994,12988,12995,12988,12989,12995,12995,12989,12996,12989,5771,12996,12996,5771,5773,5770,5398,5768,5768,5398,5400,5779,5777,5778,5767,5778,5765,5765,5778,5777,5782,5780,5781,5778,5781,5779,5779,5781,5780,5781,12997,5782,5782,12997,12998,12997,5413,12998,12998,5413,5415,13001,5783,12999,13001,12999,5785,12999,5783,5784,5782,5784,5780,5780,5784,5783,5784,5428,12999,12999,5428,13000,12999,13000,5785,5785,13000,5430,5788,5786,13004,13004,5786,13002,13004,13002,13003,13003,13002,5787,5785,5787,13001,13001,5787,13002,13001,13002,5783,5783,13002,5786,5791,5789,13006,5791,13006,13005,5791,13005,5790,5787,5790,13003,13003,5790,13005,13003,13005,13004,13004,13005,13006,13004,13006,5788,5788,13006,5789,5794,5792,5793,5790,13007,5791,5791,13007,13009,13007,13008,13009,13009,13008,13010,13008,5793,13010,13010,5793,5792,5797,5795,13011,13011,5795,5796,5793,5796,5794,5794,5796,5795,5796,13012,13011,13011,13012,15155,13011,15155,5797,5797,15155,13014,13012,5431,15155,15155,5431,13013,15155,13013,13014,13014,13013,5433,5800,5798,5799,5797,5799,5795,5795,5799,5798,5803,5801,5802,5799,5802,5800,5800,5802,5801,5802,5445,5803,5803,5445,5447,5806,5804,5805,5803,5805,5801,5801,5805,5804,5805,5454,5806,5806,5454,5456,13017,5807,13015,13017,13015,5809,13015,5807,5808,5806,5808,5804,5804,5808,5807,5808,5457,13015,13015,5457,13016,13015,13016,5809,5809,13016,5459,5812,5810,13018,5812,13018,13019,13019,13018,5811,5809,5811,13017,13017,5811,13018,13017,13018,5807,5807,13018,5810,5815,5813,13021,13021,5813,13020,13021,13020,5814,5811,5814,13019,13019,5814,13020,13019,13020,5812,5812,13020,5813,13026,5816,13022,13026,13022,15156,13026,15156,13025,13025,15156,13023,13025,13023,5818,13023,15156,5817,5817,15156,13022,5814,5817,13021,13021,5817,13022,13021,13022,5815,5815,13022,5816,5817,5462,13023,13023,5462,13024,13023,13024,5818,5818,13024,5464,13637,5819,15159,13637,15159,13030,13637,13030,5821,13030,15159,15158,13030,15158,13029,13029,15158,15157,13029,15157,5820,5820,15157,13027,13027,15157,15158,13027,15158,13028,13028,15158,15159,13028,15159,5819,5818,5820,13025,13025,5820,13027,13025,13027,13026,13026,13027,13028,13026,13028,5816,5816,13028,5819,13330,5822,13032,13330,13032,13331,13331,13032,13031,13331,13031,5824,5824,13031,5823,5820,5823,13029,13029,5823,13031,13029,13031,13030,13030,13031,13032,13030,13032,5821,5821,13032,5822,13337,5825,13033,13337,13033,13034,13337,13034,5827,13033,5825,5826,5823,5826,5824,5824,5826,5825,15161,15160,15162,15161,15162,15163,13339,5828,15160,13339,15160,5830,5830,15160,13038,13038,15160,15161,13038,15161,13037,13037,15161,15163,13037,15163,5829,5829,15163,13035,13035,15163,13036,13036,15163,15162,13036,15162,5828,5828,15162,15160,5826,5829,13033,13033,5829,13035,13033,13035,13034,13034,13035,13036,13034,13036,5827,5827,13036,5828,5833,5831,13040,5833,13040,13042,13042,13040,13039,13042,13039,13041,13041,13039,5832,5829,5832,13037,13037,5832,13039,13037,13039,13038,13038,13039,13040,13038,13040,5830,5830,13040,5831,5832,5465,13041,13041,5465,13043,13041,13043,13042,13042,13043,13044,13042,13044,5833,5833,13044,5467,13355,5834,13047,13355,13047,5836,13047,5834,5835,5833,13045,5831,5831,13045,13046,13045,5835,13046,13046,5835,5834,5839,5837,13050,13050,5837,13048,13050,13048,13049,13049,13048,5838,5835,5838,13047,13047,5838,13048,13047,13048,5836,5836,13048,5837,5842,5840,13054,5842,13054,13057,13057,13054,13053,13057,13053,5841,5838,13051,13049,13049,13051,15164,13049,15164,13050,13050,15164,15165,13050,15165,5839,5839,15165,13055,13051,13052,15164,15164,13052,15166,15164,15166,15165,15165,15166,15167,15165,15167,13055,13055,15167,13056,13052,5841,15166,15166,5841,13053,15166,13053,15167,15167,13053,13054,15167,13054,13056,13056,13054,5840,13060,5843,13058,13060,13058,13059,13059,13058,5844,13059,5844,5845,5841,5844,13057,13057,5844,13058,13057,13058,5842,5842,13058,5843,5844,5476,5845,5845,5476,5478,5848,5846,15168,5848,15168,13063,13063,15168,13062,13063,13062,13061,13063,13061,5847,13062,15168,5846,5845,5847,13059,13059,5847,13061,13059,13061,13060,13060,13061,13062,13060,13062,5843,5843,13062,5846,13069,5849,15169,13069,15169,5851,5851,15169,13066,13066,15169,13065,13065,15169,15170,13065,15170,5850,5850,15170,13064,13064,15170,15169,13064,15169,5849,5847,5850,13063,13063,5850,13064,13063,13064,5848,5848,13064,5849,5850,5507,13065,13065,5507,13067,13065,13067,13066,13066,13067,13068,13066,13068,5851,5851,13068,5509,5854,5852,15171,5854,15171,5853,5853,15171,13071,13071,15171,5852,5851,13070,13069,13069,13070,15172,13069,15172,5849,5849,15172,13072,13070,5853,15172,15172,5853,13071,15172,13071,13072,13072,13071,5852,5857,5855,13073,13073,5855,5856,5853,5856,5854,5854,5856,5855,5860,5858,13075,5860,13075,5859,5856,13074,13073,13073,13074,15173,13073,15173,5857,5857,15173,13076,13074,5859,15173,15173,5859,13075,15173,13075,13076,13076,13075,5858,5859,5510,5860,5860,5510,5512,5860,5513,5858,5858,5513,5515,5863,5861,5862,5857,5862,5855,5855,5862,5861,5866,5864,5865,5862,5865,5863,5863,5865,5864,5869,5867,5868,5865,13077,5866,5866,13077,13079,13077,13078,13079,13079,13078,13080,13078,5868,13080,13080,5868,5867,5872,5870,5871,5868,13081,5869,5869,13081,13084,13081,13082,13084,13084,13082,13085,13082,13083,13085,13085,13083,13086,13083,5871,13086,13086,5871,5870,5875,5873,5874,5871,5874,5872,5872,5874,5873,5878,5876,13087,13087,5876,5877,5874,5877,5875,5875,5877,5876,5877,13088,13087,13087,13088,15174,13087,15174,5878,5878,15174,13091,13088,13089,15174,15174,13089,15175,15174,15175,13091,13091,15175,13092,13089,5516,15175,15175,5516,13090,15175,13090,13092,13092,13090,5518,5881,5879,13095,13095,5879,5880,5878,13093,5876,5876,13093,13094,13093,5880,13094,13094,5880,5879,13614,5882,13096,13614,13096,5884,5884,13096,5883,5880,5883,13095,13095,5883,13096,13095,13096,5881,5881,13096,5882,5887,5885,13098,13098,5885,13097,13097,5885,5886,5883,5886,5884,5884,5886,5885,13103,5888,13102,13103,13102,5892,13103,5892,5890,13102,5888,13100,13102,13100,13101,13101,13100,13099,13101,13099,5891,5891,13099,5889,5886,5889,13097,13097,5889,13099,13097,13099,13098,13098,13099,13100,13098,13100,5887,5887,13100,5888,5521,5890,5892,5889,5519,5891,13622,5893,13104,13622,13104,13105,13622,13105,5895,13105,13104,5894,5890,5894,13103,13103,5894,13104,13103,13104,5888,5888,13104,5893,5898,5896,13108,13108,5896,13106,13108,13106,13107,13107,13106,5897,5894,5897,13105,13105,5897,13106,13105,13106,5895,5895,13106,5896,5897,5635,13107,13107,5635,13109,13107,13109,13108,13108,13109,13110,13108,13110,5898,5898,13110,5637,6313,5899,5902,6313,5902,13111,6313,13111,13612,13612,13111,6312,6312,13111,5903,6312,5903,5901,5902,5899,5900,5898,5900,5896,5896,5900,5899,13420,5904,5903,13420,5903,13111,13420,13111,5906,5906,13111,13112,13112,13111,5902,13112,5902,5905,5904,5901,5903,5900,5905,5902,5909,5907,13114,13114,5907,13113,13114,13113,5908,5905,5908,13112,13112,5908,13113,13112,13113,5906,5906,13113,5907,15177,15176,15178,13425,5910,15176,13425,15176,15177,13425,15177,13426,13426,15177,13117,13426,13117,5912,13117,15177,13116,13116,15177,15178,13116,15178,5911,5911,15178,13115,13115,15178,15176,13115,15176,5910,5908,5911,13114,13114,5911,13115,13114,13115,5909,5909,13115,5910,13130,5913,15179,13130,15179,5915,5915,15179,13121,13121,15179,15180,13121,15180,13120,13120,15180,13118,13120,13118,5914,13118,15180,13119,13119,15180,15179,13119,15179,5913,5911,5914,13116,13116,5914,13118,13116,13118,13117,13117,13118,13119,13117,13119,5912,5912,13119,5913,13128,5916,13123,13128,13123,15181,13128,15181,5918,5918,15181,13125,13125,15181,15182,13125,15182,13124,13124,15182,13122,13124,13122,5917,13122,15182,15181,13122,15181,13123,5914,5917,13120,13120,5917,13122,13120,13122,13121,13121,13122,13123,13121,13123,5915,5915,13123,5916,5917,5638,13124,13124,5638,13126,13124,13126,13125,13125,13126,13127,13125,13127,5918,5918,13127,5640,5918,5641,13128,13128,5641,13129,13128,13129,5916,5916,13129,5643,13441,5919,13131,13441,13131,15183,13441,15183,13442,13442,15183,13132,13442,13132,5921,13132,15183,5920,5920,15183,13131,5915,5920,13130,13130,5920,13131,13130,13131,5913,5913,13131,5919,13143,5922,13136,13143,13136,15184,13143,15184,13142,13142,15184,13140,13142,13140,5924,13140,15184,5923,5923,15184,13136,5920,13133,13132,13132,13133,15185,13132,15185,5921,5921,15185,13137,13133,13134,15185,15185,13134,15186,15185,15186,13137,13137,15186,13138,13134,13135,15186,15186,13135,15187,15186,15187,13138,13138,15187,13139,13135,5923,15187,15187,5923,13136,15187,13136,13139,13139,13136,5922,5923,5650,13140,13140,5650,13141,13140,13141,5924,5924,13141,5652,15190,15188,15191,15191,15188,15189,15193,15191,15194,15191,15189,15194,15194,15189,15192,15193,15194,15195,15195,15194,15196,15194,15192,15196,6177,5925,15192,6177,15192,15189,6177,15189,6178,6178,15189,15188,6178,15188,5927,5927,15188,15190,5927,15190,13147,13147,15190,13146,13146,15190,15193,13146,15193,15195,13146,15195,5926,5926,15195,13144,13144,15195,15196,13144,15196,13145,13145,15196,5925,5925,15196,15192,15193,15190,15191,5924,5926,13142,13142,5926,13144,13142,13144,13143,13143,13144,13145,13143,13145,5922,5922,13145,5925,13151,5928,13149,13151,13149,13150,13150,13149,13148,13150,13148,5930,5930,13148,5929,5926,5929,13146,13146,5929,13148,13146,13148,13147,13147,13148,13149,13147,13149,5927,5927,13149,5928,5933,5931,5932,5929,5932,5930,5930,5932,5931,5932,5653,5933,5933,5653,5655,5933,5659,5931,5931,5659,5661,5936,5934,13155,13155,5934,13153,13155,13153,13154,13154,13153,13152,13154,13152,5935,5930,5935,13150,13150,5935,13152,13150,13152,13151,13151,13152,13153,13151,13153,5928,5928,13153,5934,5935,5215,13154,13154,5215,13156,13154,13156,13155,13155,13156,13157,13155,13157,5936,5936,13157,5217,5939,5937,5938,5936,5938,5934,5934,5938,5937,5942,5940,5941,5938,5941,5939,5939,5941,5940,5941,5221,5942,5942,5221,5223,5945,5943,5944,5942,13158,5940,5940,13158,13159,13158,5944,13159,13159,5944,5943,5948,5946,5947,5944,5947,5945,5945,5947,5946,5951,5949,5950,5947,5950,5948,5948,5950,5949,5950,5227,5951,5951,5227,5229,13165,5952,5953,13165,5953,13160,13165,13160,13164,13164,13160,13161,13164,13161,5954,5951,5953,5949,5949,5953,5952,5953,5230,13160,13160,5230,13162,13160,13162,13161,13161,13162,13163,13161,13163,5954,5954,13163,5232,5954,5131,13164,13164,5131,13166,13164,13166,13165,13165,13166,13167,13165,13167,5952,5952,13167,5133,5948,5134,5946,5946,5134,5136,13178,5955,5956,13178,5956,13176,13178,13176,5957,5945,13168,5943,5943,13168,13172,13168,13169,13172,13172,13169,13173,13169,13170,13173,13173,13170,13174,13170,13171,13174,13174,13171,13175,13171,5956,13175,13175,5956,5955,5956,5155,13176,13176,5155,13177,13176,13177,5957,5957,13177,5157,5960,5958,13180,13180,5958,13179,13180,13179,5959,5957,5959,13178,13178,5959,13179,13178,13179,5955,5955,13179,5958,13193,5961,13181,13193,13181,15197,13193,15197,13192,13192,15197,13182,13192,13182,5963,13182,15197,5962,5962,15197,13181,5959,5962,13180,13180,5962,13181,13180,13181,5960,5960,13181,5961,5966,5964,13183,5966,13183,5965,5962,5965,13182,13182,5965,13183,13182,13183,5963,5963,13183,5964,5969,5967,5968,5965,13184,5966,5966,13184,13187,13184,13185,13187,13187,13185,13188,13185,13186,13188,13188,13186,13189,13186,5968,13189,13189,5968,5967,5968,5158,5969,5969,5158,5160,5969,5182,5967,5967,5182,5184,5966,13190,5964,5964,13190,13191,13190,5188,13191,13191,5188,5190,13201,5970,13195,13201,13195,15198,13201,15198,13200,13200,15198,13196,13200,13196,5972,13196,15198,5971,5971,15198,13194,13194,15198,13195,5963,5971,13192,13192,5971,13194,13192,13194,13193,13193,13194,13195,13193,13195,5961,5961,13195,5970,5971,13197,13196,13196,13197,15199,13196,15199,5972,5972,15199,13199,13197,5191,15199,15199,5191,13198,15199,13198,13199,13199,13198,5193,5975,5973,13203,5975,13203,13204,13204,13203,13202,13204,13202,5974,5972,5974,13200,13200,5974,13202,13200,13202,13201,13201,13202,13203,13201,13203,5970,5970,13203,5973,13219,5976,13205,13219,13205,13218,13218,13205,5977,13218,5977,5978,5974,5977,13204,13204,5977,13205,13204,13205,5975,5975,13205,5976,5977,13206,5978,5978,13206,13212,13206,13207,13212,13212,13207,13213,13207,13208,13213,13213,13208,13214,13208,13209,13214,13214,13209,13215,13209,13210,13215,13215,13210,13216,13210,13211,13216,13216,13211,13217,13211,5197,13217,13217,5197,5199,5981,5979,13223,13223,5979,15200,13223,15200,13222,13222,15200,13220,13222,13220,5980,13220,15200,13221,13221,15200,5979,5978,5980,13218,13218,5980,13220,13218,13220,13219,13219,13220,13221,13219,13221,5976,5976,13221,5979,13238,5982,13225,13238,13225,13224,13238,13224,5984,5984,13224,5983,5980,5983,13222,13222,5983,13224,13222,13224,13223,13223,13224,13225,13223,13225,5981,5981,13225,5982,5983,13226,5984,5984,13226,13232,13226,13227,13232,13232,13227,13233,13227,13228,13233,13233,13228,13234,13228,13229,13234,13234,13229,13235,13229,13230,13235,13235,13230,13236,13230,13231,13236,13236,13231,13237,13231,5200,13237,13237,5200,5202,5987,5985,13241,13241,5985,15201,13241,15201,13240,13240,15201,13239,13240,13239,5986,13239,15201,5985,5984,5986,13238,13238,5986,13239,13238,13239,5982,5982,13239,5985,5990,5988,15202,5990,15202,13245,13245,15202,13242,13245,13242,13244,13244,13242,5989,13242,15202,13243,13243,15202,5988,5986,5989,13240,13240,5989,13242,13240,13242,13241,13241,13242,13243,13241,13243,5987,5987,13243,5988,13257,5991,13250,13257,13250,13256,13256,13250,13249,13256,13249,5993,5993,13249,5992,5989,13246,13244,13244,13246,15203,13244,15203,13245,13245,15203,15204,13245,15204,5990,5990,15204,13251,13246,13247,15203,15203,13247,15205,15203,15205,15204,15204,15205,15206,15204,15206,13251,13251,15206,13252,13247,13248,15205,15205,13248,15207,15205,15207,15206,15206,15207,15208,15206,15208,13252,13252,15208,13253,13248,5992,15207,15207,5992,13249,15207,13249,15208,15208,13249,13250,15208,13250,13253,13253,13250,5991,5996,5994,5995,5992,13254,5993,5993,13254,13255,13254,5995,13255,13255,5995,5994,5995,5206,5996,5996,5206,5208,5996,5209,5994,5994,5209,5211,5993,13258,13256,13256,13258,15209,13256,15209,13257,13257,15209,15210,13257,15210,5991,5991,15210,13261,13258,5668,15209,15209,5668,13259,15209,13259,15210,15210,13259,13260,15210,13260,13261,13261,13260,5670,5999,5997,5998,5990,13262,5988,5988,13262,13263,13262,5998,13263,13263,5998,5997,5998,13264,5999,5999,13264,13268,13264,13265,13268,13268,13265,13269,13265,13266,13269,13269,13266,13270,13266,13267,13270,13270,13267,13271,13267,5674,13271,13271,5674,5676,6002,6000,6001,5999,6001,5997,5997,6001,6000,13278,6003,6004,13278,6004,13272,13278,13272,6005,6001,6004,6002,6002,6004,6003,6004,13273,13272,13272,13273,15211,13272,15211,6005,6005,15211,13276,13273,13274,15211,15211,13274,15212,15211,15212,13276,13276,15212,13277,13274,5677,15212,15212,5677,13275,15212,13275,13277,13277,13275,5679,13492,6006,15213,13492,15213,6008,6008,15213,13282,13282,15213,13280,13282,13280,6007,13280,15213,6006,6005,13279,13278,13278,13279,15214,13278,15214,6003,6003,15214,13281,13279,6007,15214,15214,6007,13280,15214,13280,13281,13281,13280,6006,6011,6009,13283,6011,13283,6010,6007,6010,13282,13282,6010,13283,13282,13283,6008,6008,13283,6009,6010,5689,6011,6011,5689,5691,13288,6012,6013,13288,6013,6014,6011,13284,6009,6009,13284,13286,13284,13285,13286,13286,13285,13287,13285,6013,13287,13287,6013,6012,6013,5695,6014,6014,5695,5697,15216,15215,15217,13516,6015,15215,13516,15215,15216,13516,15216,13517,13517,15216,15218,13517,15218,6017,6017,15218,6019,6019,15218,15216,6019,15216,6018,6018,15216,15217,6018,15217,6016,6016,15217,13289,13289,15217,15215,13289,15215,6015,6014,6016,13288,13288,6016,13289,13288,13289,6012,6012,13289,6015,6022,6020,6024,6024,6020,13291,13291,6020,6019,13291,6019,13290,13290,6019,6018,13290,6018,6023,6023,6018,6021,6020,6017,6019,6016,6021,6018,13293,6025,6024,13293,6024,13291,13293,13291,13292,13292,13291,13290,13292,13290,6027,6027,13290,6023,6027,6023,6026,6025,6022,6024,6021,6026,6023,6026,5698,6027,6027,5698,5700,13296,6028,13295,13296,13295,6030,6030,13295,13294,6030,13294,6029,6027,6029,13292,13292,6029,13294,13292,13294,13293,13293,13294,13295,13293,13295,6025,6025,13295,6028,6029,5704,6030,6030,5704,5706,13303,6031,15219,13303,15219,15220,13303,15220,13302,13302,15220,13299,13302,13299,6033,13299,15220,13298,13298,15220,15219,13298,15219,6032,6032,15219,13297,13297,15219,6031,6030,6032,13296,13296,6032,13297,13296,13297,6028,6028,13297,6031,6032,5707,13298,13298,5707,13300,13298,13300,13299,13299,13300,13301,13299,13301,6033,6033,13301,5709,6036,6034,13305,6036,13305,13307,13307,13305,13304,13307,13304,13306,13306,13304,6035,6033,6035,13302,13302,6035,13304,13302,13304,13303,13303,13304,13305,13303,13305,6031,6031,13305,6034,13528,6037,13309,13528,13309,13308,13528,13308,13529,13529,13308,6038,13529,6038,6039,6035,6038,13306,13306,6038,13308,13306,13308,13307,13307,13308,13309,13307,13309,6036,6036,13309,6037,6042,6040,6041,6038,6041,6039,6039,6041,6040,6041,5722,6042,6042,5722,5724,13533,6043,6044,13533,6044,13310,13533,13310,6045,6042,6044,6040,6040,6044,6043,13535,6046,6050,13535,6050,6048,6050,6046,13311,6050,13311,6049,6049,13311,6047,6044,6047,13310,13310,6047,13311,13310,13311,6045,6045,13311,6046,13555,6051,6050,13555,6050,6053,6053,6050,13312,13312,6050,6049,13312,6049,6052,6051,6048,6050,6047,6052,6049,6056,6054,13313,6056,13313,6055,6052,6055,13312,13312,6055,13313,13312,13313,6053,6053,13313,6054,6055,13314,6056,6056,13314,13315,13314,5737,13315,13315,5737,5739,13316,6057,6058,13316,6058,6059,6056,6058,6054,6054,6058,6057,6058,5740,6059,6059,5740,5742,6062,6060,13319,13319,6060,13318,13318,6060,13317,13318,13317,6061,6059,6061,13316,13316,6061,13317,13316,13317,6057,6057,13317,6060,13577,6063,13321,13577,13321,6065,6065,13321,13322,13322,13321,13320,13322,13320,6064,6061,6064,13318,13318,6064,13320,13318,13320,13319,13319,13320,13321,13319,13321,6062,6062,13321,6063,6070,6066,13325,6070,13325,15221,6070,15221,13333,13333,15221,13332,13332,15221,15222,13332,15222,6069,6069,15222,13329,6069,13329,6068,13329,15222,13328,13328,15222,15221,13328,15221,6067,6067,15221,13325,6064,13323,13322,13322,13323,15223,13322,15223,6065,6065,15223,13326,13323,13324,15223,15223,13324,15224,15223,15224,13326,13326,15224,13327,13324,6067,15224,15224,6067,13325,15224,13325,13327,13327,13325,6066,6067,5822,13328,13328,5822,13330,13328,13330,13329,13329,13330,13331,13329,13331,6068,6068,13331,5824,13611,6071,6070,13611,6070,13333,13611,13333,6073,6073,13333,15225,6073,15225,13334,13334,15225,13332,13334,13332,6069,13334,6069,6072,13332,15225,13333,6071,6066,6070,6068,6072,6069,6076,6074,15226,6076,15226,13336,13336,15226,13335,13336,13335,6075,13335,15226,6074,6072,6075,13334,13334,6075,13335,13334,13335,6073,6073,13335,6074,6075,5825,13336,13336,5825,13337,13336,13337,6076,6076,13337,5827,6079,6077,6078,6076,6078,6074,6074,6078,6077,13340,6080,6081,13340,6081,13338,13340,13338,6082,6078,6081,6079,6079,6081,6080,6081,5828,13338,13338,5828,13339,13338,13339,6082,6082,13339,5830,6085,6083,13343,13343,6083,13341,13343,13341,13342,13342,13341,6084,6082,6084,13340,13340,6084,13341,13340,13341,6080,6080,13341,6083,6088,6086,15227,6088,15227,13346,13346,15227,13344,13346,13344,6087,13344,15227,13345,13345,15227,6086,6084,6087,13342,13342,6087,13344,13342,13344,13343,13343,13344,13345,13343,13345,6085,6085,13345,6086,6091,6089,13347,6091,13347,13348,13348,13347,6090,6087,6090,13346,13346,6090,13347,13346,13347,6088,6088,13347,6089,6094,6092,13351,13351,6092,13349,13351,13349,13350,13350,13349,6093,6090,6093,13348,13348,6093,13349,13348,13349,6091,6091,13349,6092,6097,6095,13353,6097,13353,13354,13354,13353,13352,13354,13352,6096,6093,6096,13350,13350,6096,13352,13350,13352,13351,13351,13352,13353,13351,13353,6094,6094,13353,6095,6096,5834,13354,13354,5834,13355,13354,13355,6097,6097,13355,5836,6100,6098,6099,6097,6099,6095,6095,6099,6098,6103,6101,6102,6099,6102,6100,6100,6102,6101,6102,13356,6103,6103,13356,13357,13356,5837,13357,13357,5837,5839,6106,6104,6105,6103,13358,6101,6101,13358,13361,13358,13359,13361,13361,13359,13362,13359,13360,13362,13362,13360,13363,13360,6105,13363,13363,6105,6104,6105,13364,6106,6106,13364,13367,13364,13365,13367,13367,13365,13368,13365,13366,13368,13368,13366,13369,13366,5840,13369,13369,5840,5842,6109,6107,6108,6106,13370,6104,6104,13370,13371,13370,6108,13371,13371,6108,6107,6108,13372,6109,6109,13372,13373,13372,5846,13373,13373,5846,5848,6112,6110,6111,6109,13374,6107,6107,13374,13375,13374,6111,13375,13375,6111,6110,6115,6113,6114,6111,13376,6112,6112,13376,13377,13376,6114,13377,13377,6114,6113,6118,6116,6117,6114,6117,6115,6115,6117,6116,6117,13378,6118,6118,13378,13379,13378,5852,13379,13379,5852,5854,6121,6119,13383,13383,6119,13382,13382,6119,6120,6118,13380,6116,6116,13380,13381,13380,6120,13381,13381,6120,6119,6129,6122,13385,6129,13385,13406,13406,13385,13384,13406,13384,13405,13405,13384,6123,13405,6123,13404,13404,6123,13386,13404,13386,6128,6128,13386,6124,6120,6123,13382,13382,6123,13384,13382,13384,13383,13383,13384,13385,13383,13385,6121,6121,13385,6122,6127,6125,13387,6127,13387,6126,6123,6126,13386,13386,6126,13387,13386,13387,6124,6124,13387,6125,6126,13388,6127,6127,13388,13390,13388,13389,13390,13390,13389,13391,13389,5861,13391,13391,5861,5863,6127,13392,6125,6125,13392,13398,13392,13393,13398,13398,13393,13399,13393,13394,13399,13399,13394,13400,13394,13395,13400,13400,13395,13401,13395,13396,13401,13401,13396,13402,13396,13397,13402,13402,13397,13403,13397,5870,13403,13403,5870,5872,13597,6130,6129,13597,6129,13406,13597,13406,6132,6132,13406,13405,6132,13405,13408,13408,13405,13404,13408,13404,13407,13407,13404,6128,13407,6128,6131,6130,6122,6129,6124,6131,6128,6135,6133,13410,6135,13410,13409,6135,13409,6134,6131,6134,13407,13407,6134,13409,13407,13409,13408,13408,13409,13410,13408,13410,6132,6132,13410,6133,6134,13411,6135,6135,13411,13413,13411,13412,13413,13413,13412,13414,13412,5873,13414,13414,5873,5875,6138,6136,6137,6135,6137,6133,6133,6137,6136,6137,13415,6138,6138,13415,13416,13415,5879,13416,13416,5879,5881,13596,6139,13417,13596,13417,6141,13417,6139,6140,6138,6140,6136,6136,6140,6139,13421,6142,15228,13421,15228,13419,13421,13419,6144,13419,15228,6143,6143,15228,13418,13418,15228,6142,6140,6143,13417,13417,6143,13418,13417,13418,6141,6141,13418,6142,6143,5904,13419,13419,5904,13420,13419,13420,6144,6144,13420,5906,6147,6145,13422,6147,13422,6146,6144,6146,13421,13421,6146,13422,13421,13422,6142,6142,13422,6145,6146,5907,6147,6147,5907,5909,6152,6148,6149,6152,6149,13428,13428,6149,13423,13428,13423,13427,13427,13423,13424,13427,13424,6151,6151,13424,6150,6147,6149,6145,6145,6149,6148,6149,5910,13423,13423,5910,13425,13423,13425,13424,13424,13425,13426,13424,13426,6150,6150,13426,5912,6224,6153,6152,6224,6152,13428,6224,13428,6223,6223,13428,13427,6223,13427,6155,6155,13427,6151,6155,6151,6154,6153,6148,6152,6150,6154,6151,6216,6156,6157,6216,6157,13513,13513,6157,13512,13512,6157,13431,13512,13431,13511,13511,13431,13432,13511,13432,6215,6215,13432,6158,6154,13429,6155,6155,13429,13430,13429,6157,13430,13430,6157,6156,6161,6159,15229,6161,15229,13436,13436,15229,15230,13436,15230,13435,13435,15230,13433,13435,13433,6160,13433,15230,13434,13434,15230,15229,13434,15229,6159,6157,6160,13431,13431,6160,13433,13431,13433,13432,13432,13433,13434,13432,13434,6158,6158,13434,6159,6164,6162,15231,6164,15231,13440,13440,15231,13438,13440,13438,13437,13440,13437,13439,13439,13437,6163,13438,15231,6162,6160,6163,13435,13435,6163,13437,13435,13437,13436,13436,13437,13438,13436,13438,6161,6161,13438,6162,6163,5919,13439,13439,5919,13441,13439,13441,13440,13440,13441,13442,13440,13442,6164,6164,13442,5921,6167,6165,6166,6164,13443,6162,6162,13443,13444,13443,6166,13444,13444,6166,6165,6170,6168,6169,6166,6169,6167,6167,6169,6168,13507,6171,13448,13507,13448,6173,13448,6171,13447,13447,6171,6172,6169,13445,6170,6170,13445,13446,13445,6172,13446,13446,6172,6171,6176,6174,6178,6178,6174,13450,6178,13450,6177,6177,13450,13449,6177,13449,6175,6172,6175,13447,13447,6175,13449,13447,13449,13448,13448,13449,13450,13448,13450,6173,6173,13450,6174,5927,6176,6178,6175,5925,6177,6181,6179,6180,6176,13451,6174,6174,13451,13453,13451,13452,13453,13453,13452,13454,13452,6180,13454,13454,6180,6179,6184,6182,6183,6180,13455,6181,6181,13455,13456,13455,6183,13456,13456,6183,6182,6187,6185,6186,6183,6186,6184,6184,6186,6185,6186,13457,6187,6187,13457,13462,13457,13458,13462,13462,13458,13463,13458,13459,13463,13463,13459,13464,13459,13460,13464,13464,13460,13465,13460,13461,13465,13465,13461,13466,13461,5937,13466,13466,5937,5939,6187,5958,6185,6185,5958,5960,6184,5973,6182,6182,5973,5975,6190,6188,6189,6181,13467,6179,6179,13467,13470,13467,13468,13470,13470,13468,13471,13468,13469,13471,13471,13469,13472,13469,6189,13472,13472,6189,6188,6189,5979,6190,6190,5979,5981,13476,6191,6192,13476,6192,13475,13475,6192,6193,6190,6192,6188,6188,6192,6191,6192,13473,6193,6193,13473,13474,13473,5985,13474,13474,5985,5987,13503,6194,13478,13503,13478,15232,13503,15232,13480,13503,13480,6196,13480,15232,13479,13479,15232,13477,13479,13477,6195,13477,15232,13478,6193,6195,13475,13475,6195,13477,13475,13477,13476,13476,13477,13478,13476,13478,6191,6191,13478,6194,13502,6197,13482,13502,13482,13481,13502,13481,6199,6199,13481,6198,6195,6198,13479,13479,6198,13481,13479,13481,13480,13480,13481,13482,13480,13482,6196,6196,13482,6197,6202,6200,6201,6198,6201,6199,6199,6201,6200,6201,13483,6202,6202,13483,13484,13483,6000,13484,13484,6000,6002,13501,6203,13485,13501,13485,6205,13485,6203,6204,6202,6204,6200,6200,6204,6203,6208,6206,13486,6208,13486,13487,13487,13486,6207,6204,6207,13485,13485,6207,13486,13485,13486,6205,6205,13486,6206,6211,6209,15233,6211,15233,13491,13491,15233,13489,13491,13489,6210,13489,15233,6209,6207,13488,13487,13487,13488,15234,13487,15234,6208,6208,15234,13490,13488,6210,15234,15234,6210,13489,15234,13489,13490,13490,13489,6209,6210,6006,13491,13491,6006,13492,13491,13492,6211,6211,13492,6008,6211,13493,6209,6209,13493,13496,13493,13494,13496,13496,13494,13497,13494,13495,13497,13497,13495,13498,13495,6159,13498,13498,6159,6161,6214,6212,6213,6208,13499,6206,6206,13499,13500,13499,6213,13500,13500,6213,6212,6213,6165,6214,6214,6165,6167,6214,6168,6212,6212,6168,6170,6205,6197,13501,13501,6197,13502,13501,13502,6203,6203,13502,6199,6196,13504,13503,13503,13504,15235,13503,15235,6194,6194,15235,13508,13504,13505,15235,15235,13505,15236,15235,15236,13508,13508,15236,13509,13505,13506,15236,15236,13506,15237,15236,15237,13509,13509,15237,13510,13506,6171,15237,15237,6171,13507,15237,13507,13510,13510,13507,6173,6219,6217,6216,6219,6216,13513,6219,13513,13512,6219,13512,13515,13515,13512,13511,13515,13511,13514,13514,13511,6215,13514,6215,6218,6217,6156,6216,6158,6218,6215,6218,6015,13514,13514,6015,13516,13514,13516,13515,13515,13516,13517,13515,13517,6219,6219,13517,6017,6222,6220,6221,6219,6221,6217,6217,6221,6220,6221,6020,6222,6222,6020,6022,6222,6034,6220,6220,6034,6036,6227,6225,6224,6227,6224,13518,13518,6224,6223,13518,6223,6226,6225,6153,6224,6155,6226,6223,6230,6228,15238,6230,15238,13521,13521,15238,13520,13520,15238,13519,13520,13519,6229,13519,15238,6228,6226,6229,13518,13518,6229,13519,13518,13519,6227,6227,13519,6228,6233,6231,13523,6233,13523,13524,13524,13523,13522,13524,13522,6232,6229,6232,13520,13520,6232,13522,13520,13522,13521,13521,13522,13523,13521,13523,6230,6230,13523,6231,13530,6234,15239,13530,15239,6236,6236,15239,13527,13527,15239,13526,13526,15239,13525,13526,13525,6235,13525,15239,6234,6232,6235,13524,13524,6235,13525,13524,13525,6233,6233,13525,6234,6235,6037,13526,13526,6037,13528,13526,13528,13527,13527,13528,13529,13527,13529,6236,6236,13529,6039,6239,6237,13532,13532,6237,13531,13532,13531,6238,6236,6238,13530,13530,6238,13531,13530,13531,6234,6234,13531,6237,6238,6043,13532,13532,6043,13533,13532,13533,6239,6239,13533,6045,6242,6240,6241,6239,6241,6237,6237,6241,6240,6245,6243,13534,13534,6243,6244,6241,6244,6242,6242,6244,6243,6244,6046,13534,13534,6046,13535,13534,13535,6245,6245,13535,6048,6248,6246,6247,6245,13536,6243,6243,13536,13538,13536,13537,13538,13538,13537,13539,13537,6247,13539,13539,6247,6246,6251,6249,6250,6247,13540,6248,6248,13540,13541,13540,6250,13541,13541,6250,6249,6254,6252,6253,6250,6253,6251,6251,6253,6252,6257,6255,6256,6253,6256,6254,6254,6256,6255,6260,6258,6259,6256,13542,6257,6257,13542,13548,13542,13543,13548,13548,13543,13549,13543,13544,13549,13549,13544,13550,13544,13545,13550,13550,13545,13551,13545,13546,13551,13551,13546,13552,13546,13547,13552,13552,13547,13553,13547,6259,13553,13553,6259,6258,6263,6261,6262,6259,6262,6260,6260,6262,6261,6266,6264,13554,13554,6264,6265,6262,6265,6263,6263,6265,6264,6265,6051,13554,13554,6051,13555,13554,13555,6266,6266,13555,6053,6266,6060,6264,6264,6060,6062,6269,6267,6268,6263,6268,6261,6261,6268,6267,6268,13556,6269,6269,13556,13560,13556,13557,13560,13560,13557,13561,13557,13558,13561,13561,13558,13562,13558,13559,13562,13562,13559,13563,13559,6249,13563,13563,6249,6251,6272,6270,6271,6269,6271,6267,6267,6271,6270,6275,6273,6274,6271,13564,6272,6272,13564,13567,13564,13565,13567,13567,13565,13568,13565,13566,13568,13568,13566,13569,13566,6274,13569,13569,6274,6273,6274,6252,6275,6275,6252,6254,6275,6255,6273,6273,6255,6257,6272,6258,6270,6270,6258,6260,6278,6276,13570,13570,6276,6277,6248,6277,6246,6246,6277,6276,6281,6279,13572,6281,13572,6280,6277,13571,13570,13570,13571,15240,13570,15240,6278,6278,15240,13573,13571,6280,15240,15240,6280,13572,15240,13572,13573,13573,13572,6279,6284,6282,13574,13574,6282,6283,6280,6283,6281,6281,6283,6282,6283,13575,13574,13574,13575,15241,13574,15241,6284,6284,15241,13578,13575,13576,15241,15241,13576,15242,15241,15242,13578,13578,15242,13579,13576,6063,15242,15242,6063,13577,15242,13577,13579,13579,13577,6065,6287,6285,6286,6284,6286,6282,6282,6286,6285,6286,6086,6287,6287,6086,6088,6290,6288,6289,6287,6289,6285,6285,6289,6288,6293,6291,6292,6289,6292,6290,6290,6292,6291,13584,6294,13580,13584,13580,13581,13584,13581,6296,13580,6294,6295,6292,6295,6293,6293,6295,6294,6299,6297,13583,6299,13583,13582,6299,13582,6298,6295,6298,13580,13580,6298,13582,13580,13582,13581,13581,13582,13583,13581,13583,6296,6296,13583,6297,6298,6089,6299,6299,6089,6091,6299,6092,6297,6297,6092,6094,6302,6300,13585,6302,13585,6301,6296,6301,13584,13584,6301,13585,13584,13585,6294,6294,13585,6300,6301,13586,6302,6302,13586,13587,13586,6113,13587,13587,6113,6115,6305,6303,6304,6302,6304,6300,6300,6304,6303,6304,13588,6305,6305,13588,13590,13588,13589,13590,13590,13589,13591,13589,6119,13591,13591,6119,6121,6308,6306,6307,6305,6307,6303,6303,6307,6306,6307,13592,6308,6308,13592,13593,13592,6225,13593,13593,6225,6227,6308,6291,6306,6306,6291,6293,6290,6279,6288,6288,6279,6281,6278,13594,6276,6276,13594,13595,13594,6228,13595,13595,6228,6230,6242,6231,6240,6240,6231,6233,6141,6130,13596,13596,6130,13597,13596,13597,6139,6139,13597,6132,6112,13598,6110,6110,13598,13604,13598,13599,13604,13604,13599,13605,13599,13600,13605,13605,13600,13606,13600,13601,13606,13606,13601,13607,13601,13602,13607,13607,13602,13608,13602,13603,13608,13608,13603,13609,13603,6098,13609,13609,6098,6100,6311,6309,13610,13610,6309,6310,6085,6310,6083,6083,6310,6309,6310,6071,13610,13610,6071,13611,13610,13611,6311,6311,13611,6073,6311,6077,6309,6309,6077,6079,15244,15243,15245,15244,15245,15246,13617,6314,6313,13617,6313,15246,13617,15246,13616,13616,15246,15245,13616,15245,13615,13615,15245,6316,6316,15245,15243,6316,15243,13613,13613,15243,6315,6315,15243,6312,6312,15243,15244,6312,15244,13612,13612,15244,6313,6313,15244,15246,6314,5899,6313,5901,6315,6312,6315,5882,13613,13613,5882,13614,13613,13614,6316,6316,13614,5884,13621,6317,13620,13621,13620,13619,13621,13619,6319,6319,13619,13618,6319,13618,6318,6316,6318,13615,13615,6318,13618,13615,13618,13616,13616,13618,13619,13616,13619,13617,13617,13619,13620,13617,13620,6314,6314,13620,6317,6318,5885,6319,6319,5885,5887,6319,5893,13621,13621,5893,13622,13621,13622,6317,6317,13622,5895,5869,13623,5867,5867,13623,13630,13623,13624,13630,13630,13624,13631,13624,13625,13631,13631,13625,13632,13625,13626,13632,13632,13626,13633,13626,13627,13633,13633,13627,13634,13627,13628,13634,13634,13628,13635,13628,13629,13635,13635,13629,13636,13629,5864,13636,13636,5864,5866,6322,6320,13646,13646,6320,13645,13645,6320,13641,13645,13641,6321,5821,13638,13637,13637,13638,15247,13637,15247,5819,5819,15247,13642,13638,13639,15247,15247,13639,15248,15247,15248,13642,13642,15248,13643,13639,13640,15248,15248,13640,15249,15248,15249,13643,13643,15249,13644,13640,6321,15249,15249,6321,13641,15249,13641,13644,13644,13641,6320,6321,5762,13645,13645,5762,13647,13645,13647,13646,13646,13647,13648,13646,13648,6322,6322,13648,5764,6325,6323,6324,6322,6324,6320,6320,6324,6323,6324,13649,6325,6325,13649,13650,13649,5789,13650,13650,5789,5791,6328,6326,6327,6325,13651,6323,6323,13651,13654,13651,13652,13654,13654,13652,13655,13652,13653,13655,13655,13653,13656,13653,6327,13656,13656,6327,6326,6331,6329,6330,6327,6330,6328,6328,6330,6329,6330,5792,6331,6331,5792,5794,6334,6332,6333,6331,6333,6329,6329,6333,6332,6333,5798,6334,6334,5798,5800,6334,5810,6332,6332,5810,5812,6328,5813,6326,6326,5813,5815,5788,5777,5786,5786,5777,5779,5664,5212,5662,5662,5212,5214,13661,6335,13659,13661,13659,6336,13661,6336,6337,5631,13658,13657,13657,13658,15250,13657,15250,5629,5629,15250,13660,13658,6336,15250,15250,6336,13659,15250,13659,13660,13660,13659,6335,6336,5524,6337,6337,5524,5526,6337,5539,13661,13661,5539,13662,13661,13662,6335,6335,13662,5541,5628,5545,5626,5626,5545,5547,13667,6338,13664,13667,13664,6340,6340,13664,6339,5625,6339,13663,13663,6339,13664,13663,13664,5623,5623,13664,6338,6339,13665,6340,6340,13665,13666,13665,5548,13666,13666,5548,5550,6343,6341,13669,13669,6341,13668,13669,13668,6342,6340,6342,13667,13667,6342,13668,13667,13668,6338,6338,13668,6341,6342,5560,13669,13669,5560,13670,13669,13670,6343,6343,13670,5562,6346,6344,6345,6343,6345,6341,6341,6345,6344,13673,6347,13671,13673,13671,6349,13671,6347,6348,6345,6348,6346,6346,6348,6347,6348,5563,13671,13671,5563,13672,13671,13672,6349,6349,13672,5565,13675,6350,13674,13675,13674,6351,13675,6351,6352,6349,6351,13673,13673,6351,13674,13673,13674,6347,6347,13674,6350,6351,5598,6352,6352,5598,5600,6352,5606,13675,13675,5606,13676,13675,13676,6350,6350,13676,5608,6346,5609,6344,6344,5609,5611,5595,5579,13677,13677,5579,13678,13677,13678,5593,5593,13678,5581,5576,5566,5574,5574,5566,5568,5559,5551,5557,5557,5551,5553,5538,5527,13679,13679,5527,13680,13679,13680,5536,5536,13680,5529,13687,6353,15251,13687,15251,15252,13687,15252,13684,13687,13684,6355,13684,15252,13683,13683,15252,13682,13683,13682,6354,13682,15252,15251,13682,15251,6353,5506,6354,13681,13681,6354,13682,13681,13682,5504,5504,13682,6353,6354,5481,13683,13683,5481,13685,13683,13685,13684,13684,13685,13686,13684,13686,6355,6355,13686,5483,6358,6356,13688,6358,13688,13689,13689,13688,6357,6355,6357,13687,13687,6357,13688,13687,13688,6353,6353,13688,6356,6357,5493,13689,13689,5493,13690,13689,13690,6358,6358,13690,5495,6358,5501,6356,6356,5501,5503,5412,5401,5410,5410,5401,5403,5178,5161,13691,13691,5161,13692,13691,13692,5176,5176,13692,5163,5154,13693,5152,5152,13693,13695,13693,13694,13695,13695,13694,13696,13694,5137,13696,13696,5137,5139,5095,5084,5093,5093,5084,5086,5040,5032,5038,5038,5032,5034,5028,5020,5026,5026,5020,5022,5019,5009,5017,5017,5009,5011,13700,6361,6360,13700,6360,13697,13700,13697,6363,6363,13697,6359,6363,6359,13698,13698,6359,6362,6361,4972,6360,4974,6362,6359,6362,4948,13698,13698,4948,13699,13698,13699,6363,6363,13699,4950,6363,4957,13700,13700,4957,13701,13700,13701,6361,6361,13701,4959,4944,13704,13702,13702,13704,15253,13702,15253,13703,13703,15253,15254,13703,15254,4942,4942,15254,13707,13704,4924,15253,15253,4924,13705,15253,13705,15254,15254,13705,13706,15254,13706,13707,13707,13706,4926,4941,4933,4939,4939,4933,4935,4768,4756,4766,4766,4756,4758,4752,13708,4750,4750,13708,13709,13708,4735,13709,13709,4735,4737,4680,4672,4678,4678,4672,4674,4668,4660,13710,13710,4660,13711,13710,13711,4666,4666,13711,4662,4526,13712,4524,4524,13712,13715,13712,13713,13715,13715,13713,13716,13713,13714,13716,13716,13714,13717,13714,4494,13717,13717,4494,4496,4321,4302,13718,13718,4302,13719,13718,13719,4319,4319,13719,4304,4318,4305,4316,4316,4305,4307,4283,3650,4281,4281,3650,3652,4251,13720,4249,4249,13720,13723,13720,13721,13723,13723,13721,13724,13721,13722,13724,13724,13722,13725,13722,4232,13725,13725,4232,4234,4225,4217,4223,4223,4217,4219,4213,4205,13726,13726,4205,13727,13726,13727,4211,4211,13727,4207,4139,13728,4137,4137,13728,13730,13728,13729,13730,13730,13729,13731,13729,4125,13731,13731,4125,4127,4079,13732,4077,4077,13732,13733,13732,4068,13733,13733,4068,4070,4007,3997,13734,13734,3997,13736,13734,13736,13735,13735,13736,13737,13735,13737,4005,4005,13737,3999,13745,6364,13741,13745,13741,15255,13745,15255,13744,13744,15255,13742,13744,13742,6366,13742,15255,6365,6365,15255,13740,13740,15255,13741,3978,6365,13738,13738,6365,13740,13738,13740,13739,13739,13740,13741,13739,13741,3976,3976,13741,6364,6365,3943,13742,13742,3943,13743,13742,13743,6366,6366,13743,3945,6366,3970,13744,13744,3970,13746,13744,13746,13745,13745,13746,13747,13745,13747,6364,6364,13747,3972,3967,3946,13748,13748,3946,13749,13748,13749,3965,3965,13749,3948,3962,3954,13750,13750,3954,13752,13750,13752,13751,13751,13752,13753,13751,13753,3960,3960,13753,3956,3912,3901,3910,3910,3901,3903,3825,3788,3823,3823,3788,3790,3703,13755,13754,13754,13755,15256,13754,15256,3701,3701,15256,13758,13755,13756,15256,15256,13756,15257,15256,15257,13758,13758,15257,13759,13756,3644,15257,15257,3644,13757,15257,13757,13759,13759,13757,3646,3559,3542,3557,3557,3542,3544,3556,3548,3554,3554,3548,3550,3532,3524,3530,3530,3524,3526,3466,13760,3464,3464,13760,13761,13760,3441,13761,13761,3441,3443,3232,3207,3230,3230,3207,3209,3229,3216,3227,3227,3216,3218,13770,6367,15258,13770,15258,6369,6369,15258,13767,13767,15258,13766,13766,15258,13765,13766,13765,13764,13766,13764,6368,13765,15258,6367,3008,6368,13762,13762,6368,13764,13762,13764,13763,13763,13764,13765,13763,13765,3006,3006,13765,6367,6368,2995,13766,13766,2995,13768,13766,13768,13767,13767,13768,13769,13767,13769,6369,6369,13769,2997,6369,3003,13770,13770,3003,13771,13770,13771,6367,6367,13771,3005,2910,2896,2908,2908,2896,2898,2886,13772,2884,2884,13772,13775,13772,13773,13775,13775,13773,13776,13773,13774,13776,13776,13774,13777,13774,2875,13777,13777,2875,2877,2859,2851,2857,2857,2851,2853,2826,2818,13778,13778,2818,13780,13778,13780,13779,13779,13780,13781,13779,13781,2824,2824,13781,2820,2706,2722,6371,2724,2704,6370,2721,13783,2719,2719,13783,13790,13783,13784,13790,13790,13784,13791,13784,13785,13791,13791,13785,13792,13785,13786,13792,13792,13786,13793,13786,13787,13793,13793,13787,13794,13787,13788,13794,13794,13788,13795,13788,13789,13795,13795,13789,13796,13789,2713,13796,13796,2713,2715,2700,2689,13797,13797,2689,13798,13797,13798,2698,2698,13798,2691,13801,6372,13800,13801,13800,6373,13801,6373,6374,2552,6373,13799,13799,6373,13800,13799,13800,2550,2550,13800,6372,6373,2535,6374,6374,2535,2537,13807,6375,15259,13807,15259,13804,13807,13804,6377,13804,15259,13803,13803,15259,13802,13803,13802,6376,13802,15259,6375,6374,6376,13801,13801,6376,13802,13801,13802,6372,6372,13802,6375,6376,2541,13803,13803,2541,13805,13803,13805,13804,13804,13805,13806,13804,13806,6377,6377,13806,2543,6377,2547,13807,13807,2547,13808,13807,13808,6375,6375,13808,2549,2471,2478,6379,2480,2469,6378,13825,6382,6381,13825,6381,15261,13825,15261,6384,6384,15261,15260,6384,15260,13810,13810,15260,6380,13810,6380,6383,6380,15260,15261,6380,15261,6381,6382,2353,6381,2355,6383,6380,6387,6385,13811,6387,13811,6386,6383,6386,13810,13810,6386,13811,13810,13811,6384,6384,13811,6385,6390,6388,6389,6386,6389,6387,6387,6389,6388,6389,2335,6390,6390,2335,2337,6393,6391,6392,6390,6392,6388,6388,6392,6391,13817,6394,15262,13817,15262,13816,13816,15262,13813,13816,13813,6396,13813,15262,13812,13812,15262,6395,6395,15262,6394,6392,6395,6393,6393,6395,6394,6395,2338,13812,13812,2338,13814,13812,13814,13813,13813,13814,13815,13813,13815,6396,6396,13815,2340,15263,15264,15265,13824,6397,15263,13824,15263,6399,6399,15263,13821,13821,15263,15265,13821,15265,13820,13820,15265,6398,6398,15265,13818,13818,15265,15264,13818,15264,13819,13819,15264,6397,6397,15264,15263,6396,6398,13816,13816,6398,13818,13816,13818,13817,13817,13818,13819,13817,13819,6394,6394,13819,6397,6398,2350,13820,13820,2350,13822,13820,13822,13821,13821,13822,13823,13821,13823,6399,6399,13823,2352,6399,6382,13824,13824,6382,13825,13824,13825,6397,6397,13825,6384,6393,6385,6391,6391,6385,6387,2334,2326,13826,13826,2326,13827,13826,13827,2332,2332,13827,2328,6402,6400,6401,2310,6401,2308,2308,6401,6400,6405,6403,6404,6401,13828,6402,6402,13828,13832,13828,13829,13832,13832,13829,13833,13829,13830,13833,13833,13830,13834,13830,13831,13834,13834,13831,13835,13831,6404,13835,13835,6404,6403,6404,2287,6405,6405,2287,2289,6405,2293,6403,6403,2293,2295,6402,2296,6400,6400,2296,2298,2257,2249,2255,2255,2249,2251,2245,2231,2243,2243,2231,2233,2173,13836,2171,2171,13836,13839,13836,13837,13839,13839,13837,13840,13837,13838,13840,13840,13838,13841,13838,2150,13841,13841,2150,2152,2170,13843,13842,13842,13843,15266,13842,15266,2168,2168,15266,13845,13843,2153,15266,15266,2153,13844,15266,13844,13845,13845,13844,2155,2082,2074,2080,2080,2074,2076,2033,2022,13846,13846,2022,13847,13846,13847,2031,2031,13847,2024,2009,1998,2007,2007,1998,2000,1725,1702,1723,1723,1702,1704,1616,1605,13848,13848,1605,13849,13848,13849,1614,1614,13849,1607,1480,13850,1478,1478,13850,13851,13850,1469,13851,13851,1469,1471,1456,1448,13852,13852,1448,13854,13852,13854,13853,13853,13854,13855,13853,13855,1454,1454,13855,1450,1403,13856,1401,1401,13856,13858,13856,13857,13858,13858,13857,13859,13857,1389,13859,13859,1389,1391,1256,1248,1254,1254,1248,1250,1241,13860,1239,1239,13860,13866,13860,13861,13866,13866,13861,13867,13861,13862,13867,13867,13862,13868,13862,13863,13868,13868,13863,13869,13863,13864,13869,13869,13864,13870,13864,13865,13870,13870,13865,13871,13865,1233,13871,13871,1233,1235,1168,1157,13872,13872,1157,13873,13872,13873,1166,1166,13873,1159,1014,1003,1012,1012,1003,1005,970,960,13874,13874,960,13875,13874,13875,968,968,13875,962,877,869,13876,13876,869,13877,13876,13877,875,875,13877,871,769,761,13878,13878,761,13879,13878,13879,767,767,13879,763,736,752,6407,754,734,6406,745,737,743,743,737,739,680,672,13882,13882,672,13883,13882,13883,678,678,13883,674,662,654,13884,13884,654,13885,13884,13885,660,660,13885,656,572,564,570,570,564,566,560,549,13886,13886,549,13887,13886,13887,558,558,13887,551,15267,15268,15271,15270,15267,15271,13893,6410,15267,13893,15267,15270,13893,15270,13892,13892,15270,15271,13892,15271,6412,6412,15271,13889,13889,15271,15269,13889,15269,13888,13888,15269,6411,6411,15269,6408,6408,15269,15268,6408,15268,6409,6409,15268,15267,6409,15267,6410,15268,15269,15271,6410,445,6409,447,6411,6408,6411,425,13888,13888,425,13890,13888,13890,13889,13889,13890,13891,13889,13891,6412,6412,13891,427,6412,428,13892,13892,428,13894,13892,13894,13893,13893,13894,13895,13893,13895,6410,6410,13895,430,444,431,442,442,431,433,184,173,13896,13896,173,13897,13896,13897,182,182,13897,175,6415,6413,6417,6417,6413,13901,6417,13901,6416,6416,13901,13900,6416,13900,6414,161,6414,13898,13898,6414,13900,13898,13900,13899,13899,13900,13901,13899,13901,159,159,13901,6413,146,6415,6417,6414,144,6416,6415,156,6413,6413,156,158,155,147,153,153,147,149,6418,13902,6420,13902,13903,6420,13903,13904,6420,13904,13905,6420,13905,13906,6420,13906,6418,6420,6419,6421,13907,13907,6421,13908,13908,6421,13909,13909,6421,13910,13910,6421,13911,13911,6421,6419,6422,13912,6424,13912,13913,6424,13913,13914,6424,13914,13915,6424,13915,13916,6424,13916,6422,6424,6423,6425,13917,13917,6425,13918,13918,6425,13919,13919,6425,13920,13920,6425,13921,13921,6425,6423,6426,13922,13927,13927,13922,15272,13927,15272,13928,13928,15272,15273,13928,15273,6427,6427,15273,13933,13922,13923,15272,15272,13923,15274,15272,15274,15273,15273,15274,15275,15273,15275,13933,13933,15275,13932,13923,13924,15274,15274,13924,15276,15274,15276,15275,15275,15276,15277,15275,15277,13932,13932,15277,13931,13924,13925,15276,15276,13925,15278,15276,15278,15277,15277,15278,15279,15277,15279,13931,13931,15279,13930,13925,13926,15278,15278,13926,15280,15278,15280,15279,15279,15280,15281,15279,15281,13930,13930,15281,13929,13926,6426,15280,15280,6426,13927,15280,13927,15281,15281,13927,13928,15281,13928,13929,13929,13928,6427,15283,15285,15286,15284,15283,15286,15286,15285,15288,15285,15287,15288,10,7,13,15288,15287,6428,15288,6428,0,15288,0,6450,15288,6450,15286,15286,6450,6449,15286,6449,15284,15284,6449,6448,15284,6448,15283,15283,6448,15282,15283,15282,6432,15283,6432,15285,15285,6432,6431,15285,6431,15287,15287,6431,4,15287,4,6428,6432,15282,7,7,15282,13,13,15282,16,16,15282,6448,15290,15292,15293,15291,15290,15293,15293,15292,15295,15293,15295,15296,15294,15293,15296,15294,15296,15297,15296,15295,15300,15296,15300,15301,15297,15296,15301,15298,15297,15301,15298,15301,15302,15299,15298,15302,15301,15300,15303,15302,15301,15303,15302,15303,1,15302,1,6429,15302,6429,15299,15299,6429,3,15299,3,34,15299,34,31,15299,31,6472,15299,6472,15298,15298,6472,6471,15298,6471,15297,15297,6471,6470,15297,6470,15294,15294,6470,6469,15294,6469,15291,15294,15291,15293,15291,6469,6468,15291,6468,28,15291,28,15289,15291,15289,15290,15290,15289,23,15290,23,6465,15290,6465,15292,15292,6465,6466,15292,6466,15295,15295,6466,6467,15295,6467,15300,15300,6467,15303,15303,6467,1,23,15289,25,25,15289,28,6484,40,6435,6484,6435,6,6435,40,37,6435,37,6434,6434,37,5,5,37,35,9,49,6487,9,6487,8,8,6487,6485,6485,6487,6486,6485,6486,41,41,6486,43,43,6486,46,12,55,11,11,55,50,50,55,52,15,18,58,15,58,56,15,56,14,58,18,61,6462,22,6458,6462,6458,15305,6462,15305,6463,6463,15305,6464,6464,15305,6453,6464,6453,2,6453,15305,15304,6453,15304,6452,6452,15304,6457,6452,6457,6456,6452,6456,6451,6451,6456,19,6451,19,17,6457,15304,15305,6457,15305,6458,15306,15307,15308,15306,15308,24,15306,24,73,15306,73,70,15306,70,67,15306,67,64,15306,64,15307,15307,64,62,15307,62,6460,15307,6460,6461,15307,6461,15308,15308,6461,21,15308,21,24,6460,62,6459,6459,62,20,27,79,6512,27,6512,15310,27,15310,26,26,15310,6510,26,6510,74,6510,15310,15309,6510,15309,76,76,15309,6512,6512,15309,15310,6523,91,88,6523,88,15311,6523,15311,15313,6523,15313,6524,6524,15313,15314,6524,15314,6477,6524,6477,30,6477,15314,6476,6476,15314,15312,6476,15312,6475,6475,15312,6474,6474,15312,6515,6474,6515,80,6474,80,6473,6473,80,29,6515,15312,82,82,15312,15313,82,15313,15311,82,15311,85,85,15311,88,15313,15312,15314,15315,15317,15318,15316,15315,15318,15317,15321,15322,15318,15317,15322,15320,15319,15324,15322,15321,15324,15323,15322,15324,15319,15323,15324,15324,15321,33,15324,33,15320,15320,33,36,15320,36,106,15320,106,15319,15319,106,103,15319,103,15323,15323,103,6539,15323,6539,15318,15323,15318,15322,15318,6539,100,15318,100,15316,15316,100,6536,15316,6536,15315,15315,6536,97,15315,97,94,15315,94,6526,15315,6526,6527,15315,6527,15317,15317,6527,15321,15321,6527,32,15321,32,33,6526,94,92,109,107,42,39,42,38,38,42,107,45,112,110,45,110,44,15326,15325,15327,15326,15327,15328,15327,15329,15330,15328,15327,15330,15330,15329,15331,15330,15331,6488,15330,6488,6489,15330,6489,15328,15328,6489,48,15328,48,51,15328,51,15326,15326,51,129,15326,129,126,15326,126,6557,15326,6557,15325,15325,6557,123,15325,123,6554,15325,6554,15327,15327,6554,15329,15329,6554,6553,15329,6553,15331,15331,6553,120,15331,120,47,15331,47,6488,47,120,113,113,120,117,54,57,151,54,151,15334,54,15334,53,53,15334,6576,53,6576,130,130,6576,6575,130,6575,15333,130,15333,134,134,15333,15332,134,15332,137,137,15332,6573,137,6573,142,142,6573,145,6573,15332,6574,6574,15332,15333,6574,15333,6575,6576,15334,148,148,15334,151,15335,15338,15339,15336,15335,15339,15336,15339,15340,15337,15336,15340,15339,15338,15342,15339,15342,15343,15340,15339,15343,15340,15343,15344,15342,15341,15345,15343,15342,15345,15343,15345,15346,15344,15343,15346,15344,15346,15347,15346,15345,15349,15346,15349,15350,15347,15346,15350,15349,15348,15351,15350,15349,15351,15350,15351,60,15350,60,63,15350,63,15347,15347,63,15344,15344,63,6592,15344,6592,15340,15340,6592,15337,15337,6592,6591,15337,6591,163,15337,163,15336,15336,163,160,15336,160,15335,15335,160,157,15335,157,6583,15335,6583,15338,15338,6583,15341,15338,15341,15342,15341,6583,6582,15341,6582,6581,15341,6581,15345,15345,6581,15348,15345,15348,15349,15348,6581,154,15348,154,15351,15351,154,152,15351,152,59,15351,59,60,177,174,6607,66,180,6594,66,6594,65,6594,180,6607,6594,6607,6593,6593,6607,169,6593,169,164,164,169,166,169,6607,174,69,181,68,183,178,188,6511,75,6618,6511,6618,15352,6511,15352,72,72,15352,71,71,15352,179,179,15352,6609,6609,15352,193,6609,193,188,6609,188,178,193,15352,6618,193,6618,196,6618,75,199,15353,15356,15357,15355,15354,15358,15356,15355,15358,15356,15358,15359,15357,15356,15359,15357,15359,15360,15357,15360,6630,15357,6630,6629,15357,6629,15353,15353,6629,205,15353,205,202,15353,202,6624,15353,6624,15355,15353,15355,15356,15355,6624,15354,15354,6624,200,15354,200,77,15354,77,6513,15354,6513,78,15354,78,15358,15358,78,6517,15358,6517,15359,15359,6517,15360,15360,6517,81,15360,81,208,15360,208,6630,84,209,83,87,217,6637,87,6637,86,86,6637,207,207,6637,6632,6632,6637,15362,6632,15362,6631,6631,15362,15361,6631,15361,6633,6631,6633,211,6631,211,206,6633,15361,6635,6633,6635,214,6635,15361,15362,6635,15362,6636,6636,15362,6637,90,93,218,90,218,89,15363,15365,15366,15364,15363,15366,15364,15366,15367,15366,15365,15368,15366,15368,15369,15367,15366,15369,15369,15368,15370,15369,15370,96,15369,96,235,15369,235,15367,15367,235,232,15367,232,229,15367,229,226,15367,226,15364,15364,226,223,15364,223,220,15364,220,15363,15363,220,215,15363,215,15365,15365,215,6638,15365,6638,6639,15365,6639,15368,15368,6639,15370,15370,6639,6640,15370,6640,96,96,6640,216,96,216,95,99,241,6537,6537,241,238,6537,238,98,98,238,236,6673,244,6669,6673,6669,15371,6673,15371,6541,6673,6541,102,6541,15371,101,101,15371,6667,101,6667,242,6667,15371,6668,6668,15371,6669,15375,15374,15376,105,108,104,15375,15376,104,15375,104,108,15375,108,15373,15375,15373,6680,15375,6680,15374,15374,6680,15372,15374,15372,6675,15374,6675,245,15374,245,15376,15376,245,6674,15376,6674,104,6675,15372,247,247,15372,250,250,15372,6680,6680,15373,116,116,15373,111,111,15373,108,6689,262,15377,6689,15377,6682,6689,6682,119,119,6682,118,6682,15377,251,251,15377,253,253,15377,256,256,15377,259,259,15377,262,122,265,6694,122,6694,15378,122,15378,6556,6556,15378,15379,6556,15379,15381,6556,15381,6555,6555,15381,6690,6555,6690,121,6690,15381,15380,6690,15380,263,263,15380,6691,6691,15380,6692,6692,15380,15381,6692,15381,15379,6692,15379,6693,6693,15379,15378,6693,15378,6694,125,279,276,125,276,6701,125,6701,6558,6558,6701,273,6558,273,268,6558,268,266,6558,266,124,128,133,280,128,280,127,136,282,277,136,277,135,135,277,278,141,291,6720,141,6720,138,138,6720,288,138,288,285,138,285,283,144,6414,6728,144,6728,296,144,296,292,144,292,143,6728,6414,15382,6728,15382,299,299,15382,15383,299,15383,302,302,15383,6730,6730,15383,162,6730,162,305,305,162,308,308,162,165,308,165,311,162,15383,161,161,15383,15382,161,15382,6414,15385,15384,15387,15385,15387,15388,15384,15386,15387,15387,15386,15390,15387,15390,15391,15388,15387,15391,15388,15391,15392,15386,15389,15390,15390,15389,15393,15390,15393,15394,15391,15390,15394,15391,15394,15395,15392,15391,15395,15394,15393,15396,15394,15396,15397,15395,15394,15397,15395,15397,6584,15395,6584,6585,15395,6585,15392,15392,6585,6586,15392,6586,15388,15388,6586,156,15388,156,15385,15385,156,6415,15385,6415,146,15385,146,15384,15384,146,6577,15384,6577,15386,15386,6577,6578,15386,6578,15389,15389,6578,6579,15389,6579,15393,15393,6579,6580,15393,6580,15396,15396,6580,147,15396,147,155,15396,155,15397,15397,155,6584,150,153,149,159,6413,158,168,312,167,173,184,170,184,187,170,170,187,309,170,309,310,175,176,182,15399,15398,15400,15399,15400,15401,15399,15401,323,15399,323,320,15399,320,6749,15399,6749,6748,15399,6748,15398,15398,6748,6741,15398,6741,306,15398,306,15400,15400,306,307,15400,307,189,15400,189,15401,15401,189,192,15401,192,326,15401,326,323,6741,6748,317,6741,317,314,195,327,194,6626,201,6771,6626,6771,332,6626,332,15404,6626,15404,198,198,15404,15403,198,15403,6620,6620,15403,15402,6620,15402,325,6620,325,197,325,15402,324,324,15402,329,329,15402,6766,6766,15402,15403,6766,15403,6767,6767,15403,15404,6767,15404,332,6771,201,338,6771,338,335,204,210,339,204,339,203,213,219,15407,213,15407,15406,213,15406,6634,6634,15406,15405,6634,15405,212,212,15405,336,212,336,337,336,15405,341,341,15405,15406,341,15406,6783,6783,15406,15407,6783,15407,344,344,15407,219,222,353,221,221,353,347,221,347,345,347,353,350,225,365,15408,225,15408,224,224,15408,354,354,15408,6797,354,6797,6792,6792,6797,359,6792,359,356,6797,15408,362,362,15408,365,228,366,227,231,368,230,230,368,364,364,368,363,234,237,6807,234,6807,233,233,6807,371,233,371,369,6807,237,374,15412,15411,15417,15412,15417,15418,15413,15412,15418,15413,15418,15419,15414,15413,15419,15414,15419,15420,15415,15414,15420,15416,15415,15420,15410,15415,15416,15418,15417,15422,15418,15422,15423,15419,15418,15423,15420,15419,15423,15421,15420,15423,15416,15420,15421,15421,15423,6672,15421,6672,243,15421,243,6676,15421,6676,15416,15416,6676,15410,15410,6676,246,15410,246,6816,15410,6816,385,15410,385,15415,15415,385,6814,15415,6814,15414,15414,6814,382,15414,382,15413,15413,382,377,15413,377,15412,15412,377,15411,15411,377,15409,15411,15409,240,15411,240,6670,15411,6670,15417,15417,6670,6671,15417,6671,15422,15422,6671,6672,15422,6672,15423,240,15409,239,239,15409,375,375,15409,377,249,252,391,249,391,248,248,391,6817,6817,391,6818,6817,6818,386,386,6818,388,255,397,394,255,394,392,255,392,254,258,400,398,258,398,257,15425,15424,15427,15425,15427,15428,15426,15425,15428,15426,15428,6697,15426,6697,6842,15426,6842,414,15426,414,15425,15425,414,409,15425,409,406,15425,406,15424,15424,406,6830,15424,6830,15429,15424,15429,15427,15427,15429,6695,15427,6695,15428,15428,6695,6696,15428,6696,6697,6695,15429,261,261,15429,260,260,15429,403,260,403,401,403,15429,6830,6842,6697,6698,6842,6698,264,6842,264,267,272,435,423,272,423,15430,272,15430,269,269,15430,15431,269,15431,6845,6845,15431,15432,6845,15432,6846,6845,6846,415,6846,15432,417,417,15432,420,420,15432,6848,6848,15432,15431,6848,15431,15430,6848,15430,6849,6849,15430,423,423,435,432,423,432,426,426,432,429,275,281,284,275,284,6702,6702,284,6868,6702,6868,274,274,6868,436,436,6868,440,287,449,6870,287,6870,286,6870,449,6882,6870,6882,441,441,6882,443,443,6882,446,15434,15433,15435,15434,15435,15436,15434,15436,6722,15434,6722,290,15434,290,295,15434,295,455,15434,455,6894,15434,6894,15433,15433,6894,6893,15433,6893,15435,15435,6893,6889,15435,6889,6888,15435,6888,15436,15436,6888,6887,15436,6887,6722,6722,6887,289,289,6887,450,6889,6893,452,298,461,6905,298,6905,6729,6729,6905,456,6729,456,297,456,6905,458,301,464,462,301,462,300,6743,313,470,6743,470,15438,6743,15438,6731,6743,6731,304,6731,15438,15437,6731,15437,303,303,15437,465,465,15437,467,467,15437,6907,6907,15437,15438,6907,15438,470,15440,15439,15442,15440,15442,15443,15441,15440,15443,15441,15443,15444,15443,15442,15445,15443,15445,15446,15444,15443,15446,15446,15445,15447,15446,15447,6928,15446,6928,493,15446,493,15444,15444,493,15441,15441,493,490,15441,490,487,15441,487,484,15441,484,15440,15440,484,479,15440,479,6913,15440,6913,15439,15439,6913,476,15439,476,15442,15442,476,473,15442,473,15445,15445,473,6911,15445,6911,15447,15447,6911,471,15447,471,316,15447,316,6928,316,471,315,319,496,15448,319,15448,6751,6751,15448,6750,6750,15448,6930,6750,6930,318,6930,15448,6932,6930,6932,494,6932,15448,496,322,328,321,321,328,6942,321,6942,497,497,6942,6941,497,6941,6936,6936,6941,502,6936,502,499,331,505,6769,6769,505,6946,6769,6946,6945,6769,6945,6768,6768,6945,6943,6768,6943,6944,6768,6944,330,6943,6945,503,334,340,6950,334,6950,6949,334,6949,6773,6773,6949,508,6773,508,333,333,508,506,6950,340,6951,6951,340,6959,6951,6959,6952,6952,6959,6958,6952,6958,511,511,6958,514,514,6958,520,514,520,517,343,346,6975,343,6975,6785,6785,6975,6962,6785,6962,342,6962,6975,529,6962,529,6972,6962,6972,6961,6961,6972,526,6961,526,521,521,526,523,349,538,6976,349,6976,348,6976,538,532,6976,532,530,532,538,535,6793,355,15450,6793,15450,352,352,15450,15449,352,15449,351,351,15449,539,539,15449,541,541,15449,15450,541,15450,544,544,15450,355,358,553,357,357,553,550,357,550,547,357,547,545,554,360,556,361,367,370,361,370,7003,361,7003,6799,6799,7003,556,6799,556,360,15451,15452,15453,15453,15452,15454,15453,15454,7010,15453,7010,7009,15453,7009,15451,15451,7009,7006,15451,7006,557,15451,557,7004,15451,7004,15452,15452,7004,372,15452,372,6809,15452,6809,15454,15454,6809,373,15454,373,565,15454,565,7010,565,373,568,568,373,376,557,7006,559,7006,7009,562,15457,15456,15459,15455,15456,15457,15458,15457,15460,15458,15460,15461,15460,15459,15465,15457,15459,15460,15461,15460,15466,15462,15461,15466,15463,15462,15466,15464,15463,15466,15465,15464,15466,15460,15465,15466,15465,15459,7018,15465,7018,577,15465,577,15464,15464,577,574,15464,574,15463,15463,574,571,15463,571,15462,15462,571,569,15462,569,378,15462,378,381,15462,381,15461,15461,381,15458,15458,381,589,15458,589,7025,15458,7025,15457,15457,7025,15455,15455,7025,586,15455,586,15456,15456,586,583,15456,583,580,15456,580,7018,15456,7018,15459,384,387,6815,6815,387,592,6815,592,590,6815,590,383,390,393,6819,6819,393,7039,6819,7039,389,389,7039,7038,389,7038,593,593,7038,598,593,598,595,15468,15472,15473,15469,15468,15473,15471,15470,15474,15473,15472,15474,15470,15473,15474,15474,15472,7042,15474,7042,395,15474,395,15471,15471,395,396,15471,396,399,15471,399,402,15471,402,7052,15471,7052,15470,15470,7052,604,15470,604,7046,15470,7046,7045,15470,7045,15473,15473,7045,15469,15469,7045,7044,15469,7044,15468,15468,7044,15467,15468,15467,7041,15468,7041,15472,15472,7041,7042,7041,15467,599,599,15467,601,601,15467,7043,7043,15467,7044,15477,15476,15478,15477,15478,6833,15477,6833,15475,15477,15475,15476,15476,15475,615,15476,615,610,15476,610,605,15476,605,15478,15478,605,7054,15478,7054,404,15478,404,6833,605,610,607,615,15475,618,618,15475,623,623,15475,405,405,15475,6833,408,626,407,407,626,624,15480,15479,15481,15480,15481,644,15480,644,641,15480,641,638,15480,638,7072,15480,7072,15479,15479,7072,635,15479,635,632,15479,632,629,15479,629,15481,15481,629,7069,15481,7069,15483,15481,15483,416,15481,416,644,416,15483,6847,6847,15483,15482,6847,15482,413,413,15482,410,410,15482,627,627,15482,7068,7068,15482,15483,7068,15483,7069,419,645,418,15485,15489,15490,15486,15485,15490,15486,15490,15491,15487,15486,15491,15488,15487,15491,15488,15491,15492,15490,15489,15493,15490,15493,15494,15491,15490,15494,15492,15491,15494,15492,15494,6850,15492,6850,6851,15492,6851,7088,15492,7088,15488,15488,7088,7087,15488,7087,15487,15487,7087,15484,15487,15484,15486,15486,15484,650,15486,650,15485,15485,650,647,15485,647,7076,15485,7076,15489,15489,7076,642,15489,642,643,15489,643,15493,15493,643,421,15493,421,15494,15494,421,6850,650,15484,655,655,15484,658,658,15484,7087,7088,6851,422,425,6411,447,425,447,6884,425,6884,424,424,6884,15495,424,15495,7091,7091,15495,6890,7091,6890,6891,7091,6891,6892,7091,6892,7090,7090,6892,451,7090,451,664,7090,664,659,659,664,661,6890,15495,448,448,15495,6884,428,6412,427,431,444,445,431,445,430,430,445,6410,434,439,442,434,442,433,15497,15496,15499,15497,15499,15500,15498,15497,15500,15498,15500,15501,15498,15501,676,15498,676,673,15498,673,15497,15497,673,670,15497,670,7102,15497,7102,15496,15496,7102,667,15496,667,7098,15496,7098,15499,15499,7098,15503,15499,15503,15500,15500,15503,6896,15500,6896,15501,15501,6896,454,15501,454,457,15501,457,676,6896,15503,6895,6895,15503,453,453,15503,15502,453,15502,665,665,15502,7098,7098,15502,15503,15504,15505,15506,15505,15507,15508,15506,15505,15508,15506,15508,15509,15508,15507,15510,15508,15510,15509,15509,15510,463,15509,463,466,15509,466,7127,15509,7127,15506,15506,7127,15504,15504,7127,688,15504,688,7120,15504,7120,682,15504,682,15505,15505,682,679,15505,679,15507,15507,679,677,15507,677,6906,15507,6906,15510,15510,6906,460,15510,460,463,6906,677,459,7120,688,685,6912,472,15512,6912,15512,6908,6912,6908,469,6908,15512,468,468,15512,15511,468,15511,7129,7129,15511,689,689,15511,691,691,15511,15512,691,15512,472,475,692,474,478,703,6914,6914,703,15516,6914,15516,477,477,15516,15515,477,15515,690,690,15515,15514,690,15514,15513,690,15513,687,687,15513,686,686,15513,697,686,697,694,697,15513,700,700,15513,7142,7142,15513,15514,7142,15514,15515,7142,15515,7143,7143,15515,15516,7143,15516,703,483,715,480,480,715,7161,480,7161,7160,480,7160,704,704,7160,706,706,7160,709,7161,715,712,486,718,716,486,716,485,7170,727,724,7170,724,7167,7170,7167,7166,7170,7166,489,489,7166,719,489,719,488,7167,724,721,15518,15517,15520,15518,15520,15521,15519,15518,15521,15521,15520,15523,15522,15521,15523,15522,15523,6938,15522,6938,498,15522,498,730,15522,730,7173,15522,7173,15521,15521,7173,15519,15519,7173,728,15519,728,15518,15518,728,7171,15518,7171,15517,15517,7171,491,15517,491,492,15517,492,15520,15520,492,6934,15520,6934,15523,15523,6934,495,15523,495,6938,15524,15525,15526,15526,15525,15527,15526,15527,15528,15526,15528,738,15526,738,7181,15526,7181,15524,15524,7181,7180,15524,7180,731,15524,731,500,15524,500,501,15524,501,15525,15525,501,6947,15525,6947,15527,15527,6947,6948,15527,6948,504,15527,504,15529,15527,15529,15528,15528,15529,741,15528,741,738,741,15529,507,507,15529,504,731,7180,735,15530,15532,15533,15531,15530,15533,15531,15533,15534,15532,15536,15537,15533,15532,15537,15533,15537,15538,15534,15533,15538,15535,15539,15540,15536,15535,15540,15537,15536,15540,15537,15540,15541,15538,15537,15541,15540,15539,15542,15541,15540,15542,15541,15542,6953,15541,6953,6954,15541,6954,15538,15538,6954,6955,15538,6955,15534,15534,6955,6956,15534,6956,15531,15531,6956,510,15531,510,747,15531,747,15530,15530,747,7186,15530,7186,15532,15532,7186,7185,15532,7185,15536,15536,7185,7184,15536,7184,15535,15535,7184,744,15535,744,15539,15539,744,742,15539,742,15542,15542,742,509,15542,509,6953,513,750,748,513,748,512,516,756,751,516,751,515,751,756,753,519,522,518,518,522,7208,518,7208,757,757,7208,759,759,7208,765,759,765,762,773,768,776,525,779,524,524,779,7211,7211,779,776,7211,776,766,766,776,768,528,531,791,528,791,788,528,788,6974,6974,788,785,6974,785,7219,6974,7219,780,6974,780,527,7219,785,782,534,797,533,533,797,792,792,797,794,537,540,800,537,800,798,537,798,536,543,546,542,542,546,806,542,806,801,801,806,803,549,560,807,549,807,548,807,560,7008,807,7008,561,807,561,809,809,561,812,812,561,815,552,555,558,552,558,551,15543,15545,15546,15543,15546,15547,15544,15543,15547,15545,15548,15549,15546,15545,15549,15547,15546,15549,15549,15548,15550,15549,15550,7254,15549,7254,15547,15547,7254,7253,15547,7253,15544,15544,7253,821,15544,821,818,15544,818,816,15544,816,15543,15543,816,563,15543,563,7011,15543,7011,15545,15545,7011,7012,15545,7012,15548,15548,7012,564,15548,564,572,15548,572,15550,15550,572,573,15550,573,7254,567,570,566,15551,15553,15554,15552,15551,15554,15552,15554,15555,15554,15553,15557,15554,15557,15558,15555,15554,15558,15555,15558,15559,15556,15555,15559,15556,15559,15560,15557,15561,15562,15558,15557,15562,15558,15562,15563,15559,15558,15563,15559,15563,15564,15560,15559,15564,15561,15565,15566,15562,15561,15566,15563,15562,15566,15563,15566,15567,15564,15563,15567,15566,15565,15568,15567,15566,15568,15567,15568,7267,15567,7267,7266,15567,7266,15564,15564,7266,7265,15564,7265,15560,15560,7265,7264,15560,7264,15556,15556,7264,827,15556,827,15552,15556,15552,15555,15552,827,7261,15552,7261,7260,15552,7260,15551,15551,7260,824,15551,824,822,15551,822,7256,15551,7256,15553,15553,7256,15557,15557,7256,7257,15557,7257,15561,15561,7257,575,15561,575,15565,15565,575,576,15565,576,7268,15565,7268,15568,15568,7268,7267,15570,15569,15574,15570,15574,15575,15571,15570,15575,15571,15575,15576,15573,15572,15577,15573,15577,15578,15575,15574,15579,15575,15579,15580,15576,15575,15580,15577,15576,15580,15572,15576,15577,15578,15577,15581,15578,15581,15582,15580,15579,15583,15581,15580,15583,15577,15580,15581,15581,15583,7272,15581,7272,7273,15581,7273,15582,15582,7273,578,15582,578,7020,15582,7020,15578,15578,7020,579,15578,579,15573,15573,579,830,15573,830,15572,15572,830,7278,15572,7278,15576,15576,7278,7277,15576,7277,15571,15571,7277,7276,15571,7276,15570,15570,7276,7275,15570,7275,15569,15569,7275,7274,15569,7274,7269,15569,7269,7270,15569,7270,15574,15574,7270,7271,15574,7271,15579,15579,7271,15583,15583,7271,7272,7269,7274,828,582,839,15584,582,15584,581,581,15584,831,831,15584,833,833,15584,836,836,15584,839,7290,848,842,7290,842,840,7290,840,585,585,840,584,842,848,845,588,591,7026,7026,591,15585,7026,15585,587,587,15585,7291,7291,15585,849,849,15585,851,851,15585,594,594,15585,591,597,600,852,597,852,596,852,600,854,854,600,862,854,862,857,603,606,15587,603,15587,7050,7050,15587,15589,7050,15589,7049,7049,15589,15588,7049,15588,7048,7048,15588,15586,7048,15586,7047,7047,15586,7303,7047,7303,602,602,7303,863,7303,15586,7304,7304,15586,865,865,15586,15588,865,15588,15589,865,15589,870,870,15589,873,873,15589,15587,873,15587,606,609,885,608,608,885,882,608,882,874,874,882,876,876,882,879,15591,15593,15594,15593,15592,15596,15594,15593,15596,15594,15596,7322,15594,7322,15595,15594,15595,15591,15591,15595,611,15591,611,614,15591,614,902,15591,902,897,15591,897,15593,15593,897,15592,15592,897,894,15592,894,15590,15592,15590,7325,15592,7325,7324,15592,7324,15596,15596,7324,7323,15596,7323,7322,7325,15590,7326,7326,15590,7327,7327,15590,894,7327,894,891,7327,891,888,611,15595,7321,611,7321,886,7321,15595,7322,617,903,616,15599,15598,15600,15599,15600,7352,15599,7352,898,15599,898,15598,15598,898,619,15598,619,622,15598,622,625,15598,625,7070,15598,7070,15600,15600,7070,7071,15600,7071,15597,15600,15597,7352,7352,15597,905,905,15597,908,908,15597,628,628,15597,7071,619,898,901,631,914,909,631,909,630,909,914,911,634,915,633,637,923,7370,637,7370,7073,7073,7370,920,7073,920,917,7073,917,636,636,917,912,636,912,913,7077,646,926,7077,926,924,7077,924,639,7077,639,640,649,938,648,648,938,7376,648,7376,927,7376,938,929,929,938,935,929,935,932,654,662,7387,654,7387,7386,654,7386,651,651,7386,939,7387,662,663,7387,663,7388,7388,663,7389,7389,663,7101,7389,7101,941,941,7101,944,944,7101,666,944,666,947,947,666,950,657,660,656,669,964,961,669,961,7103,7103,961,958,7103,958,951,7103,951,668,951,958,953,969,965,972,672,680,978,672,978,975,672,975,671,671,975,972,671,972,965,978,680,983,983,680,681,983,681,986,986,681,989,989,681,995,989,995,992,675,678,674,684,693,996,684,996,7121,7121,996,683,696,1007,998,696,998,993,696,993,994,696,994,695,998,1007,1004,998,1004,1001,699,1010,698,698,1010,1008,702,705,15603,702,15603,7147,7147,15603,7146,7146,15603,7449,7146,7449,15602,7146,15602,15601,7146,15601,701,701,15601,1011,1011,15601,1013,1013,15601,1019,1013,1019,1016,1019,15601,15602,1019,15602,7449,7449,15603,1022,1022,15603,705,708,1037,15604,708,15604,707,707,15604,1023,1023,15604,7452,7452,15604,1025,1025,15604,1037,1025,1037,7454,7454,1037,1034,7454,1034,1028,1028,1034,1031,15605,15606,15607,15606,15609,15610,15607,15606,15610,15607,15610,15611,15608,15607,15611,15610,15609,15612,15610,15612,15613,15611,15610,15613,15611,15613,7477,15611,7477,1049,15611,1049,15608,15608,1049,7473,15608,7473,15605,15608,15605,15607,15605,7473,1046,15605,1046,1043,15605,1043,1040,15605,1040,7463,15605,7463,15606,15606,7463,1038,15606,1038,710,15606,710,15609,15609,710,7162,15609,7162,15612,15612,7162,7163,15612,7163,15613,15613,7163,711,15613,711,7477,714,717,713,713,717,7168,713,7168,7479,7479,7168,7169,7479,7169,1050,1050,7169,720,1050,720,1052,7486,1058,7484,7486,7484,15614,7486,15614,7487,7487,15614,1053,7487,1053,7488,7488,1053,722,7488,722,723,1053,15614,1055,1055,15614,7484,15615,15617,15618,15615,15618,15619,15616,15620,15621,15616,15621,15622,15617,15616,15622,15617,15622,15623,15618,15617,15623,15618,15623,15624,15619,15618,15624,15619,15624,15625,15620,15627,15628,15621,15620,15628,15622,15621,15628,15622,15628,15629,15623,15622,15629,15629,15628,15630,15629,15630,734,15629,734,15623,15623,734,15624,15624,734,754,15624,754,15625,15625,754,15626,15625,15626,7493,15625,7493,15619,15619,7493,7492,15619,7492,15615,15615,7492,1059,15615,1059,7489,15615,7489,15617,15617,7489,15616,15616,7489,7490,15616,7490,7491,15616,7491,15620,15620,7491,725,15620,725,15627,15627,725,726,15627,726,7175,15627,7175,15628,15628,7175,15630,15630,7175,729,15630,729,734,7493,15626,7494,7494,15626,758,758,15626,755,755,15626,754,15631,15633,15634,15631,15634,15635,15631,15635,15632,15633,15636,15637,15633,15637,15638,15634,15633,15638,15634,15638,15639,15635,15634,15639,15635,15639,15640,15635,15640,15641,15632,15635,15641,15636,15642,15643,15637,15636,15643,15637,15643,15644,15638,15637,15644,15638,15644,15645,15639,15638,15645,15639,15645,15646,15639,15646,15647,15640,15639,15647,15644,15643,15648,15644,15648,15649,15645,15644,15649,15645,15649,15650,15646,15645,15650,15646,15650,15651,15649,15648,15652,15649,15652,15653,15650,15649,15653,15650,15653,7187,15650,7187,15651,15651,7187,7188,15651,7188,15647,15651,15647,15646,15647,7188,7189,15647,7189,746,15647,746,15640,15640,746,15641,15641,746,749,15641,749,15632,15632,749,752,15632,752,15631,15631,752,736,15631,736,15636,15631,15636,15633,15636,736,15642,15642,736,7182,15642,7182,7183,15642,7183,15648,15642,15648,15643,15648,7183,737,15648,737,15652,15652,737,745,15652,745,15653,15653,745,7187,740,743,739,769,772,761,761,772,760,760,772,7497,7497,772,1070,7497,1070,7496,7496,1070,1067,7496,1067,7495,7495,1067,1064,7495,1064,1057,1057,1064,7485,7485,1064,1061,7485,1061,1056,764,767,763,775,1073,1071,775,1071,774,7221,781,15654,7221,15654,15655,7221,15655,778,778,15655,777,777,15655,7514,777,7514,1074,7514,15655,7515,7515,15655,15654,7515,15654,7516,7516,15654,1079,7516,1079,1076,1079,15654,1082,1082,15654,781,784,1085,783,783,1085,1083,15658,15662,15663,15659,15658,15663,15661,15660,15665,15662,15661,15666,15663,15662,15666,15664,15663,15666,15661,15665,15666,15666,15665,1094,15666,1094,15664,15664,1094,7534,15664,7534,15659,15664,15659,15663,15659,7534,7533,15659,7533,15657,15659,15657,15658,15658,15657,787,15658,787,7546,15658,7546,15662,15662,7546,7545,15662,7545,15661,15661,7545,7544,15661,7544,15660,15660,7544,1100,15660,1100,7541,15660,7541,1097,15660,1097,7538,15660,7538,15665,15665,7538,1094,787,15657,786,786,15657,15656,786,15656,1086,1086,15656,1088,1088,15656,1091,1091,15656,7532,7532,15656,15657,7532,15657,7533,790,793,7548,790,7548,7549,790,7549,789,7548,793,7547,7547,793,1103,7547,1103,1101,796,799,802,796,802,795,795,802,15667,795,15667,1104,1104,15667,1109,1104,1109,1106,1109,15667,802,805,808,15668,805,15668,804,804,15668,1110,1110,15668,7565,7565,15668,15669,7565,15669,7566,7566,15669,7571,7566,7571,1112,7571,15669,808,808,15669,15668,7582,1123,1113,7582,1113,7573,7582,7573,811,811,7573,810,1113,1123,1117,1117,1123,1120,814,817,15673,814,15673,15671,814,15671,813,813,15671,7583,7583,15671,15672,7583,15672,15670,7583,15670,1124,1124,15670,1126,1126,15670,7588,1126,7588,1129,7588,15670,7589,7589,15670,15672,7589,15672,7590,7590,15672,15673,7590,15673,1132,1132,15673,817,15673,15672,15671,820,823,819,819,823,1133,15674,15676,15677,15674,15677,15678,15675,15674,15678,15675,15678,15679,15675,15679,1135,15675,1135,1130,15675,1130,7591,15675,7591,15674,15674,7591,7592,15674,7592,15676,15676,7592,7593,15676,7593,7262,15676,7262,7263,15676,7263,15677,15677,7263,826,15677,826,7279,15677,7279,15678,15678,7279,7280,15678,7280,15679,15679,7280,7281,15679,7281,7600,15679,7600,7599,15679,7599,1135,7600,7281,7282,7600,7282,7601,7601,7282,7283,7601,7283,832,832,7283,829,7262,7593,1131,7262,1131,825,835,1144,7614,835,7614,834,834,7614,15682,834,15682,7605,7605,15682,15681,7605,15681,15680,7605,15680,7604,7604,15680,7603,7603,15680,7607,7603,7607,7606,7603,7606,1136,7607,15680,7608,7608,15680,15681,7608,15681,1138,1138,15681,1141,1141,15681,15682,1141,15682,7614,838,841,1147,838,1147,1145,838,1145,837,1153,1150,1158,844,1164,1158,844,1158,1150,844,1150,843,843,1150,1148,1158,1164,1161,847,850,853,847,853,1165,847,1165,846,856,1172,855,855,1172,1167,855,1167,1163,1163,1167,1162,7307,864,1180,7307,1180,1177,7307,1177,7306,7306,1177,7635,7306,7635,861,861,7635,1173,861,1173,858,869,877,866,866,877,15683,866,15683,15684,866,15684,1181,1181,15684,7644,7644,15684,15685,7644,15685,1183,1183,15685,15686,1183,15686,1186,1186,15686,7653,1186,7653,1189,7653,15686,7654,7654,15686,15685,7654,15685,15684,7654,15684,7655,7655,15684,15683,7655,15683,1192,1192,15683,878,878,15683,877,872,875,871,881,1195,1193,881,1193,880,15687,15688,15689,15689,15688,15693,15689,15693,15694,15690,15695,15696,15691,15690,15696,15693,15692,15699,15688,15692,15693,15694,15693,15700,15694,15700,15701,15695,15702,15703,15696,15695,15703,15697,15696,15703,15697,15703,15704,15698,15697,15704,15699,15698,15704,15700,15699,15704,15693,15699,15700,15701,15700,15705,15703,15702,15705,15704,15703,15705,15700,15704,15705,15705,15702,7330,15705,7330,15701,15701,7330,7331,15701,7331,7332,15701,7332,15694,15694,7332,15689,15689,7332,7333,15689,7333,15687,15687,7333,7334,15687,7334,7670,15687,7670,7669,15687,7669,15688,15688,7669,7668,15688,7668,15692,15692,7668,7667,15692,7667,15699,15699,7667,15698,15698,7667,1198,15698,1198,15697,15697,1198,1196,15697,1196,15691,15697,15691,15696,15691,1196,883,15691,883,15690,15690,883,884,15690,884,7328,15690,7328,15695,15695,7328,7329,15695,7329,15702,15702,7329,7330,7670,7334,887,890,1210,15707,890,15707,889,889,15707,7674,7674,15707,15708,7674,15708,7673,7673,15708,7672,7672,15708,7678,7672,7678,1201,7672,1201,7671,7671,1201,1199,7678,15708,7679,7679,15708,15706,7679,15706,1204,1204,15706,1207,1207,15706,15707,1207,15707,1210,15707,15706,15708,893,1225,892,892,1225,7692,892,7692,1211,1211,7692,1222,1211,1222,1216,1211,1216,1213,1216,1222,1219,7353,904,7695,7353,7695,895,7353,895,896,895,7695,1228,895,1228,1226,907,910,1237,907,1237,15709,907,15709,906,906,15709,15710,906,15710,7696,7696,15710,1229,1229,15710,15711,1229,15711,1231,1231,15711,1234,1234,15711,7697,7697,15711,15710,7697,15710,15709,7697,15709,7698,7698,15709,1237,1237,910,916,15712,15713,15714,15713,15716,15717,15714,15713,15717,15714,15717,15718,15715,15714,15718,15717,15716,15721,15717,15721,15722,15718,15717,15722,15719,15718,15722,15719,15722,15723,15720,15719,15723,15720,15723,15724,15722,15721,15725,15723,15722,15725,15723,15725,7701,15723,7701,15724,15724,7701,1238,15724,1238,918,15724,918,15720,15720,918,919,15720,919,1252,15720,1252,15719,15719,1252,15715,15719,15715,15718,15715,1252,1249,15715,1249,15714,15714,1249,15712,15712,1249,1246,15712,1246,7707,15712,7707,15713,15713,7707,7706,15713,7706,7705,15713,7705,15716,15716,7705,7704,15716,7704,15721,15721,7704,7703,15721,7703,15725,15725,7703,7702,15725,7702,7701,7707,1246,1240,1240,1246,1243,922,925,7377,922,7377,15727,922,15727,7371,7371,15727,1253,7371,1253,921,1253,15727,15726,1253,15726,1255,1255,15726,1258,1258,15726,1261,1261,15726,928,928,15726,15727,928,15727,7377,931,1267,1264,931,1264,1262,931,1262,930,7746,1282,15729,7746,15729,1268,7746,1268,933,7746,933,934,1268,15729,15728,1268,15728,1270,1270,15728,7735,1270,7735,1273,7735,15728,1276,1276,15728,1279,1279,15728,15729,1279,15729,1282,15731,15730,15733,15731,15733,15734,15732,15737,15738,15734,15733,15740,15734,15740,15741,15735,15734,15741,15736,15735,15741,15736,15741,15742,15737,15736,15742,15738,15737,15742,15738,15742,15743,15740,15739,15744,15733,15739,15740,15741,15740,15745,15742,15741,15745,15743,15742,15745,15740,15744,15745,15745,15744,7391,15745,7391,15743,15743,7391,7392,15743,7392,15738,15738,7392,7393,15738,7393,15732,15732,7393,940,15732,940,7754,15732,7754,7753,15732,7753,15737,15737,7753,7752,15737,7752,15736,15736,7752,7751,15736,7751,15735,15735,7751,7750,15735,7750,15734,15734,7750,15731,15731,7750,7749,15731,7749,1283,15731,1283,7748,15731,7748,15730,15730,7748,936,15730,936,15739,15730,15739,15733,15739,936,937,15739,937,15744,15744,937,7390,15744,7390,7391,15746,15749,15750,15746,15750,1288,15746,1288,7767,15746,7767,15749,15749,7767,15748,15749,15748,7758,15749,7758,15750,15750,7758,7759,15750,7759,15751,15750,15751,7770,15750,7770,1288,7770,15751,942,7770,942,943,942,15751,7760,7760,15751,7759,7758,15748,7757,7757,15748,15747,7757,15747,7756,7756,15747,7755,7755,15747,7762,7755,7762,1281,1281,7762,1280,7762,15747,7763,7763,15747,15748,7763,15748,1285,1285,15748,7767,946,1312,1309,946,1309,1306,946,1306,1303,946,1303,945,945,1303,1300,945,1300,7772,7772,1300,7776,7772,7776,1289,1289,7776,1297,1289,1297,1291,1291,1297,1294,949,952,1313,949,1313,948,957,1315,1310,957,1310,954,954,1310,1311,960,970,971,960,971,1318,960,1318,1316,960,1316,959,963,968,962,974,1304,1305,974,1305,973,973,1305,1319,7807,1324,15752,7807,15752,976,7807,976,977,976,15752,1302,1302,15752,1301,1301,15752,1321,1321,15752,1324,15755,15754,15756,15755,15756,15757,15759,15758,15760,15759,15760,7809,15759,7809,7808,15759,7808,979,15759,979,15758,15758,979,982,15758,982,15757,15758,15757,7811,15758,7811,15760,15760,7811,1327,15760,1327,7809,7811,15757,7812,7812,15757,15756,7812,15756,7813,7813,15756,7814,7814,15756,15754,7814,15754,7815,7815,15754,15753,7815,15753,7816,7816,15753,7823,7816,7823,1330,7823,15753,1333,1333,15753,7826,7826,15753,15754,7826,15754,15755,7826,15755,982,982,15755,15757,7808,7809,1325,7835,1345,1334,7835,1334,7828,7835,7828,7836,7836,7828,985,985,7828,984,1334,1345,7829,7829,1345,1342,7829,1342,1339,7829,1339,1336,15762,15761,15763,15762,15763,15764,15762,15764,988,15762,988,1354,15762,1354,1351,15762,1351,1348,15762,1348,15761,15761,1348,7839,15761,7839,7837,15761,7837,15763,15763,7837,7838,15763,7838,15764,15764,7838,987,15764,987,988,7837,7839,1346,991,997,1355,991,1355,990,1000,1357,1352,1000,1352,999,999,1352,1353,1003,1014,1358,1003,1358,1002,1358,1014,7846,7846,1014,1015,7846,1015,1363,7846,1363,1360,1006,1009,1005,1005,1009,1012,7867,1375,15765,7867,15765,15766,7867,15766,7868,7868,15766,1018,1018,15766,1017,1017,15766,1364,1364,15766,15765,1364,15765,1366,1366,15765,1369,1369,15765,1372,1372,15765,1375,15767,15768,15769,15767,15769,7872,15767,7872,7871,15767,7871,7869,15767,7869,15768,15768,7869,7870,15768,7870,7451,15768,7451,15769,15769,7451,15770,15769,15770,7873,15769,7873,7872,7873,15770,7874,7874,15770,15771,7874,15771,7453,7874,7453,1024,7453,15771,1021,1021,15771,15770,1021,15770,7451,7451,7870,1020,7869,7871,1376,15773,15772,15778,15773,15778,15779,15774,15773,15779,15774,15779,15780,15775,15774,15780,15775,15780,15781,15776,15775,15781,15776,15781,15782,15777,15776,15782,15777,15782,7455,15777,7455,1027,15777,1027,1381,15777,1381,7884,15777,7884,15776,15776,7884,15775,15775,7884,7883,15775,7883,15774,15774,7883,1378,15774,1378,15773,15773,1378,7880,15773,7880,15772,15772,7880,1373,15772,1373,1374,15772,1374,15778,15778,1374,7875,15778,7875,7876,15778,7876,15779,15779,7876,7877,15779,7877,15780,15780,7877,15781,15781,7877,7878,15781,7878,15782,15782,7878,1026,15782,1026,7455,1387,1384,1390,1030,1396,1029,1029,1396,1393,1029,1393,1382,1382,1393,7896,1382,7896,7890,7890,7896,7895,7890,7895,1390,7890,1390,1384,1032,1033,1397,1395,1035,1394,7465,1039,1399,7465,1399,1394,7465,1394,1035,7465,1035,1036,1042,1419,1400,1042,1400,1041,1400,1419,15784,1400,15784,7906,7906,15784,15783,7906,15783,1402,1402,15783,7913,1402,7913,1405,1405,7913,1410,7913,15783,7914,7914,15783,7917,7914,7917,1413,1413,7917,1416,7917,15783,15784,7917,15784,7918,7918,15784,1419,1045,1420,1044,15785,15786,15787,15785,15787,15788,15787,15786,15790,15788,15787,15790,15788,15790,1051,15788,1051,15789,15788,15789,1422,15788,1422,1417,15788,1417,15785,15785,1417,7919,15785,7919,7920,15785,7920,15786,15786,7920,1047,15786,1047,7475,15786,7475,15790,15790,7475,1048,15790,1048,1051,1047,7920,1418,1422,15789,1425,1425,15789,1428,1428,15789,1054,1428,1054,1060,1054,15789,1051,1063,1431,1429,1063,1429,1062,15791,15792,15793,15793,15792,15794,15793,15794,15795,15793,15795,7943,15793,7943,7942,15793,7942,15791,15791,7942,7941,15791,7941,1440,15791,1440,1437,15791,1437,1434,15791,1434,7934,15791,7934,15792,15792,7934,1432,15792,1432,1065,15792,1065,15794,15794,1065,1066,15794,1066,7948,15794,7948,15795,15795,7948,1443,15795,1443,7943,15796,15799,15800,15797,15796,15800,15798,15801,15802,15799,15798,15802,15799,15802,15800,15800,15802,7518,15800,7518,7519,15800,7519,15797,15797,7519,1075,15797,1075,1452,15797,1452,1446,15797,1446,15796,15796,1446,7952,15796,7952,1444,15796,1444,15799,15799,1444,15798,15798,1444,7950,15798,7950,1068,15798,1068,15801,15801,1068,1069,15801,1069,1072,15801,1072,7517,15801,7517,15802,15802,7517,7518,1446,1452,1449,1078,1473,1077,1077,1473,15803,1077,15803,1453,1453,15803,1455,1455,15803,1458,1458,15803,1464,1458,1464,1461,1464,15803,1470,1464,1470,1467,1470,15803,1473,1081,1084,1087,1081,1087,1080,1080,1087,1476,1080,1476,1474,15804,15807,15808,15805,15804,15808,15805,15808,15809,15805,15809,15810,15806,15805,15810,15808,15807,15811,15808,15811,15812,15809,15808,15812,15809,15812,15813,15809,15813,15810,15810,15813,7993,15810,7993,7992,15810,7992,7991,15810,7991,15806,15806,7991,1482,15806,1482,1479,15806,1479,15805,15805,1479,7986,15805,7986,15804,15804,7986,1477,15804,1477,15807,15807,1477,1089,15807,1089,15811,15811,1089,1090,15811,1090,7995,15811,7995,15812,15812,7995,7994,15812,7994,15813,15813,7994,7993,15815,15814,15816,15815,15816,8006,15815,8006,8005,15815,8005,7998,15815,7998,7999,15815,7999,15814,15814,7999,8000,15814,8000,7535,15814,7535,7536,15814,7536,15816,15816,7536,7537,15816,7537,8007,15816,8007,8006,8007,7537,1093,7535,8000,1092,7998,8005,7997,7997,8005,8004,7997,8004,7996,7996,8004,8003,7996,8003,1483,1483,8003,1485,15817,15819,15820,15819,15818,15822,15819,15822,15823,15820,15819,15823,15820,15823,15824,15821,15820,15824,15821,15824,15825,15822,15826,15827,15823,15822,15827,15824,15823,15827,15824,15827,15828,15825,15824,15828,15827,15826,15829,15828,15827,15829,15828,15829,7539,15828,7539,15825,15825,7539,1096,15825,1096,15821,15821,1096,1488,15821,1488,1486,15821,1486,15820,15820,1486,15817,15817,1486,8008,15817,8008,8009,15817,8009,15819,15819,8009,15818,15818,8009,8010,15818,8010,8011,15818,8011,15822,15822,8011,15826,15826,8011,8012,15826,8012,1095,15826,1095,15829,15829,1095,7539,1099,1102,1105,1099,1105,7543,7543,1105,8027,7543,8027,1098,1098,8027,1494,1098,1494,1489,1489,1494,1491,15832,15831,15833,15832,15833,8037,15832,8037,1497,15832,1497,8033,15832,8033,15831,15831,8033,8032,15831,8032,15830,15831,15830,15833,15833,15830,7569,15833,7569,1111,15833,1111,1116,15833,1116,8037,7569,15830,7568,7568,15830,8030,7568,8030,1107,7568,1107,1108,8030,15830,8032,8030,8032,1495,8057,1515,1509,8057,1509,1506,8057,1506,1503,8057,1503,15834,8057,15834,1119,1119,15834,8038,1119,8038,1118,8038,15834,1498,1498,15834,1500,1500,15834,1503,1509,1515,1512,15835,15836,15837,15836,15839,15840,15837,15836,15840,15837,15840,8069,15837,8069,1521,15837,1521,8066,15837,8066,15835,15835,8066,1518,15835,1518,1516,15835,1516,8060,15835,8060,15836,15836,8060,15838,15836,15838,15839,15839,15838,8071,15839,8071,8070,15839,8070,15840,15840,8070,8069,8071,15838,1125,1125,15838,1122,1122,15838,1121,1121,15838,8060,1128,1134,8074,1128,8074,1127,8074,1134,7609,8074,7609,8073,8073,7609,7610,8073,7610,8072,8072,7610,15841,8072,15841,1522,1522,15841,8075,8075,15841,7611,8075,7611,8076,8076,7611,1137,7611,15841,7610,1140,1536,1533,1140,1533,15842,1140,15842,1139,1139,15842,8078,8078,15842,8087,8078,8087,8077,8077,8087,8086,8077,8086,1520,1520,8086,1527,1520,1527,8068,8068,1527,8082,8068,8082,1519,1519,8082,1524,8087,15842,1530,1530,15842,1533,1143,1146,15843,1143,15843,7615,7615,15843,1537,7615,1537,1142,1537,15843,8093,8093,15843,1146,8093,1146,1149,8097,1542,8094,8097,8094,1151,8097,1151,1152,8094,1542,1535,1535,1542,8095,1535,8095,1534,1534,8095,1539,1157,1168,7636,1157,7636,15844,1157,15844,8098,1157,8098,1154,8098,15844,1543,1543,15844,8099,8099,15844,7636,8099,7636,1176,7636,1168,1171,1160,1166,1159,15845,15848,15849,15846,15845,15849,15848,15847,15850,15849,15848,15850,15849,15850,8104,15849,8104,8103,15849,8103,15846,15846,8103,8096,15846,8096,1541,15846,1541,15845,15845,1541,8100,15845,8100,15848,15848,8100,1178,15848,1178,15847,15847,1178,1179,15847,1179,7646,15847,7646,15850,15850,7646,1182,15850,1182,8104,8096,8103,1540,1540,8103,1545,15852,15851,15853,15852,15853,1554,15852,1554,1551,15852,1551,8111,15852,8111,15851,15851,8111,8110,15851,8110,8105,15851,8105,8106,15851,8106,15853,15853,8106,1184,15853,1184,1185,15853,1185,1554,8105,8110,1546,1546,8110,1548,1188,1566,1557,1188,1557,1555,1188,1555,1187,1557,1566,1560,1560,1566,1563,15857,15856,15858,15855,15857,15858,15858,15856,7658,15858,7658,1194,15858,1194,1197,15858,1197,15855,15855,1197,1200,15855,1200,8132,15855,8132,8131,15855,8131,15857,15857,8131,15854,15857,15854,15856,15856,15854,7656,15856,7656,7657,15856,7657,7658,7656,15854,1190,1190,15854,1567,1567,15854,8131,1194,7658,1191,1203,1575,1572,1203,1572,7682,7682,1572,8140,7682,8140,7681,7681,8140,15859,7681,15859,1202,1202,15859,8134,8134,15859,8136,8134,8136,8133,8133,8136,1564,8133,1564,1565,8136,15859,1569,1569,15859,8140,1206,1586,1583,1206,1583,1578,1206,1578,1576,1206,1576,1205,1209,1212,1587,1209,1587,1208,8164,1603,1591,8164,1591,1584,8164,1584,1585,8164,1585,1215,1215,1585,1214,1591,1603,1594,1594,1603,1600,1594,1600,1597,1218,1609,8167,1218,8167,15860,1218,15860,1217,1217,15860,8165,8165,15860,8166,8165,8166,1604,8166,15860,8167,8167,1609,1606,1612,1610,1221,1221,1610,1220,1224,1227,1230,1224,1230,7694,7694,1230,8187,7694,8187,8186,7694,8186,15862,7694,15862,1223,1223,15862,15861,1223,15861,1613,1613,15861,1615,1615,15861,1618,1618,15861,8184,1618,8184,1627,1618,1627,1624,1618,1624,1621,8184,15861,8185,8185,15861,15862,8185,15862,8186,15863,15866,15864,15863,15864,15865,15864,15866,15868,15864,15868,15867,15868,15869,15870,15867,15868,15870,15869,15871,15872,15870,15869,15872,15870,15872,13863,15870,13863,13862,15870,13862,15867,15867,13862,13861,15867,13861,15864,15864,13861,15865,15865,13861,13860,15865,13860,1241,15865,1241,1242,15865,1242,15863,15863,1242,1628,15863,1628,8188,15863,8188,15866,15866,8188,8189,15866,8189,8190,15866,8190,15868,15868,8190,15869,15869,8190,8191,15869,8191,15871,15871,8191,1232,15871,1232,13865,15871,13865,13864,15871,13864,15872,15872,13864,13863,13865,1232,1233,15873,15875,15876,15875,15874,15877,15875,15877,15878,15876,15875,15878,15876,15878,15879,15878,15877,15881,15878,15881,15882,15879,15878,15882,15879,15882,15883,15881,15880,15884,15877,15880,15881,15882,15881,15885,15882,15885,15886,15883,15882,15886,15885,15884,15890,15881,15884,15885,15886,15885,15891,15887,15886,15891,15888,15887,15891,15889,15888,15891,15890,15889,15891,15885,15890,15891,15890,15884,13871,15890,13871,1235,15890,1235,15889,15889,1235,7699,15889,7699,7700,15889,7700,15888,15888,7700,7708,15888,7708,15887,15887,7708,7709,15887,7709,7710,15887,7710,15886,15886,7710,15883,15883,7710,7711,15883,7711,15879,15879,7711,7712,15879,7712,15876,15876,7712,7713,15876,7713,15873,15873,7713,7714,15873,7714,13866,15873,13866,13867,15873,13867,13868,15873,13868,15874,15873,15874,15875,15874,13868,13869,15874,13869,15880,15874,15880,15877,15880,13869,13870,15880,13870,15884,15884,13870,13871,13866,7714,1239,7708,7700,1236,8204,1639,1626,8204,1626,8205,8205,1626,1244,8205,1244,1245,1626,1639,1625,1625,1639,1636,1625,1636,1633,1625,1633,1630,15892,15895,15893,15894,15898,15899,15893,15895,15901,15893,15901,15896,15893,15896,15897,15897,15896,15902,15897,15902,15903,15898,15897,15903,15898,15903,15904,15899,15898,15904,15899,15904,15905,15900,15899,15905,15896,15901,15902,15902,15901,8207,15902,8207,1247,15902,1247,15903,15903,1247,1248,15903,1248,15904,15904,1248,15905,15905,1248,1256,15905,1256,1257,15905,1257,15900,15900,1257,1645,15900,1645,8218,15900,8218,8217,15900,8217,15899,15899,8217,15894,15894,8217,8216,15894,8216,8215,15894,8215,13910,15894,13910,13911,15894,13911,15898,15898,13911,15897,15897,13911,6419,15897,6419,13907,15897,13907,15893,15893,13907,13908,15893,13908,15892,15892,13908,13909,15892,13909,8215,15892,8215,8214,15892,8214,1642,15892,1642,15895,15895,1642,8210,15895,8210,8206,15895,8206,15901,15901,8206,8207,8206,8210,1640,8215,13909,13910,1251,1254,1250,1260,1263,1646,1260,1646,1259,1266,1269,8223,1266,8223,1265,1265,8223,1644,8223,1269,8222,8222,1269,1656,8222,1656,8221,8221,1656,1651,8221,1651,15906,8221,15906,8220,8220,15906,8219,8219,15906,1648,8219,1648,1643,1648,15906,1651,1272,1657,1271,1275,1673,8248,1275,8248,7738,7738,8248,8247,7738,8247,1274,1274,8247,1655,1655,8247,8246,1655,8246,1652,1652,8246,8245,1652,8245,1659,1659,8245,1670,1659,1670,1662,1662,1670,1665,15907,15911,15912,15908,15907,15912,15908,15912,15913,15909,15908,15913,15909,15913,15914,15910,15909,15914,15910,15914,15915,15912,15911,15916,15912,15916,15917,15913,15912,15917,15913,15917,15918,15914,15913,15918,15914,15918,15919,15915,15914,15919,15915,15919,8269,15915,8269,1685,15915,1685,15910,15910,1685,1682,15910,1682,8266,15910,8266,15909,15909,8266,8265,15909,8265,15908,15908,8265,15907,15907,8265,1679,15907,1679,1676,15907,1676,15911,15911,1676,1674,15911,1674,1277,15911,1277,15916,15916,1277,1278,15916,1278,7765,15916,7765,15917,15917,7765,7766,15917,7766,15918,15918,7766,15919,15919,7766,1284,15919,1284,8269,1287,1290,7768,7768,1290,15920,7768,15920,8270,7768,8270,1286,8270,15920,1686,1686,15920,1688,1688,15920,1691,1691,15920,1694,1694,15920,1290,1293,1695,1292,1296,1700,1295,1295,1700,1693,1693,1700,1697,1693,1697,1692,1299,1320,7778,7778,1320,1712,7778,1712,8291,7778,8291,15921,7778,15921,1298,1298,15921,1701,1701,15921,15922,1701,15922,8283,8283,15922,8284,8284,15922,8290,8284,8290,1703,1703,8290,1709,1703,1709,1706,8290,15922,8291,8291,15922,15921,1308,1314,1307,1307,1314,1317,15923,15926,15927,15924,15923,15927,15925,15930,15931,15926,15925,15931,15926,15931,15932,15927,15926,15932,15928,15927,15932,15930,15937,15938,15931,15930,15938,15932,15931,15938,15933,15932,15938,15928,15932,15933,15934,15933,15939,15935,15934,15939,15936,15935,15939,15937,15936,15939,15938,15937,15939,15933,15938,15939,15937,15930,8314,15937,8314,15936,15936,8314,8313,15936,8313,8312,15936,8312,15929,15936,15929,15935,15935,15929,8303,15935,8303,15934,15934,8303,8302,15934,8302,8301,15934,8301,15933,15933,8301,15928,15928,8301,8300,15928,8300,15927,15927,8300,8299,15927,8299,15924,15924,8299,1713,15924,1713,1322,15924,1322,15923,15923,1322,1323,15923,1323,7810,15923,7810,15926,15926,7810,15925,15925,7810,1326,15925,1326,8316,15925,8316,15930,15930,8316,8315,15930,8315,8314,8303,15929,8304,8304,15929,8311,8304,8311,1715,8311,15929,8312,15940,15942,15943,15942,15941,15946,15942,15946,15947,15943,15942,15947,15943,15947,15948,15944,15943,15948,15945,15944,15948,15945,15948,15949,15948,15947,15952,15948,15952,15953,15949,15948,15953,15949,15953,15954,15950,15949,15954,15951,15950,15954,15951,15954,8321,15951,8321,8322,15951,8322,7817,15951,7817,7818,15951,7818,15950,15950,7818,7819,15950,7819,15945,15950,15945,15949,15945,7819,7820,15945,7820,7821,15945,7821,15944,15944,7821,15940,15944,15940,15943,15940,7821,7822,15940,7822,1329,15940,1329,15942,15942,1329,8323,15942,8323,15941,15941,8323,1718,15941,1718,1716,15941,1716,15946,15946,1716,8317,15946,8317,8318,15946,8318,15952,15946,15952,15947,15952,8318,8319,15952,8319,15953,15953,8319,8320,15953,8320,15954,15954,8320,8321,7817,8322,1328,15956,15955,15958,15956,15958,15959,15957,15956,15959,15957,15959,1331,15957,1331,7824,15957,7824,7830,15957,7830,15956,15956,7830,1335,15956,1335,8328,15956,8328,15955,15955,8328,1721,15955,1721,8325,15955,8325,15958,15958,8325,1719,15958,1719,8324,15958,8324,15959,15959,8324,1331,8325,1721,1707,8325,1707,1708,7830,7824,1332,1338,1733,1337,1337,1733,1730,1337,1730,8330,8330,1730,1727,8330,1727,1722,1722,1727,1724,8340,1739,8333,8340,8333,8332,8340,8332,8341,8341,8332,8331,8341,8331,1341,1341,8331,1340,1340,8331,1734,8333,1739,1736,7840,1347,8349,7840,8349,15962,7840,15962,1344,1344,15962,15961,1344,15961,1343,1343,15961,8344,8344,15961,15960,8344,15960,8343,8343,15960,8347,8343,8347,1740,1740,8347,1742,8347,15960,8348,8348,15960,15962,8348,15962,8349,15962,15960,15961,1350,1356,7848,1350,7848,1349,1349,7848,15966,1349,15966,8352,8352,15966,15965,8352,15965,15964,8352,15964,8351,8351,15964,15963,8351,15963,8350,8350,15963,1745,8350,1745,1743,1745,15963,1748,1748,15963,1751,1751,15963,1359,1359,15963,15964,1359,15964,15965,1359,15965,7848,7848,15965,15966,1362,1365,1361,1361,1365,1754,1361,1754,1752,1754,1365,1757,1368,1763,1760,1368,1760,1367,1367,1760,1758,7882,1377,15970,7882,15970,8375,7882,8375,1764,7882,1764,1371,1371,1764,1370,8375,15970,8376,8376,15970,15969,8376,15969,15968,8376,15968,1766,1766,15968,15967,1766,15967,8382,8382,15967,1775,8382,1775,1769,1769,1775,1772,1775,15967,1778,1778,15967,8385,8385,15967,15968,8385,15968,15969,8385,15969,8386,8386,15969,15970,8386,15970,1377,15971,15974,15975,15972,15971,15975,15972,15975,15976,15973,15972,15976,15975,15974,15977,15975,15977,15978,15976,15975,15978,15976,15978,15979,15976,15979,7892,15976,7892,15973,15973,7892,1383,15973,1383,1781,15973,1781,15972,15972,1781,1779,15972,1779,15971,15971,1779,8387,15971,8387,15974,15974,8387,8388,15974,8388,15977,15977,8388,1379,15977,1379,7885,15977,7885,15978,15978,7885,7886,15978,7886,15979,15979,7886,1380,15979,1380,7892,1385,1386,1782,1796,1793,1801,1386,1801,1782,1782,1801,1774,1774,1801,1790,1774,1790,1773,1773,1790,1787,1773,1787,1784,1790,1801,1793,15983,15982,15984,15983,15984,15985,15983,15985,8423,15983,8423,1807,15983,1807,1804,15983,1804,15982,15982,1804,8414,15982,8414,15981,15982,15981,13857,15982,13857,15984,15984,13857,13856,15984,13856,1403,15984,1403,15985,15985,1403,1404,15985,1404,8423,13857,15981,1389,1389,15981,15980,1389,15980,1388,1388,15980,1802,1802,15980,8414,8414,15980,15981,15987,15986,15988,15987,15988,7908,15987,7908,1401,15987,1401,13858,15987,13858,15986,15986,13858,13859,15986,13859,7897,15986,7897,15988,15988,7897,7898,15988,7898,1392,15988,1392,1398,15988,1398,7908,7897,13859,1391,1409,1827,8425,1409,8425,1406,8425,1827,15989,8425,15989,1808,1808,15989,8427,8427,15989,8428,8428,15989,1821,8428,1821,1816,8428,1816,1810,1810,1816,1813,1821,15989,1827,1821,1827,1824,1412,1839,15991,1412,15991,7916,7916,15991,15990,7916,15990,7915,7915,15990,1828,7915,1828,1411,1828,15990,8456,1828,8456,1830,8456,15990,1833,1833,15990,1836,1836,15990,15991,1836,15991,1839,1415,1421,1842,1415,1842,1840,1415,1840,1414,1424,1843,1423,1427,1430,15993,1427,15993,1426,1426,15993,1841,1841,15993,15992,1841,15992,1838,1838,15992,1837,1837,15992,7936,1837,7936,1433,7936,15992,1430,1430,15992,15993,1436,1845,1435,1435,1845,1835,1835,1845,1834,1439,1860,1851,1439,1851,15994,1439,15994,1438,1438,15994,1846,1846,15994,1848,1848,15994,1851,1851,1860,1854,1854,1860,1857,7954,1445,15997,7954,15997,15996,7954,15996,7946,7954,7946,1442,7946,15996,7945,7945,15996,15995,7945,15995,7944,7944,15995,1441,1441,15995,1861,1861,15995,8476,8476,15995,15997,8476,15997,8477,8477,15997,1445,15997,15995,15996,1448,1456,1447,1447,1456,15999,1447,15999,8479,8479,15999,15998,8479,15998,8478,8478,15998,1858,8478,1858,1859,1858,15998,1863,1863,15998,8485,8485,15998,15999,8485,15999,1866,1866,15999,1871,1871,15999,1457,1457,15999,1456,1451,1454,1450,1460,1872,1459,8496,1877,1874,8496,1874,1867,8496,1867,1870,8496,1870,1462,8496,1462,1463,16001,16000,16002,16001,16002,8506,16001,8506,1886,16001,1886,1883,16001,1883,1880,16001,1880,16000,16000,1880,1878,16000,1878,8497,16000,8497,16002,16002,8497,1465,16002,1465,16003,16002,16003,8507,16002,8507,8506,8507,16003,1889,1889,16003,1466,1466,16003,1465,16006,16005,16007,16006,16007,16008,16008,16007,16009,16008,16009,16010,16008,16010,1900,16008,1900,8520,16008,8520,16006,16006,8520,1897,16006,1897,1892,16006,1892,8516,16006,8516,16005,16005,8516,16004,16005,16004,1480,16005,1480,1481,16005,1481,16007,16007,1481,16009,16009,1481,1484,16009,1484,16010,16010,1484,1487,16010,1487,1490,16010,1490,1903,16010,1903,1900,1480,16004,13850,13850,16004,1890,13850,1890,1469,1469,1890,1468,1890,16004,8516,1472,1475,7988,1472,7988,1471,1471,7988,13851,13851,7988,1478,16012,16011,16013,16012,16013,16014,16014,16013,16015,1499,1912,1496,16014,16015,1909,16014,1909,1906,16014,1906,16012,16012,1906,8533,16012,8533,8532,16012,8532,16011,16011,8532,1904,16011,1904,1492,16011,1492,1493,16011,1493,8035,16011,8035,16013,16013,8035,8036,16013,8036,16015,16015,8036,1496,16015,1496,1912,16015,1912,1909,1913,1501,1915,1918,1915,1502,1502,1915,1501,1505,1927,1924,1505,1924,1921,1505,1921,1919,1505,1919,1504,1508,1928,1507,1511,1936,1510,1510,1936,1933,1510,1933,1926,1926,1933,1925,1925,1933,1930,1514,1517,1513,1513,1517,1937,1937,1517,1523,1526,1939,8084,8084,1939,1934,8084,1934,1935,8084,1935,1525,1529,1954,8090,8090,1954,1951,8090,1951,16016,8090,16016,8089,8089,16016,8569,8089,8569,1528,1528,8569,1942,1528,1942,1940,8569,16016,1945,1945,16016,1948,1948,16016,1951,1532,1538,1544,1532,1544,1547,1532,1547,1957,1532,1957,1531,1531,1957,1955,16017,16018,16019,16018,16022,16023,16019,16018,16023,16020,16019,16023,16020,16023,16024,16021,16020,16024,16023,16022,16026,16024,16023,16026,16025,16024,16026,16025,16026,8589,16025,8589,1966,16025,1966,1963,16025,1963,16021,16025,16021,16024,16021,1963,1960,16021,1960,8585,16021,8585,16020,16020,8585,8584,16020,8584,16019,16019,8584,16017,16017,8584,1958,16017,1958,1549,16017,1549,8113,16017,8113,16018,16018,8113,8114,16018,8114,16022,16022,8114,1550,16022,1550,8589,16022,8589,16026,1553,1556,8595,1553,8595,16027,1553,16027,1552,1552,16027,8591,8591,16027,8594,8591,8594,1972,8591,1972,1967,1967,1972,1969,8594,16027,8595,16029,16028,16033,16029,16033,16034,16031,16030,16037,16031,16037,16038,16032,16031,16038,16033,16032,16038,16028,16032,16033,16034,16033,16039,16035,16034,16039,16036,16035,16039,16037,16036,16039,16038,16037,16039,16033,16038,16039,16037,16030,1973,16037,1973,8596,16037,8596,16036,16036,8596,8597,16036,8597,16035,16035,8597,1558,16035,1558,1559,16035,1559,8610,16035,8610,16034,16034,8610,8609,16034,8609,16029,16029,8609,1984,16029,1984,1981,16029,1981,8601,16029,8601,16028,16028,8601,1978,16028,1978,16032,16032,1978,8598,16032,8598,16031,16031,8598,1975,16031,1975,16030,16030,1975,1973,16042,16041,16043,16042,16043,8138,16042,8138,1568,16042,1568,1990,16042,1990,8616,16042,8616,16041,16041,8616,16040,16041,16040,8612,16041,8612,8613,16041,8613,16043,16043,8613,1561,16043,1561,1562,16043,1562,8138,8612,16040,1985,1985,16040,1987,1987,16040,8616,1571,2002,1999,1571,1999,1996,1571,1996,8142,8142,1996,8619,8142,8619,16044,8142,16044,1570,1570,16044,1991,1991,16044,1993,1993,16044,8619,1574,1577,2005,1574,2005,2003,1574,2003,1573,1582,1590,8636,1582,8636,16045,1582,16045,1579,1579,16045,2006,2006,16045,2008,2008,16045,8632,8632,16045,8635,8632,8635,2011,8635,16045,8636,8636,1590,2014,2014,1590,2017,1593,2018,1592,1596,2026,2023,1596,2023,2020,1596,2020,1595,1595,2020,2015,1595,2015,2016,1599,2029,2027,1599,2027,1598,8169,1605,8672,8169,8672,2035,8169,2035,8666,8169,8666,8168,8168,8666,8665,8168,8665,1602,1602,8665,2032,1602,2032,1601,1601,2032,2030,8672,1605,1616,8672,1616,2038,2038,1616,1617,2038,1617,2041,2041,1617,2044,2044,1617,2047,1608,1611,1607,1611,1614,1607,1620,2050,2048,1620,2048,1619,1623,1629,2051,1623,2051,1622,2051,1629,2053,2053,1629,2056,1632,2057,1631,1635,2061,1634,1634,2061,2054,1634,2054,2055,8213,1641,2066,8213,2066,1638,1638,2066,2042,1638,2042,2043,1638,2043,1637,1637,2043,2062,2066,1641,2069,2069,1641,2072,2072,1641,1647,2072,1647,2075,2075,1647,2078,1650,1658,2084,1650,2084,2081,1650,2081,1649,1649,2081,2079,1661,2087,1660,1660,2087,2085,1664,2090,1663,1663,2090,2088,8749,2111,2096,8749,2096,2093,8749,2093,1669,1669,2093,2091,1669,2091,1666,2096,2111,2108,2096,2108,2105,2096,2105,8739,8739,2105,2102,8739,2102,2099,16046,16047,16048,16048,16047,8250,16048,8250,8251,16048,8251,16049,16048,16049,8757,16048,8757,16046,16046,8757,2117,16046,2117,2114,16046,2114,2112,16046,2112,16047,16047,2112,8752,16047,8752,8249,16047,8249,8250,8249,8752,1671,8757,16049,8758,8758,16049,8252,8758,8252,1672,8758,1672,1675,8252,16049,8251,16050,16053,16054,16051,16050,16054,16051,16054,16052,16051,16052,8767,16051,8767,2120,16051,2120,16050,16050,2120,8763,16050,8763,8762,16050,8762,16053,16053,8762,8761,16053,8761,8759,16053,8759,8760,16053,8760,16054,16054,8760,1677,16054,1677,1678,16054,1678,16052,16052,1678,8772,16052,8772,8768,16052,8768,8767,8768,8772,2123,8759,8761,2118,2131,2128,2134,8779,2134,2128,8779,2128,8780,8780,2128,2124,8780,2124,8781,8781,2124,8774,8781,8774,8782,8782,8774,8268,8782,8268,1681,8268,8774,8267,8267,8774,1680,1684,1687,8801,1684,8801,1683,1683,8801,8786,8786,8801,16056,8786,16056,8785,8785,16056,16055,8785,16055,8784,8784,16055,8795,8784,8795,2145,8784,2145,8783,8783,2145,2140,8783,2140,2135,2135,2140,2137,8795,16055,2148,2148,16055,16056,2148,16056,8800,8800,16056,8801,1690,1696,1689,1689,1696,2160,1689,2160,8804,8804,2160,16057,8804,16057,8803,8803,16057,8815,8803,8815,2157,8803,2157,2151,8803,2151,2149,2151,2157,2154,8815,16057,2160,8286,1702,8819,8286,8819,8818,8286,8818,16058,8286,16058,8285,8285,16058,8817,8285,8817,1698,8285,1698,1699,1698,8817,2161,8817,16058,8818,8819,1702,1725,8819,1725,1726,1705,1720,1723,1705,1723,1704,16059,16064,16065,16060,16059,16065,16060,16065,16066,16061,16060,16066,16063,16062,16067,16063,16067,16068,16064,16063,16068,16064,16068,16069,16065,16064,16069,16065,16069,16070,16066,16065,16070,16066,16070,8310,16066,8310,1714,16066,1714,16061,16061,1714,1717,16061,1717,8326,16061,8326,16060,16060,8326,1710,16060,1710,16059,16059,1710,8293,16059,8293,16063,16059,16063,16064,16063,8293,8294,16063,8294,16062,16062,8294,8305,16062,8305,8306,16062,8306,16067,16067,8306,8307,16067,8307,16068,16068,8307,8308,16068,8308,16069,16069,8308,8309,16069,8309,16070,16070,8309,8310,8305,8294,1711,16071,16072,16073,16073,16072,16076,16073,16076,16077,16074,16073,16077,16074,16077,16078,16075,16074,16078,16075,16078,16079,16078,16077,16081,16078,16081,16082,16079,16078,16082,16080,16079,16082,16080,16082,1728,16080,1728,1729,16080,1729,8829,16080,8829,8828,16080,8828,16079,16079,8828,16075,16075,8828,8827,16075,8827,2163,16075,2163,16074,16074,2163,8824,16074,8824,16073,16073,8824,16071,16071,8824,8823,16071,8823,8816,16071,8816,16072,16072,8816,2159,16072,2159,16076,16076,2159,8820,16076,8820,8821,16076,8821,16077,16077,8821,16081,16081,8821,8822,16081,8822,16082,16082,8822,1728,8816,8823,2158,8336,1735,2166,8336,2166,8835,8336,8835,8335,8335,8835,8834,8335,8834,16084,8335,16084,8334,8334,16084,8832,8334,8832,1731,8334,1731,1732,8832,16084,8831,8831,16084,16083,8831,16083,8830,8830,16083,8833,8830,8833,2164,8833,16083,8834,8834,16083,16084,2175,2172,2178,1738,1741,16085,1738,16085,1737,1737,16085,2167,2167,16085,8845,2167,8845,2169,2169,8845,2178,2169,2178,2172,8845,16085,2181,2181,16085,1744,1744,16085,1741,1747,2184,1746,1746,2184,2182,1750,1753,1749,1749,1753,2187,1749,2187,2185,1756,1759,1755,1755,1759,2193,1755,2193,2188,2188,2193,2190,16086,16087,16088,16088,16087,16089,16088,16089,1765,16088,1765,8868,16088,8868,16086,16086,8868,2205,16086,2205,8865,16086,8865,2199,16086,2199,16087,16087,2199,8859,16087,8859,16089,16089,8859,8858,16089,8858,16090,16089,16090,8380,16089,8380,1765,8380,16090,8379,8379,16090,8857,8379,8857,8856,8379,8856,1762,1762,8856,16091,1762,16091,1761,1761,16091,2196,1761,2196,2194,2196,16091,8855,8855,16091,8856,8857,16090,8858,8865,2205,2202,1768,2217,2214,1768,2214,16092,1768,16092,8384,8384,16092,1767,1767,16092,8870,8870,16092,8872,8870,8872,2206,2206,8872,2208,8872,16092,2211,2211,16092,2214,1771,1783,2218,1771,2218,1770,1777,1780,1776,1786,2215,2216,1786,2216,1785,1789,2235,16096,1789,16096,1788,1788,16096,2213,2213,16096,16094,2213,16094,2212,2212,16094,8884,8884,16094,16093,8884,16093,2220,2220,16093,2226,2220,2226,2223,2226,16093,2229,2229,16093,8891,8891,16093,16095,8891,16095,2232,2232,16095,16096,2232,16096,2235,16096,16095,16094,16094,16095,16093,1792,2241,1791,2241,2238,1791,1791,2238,2236,1794,1795,2242,16098,16097,16099,16098,16099,16100,16100,16099,16102,16100,16102,16103,16101,16100,16103,16101,16103,16104,2240,1797,2239,16101,16104,2250,16101,2250,8901,16101,8901,8900,16101,8900,16100,16100,8900,16098,16098,8900,8899,16098,8899,16097,16097,8899,2247,16097,2247,2244,16097,2244,2239,16097,2239,16099,16099,2239,1800,16099,1800,16102,16102,1800,8417,16102,8417,16103,16103,8417,16104,16104,8417,1803,16104,1803,2253,16104,2253,2250,1800,2239,1797,8431,1809,16107,8431,16107,16106,8431,16106,8430,8430,16106,2254,8430,2254,1806,1806,2254,1805,2254,16106,2256,2256,16106,8905,8905,16106,16107,8905,16107,16105,8905,16105,2259,2259,16105,2262,2262,16105,2265,2265,16105,1809,1809,16105,16107,1812,2271,1811,1811,2271,2268,1811,2268,2266,8929,2291,2274,8929,2274,2272,8929,2272,8930,8930,2272,1814,8930,1814,1815,2274,2291,2288,2274,2288,2285,2274,2285,2282,2274,2282,2279,1820,2303,16110,1820,16110,16109,1820,16109,1817,1817,16109,16108,1817,16108,8932,8932,16108,8933,8932,8933,8931,8931,8933,2294,8931,2294,2292,8933,16108,8934,8934,16108,16109,8934,16109,8935,8935,16109,16110,8935,16110,8936,8936,16110,8941,8936,8941,2297,2297,8941,2300,8941,16110,2303,1823,2306,2304,1823,2304,1822,1826,1829,2307,1826,2307,1825,1832,1844,16111,1832,16111,8942,1832,8942,8459,8459,8942,2302,8459,2302,1831,1831,2302,2305,8942,16111,2301,2301,16111,2309,2309,16111,16112,2309,16112,2312,2312,16112,1847,1847,16112,1844,1844,16112,16111,16113,16115,16116,16113,16116,16117,16114,16113,16117,16114,16117,16118,16115,16120,16121,16116,16115,16121,16117,16116,16121,16117,16121,16122,16118,16117,16122,16118,16122,16123,16119,16118,16123,16119,16123,16124,16120,16125,16126,16121,16120,16126,16121,16126,16127,16122,16121,16127,16122,16127,16128,16123,16122,16128,16124,16123,16128,16124,16128,16129,16127,16126,16130,16127,16130,16131,16128,16127,16131,16129,16128,16131,16129,16131,8981,16129,8981,2330,16129,2330,16124,16124,2330,2327,16124,2327,2324,16124,2324,16119,16119,2324,2321,16119,2321,8972,16119,8972,16118,16118,8972,8971,16118,8971,16114,16114,8971,8970,16114,8970,16113,16113,8970,8969,16113,8969,8963,16113,8963,8962,16113,8962,16115,16115,8962,8961,16115,8961,16120,16120,8961,8960,16120,8960,16125,16125,8960,2313,16125,2313,1849,16125,1849,16130,16125,16130,16126,16130,1849,1850,16130,1850,16131,16131,1850,8981,8963,8969,2318,8963,2318,2315,1853,2345,8982,1853,8982,1852,8982,2345,2331,2331,2345,2333,2333,2345,2336,2336,2345,2342,2336,2342,2339,1856,1862,1855,1855,1862,2346,1865,1873,8487,8487,1873,16132,8487,16132,1864,1864,16132,2344,2344,16132,8995,2344,8995,8994,2344,8994,2343,2343,8994,2348,8995,16132,1873,16134,16133,16135,16134,16135,2363,16134,2363,2360,16134,2360,2357,16134,2357,16133,16133,2357,9007,16133,9007,8997,16133,8997,8998,16133,8998,16135,16135,8998,1876,16135,1876,1879,16135,1879,2363,1876,8998,1875,8997,9007,2349,2349,9007,2351,2351,9007,2354,1882,2366,1881,1881,2366,2364,1885,2378,2367,1885,2367,1884,2367,2378,2375,2367,2375,9018,2367,9018,9013,9013,9018,9014,9014,9018,9017,9014,9017,2369,2369,9017,2372,8519,1891,2381,8519,2381,9027,8519,9027,16136,8519,16136,1888,1888,16136,8509,8509,16136,9027,8509,9027,9026,8509,9026,8508,8508,9026,2379,8508,2379,1887,1896,2390,2382,1896,2382,1893,2382,2390,9035,2382,9035,9031,9031,9035,2384,2384,9035,2387,1899,2393,8521,8521,2393,2391,8521,2391,1898,8535,1905,2402,8535,2402,8534,8534,2402,16137,8534,16137,1902,1902,16137,1901,1901,16137,2394,2394,16137,2396,2396,16137,2399,2399,16137,2402,1908,2411,16139,1908,16139,16138,1908,16138,1907,1907,16138,2405,1907,2405,2403,2405,16138,9057,9057,16138,9058,9058,16138,16139,9058,16139,9061,9058,9061,2408,9061,16139,2411,16141,16140,16146,16142,16141,16146,16143,16142,16146,16144,16143,16146,16145,16144,16146,16140,16145,16146,16145,16140,9067,16145,9067,2417,16145,2417,2414,16145,2414,16144,16144,2414,9065,16144,9065,2412,16144,2412,16143,16143,2412,1910,16143,1910,16142,16142,1910,1911,16142,1911,16141,16141,1911,1914,16141,1914,9068,16141,9068,16140,16140,9068,9067,1916,1917,9070,1917,1920,9070,9070,1920,2429,9070,2429,9069,9069,2429,2426,9069,2426,9074,9069,9074,2418,2418,9074,2423,2418,2423,2420,1923,1929,2432,1923,2432,9083,1923,9083,1922,1922,9083,2430,1932,1938,2433,1932,2433,1931,2433,1938,1941,9093,2438,16149,9093,16149,1944,1944,16149,8571,8571,16149,16148,8571,16148,16147,8571,16147,1943,1943,16147,2431,2431,16147,9084,9084,16147,16148,9084,16148,2428,2428,16148,2427,2427,16148,16149,2427,16149,2435,2435,16149,2438,1947,2452,1946,1946,2452,9094,9094,2452,2449,9094,2449,2446,9094,2446,2439,2439,2446,2441,1950,2458,9103,1950,9103,1949,1949,9103,2453,9103,2458,2455,16152,16151,16153,16152,16153,16154,16152,16154,9105,16152,9105,2459,16152,2459,16151,16151,2459,1952,16151,1952,16150,16151,16150,8587,16151,8587,16153,16153,8587,1959,16153,1959,16154,16154,1959,2464,16154,2464,9106,16154,9106,9105,9106,2464,2461,8587,16150,8586,8586,16150,1956,1956,16150,1953,1953,16150,1952,1962,2465,1961,1965,1968,16157,1965,16157,1964,1964,16157,16156,1964,16156,2463,2463,16156,2462,2462,16156,9109,9109,16156,16155,9109,16155,2467,2467,16155,9116,2467,9116,2470,9116,16155,16156,9116,16156,2473,2473,16156,16157,2473,16157,1968,1971,1974,2476,1971,2476,1970,1970,2476,2474,16158,16160,16161,16159,16158,16161,16159,16161,16162,16160,16163,16164,16161,16160,16164,16161,16164,16165,16162,16161,16165,16162,16165,16166,16164,16163,16167,16164,16167,16168,16165,16164,16168,16165,16168,16169,16166,16165,16169,16168,16167,16170,16168,16170,16171,16169,16168,16171,16169,16171,16172,16169,16172,9134,16169,9134,9133,16169,9133,16166,16166,9133,9132,16166,9132,16162,16162,9132,2487,16162,2487,16159,16159,2487,9130,16159,9130,16158,16158,9130,2484,16158,2484,2479,16158,2479,16160,16160,2479,9125,16160,9125,16163,16163,9125,9124,16163,9124,16167,16167,9124,9123,16167,9123,16170,16170,9123,2477,16170,2477,1976,16170,1976,8599,16170,8599,16171,16171,8599,16172,16172,8599,1977,16172,1977,9135,16172,9135,9134,1980,2496,8603,8603,2496,9139,8603,9139,1979,9139,2496,16173,9139,16173,9138,9138,16173,9137,9137,16173,9142,9137,9142,9136,9136,9142,2490,9136,2490,2488,9142,16173,2493,2493,16173,2496,1983,1986,1982,1982,1986,9153,1982,9153,2497,9153,1986,2502,9153,2502,2499,1989,1992,16174,1989,16174,8617,8617,16174,2503,8617,2503,1988,2503,16174,2505,2505,16174,1992,16175,16179,16180,16176,16175,16180,16178,16177,16181,16178,16181,16182,16179,16178,16182,16179,16182,16183,16180,16179,16183,16182,16181,16184,16183,16182,16184,16183,16184,8621,16183,8621,16180,16180,8621,1995,16180,1995,16176,16176,1995,2517,16176,2517,2514,16176,2514,9169,16176,9169,16175,16175,9169,9168,16175,9168,16179,16179,9168,16178,16178,9168,9167,16178,9167,16177,16177,9167,2508,16177,2508,9163,16177,9163,16181,16181,9163,9162,16181,9162,16184,16184,9162,2506,16184,2506,1994,16184,1994,8621,2508,9167,2511,1998,2009,1997,1997,2009,8633,1997,8633,2518,2518,8633,2010,2518,2010,2520,2001,2004,2000,2000,2004,2007,2013,2019,9201,2013,9201,8639,8639,9201,9200,8639,9200,8638,8638,9200,9199,8638,9199,16185,8638,16185,2012,2012,16185,2531,2012,2531,2521,2521,2531,2525,2525,2531,2528,2531,16185,2536,2536,16185,9198,2536,9198,2539,9198,16185,9199,2022,2033,2021,8669,2034,9203,8669,9203,9204,8669,9204,9205,8669,9205,8668,8668,9205,2021,8668,2021,2033,9203,2034,9214,9203,9214,9202,9202,9214,2545,9202,2545,2540,2540,2545,2542,2031,2024,2028,2025,2028,2024,16186,16190,16191,16188,16187,16192,16188,16192,16193,16189,16188,16193,16189,16193,16194,16190,16189,16194,16191,16190,16194,2548,2546,2551,16191,16194,9225,16191,9225,9224,16191,9224,16186,16186,9224,2554,16186,2554,9217,16186,9217,2036,16186,2036,16190,16190,2036,8675,16190,8675,16189,16189,8675,16188,16188,8675,2037,16188,2037,2560,16188,2560,16187,16187,2560,9236,16187,9236,9229,16187,9229,9228,16187,9228,16192,16192,9228,9227,16192,9227,16193,16193,9227,9226,16193,9226,16194,16194,9226,9225,9229,9236,2557,9217,2554,2551,9217,2551,2546,2040,2065,2561,2040,2561,2039,2561,2065,2563,2046,2049,2045,2045,2049,2060,2060,2049,2052,2068,2584,2581,2068,2581,2578,2068,2578,2067,2067,2578,2575,2067,2575,2564,2564,2575,9250,2564,9250,9243,9243,9250,2572,9243,2572,2566,2566,2572,2569,2071,2585,2070,2074,2082,2587,2074,2587,2582,2074,2582,2073,2073,2582,2583,2587,2082,2083,2587,2083,2092,2092,2083,2089,2089,2083,2086,2077,2080,2076,16195,16197,16198,16196,16195,16198,16196,16198,16199,16199,16198,16201,16199,16201,16202,16200,16199,16202,16200,16202,16203,16200,16203,2588,16200,2588,2094,16200,2094,16196,16200,16196,16199,16196,2094,2095,16196,2095,16195,16195,2095,9279,16195,9279,16197,16197,9279,9278,16197,9278,9271,16197,9271,9270,16197,9270,9269,16197,9269,16198,16198,9269,16201,16201,9269,9268,16201,9268,9267,16201,9267,16202,16202,9267,9266,16202,9266,16203,16203,9266,2592,16203,2592,2577,16203,2577,2588,2577,2592,2576,9271,9278,2595,2098,2607,16204,2098,16204,16205,2098,16205,8742,8742,16205,9281,8742,9281,2097,9281,16205,9280,9280,16205,16204,9280,16204,16206,9280,16206,2596,2596,16206,2598,2598,16206,2601,2601,16206,9282,9282,16206,16204,9282,16204,2604,2604,16204,2607,9301,2625,2616,9301,2616,2613,9301,2613,2101,2101,2613,2610,2101,2610,2608,2101,2608,2100,2616,2625,2619,2619,2625,2622,16208,16210,16211,16209,16208,16211,16211,16210,16212,16211,16212,9312,16211,9312,2637,16211,2637,16209,16209,2637,2634,16209,2634,9307,16209,9307,16208,16208,9307,16207,16208,16207,9303,16208,9303,16210,16210,9303,2103,16210,2103,16212,16212,2103,2104,16212,2104,9313,16212,9313,9312,9313,2104,2640,9303,16207,2626,2626,16207,2628,2628,16207,2631,2631,16207,9307,2107,2643,2106,2106,2643,2641,2110,2113,2109,2109,2113,2644,8766,2119,16213,8766,16213,8765,8765,16213,9315,8765,9315,8764,8764,9315,2639,8764,2639,2116,2116,2639,2642,2116,2642,2115,9315,16213,9314,9314,16213,2638,2638,16213,2646,2646,16213,2119,16215,16214,16219,16215,16219,16220,16216,16215,16220,2127,2658,2122,16216,16220,16217,16216,16217,9318,16216,9318,9317,16216,9317,16215,16215,9317,9316,16215,9316,16214,16214,9316,2649,16214,2649,2647,16214,2647,2121,16214,2121,16219,16219,2121,8769,16219,8769,16220,16220,8769,8770,16220,8770,2122,16220,2122,16217,16217,2122,16218,16217,16218,9319,16217,9319,9318,9319,16218,2652,2652,16218,2655,2655,16218,2658,2658,16218,2122,2129,2130,2659,2657,2132,2656,2133,2136,2664,2133,2664,2656,2133,2656,2132,2656,2664,2661,9345,2672,2665,9345,2665,2138,9345,2138,2139,2665,2672,2667,9354,2684,2681,9354,2681,16222,9354,16222,2144,2144,16222,2141,2141,16222,16221,2141,16221,9347,9347,16221,9350,9347,9350,2675,9347,2675,2673,9350,16221,2678,2678,16221,16222,2678,16222,2681,16224,16223,16225,2174,2693,2173,2173,2693,13836,16224,16225,13838,16224,13838,13837,16224,13837,13836,16224,13836,9357,16224,9357,16223,16223,9357,2685,16223,2685,9355,16223,9355,16225,16225,9355,8798,16225,8798,2147,16225,2147,2150,16225,2150,13838,8798,9355,2146,9357,13836,2687,2687,13836,2690,2690,13836,2693,13843,2170,13839,13843,13839,13840,13843,13840,13841,13843,13841,2153,2153,13841,2152,13839,2170,2171,16226,16229,16230,16226,16230,16231,16227,16226,16231,16227,16231,16232,16228,16227,16232,16228,16232,8838,16228,8838,2165,16228,2165,2168,16228,2168,16227,16227,2168,16226,16226,2168,13845,16226,13845,16229,16229,13845,2155,16229,2155,2156,16229,2156,8825,16229,8825,16230,16230,8825,8826,16230,8826,16231,16231,8826,2162,16231,2162,8836,16231,8836,16232,16232,8836,8837,16232,8837,8838,2694,2176,2696,2177,2696,2176,2699,2697,2702,2180,2183,2186,2180,2186,2708,2180,2708,8848,8848,2708,9374,8848,9374,2179,2179,9374,2702,2179,2702,2697,2702,9374,2705,2708,2186,2189,2192,2195,2711,2192,2711,2191,2191,2711,2709,16233,16234,16235,16235,16234,16236,16235,16236,16237,16236,16238,16239,16237,16236,16239,16237,16239,16240,16240,16239,16241,16240,16241,16242,16242,16241,16243,16242,16243,2712,16242,2712,2197,16242,2197,8860,16242,8860,16240,16240,8860,8861,16240,8861,16237,16237,8861,8862,16237,8862,16235,16235,8862,8863,16235,8863,16233,16233,8863,8864,16233,8864,9387,16233,9387,9386,16233,9386,9385,16233,9385,16234,16234,9385,9384,16234,9384,16236,16236,9384,16238,16238,9384,9383,16238,9383,9382,16238,9382,16241,16238,16241,16239,16241,9382,16243,16243,9382,2714,16243,2714,2712,9387,8864,2198,9387,2198,2717,2201,2739,16244,2201,16244,16245,2201,16245,16246,2201,16246,8866,8866,16246,2200,2200,16246,2718,2718,16246,16245,2718,16245,9394,9394,16245,16244,9394,16244,2729,9394,2729,2720,2720,2729,2726,2720,2726,2723,2729,16244,2734,2734,16244,2739,2204,2207,2203,2203,2207,2742,2203,2742,2740,16247,16248,16249,16247,16249,16250,16249,16248,16251,16249,16251,16252,16249,16252,16253,16250,16249,16253,16252,16251,16254,16252,16254,16255,16252,16255,16256,16253,16252,16256,16253,16256,8886,16253,8886,16250,16250,8886,2219,16250,2219,2751,16250,2751,9426,16250,9426,16247,16247,9426,2748,16247,2748,16248,16248,2748,2745,16248,2745,16251,16251,2745,9418,16251,9418,16254,16254,9418,9417,16254,9417,16257,16254,16257,2209,16254,2209,16255,16255,2209,8874,16255,8874,16256,16256,8874,2210,16256,2210,8886,2209,16257,2743,2743,16257,9417,2751,2219,2754,2222,2755,2221,2225,2760,2224,2224,2760,2752,2224,2752,2753,2752,2760,2757,2228,2766,9442,2228,9442,2227,2227,9442,2761,2761,9442,2763,2231,2245,2246,2231,2246,8892,8892,2246,2769,8892,2769,2767,8892,2767,2230,2234,2237,2243,2234,2243,2233,16258,16261,16262,16259,16258,16262,16259,16262,16263,16259,16263,16264,16262,16261,16265,16262,16265,16266,16263,16262,16266,16263,16266,16267,16264,16263,16267,16264,16267,16268,16268,16267,16269,16268,16269,2257,16268,2257,8906,16268,8906,9464,16268,9464,16264,16264,9464,9463,16264,9463,16259,16259,9463,2775,16259,2775,16258,16258,2775,9458,16258,9458,16261,16261,9458,16260,16261,16260,8902,16261,8902,8903,16261,8903,16265,16265,8903,8904,16265,8904,16266,16266,8904,2249,16266,2249,16269,16266,16269,16267,16269,2249,2257,8902,16260,2248,2248,16260,2770,2770,16260,2772,2772,16260,9458,9464,8906,2258,2252,2255,2251,2261,2781,2260,2260,2781,9470,2260,9470,9469,2260,9469,9467,9467,9469,9468,9467,9468,9466,9466,9468,2778,9466,2778,2776,2264,2267,2782,2264,2782,2263,2782,2267,2786,2786,2267,2789,2789,2267,2792,2270,2273,2793,2270,2793,2269,2278,2807,2275,2275,2807,16271,2275,16271,2791,2791,16271,2790,2790,16271,16270,2790,16270,2795,2795,16270,9486,9486,16270,9494,9486,9494,2798,2798,9494,2804,2798,2804,2801,9494,16270,16271,9494,16271,2807,2281,2808,2280,2284,2816,9501,2284,9501,9500,2284,9500,9497,2284,9497,2806,2284,2806,2283,9497,9500,2810,9497,2810,2805,9501,2816,2813,2287,6404,16272,2287,16272,2286,2286,16272,2817,2817,16272,16273,2817,16273,2314,2314,16273,8968,8968,16273,13830,8968,13830,13829,8968,13829,8967,8967,13829,8966,8966,13829,13828,8966,13828,8965,8965,13828,6401,8965,6401,2310,8965,2310,2311,13830,16273,13831,13831,16273,16272,13831,16272,6404,2290,2293,6405,2290,6405,2289,16274,16275,16276,16274,16276,16277,16274,16277,16278,16275,16279,16280,16276,16275,16280,16276,16280,16281,16277,16276,16281,16277,16281,16282,16277,16282,16283,16278,16277,16283,16280,16284,16285,16281,16280,16285,16281,16285,16286,16282,16281,16286,16282,16286,16287,16283,16282,16287,16283,16287,16288,16285,16284,16289,16285,16289,16290,16286,16285,16290,16286,16290,16291,16287,16286,16291,16287,16291,16292,16288,16287,16292,16288,16292,16293,16290,16289,16294,16290,16294,16295,16291,16290,16295,16291,16295,16296,16292,16291,16296,16292,16296,16297,16293,16292,16297,16296,16295,16298,16297,16296,16298,16297,16298,6402,16297,6402,13832,16297,13832,16293,16293,13832,13833,16293,13833,16288,16288,13833,13834,16288,13834,16283,16283,13834,16278,16278,13834,13835,16278,13835,16274,16274,13835,6403,16274,6403,16275,16275,6403,2295,16275,2295,16279,16279,2295,8937,16279,8937,16284,16279,16284,16280,16284,8937,8938,16284,8938,16289,16289,8938,8939,16289,8939,16294,16294,8939,8940,16294,8940,16295,16295,8940,16298,16298,8940,2296,16298,2296,6402,2299,2308,6400,2299,6400,2298,2819,2814,2822,2317,2822,2316,2316,2822,2815,2815,2822,2814,16299,16301,16302,16300,16299,16302,16300,16302,16303,16300,16303,16304,16304,16303,16305,16304,16305,9523,16304,9523,2831,16304,2831,9520,16304,9520,16300,16300,9520,2828,16300,2828,16299,16299,2828,2825,16299,2825,16301,16301,2825,2823,16301,2823,2319,16301,2319,16302,16302,2319,8973,16302,8973,8974,16302,8974,16303,16303,8974,8975,16303,8975,16305,16305,8975,8976,16305,8976,9523,9523,8976,2834,2834,8976,2320,2323,2835,2322,16307,16310,16311,16308,16307,16311,16308,16311,16312,16309,16308,16312,16311,16310,16313,16311,16313,16314,16312,16311,16314,16313,16315,16316,16314,16313,16316,16315,16317,16318,16316,16315,16318,2846,2843,2849,16316,16318,9542,16316,9542,16314,16314,9542,9541,16314,9541,16312,16312,9541,2849,16312,2849,16309,16309,2849,2843,16309,2843,2840,16309,2840,9530,16309,9530,16308,16308,9530,16306,16308,16306,16307,16307,16306,2832,16307,2832,9525,16307,9525,16310,16310,9525,16313,16313,9525,2833,16313,2833,16315,16315,2833,2325,16315,2325,2326,16315,2326,16317,16317,2326,2334,16317,2334,2335,16317,2335,16318,16318,2335,9010,16318,9010,2356,16318,2356,9542,9010,2335,6389,9010,6389,2355,2355,6389,6386,2355,6386,6383,2832,16306,2837,2837,16306,9530,2329,2332,2328,6392,6390,6395,2338,6395,6390,2338,6390,2337,2341,2347,2340,2340,2347,2350,2340,2350,6396,6396,2350,6398,2353,6382,2352,2352,6382,6399,9550,2855,2852,9550,2852,9547,9550,9547,9544,9550,9544,9551,9551,9544,9545,9551,9545,2359,2359,9545,2358,9544,9547,2850,2362,2365,9015,2362,9015,2361,2361,9015,9553,9553,9015,9016,9553,9016,9552,9552,9016,2368,9552,2368,2856,2856,2368,2858,2858,2368,2861,2861,2368,2864,2371,2873,2865,2371,2865,2370,2865,2873,2870,2865,2870,2867,16319,16320,16321,16321,16320,16322,16321,16322,16323,16322,16324,16325,16323,16322,16325,16323,16325,9571,16323,9571,9570,16323,9570,16321,16321,9570,2876,16321,2876,16319,16319,2876,9568,16319,9568,2373,16319,2373,9019,16319,9019,16320,16320,9019,9020,16320,9020,16322,16322,9020,16324,16324,9020,2374,16324,2374,9577,16324,9577,16325,16325,9577,9576,16325,9576,9572,16325,9572,9571,9572,9576,2879,2879,9576,2882,2373,9568,2874,16328,16327,16329,16328,16329,16330,16328,16330,2883,16328,2883,9578,16328,9578,16327,16327,9578,9579,16327,9579,16326,16327,16326,9029,16327,9029,9030,16327,9030,16329,16329,9030,2380,16329,2380,16330,16330,2380,9032,16330,9032,2383,16330,2383,2883,9029,16326,2377,2377,16326,2376,2376,16326,9579,2891,2888,2894,2386,2900,2385,2385,2900,16334,2385,16334,2881,2881,16334,2880,2880,16334,16332,2880,16332,9582,9582,16332,9583,9583,16332,16333,9583,16333,16331,9583,16331,9584,9584,16331,9597,9584,9597,2885,2885,9597,9588,9588,9597,2894,9588,2894,2888,9597,16331,9598,9598,16331,16333,9598,16333,2897,2897,16333,16334,2897,16334,2900,16334,16333,16332,2389,2392,16336,2389,16336,9036,9036,16336,16335,9036,16335,2388,2388,16335,2901,2901,16335,2903,2903,16335,9608,9608,16335,16336,9608,16336,2395,2395,16336,2392,2398,2906,9609,2398,9609,2397,9609,2906,2904,2401,2404,16339,2401,16339,2400,2400,16339,16337,2400,16337,2907,2907,16337,16338,2907,16338,2909,2909,16338,9618,2909,9618,2912,9618,16338,9619,9619,16338,9620,9620,16338,16339,9620,16339,2404,16339,16338,16337,16340,16341,16342,16340,16342,9630,16340,9630,9629,16340,9629,9622,16340,9622,9623,16340,9623,16341,16341,9623,9059,16341,9059,9060,16341,9060,16342,16342,9060,2407,16342,2407,2918,16342,2918,9630,9059,9623,2406,9622,9629,9621,9621,9629,9628,9621,9628,2913,2913,9628,2915,16343,16344,16345,16343,16345,9634,16343,9634,2927,16343,2927,2924,16343,2924,2921,16343,2921,2919,16343,2919,16344,16344,2919,2409,16344,2409,9062,16344,9062,9066,16344,9066,16345,16345,9066,2413,16345,2413,9634,9634,2413,2930,9066,9062,2410,2416,2419,2931,2416,2931,2415,16347,16346,16348,16347,16348,16349,16347,16349,9644,16347,9644,9638,16347,9638,16346,16346,9638,2933,16346,2933,2928,16346,2928,9635,16346,9635,16348,16348,9635,2929,16348,2929,16349,16349,2929,2421,16349,2421,2942,16349,2942,9644,2942,2421,2422,9638,9644,2936,2936,9644,2939,2425,2434,9076,9076,2434,9652,9076,9652,2424,2424,9652,2943,2437,2440,2957,2437,2957,2436,2436,2957,9670,2436,9670,9653,9653,9670,9669,9653,9669,2941,2941,9669,9647,9647,9669,9668,9647,9668,9667,9647,9667,2940,2940,9667,16350,2940,16350,2945,2945,16350,9661,9661,16350,2948,2948,16350,2954,2948,2954,2951,2954,16350,9667,9681,2966,2960,9681,2960,9678,9681,9678,9682,9682,9678,2958,9682,2958,2445,2445,2958,2442,2960,2966,2963,16352,16351,16354,16353,16352,16354,16353,16354,2978,16353,2978,9695,16353,9695,9687,16353,9687,9686,16353,9686,16352,16352,9686,2967,16352,2967,16351,16351,2967,9684,16351,9684,9699,16351,9699,9698,16351,9698,16354,16354,9698,2978,9699,9684,9685,9699,9685,2448,2448,9685,2447,9687,9695,2969,2969,9695,2975,2969,2975,2972,9104,2454,9701,9104,9701,2451,2451,9701,2450,9701,2454,9700,9700,2454,2981,9700,2981,2979,9108,2460,16355,9108,16355,9107,9107,16355,2456,9107,2456,2457,2456,16355,2982,2982,16355,9708,9708,16355,16356,9708,16356,9110,9708,9110,2984,2984,9110,2466,9110,16356,2460,2460,16356,16355,2469,2480,2468,2468,2480,16357,2468,16357,9718,2468,9718,2987,2468,2987,2985,9718,16357,9719,9719,16357,9720,9720,16357,2483,9720,2483,2990,2990,2483,2993,2993,2483,2999,2993,2999,2996,2483,16357,2480,2472,2475,9126,2472,9126,9127,2472,9127,9118,9118,9127,9128,9118,9128,2471,2471,9128,2478,2486,2489,16359,2486,16359,9131,9131,16359,16358,9131,16358,2485,2485,16358,3012,2485,3012,3000,3000,3012,3007,3000,3007,3004,3012,16358,3015,3015,16358,3018,3018,16358,16359,3018,16359,3021,3021,16359,3024,3024,16359,2489,16361,16360,16362,16361,16362,16363,16361,16363,9753,16361,9753,3027,16361,3027,9748,16361,9748,16360,16360,9748,9747,16360,9747,2491,16360,2491,9145,16360,9145,16362,16362,9145,2492,16362,2492,9758,16362,9758,16363,16363,9758,9757,16363,9757,9753,9753,9757,3030,3030,9757,3036,3030,3036,3033,2491,9747,3025,16365,16364,16372,16365,16372,16373,16366,16365,16373,16366,16373,16374,16367,16366,16374,16368,16375,16376,16369,16368,16376,16370,16369,16376,16370,16376,16377,16371,16370,16377,16372,16371,16377,16364,16371,16372,16373,16372,16378,16374,16373,16378,16375,16374,16378,16376,16375,16378,16377,16376,16378,16372,16377,16378,16375,16368,2495,16375,2495,9155,16375,9155,16374,16374,9155,16367,16367,9155,2498,16367,2498,3039,16367,3039,9764,16367,9764,16366,16366,9764,9763,16366,9763,16365,16365,9763,9762,16365,9762,16364,16364,9762,9761,16364,9761,16371,16371,9761,3037,16371,3037,9759,16371,9759,16370,16370,9759,9760,16370,9760,16369,16369,9760,2494,16369,2494,16368,16368,2494,2495,2501,2504,9164,2501,9164,16379,2501,16379,2500,2500,16379,3040,3040,16379,9775,9775,16379,9165,9775,9165,2507,9775,2507,3051,9775,3051,3042,3042,3051,3048,3042,3048,3045,9165,16379,9164,2510,3054,2509,2509,3054,3052,2513,3066,3063,2513,3063,9173,9173,3063,9172,9172,3063,3060,9172,3060,9171,9171,3060,3057,9171,3057,2512,2512,3057,3055,2516,2519,3067,2516,3067,2515,3067,2519,2524,3067,2524,3069,2527,3072,2526,2526,3072,3070,2530,3073,2529,2535,6373,2552,2535,2552,2532,2532,2552,3065,2532,3065,3068,2532,3068,3071,3065,2552,2553,3065,2553,3064,3064,2553,3078,3064,3078,3075,2538,2541,6376,2538,6376,6374,2538,6374,2537,2544,2547,2543,2547,6377,2543,2550,6372,2549,2549,6372,6375,16380,16381,16382,16381,16384,16385,16382,16381,16385,16382,16385,16386,16384,16383,16389,16384,16389,16390,16385,16384,16390,16386,16385,16390,16386,16390,16391,16388,16387,16392,16389,16388,16392,16383,16388,16389,16390,16389,16393,16391,16390,16393,16389,16392,16393,16393,16392,9232,16393,9232,9233,16393,9233,16391,16391,9233,9234,16391,9234,16386,16386,9234,9235,16386,9235,16382,16382,9235,2556,16382,2556,9827,16382,9827,16380,16380,9827,3090,16380,3090,9825,16380,9825,3087,16380,3087,16381,16381,3087,9821,16381,9821,16384,16384,9821,16383,16383,9821,3084,16383,3084,16388,16388,3084,3081,16388,3081,3079,16388,3079,16387,16387,3079,9230,16387,9230,9231,16387,9231,16392,16392,9231,9232,9230,3079,2555,2559,2562,9237,9237,2562,9245,9237,9245,2558,2558,9245,9828,9828,9245,2565,9828,2565,3099,9828,3099,3096,9828,3096,3091,3091,3096,3093,2568,3105,3102,2568,3102,3100,2568,3100,2567,2571,3111,3108,2571,3108,2570,2570,3108,3106,16394,16398,16399,16395,16394,16399,16395,16399,16400,16397,16402,16403,16398,16397,16403,16399,16398,16403,16399,16403,16404,16400,16399,16404,16401,16400,16404,16396,16400,16401,16403,16402,16405,16404,16403,16405,16401,16404,16405,16405,16402,9849,16405,9849,9848,16405,9848,16401,16401,9848,9847,16401,9847,16396,16396,9847,9846,16396,9846,3127,16396,3127,3122,16396,3122,16400,16400,3122,16395,16395,3122,3117,16395,3117,3114,16395,3114,16394,16394,3114,2573,16394,2573,9253,16394,9253,16398,16398,9253,16397,16397,9253,2574,16397,2574,2591,16397,2591,9851,16397,9851,16402,16402,9851,9850,16402,9850,9849,2573,3114,3112,3127,9846,3130,2580,2586,2579,16407,16406,16410,16407,16410,16411,16408,16407,16411,16408,16411,16412,16409,16408,16412,16409,16412,16413,16411,16410,16415,16411,16415,16416,16412,16411,16416,16412,16416,16417,16413,16412,16417,16413,16417,16418,16414,16413,16418,16416,16415,16420,16417,16416,16420,16417,16420,16421,16418,16417,16421,16419,16418,16421,16419,16421,9856,16419,9856,9857,16419,9857,13906,16419,13906,9273,16419,9273,9274,16419,9274,16414,16419,16414,16418,16414,9274,9275,16414,9275,9276,16414,9276,16413,16413,9276,16409,16409,9276,9277,16409,9277,2594,16409,2594,16408,16408,2594,2597,16408,2597,16407,16407,2597,16406,16406,2597,9858,16406,9858,3131,16406,3131,9852,16406,9852,16410,16410,9852,9853,16410,9853,16415,16415,9853,9854,16415,9854,16420,16420,9854,9855,16420,9855,16421,16421,9855,9856,9273,13906,9272,9272,13906,13905,9272,13905,13904,9272,13904,2593,2593,13904,13903,2593,13903,13902,2593,13902,9857,9857,13902,6418,9857,6418,13906,2600,3136,2599,2599,3136,9859,9859,3136,3133,9859,3133,3129,3129,3133,3128,2603,3145,9283,9283,3145,3142,9283,3142,2602,2602,3142,9869,2602,9869,3137,3137,9869,3139,2609,3146,2606,2606,3146,2605,3144,2611,3143,2612,3157,16422,2612,16422,2611,2611,16422,9876,2611,9876,3148,2611,3148,3143,9876,16422,9877,9877,16422,3157,9877,3157,3154,9877,3154,3151,2615,3160,3158,2615,3158,2614,16423,16424,16425,16425,16424,16426,16425,16426,16427,16425,16427,9892,16425,9892,9891,16425,9891,16423,16423,9891,9890,16423,9890,3172,16423,3172,3169,16423,3169,3166,16423,3166,16424,16424,3166,9884,16424,9884,16426,16426,9884,3163,16426,3163,3161,16426,3161,2617,16426,2617,2618,16426,2618,16427,16427,2618,3175,16427,3175,9892,2621,3184,3176,2621,3176,2620,3176,3184,3181,3176,3181,3178,2624,2627,2623,2623,2627,3185,2630,3196,2629,2629,3196,16428,2629,16428,3183,3183,16428,3182,3182,16428,3187,3187,16428,3190,3190,16428,3193,3193,16428,3196,2633,3199,9919,2633,9919,9309,9309,9919,9918,9309,9918,2632,2632,9918,3197,2636,2645,2648,2636,2648,3200,2636,3200,2635,16430,16429,16434,16430,16434,16435,16431,16430,16435,16431,16435,16436,16429,16433,16434,16435,16434,16437,16435,16437,16438,16436,16435,16438,16436,16438,16439,16436,16439,9933,16436,9933,9932,16436,9932,16431,16431,9932,3205,16431,3205,16430,16430,3205,9929,16430,9929,16429,16429,9929,16432,16429,16432,16433,16433,16432,3195,16433,3195,9920,16433,9920,9921,16433,9921,16434,16434,9921,16437,16437,9921,3198,16437,3198,2650,16437,2650,16438,16438,2650,9320,16438,9320,16439,16439,9320,9321,16439,9321,9933,9933,9321,9934,9934,9321,9322,9934,9322,9935,9935,9322,9323,9935,9323,3208,3208,9323,2651,3208,2651,3211,3211,2651,3214,3195,16432,3194,3194,16432,3202,3202,16432,9929,2654,2660,2653,2653,2660,3215,2663,2666,3220,2663,3220,3217,2663,3217,2662,2662,3217,3212,2662,3212,3213,2671,2674,3221,2671,3221,2668,3221,2674,3225,2677,3234,3231,2677,3231,9351,9351,3231,3228,9351,3228,2676,2676,3228,3226,2680,3240,3237,2680,3237,2679,2679,3237,3235,9359,2686,9968,9359,9968,9965,9359,9965,9964,9359,9964,2683,2683,9964,3241,2683,3241,2682,9965,9968,3243,2689,2700,2701,2689,2701,2688,2688,2701,9969,9969,2701,9975,9969,9975,9974,9969,9974,3244,3244,9974,3246,2695,2698,2692,2692,2698,2691,2704,2724,16442,2704,16442,9977,2704,9977,2703,9977,16442,16441,9977,16441,9976,9976,16441,16440,9976,16440,3247,3247,16440,3254,3247,3254,3251,3254,16440,9987,3254,9987,3257,9987,16440,16441,9987,16441,9988,9988,16441,16442,9988,16442,9989,9989,16442,3260,3260,16442,2724,3260,2724,2725,16443,16444,16445,16445,16444,16448,16445,16448,16449,16446,16445,16449,16444,16447,16448,16448,16447,16450,16448,16450,16451,16449,16448,16451,16449,16451,16452,16451,16450,16453,16451,16453,16454,16452,16451,16454,16454,16453,16456,16453,16455,16456,16456,16455,2710,16456,2710,2713,16456,2713,13789,16456,13789,16454,16454,13789,13788,16454,13788,16452,16452,13788,13787,16452,13787,16449,16449,13787,13786,16449,13786,16446,16446,13786,13785,16446,13785,13784,16446,13784,16445,16445,13784,16443,16443,13784,13783,16443,13783,2721,16443,2721,2722,16443,2722,2706,16443,2706,16444,16444,2706,16447,16447,2706,9377,16447,9377,16450,16450,9377,16453,16453,9377,16455,16455,9377,2707,16455,2707,2710,16458,16457,16460,16458,16460,16461,16458,16461,16462,16459,16458,16462,16459,16462,16463,16461,16460,16464,16461,16464,16465,16462,16461,16465,16462,16465,16466,16463,16462,16466,16463,16466,16467,16465,16464,16468,16465,16468,16469,16466,16465,16469,16466,16469,16470,16467,16466,16470,16467,16470,16471,16469,16468,16472,16469,16472,16473,16470,16469,16473,16470,16473,16474,16471,16470,16474,16473,16472,16475,16473,16475,16476,16474,16473,16476,16476,16475,16477,16476,16477,9388,16476,9388,9389,16476,9389,16474,16474,9389,9390,16474,9390,16471,16471,9390,9391,16471,9391,16467,16467,9391,9392,16467,9392,16463,16463,9392,9393,16463,9393,16459,16459,9393,2716,16459,2716,16458,16458,2716,9395,16458,9395,16457,16457,9395,2719,16457,2719,13790,16457,13790,16460,16460,13790,13791,16460,13791,16464,16464,13791,13792,16464,13792,16468,16468,13792,13793,16468,13793,16472,16472,13793,13794,16472,13794,13795,16472,13795,16475,16475,13795,16477,16477,13795,13796,16477,13796,9388,9388,13796,2715,2728,3261,2727,16480,16479,16482,16480,16482,16483,16481,16480,16483,16481,16483,16484,16481,16484,10001,16481,10001,3266,16481,3266,9997,16481,9997,16480,16480,9997,9996,16480,9996,16479,16479,9996,16478,16479,16478,9990,16479,9990,16482,16482,9990,9991,16482,9991,9992,16482,9992,16483,16483,9992,16484,16484,9992,3259,16484,3259,2730,16484,2730,10002,16484,10002,10001,10002,2730,2733,9990,16478,3258,3258,16478,3263,3263,16478,9995,9995,16478,9996,2738,2741,16485,2738,16485,2735,2735,16485,10004,10004,16485,10003,10003,16485,10005,10003,10005,3267,10005,16485,10006,10006,16485,9421,10006,9421,2744,9421,16485,9420,9420,16485,2741,16486,16487,16488,16486,16488,16489,16486,16489,16490,16488,16487,16492,16488,16492,16493,16488,16493,16494,16489,16488,16494,16489,16494,16495,16490,16489,16495,16490,16495,16496,16487,16497,16491,16487,16491,16492,16492,16491,16499,16492,16499,16500,16493,16492,16500,16493,16500,16501,16494,16493,16501,16494,16501,16502,16491,16498,16499,16499,16498,9998,16499,9998,9999,16499,9999,16500,16500,9999,10000,16500,10000,16501,16501,10000,3265,16501,3265,16502,16502,3265,10007,16502,10007,16495,16502,16495,16494,16495,10007,10008,16495,10008,2746,16495,2746,16496,16496,2746,2747,16496,2747,16490,16490,2747,3285,16490,3285,16486,16486,3285,3280,16486,3280,16497,16486,16497,16487,16497,3280,16503,16497,16503,16498,16497,16498,16491,16498,16503,3269,16498,3269,3264,16498,3264,9998,3269,16503,3274,3274,16503,3277,3277,16503,3280,2750,2756,9427,9427,2756,3288,9427,3288,2749,2749,3288,3286,2759,2762,16504,2759,16504,16505,2759,16505,2758,2758,16505,3291,2758,3291,3289,3291,16505,10036,10036,16505,10037,10037,16505,16504,10037,16504,10038,10038,16504,3307,10038,3307,3302,10038,3302,3294,3294,3302,3297,3307,16504,2762,2765,2768,3313,2765,3313,10052,2765,10052,16506,2765,16506,9443,9443,16506,2764,2764,16506,10051,2764,10051,3310,2764,3310,3308,10051,16506,10052,3313,2768,2771,16507,16509,16510,16508,16507,16510,16508,16510,16511,16509,16513,16514,16510,16509,16514,16510,16514,16515,16511,16510,16515,16513,16516,16517,16514,16513,16517,16514,16517,16518,16515,16514,16518,16515,16518,10067,16515,10067,10066,16515,10066,16511,16511,10066,10065,16511,10065,16512,16511,16512,10063,16511,10063,16508,16508,10063,3319,16508,3319,16507,16507,3319,3316,16507,3316,10058,16507,10058,16509,16509,10058,10057,16509,10057,16513,16513,10057,10056,16513,10056,16516,16516,10056,10055,16516,10055,9461,16516,9461,16517,16517,9461,2774,16517,2774,16518,16518,2774,2777,16518,2777,10067,9461,10055,3314,9461,3314,2773,10063,16512,3322,3322,16512,3325,3325,16512,10065,2780,2785,9473,9473,2785,10073,9473,10073,9472,9472,10073,10072,9472,10072,16520,9472,16520,9471,9471,16520,16519,9471,16519,10070,9471,10070,2779,10070,16519,10069,10069,16519,10068,10068,16519,10071,10068,10071,3326,10071,16519,10072,10072,16519,16520,2788,2794,10076,2788,10076,2787,10076,2794,10075,10075,2794,3331,10075,3331,10074,10074,3331,3328,10074,3328,3324,3324,3328,3323,2797,3334,9487,9487,3334,3332,9487,3332,2796,3343,3340,3346,2800,3349,3337,2800,3337,2799,2799,3337,3335,3337,3349,3340,3340,3349,3346,2803,2809,2802,2802,2809,3357,2802,3357,3350,3350,3357,3354,16521,16524,16525,16522,16521,16525,16522,16525,16526,16523,16522,16526,16523,16526,16527,16526,16525,16528,16526,16528,16529,16527,16526,16529,2812,2818,9503,16527,16529,2827,16527,2827,3366,16527,3366,16523,16523,3366,10110,16523,10110,16522,16522,10110,16521,16521,10110,10109,16521,10109,10101,16521,10101,3358,16521,3358,16524,16524,3358,2811,16524,2811,16525,16525,2811,9502,16525,9502,16528,16528,9502,9503,16528,9503,16529,16529,9503,2826,16529,2826,2827,2826,9503,2818,10101,10109,3363,10101,3363,3360,3366,2827,3369,2821,2824,2820,2830,2836,9521,9521,2836,3372,9521,3372,2829,2829,3372,3370,16530,16533,16534,16530,16534,16535,16531,16530,16535,16531,16535,16536,16532,16531,16536,16532,16536,3375,16532,3375,10129,16532,10129,10128,16532,10128,16531,16531,10128,10127,16531,10127,16530,16530,10127,10126,16530,10126,16533,16533,10126,10125,16533,10125,3373,16533,3373,2838,16533,2838,16534,16534,2838,16535,16535,2838,9533,16535,9533,16536,16536,9533,2839,16536,2839,3378,16536,3378,3375,2842,3384,2841,2841,3384,3379,3379,3384,3381,2844,2845,3385,9549,2851,10153,9549,10153,10152,9549,10152,16539,9549,16539,2848,2848,16539,2847,2847,16539,16538,2847,16538,3383,3383,16538,3382,3382,16538,16537,3382,16537,3387,3387,16537,3390,3390,16537,3393,3393,16537,3396,3396,16537,10150,10150,16537,16538,10150,16538,10151,10151,16538,16539,10151,16539,10152,10153,2851,2859,10153,2859,2860,10153,2860,3399,2854,2857,2853,2866,3404,2863,2863,3404,3400,2863,3400,2862,2869,3407,2868,2868,3407,3405,16540,16543,16544,16541,16540,16544,16541,16544,16545,16541,16545,16546,16542,16541,16546,16542,16546,16547,16545,16544,16548,16545,16548,16549,16546,16545,16549,16546,16549,16550,16547,16546,16550,16547,16550,16551,16547,16551,3416,16547,3416,10178,16547,10178,16542,16542,10178,3413,16542,3413,16541,16541,3413,3410,16541,3410,16540,16540,3410,9569,16540,9569,16543,16543,9569,2875,16543,2875,13774,16543,13774,16544,16544,13774,13773,16544,13773,16548,16548,13773,13772,16548,13772,16549,16549,13772,2886,16549,2886,16550,16550,2886,9589,16550,9589,16551,16551,9589,2887,16551,2887,3419,16551,3419,3416,9569,3410,3408,9569,3408,2872,2872,3408,2871,16553,16552,16554,16553,16554,16555,16553,16555,13775,16553,13775,13776,16553,13776,16552,16552,13776,13777,16552,13777,9573,16552,9573,9574,16552,9574,16554,16554,9574,16556,16554,16556,9586,16554,9586,16555,16555,9586,9587,16555,9587,13775,13775,9587,2884,9586,16556,9585,9585,16556,2878,2878,16556,9575,9575,16556,9574,9573,13777,2877,2889,2890,3420,10197,3425,10194,10197,10194,10189,10197,10189,10188,10197,10188,10187,10197,10187,10198,10198,10187,3420,10198,3420,2890,10189,10194,3422,16557,16559,16560,16558,16557,16560,16558,16560,16561,16560,16559,16562,16560,16562,16563,16561,16560,16563,16561,16563,16564,3437,3434,3442,16561,16564,3428,16561,3428,16558,16558,3428,3426,16558,3426,10199,16558,10199,16557,16557,10199,10200,16557,10200,16559,16559,10200,2892,16559,2892,2893,16559,2893,10218,16559,10218,16562,16562,10218,10217,16562,10217,16563,16563,10217,10216,16563,10216,16564,16564,10216,3447,16564,3447,3442,16564,3442,3434,16564,3434,3431,16564,3431,3428,16565,16568,16569,16566,16565,16569,16566,16569,16570,16567,16566,16570,16567,16570,10224,16567,10224,10219,16567,10219,10220,16567,10220,16566,16566,10220,10221,16566,10221,16565,16565,10221,9600,16565,9600,9601,16565,9601,16568,16568,9601,2896,16568,2896,2910,16568,2910,2911,16568,2911,16569,16569,2911,2914,16569,2914,16570,16570,2914,3450,16570,3450,10224,9600,10221,2895,10219,10224,3448,2899,2902,2898,2898,2902,2905,2898,2905,2908,16571,16572,16573,16571,16573,10233,16571,10233,3451,16571,3451,2916,16571,2916,9631,16571,9631,16572,16572,9631,9632,16572,9632,9633,16572,9633,16573,16573,9633,16574,16573,16574,10234,16573,10234,10233,10234,16574,3453,3453,16574,2920,2920,16574,2917,2917,16574,9633,2923,3456,2922,2922,3456,3454,2926,2932,2925,2925,2932,3459,2925,3459,3457,16575,16576,16577,16576,16579,16580,16577,16576,16580,16577,16580,16581,16577,16581,10248,16577,10248,10247,16577,10247,16575,16575,10247,10246,16575,10246,10241,16575,10241,10240,16575,10240,16576,16576,10240,10239,16576,10239,16579,16579,10239,16578,16579,16578,2934,16579,2934,9639,16579,9639,16580,16580,9639,16581,16581,9639,2935,16581,2935,10248,2934,16578,3460,3460,16578,10238,10238,16578,10239,10241,10246,3462,2938,2944,2937,2937,2944,10251,10251,2944,16584,10251,16584,10250,10250,16584,16583,10250,16583,10249,10249,16583,16582,10249,16582,3463,3463,16582,3465,3465,16582,3471,3465,3471,3468,3471,16582,10254,10254,16582,16583,10254,16583,3474,3474,16583,16584,3474,16584,2944,2947,3483,16585,2947,16585,9663,9663,16585,3475,9663,3475,2946,3475,16585,3477,3477,16585,3480,3480,16585,3483,2950,3495,3486,2950,3486,2949,2949,3486,3484,3486,3495,3492,3486,3492,3489,2953,3504,2952,2952,3504,3501,2952,3501,3498,2952,3498,3496,16586,16588,16589,16587,16586,16589,16587,16589,16590,16588,16591,16592,16589,16588,16592,16589,16592,16593,16590,16589,16593,16590,16593,16594,16591,16595,16596,16592,16591,16596,16592,16596,16597,16593,16592,16597,16593,16597,16598,16594,16593,16598,16596,16595,16599,16596,16599,16600,16597,16596,16600,16598,16597,16600,16598,16600,16601,16600,16599,16602,16601,16600,16602,16601,16602,3507,16601,3507,10283,16601,10283,16598,16598,10283,10282,16598,10282,16594,16594,10282,16590,16590,10282,10281,16590,10281,16587,16587,10281,10280,16587,10280,9672,16587,9672,16586,16586,9672,9673,16586,9673,16588,16588,9673,9674,16588,9674,16591,16591,9674,9675,16591,9675,16595,16595,9675,2956,16595,2956,9679,16595,9679,16599,16599,9679,2959,16599,2959,16602,16602,2959,3507,9672,10280,3505,9672,3505,2955,2962,3510,3508,2962,3508,2961,16603,16604,16605,16605,16604,16606,16605,16606,9689,16605,9689,2968,16605,2968,3519,16605,3519,16603,16603,3519,10310,16603,10310,10290,16603,10290,10289,16603,10289,16604,16604,10289,10288,16604,10288,16606,16606,10288,3511,16606,3511,9688,16606,9688,9689,9688,3511,2964,9688,2964,2965,10290,10310,10291,10291,10310,3516,10291,3516,3513,10291,3513,10300,10291,10300,10292,10292,10300,3500,3500,10300,3490,3500,3490,3499,3499,3490,3491,2971,3528,3525,2971,3525,2970,2970,3525,3522,2970,3522,3520,10341,3546,16607,10341,16607,16608,10341,16608,10342,10342,16608,10326,10342,10326,3531,10342,3531,2974,2974,3531,3529,2974,3529,2973,10326,16608,3534,3534,16608,16607,3534,16607,10328,10328,16607,10337,10328,10337,10329,10329,10337,10336,10329,10336,10330,10330,10336,3540,10330,3540,3537,10337,16607,3543,3543,16607,3546,2977,2980,16610,2977,16610,9697,9697,16610,10345,9697,10345,2976,10345,16610,10344,10344,16610,16609,10344,16609,3547,3547,16609,3552,3547,3552,3549,3552,16609,2986,2986,16609,2983,2983,16609,9711,9711,16609,16610,9711,16610,2980,2989,3564,9723,9723,3564,16611,9723,16611,9722,9722,16611,9721,9721,16611,3558,9721,3558,3555,9721,3555,3553,9721,3553,2988,3558,16611,10354,10354,16611,3564,10354,3564,3561,2992,3570,2991,2991,3570,3567,2991,3567,3565,2995,6368,3008,2995,3008,2994,2994,3008,3011,2994,3011,3571,3571,3011,3576,3571,3576,3573,2998,3003,2997,2997,3003,6369,3006,6367,3005,3014,3577,3013,3017,3591,3579,3017,3579,3016,3016,3579,3574,3016,3574,3575,3579,3591,10376,10376,3591,10386,10376,10386,3582,3582,10386,3588,3582,3588,3585,3020,3592,3019,9750,3026,3603,9750,3603,16612,9750,16612,9749,9749,16612,3022,9749,3022,3023,3022,16612,3590,3590,16612,10389,10389,16612,3600,10389,3600,10400,10389,10400,3589,3589,10400,3597,3589,3597,3594,3600,16612,3603,3029,3624,3621,3029,3621,3618,3029,3618,10417,3029,10417,9756,9756,10417,10416,9756,10416,3028,3028,10416,16613,3028,16613,10412,3028,10412,3604,10412,16613,3606,3606,16613,3609,3609,16613,3612,3612,16613,10415,10415,16613,10416,10417,3618,3615,3032,3630,3627,3032,3627,3625,3032,3625,3031,16614,16616,16617,16614,16617,9778,16614,9778,3041,16614,3041,3633,16614,3633,10434,16614,10434,16616,16616,10434,16615,16616,16615,9767,16616,9767,16617,16617,9767,9768,16617,9768,3038,16617,3038,9778,9767,16615,9766,9766,16615,9765,9765,16615,3631,9765,3631,3034,9765,3034,3035,3631,16615,10434,3044,4312,10441,3044,10441,3043,3043,10441,3636,3043,3636,3634,10441,4312,10442,10442,4312,4310,10442,4310,3639,3639,4310,11280,3639,11280,3642,3642,11280,3595,3642,3595,3596,11294,4323,4317,11294,4317,4313,11294,4313,3046,11294,3046,3047,4317,4323,4320,3050,3053,3760,3050,3760,3721,3050,3721,3049,3049,3721,10526,3049,10526,11296,11296,10526,10527,11296,10527,4324,4324,10527,11298,11298,10527,3722,11298,3722,4326,4326,3722,4329,3760,3053,3056,10568,3768,3757,10568,3757,10563,10568,10563,10569,10569,10563,10564,10569,10564,3059,3059,10564,10565,3059,10565,3058,3058,10565,3758,3757,3768,3762,3762,3768,3765,3062,3074,10575,3062,10575,3061,3061,10575,10574,3061,10574,10571,10571,10574,10573,10571,10573,10570,10570,10573,10572,10570,10572,3769,3769,10572,3774,3769,3774,3771,16623,16622,16625,16624,16623,16625,16621,16624,16625,16625,16622,3783,16625,3783,10585,16625,10585,16621,16621,10585,10584,16621,10584,16620,16621,16620,10577,16621,10577,16624,16624,10577,10578,16624,10578,10579,16624,10579,16623,16623,10579,3076,16623,3076,16622,16622,3076,3077,16622,3077,3080,16622,3080,3783,10577,16620,10576,10576,16620,16619,10576,16619,16618,10576,16618,3775,3775,16618,10580,10580,16618,10582,10580,10582,3777,10582,16618,3780,3780,16618,16619,3780,16619,10584,10584,16619,16620,3083,3784,3082,16626,16628,16629,16627,16626,16629,16627,16629,16630,16629,16628,16632,16629,16632,16633,16630,16629,16633,16630,16633,16634,16631,16630,16634,16631,16634,9824,16631,9824,3086,16631,3086,3797,16631,3797,16627,16631,16627,16630,16627,3797,3792,16627,3792,3786,16627,3786,10589,16627,10589,16626,16626,10589,10588,16626,10588,16628,16628,10588,3781,16628,3781,10586,16628,10586,16632,16632,10586,10587,16632,10587,16633,16633,10587,16634,16634,10587,3782,16634,3782,3085,16634,3085,9824,3786,3792,3789,3797,3086,3800,3089,3092,3803,3089,3803,9826,9826,3803,3801,9826,3801,3088,3095,3806,3094,3094,3806,3804,3098,3101,3809,3098,3809,3097,3097,3809,3807,3104,3107,3103,3103,3107,3818,3103,3818,3810,3810,3818,3812,3812,3818,3815,3110,3113,3819,3110,3819,3109,3116,3816,3115,3115,3816,3817,3121,3821,3813,3121,3813,3814,3121,3814,3118,16636,16635,16641,16637,16643,16644,16638,16637,16644,16639,16645,16646,16640,16639,16646,16642,16641,16647,16636,16641,16642,16643,16642,16648,16644,16643,16648,16645,16644,16648,16646,16645,16648,16647,16646,16648,16642,16647,16648,16647,16641,3793,16647,3793,3796,16647,3796,16646,16646,3796,16640,16640,3796,3822,16640,3822,16639,16639,3822,3123,16639,3123,16638,16639,16638,16645,16645,16638,16644,16638,3123,3126,16638,3126,3132,16638,3132,10646,16638,10646,16637,16637,10646,10645,16637,10645,16643,16643,10645,10644,16643,10644,16642,16642,10644,16636,16636,10644,10643,16636,10643,16635,16635,10643,3833,16635,3833,3830,16635,3830,10637,16635,10637,16641,16641,10637,3793,3793,10637,3827,3793,3827,3824,10646,3132,3836,3135,3138,3839,3135,3839,3837,3135,3837,3134,3141,3147,10662,3141,10662,9871,9871,10662,10661,9871,10661,16649,9871,16649,3140,3140,16649,3840,3840,16649,3842,3842,16649,10659,3842,10659,3845,10659,16649,10660,10660,16649,10661,16651,16650,16654,16651,16654,16655,16651,16655,16656,16652,16651,16656,16652,16656,16657,16650,16653,16654,16654,16653,16659,16654,16659,16660,16655,16654,16660,16655,16660,16661,16656,16655,16661,16656,16661,16662,16657,16656,16662,16657,16662,16663,16653,16658,16659,16659,16658,16665,16659,16665,16666,16660,16659,16666,16660,16666,16667,16661,16660,16667,16661,16667,16668,16662,16661,16668,16662,16668,16669,16663,16662,16669,16663,16669,16670,16658,16664,16665,16665,16664,16671,16665,16671,16672,16666,16665,16672,16666,16672,16673,16667,16666,16673,16667,16673,16674,16668,16667,16674,16668,16674,16675,16669,16668,16675,16669,16675,16676,16670,16669,16676,16673,16672,16677,16673,16677,16678,16674,16673,16678,16674,16678,16679,16675,16674,16679,16675,16679,16680,16676,16675,16680,16678,16677,16681,16679,16678,16681,16679,16681,10665,16679,10665,16680,16680,10665,10666,16680,10666,3149,16680,3149,16676,16676,3149,9878,16676,9878,16670,16670,9878,9879,16670,9879,16663,16663,9879,3150,16663,3150,16657,16657,3150,10678,16657,10678,16652,16652,10678,3854,16652,3854,16651,16651,3854,16650,16650,3854,3851,16650,3851,16653,16653,3851,3848,16653,3848,10668,16653,10668,16658,16658,10668,10667,16658,10667,16664,16664,10667,16671,16671,10667,3846,16671,3846,10663,16671,10663,16677,16671,16677,16672,16677,10663,10664,16677,10664,16681,16681,10664,10665,3153,3860,3152,3152,3860,10680,10680,3860,3857,10680,3857,3855,3156,3159,3162,3156,3162,3155,3155,3162,3861,10681,3863,16682,10681,16682,9885,10681,9885,3165,9885,16682,3859,9885,3859,3164,3859,16682,3858,3858,16682,3863,16683,16686,16687,16684,16683,16687,16685,16688,16689,16686,16685,16689,16686,16689,3864,16686,3864,10682,16686,10682,16687,16687,10682,3167,16687,3167,16684,16684,3167,3168,16684,3168,3875,16684,3875,10686,16684,10686,16683,16683,10686,10685,16683,10685,16686,16686,10685,3872,16686,3872,16685,16685,3872,3869,16685,3869,16688,16688,3869,3866,16688,3866,10683,16688,10683,16689,16689,10683,3864,16690,16691,16692,16690,16692,16693,16690,16693,10695,16690,10695,3881,16690,3881,3878,16690,3878,16691,16691,3878,3876,16691,3876,10702,16691,10702,16692,16692,10702,10701,16692,10701,16693,16693,10701,3890,16693,3890,3887,16693,3887,3884,16693,3884,10695,10702,3876,3171,3171,3876,3170,3174,3177,3896,3174,3896,9895,9895,3896,10708,9895,10708,9894,9894,10708,10707,9894,10707,16695,9894,16695,9893,9893,16695,3173,3173,16695,10704,10704,16695,16694,10704,16694,10703,10703,16694,3893,10703,3893,3891,3893,16694,10706,10706,16694,16695,10706,16695,10707,3180,3186,3897,3180,3897,3179,16697,16696,16699,16697,16699,16700,16696,16698,16699,16699,16698,16701,16699,16701,16702,16700,16699,16702,16702,16701,16703,16702,16703,3908,16702,3908,16700,16700,3908,3905,16700,3905,3902,16700,3902,16697,16697,3902,10718,16697,10718,16696,16696,10718,10717,16696,10717,3894,16696,3894,16698,16698,3894,10710,16698,10710,16701,16701,10710,10711,16701,10711,16703,16703,10711,10712,16703,10712,3189,16703,3189,3908,3189,10712,3895,3189,3895,3188,3894,10717,3899,3192,3201,3909,3192,3909,3191,16704,16705,16706,16704,16707,16705,16706,16705,16709,16706,16709,16710,16705,16708,16709,16709,16708,16712,16709,16712,16713,16710,16709,16713,16708,16711,16712,16712,16711,16715,16712,16715,16716,16713,16712,16716,16711,16714,16715,16715,16714,9931,16715,9931,3204,16715,3204,16716,16716,3204,3923,16716,3923,10744,16716,10744,16713,16713,10744,10743,16713,10743,16710,16710,10743,3920,16710,3920,16706,16706,3920,10740,16706,10740,16704,16704,10740,10739,16704,10739,16707,16707,10739,3911,16707,3911,3906,16707,3906,16705,16705,3906,16708,16708,3906,16711,16711,3906,3907,16711,3907,16714,16714,3907,9931,9931,3907,3203,3911,10739,3914,3914,10739,3917,3207,3232,3233,3207,3233,9939,9939,3233,3236,9939,3236,9938,9938,3236,10748,9938,10748,9937,9937,10748,3926,9937,3926,9936,9936,3926,3924,9936,3924,3206,3210,3216,3230,3210,3230,3209,3230,3216,3229,3219,3224,3218,3218,3224,3227,16717,16719,16720,16718,16717,16720,16718,16720,16721,16720,16719,16722,16720,16722,16723,16721,16720,16723,16721,16723,9967,16721,9967,3242,16721,3242,16718,16718,3242,3245,16718,3245,3929,16718,3929,16717,16717,3929,10751,16717,10751,16719,16719,10751,3927,16719,3927,10750,16719,10750,16722,16722,10750,3238,16722,3238,3239,16722,3239,9966,16722,9966,16723,16723,9966,9967,3929,3245,3250,10768,3935,16724,10768,16724,16725,10768,16725,10769,10769,16725,16726,10769,16726,3253,3253,16726,3252,3252,16726,3930,3930,16726,10755,10755,16726,16725,10755,16725,3919,3919,16725,16724,3919,16724,10742,10742,16724,3935,10742,3935,10763,10742,10763,10741,10741,10763,3918,3918,10763,3932,3256,3262,16728,3256,16728,10772,3256,10772,3255,10772,16728,10771,10771,16728,16727,10771,16727,10773,10771,10773,3936,10773,16727,10774,10774,16727,3262,10774,3262,10775,10775,3262,3268,10775,3268,3938,3262,16727,16728,3273,3950,3947,3273,3947,3944,3273,3944,3941,3273,3941,3939,3273,3939,3270,3276,3958,3275,3275,3958,3951,3951,3958,3955,3279,3974,3278,3278,3974,3959,3959,3974,3961,3961,3974,3966,3966,3974,3971,16732,16731,16734,16732,16734,3281,16732,3281,3284,16732,3284,16730,16732,16730,16729,16732,16729,10803,16732,10803,16731,16731,10803,10802,16731,10802,16734,16734,10802,3982,16734,3982,3977,16734,3977,3975,16734,3975,3281,10803,16729,10804,10804,16729,10805,10805,16729,16730,10805,16730,10806,10806,16730,16733,10806,16733,10807,10807,16733,3290,3290,16733,3287,3287,16733,3284,3284,16733,16730,10820,3990,10808,10820,10808,10809,10820,10809,10821,10821,10809,10810,10821,10810,10822,10822,10810,10811,10822,10811,10823,10823,10811,10812,10823,10812,10824,10824,10812,16735,10824,16735,10825,10825,16735,10041,10825,10041,3293,10041,16735,10040,10040,16735,16736,10040,16736,10039,10039,16736,10813,10039,10813,3292,10813,16736,10812,10812,16736,16735,10808,3990,3987,10808,3987,3983,16737,16738,16739,16737,16739,16740,16737,16740,16741,16737,16741,16742,16737,16742,16743,16737,16743,16738,16739,16738,16745,16738,16744,16745,16745,16744,10827,16745,10827,10828,16745,10828,10829,16745,10829,16739,16739,10829,16740,16740,10829,10830,16740,10830,10831,16740,10831,16741,16741,10831,3295,16741,3295,3296,16741,3296,16742,16742,3296,4001,16742,4001,3998,16742,3998,3993,16742,3993,10834,16742,10834,16743,16743,10834,10833,16743,10833,16738,16738,10833,16744,16744,10833,10826,16744,10826,10827,10826,10833,3991,16746,16747,16748,16746,16748,16749,16746,16749,16750,16747,16751,16752,16747,16752,16753,16748,16747,16753,16748,16753,16754,16748,16754,16755,16749,16748,16755,16749,16755,16756,16750,16749,16756,16750,16756,16757,16751,16758,16759,16752,16751,16759,16752,16759,16760,16753,16752,16760,16758,16761,16762,16759,16758,16762,16759,16762,16763,16760,16759,16763,16760,16763,10855,16760,10855,10854,16760,10854,16753,16753,10854,16754,16754,10854,10853,16754,10853,16755,16755,10853,4024,16755,4024,4021,16755,4021,16756,16756,4021,10851,16756,10851,16757,16757,10851,4018,16757,4018,4015,16757,4015,10843,16757,10843,16750,16750,10843,10842,16750,10842,16746,16746,10842,16747,16747,10842,10841,16747,10841,16751,16751,10841,16758,16758,10841,4012,16758,4012,16761,16761,4012,4009,16761,4009,4002,16761,4002,3298,16761,3298,16762,16762,3298,3301,16762,3301,10856,16762,10856,16763,16763,10856,10855,4002,4009,4006,3306,3309,3303,3303,3309,10860,10860,3309,10862,10860,10862,10859,10859,10862,10858,10858,10862,10861,10858,10861,10857,10857,10861,4027,10857,4027,4025,10062,3315,4028,10062,4028,10863,10062,10863,10061,10061,10863,16764,10061,16764,10060,10060,16764,16765,10060,16765,10059,10059,16765,10054,10059,10054,3312,10054,16765,10053,10053,16765,10864,10053,10864,3311,10864,16765,16764,10864,16764,10863,3318,4022,4023,3318,4023,3317,3317,4023,4026,3321,3327,4030,3321,4030,10064,10064,4030,16766,10064,16766,3320,3320,16766,4020,4020,16766,10852,10852,16766,4019,4019,16766,4030,3330,3333,10871,3330,10871,10870,3330,10870,3329,3329,10870,10869,3329,10869,4031,10871,3333,3336,16767,16768,16769,16767,16769,16770,16769,16768,16771,16769,16771,16772,16770,16769,16772,16770,16772,16773,16773,16772,16774,16773,16774,16775,16773,16775,10883,16773,10883,10882,16773,10882,16770,16770,10882,10881,16770,10881,16767,16767,10881,10880,16767,10880,10879,16767,10879,16768,16768,10879,4017,16768,4017,4029,16768,4029,16771,16771,4029,10872,16771,10872,16774,16771,16774,16772,16774,10872,10873,16774,10873,10874,16774,10874,16775,16775,10874,3338,16775,3338,10884,16775,10884,10883,10884,3338,3339,4017,10879,4016,4016,10879,4033,16776,16777,16778,16776,16779,16780,16776,16780,16777,16779,16781,16782,16780,16779,16782,16780,16782,16783,16780,16783,16784,16777,16780,16784,16782,16781,16785,16782,16785,16786,16783,16782,16786,16786,16785,16787,3341,3342,10890,16786,16787,10902,16786,10902,4039,16786,4039,10897,16786,10897,16783,16783,10897,16784,16784,10897,10896,16784,10896,10895,16784,10895,16777,16777,10895,4036,16777,4036,16778,16778,4036,10892,16778,10892,10885,16778,10885,16776,16776,10885,10886,16776,10886,16779,16779,10886,10887,16779,10887,16781,16781,10887,10888,16781,10888,10889,16781,10889,16785,16785,10889,16787,16787,10889,10890,16787,10890,3342,16787,3342,10902,10885,10892,4034,16788,16791,16792,16788,16792,16793,16789,16788,16793,16789,16793,16794,16790,16789,16794,16790,16794,16795,16794,16796,16797,16795,16794,16797,16795,16797,4051,16795,4051,4048,16795,4048,10906,16795,10906,16790,16790,10906,4040,16790,4040,16789,16789,4040,16788,16788,4040,10904,16788,10904,16791,16791,10904,3344,16791,3344,3345,16791,3345,10926,16791,10926,16792,16792,10926,16793,16793,10926,10925,16793,10925,16796,16793,16796,16794,16796,10925,4060,16796,4060,4057,16796,4057,16797,16797,4057,4054,16797,4054,4051,10906,4048,4042,4042,4048,4045,4072,4069,10945,3348,3353,3347,3347,3353,10945,3347,10945,10930,10930,10945,4069,10930,4069,10929,10929,4069,10937,10929,10937,4061,4061,10937,10933,4061,10933,4063,10933,10937,4066,10102,3359,16798,10102,16798,10946,10102,10946,3356,3356,10946,3355,10946,16798,4073,4073,16798,4075,4075,16798,3359,3362,4084,3361,3361,4084,4076,4076,4084,4078,4078,4084,4081,16799,16800,16801,16799,16801,16802,16799,16802,16803,16801,16800,16804,16801,16804,16805,16801,16805,16806,16802,16801,16806,16802,16806,16807,16803,16802,16807,16803,16807,10968,16803,10968,10967,16803,10967,10966,16803,10966,16799,16799,10966,10965,16799,10965,16800,16800,10965,4087,16800,4087,10962,16800,10962,16804,16804,10962,10961,16804,10961,10113,16804,10113,16805,16805,10113,16806,16806,10113,10114,16806,10114,16807,16807,10114,10969,16807,10969,10968,10969,10114,3365,10113,10961,4085,10113,4085,3364,16809,16808,16810,16809,16810,10976,16809,10976,10975,16809,10975,10970,16809,10970,10971,16809,10971,16808,16808,10971,10972,16808,10972,10132,16808,10132,10133,16808,10133,16810,16810,10133,10134,16810,10134,10977,16810,10977,10976,10977,10134,3374,10132,10972,10973,10132,10973,10131,10131,10973,10974,10131,10974,10130,10130,10974,3367,10130,3367,3371,3371,3367,3368,10970,10975,4088,16811,16814,16812,16811,16812,10964,16811,10964,4086,16811,4086,10978,16811,10978,16814,16814,10978,16813,16814,16813,4101,16814,4101,16812,16812,4101,4098,16812,4098,4095,16812,4095,10964,10964,4095,4090,10964,4090,10963,10963,4090,4082,10963,4082,4083,4101,16813,4106,4106,16813,16815,4106,16815,3386,3386,16815,3376,3386,3376,3380,3380,3376,3377,3376,16815,10980,10980,16815,16813,10980,16813,10979,10979,16813,10978,3389,4109,3388,3388,4109,4107,16816,16817,16818,16816,16818,16819,16817,16820,16821,16818,16817,16821,4123,4120,4126,4126,4120,11009,16818,16821,11011,16818,11011,11010,16818,11010,16819,16819,11010,11009,16819,11009,4112,16819,4112,16816,16816,4112,11004,16816,11004,16817,16817,11004,11003,16817,11003,16820,16820,11003,11002,16820,11002,3391,16820,3391,3392,16820,3392,11016,16820,11016,16821,16821,11016,4129,16821,4129,11011,3391,11002,4110,4112,11009,4117,4117,11009,4120,16823,16822,16824,16823,16824,16825,16823,16825,16826,16823,16826,11020,16823,11020,4130,16823,4130,16822,16822,4130,11018,16822,11018,11034,16822,11034,11033,16822,11033,16824,16824,11033,11032,16824,11032,16827,16824,16827,16825,16825,16827,16826,16826,16827,11024,16826,11024,11023,16826,11023,11020,11020,11023,4132,11024,16827,11025,11025,16827,16828,11025,16828,11026,11026,16828,11031,11026,11031,4135,11031,16828,11032,11032,16828,16827,11034,11018,3395,3395,11018,3394,16830,16829,16831,16830,16831,16832,16832,16831,16833,16832,16833,16834,16833,16836,16837,16834,16833,16837,16834,16837,16838,16835,16834,16838,16835,16838,4136,16835,4136,11035,16835,11035,16832,16835,16832,16834,16832,11035,11036,16832,11036,16830,16830,11036,11037,16830,11037,11038,16830,11038,16829,16829,11038,10155,16829,10155,10156,16829,10156,16831,16831,10156,16833,16833,10156,10157,16833,10157,16836,16836,10157,10158,16836,10158,16839,16836,16839,16837,16837,16839,16838,16838,16839,3406,16838,3406,3409,16838,3409,4136,3406,16839,3398,3406,3398,3403,3398,16839,10158,10155,11038,3397,16840,16842,16843,16841,16844,16845,16842,16841,16845,16844,16846,16847,16845,16844,16847,16845,16847,11045,16845,11045,11044,16845,11044,16842,16842,11044,16843,16843,11044,11043,16843,11043,4141,16843,4141,4138,16843,4138,16840,16840,4138,4133,16840,4133,11027,16840,11027,16842,16842,11027,16841,16841,11027,11028,16841,11028,11029,16841,11029,16844,16844,11029,11030,16844,11030,16846,16846,11030,4134,16846,4134,3411,16846,3411,3412,16846,3412,16847,16847,3412,11045,11053,4147,16848,11053,16848,16850,11053,16850,11054,11054,16850,16849,11054,16849,3415,3415,16849,10180,10180,16849,11048,10180,11048,3414,11048,16849,11047,11047,16849,16850,11047,16850,16848,11047,16848,11046,11046,16848,4142,4142,16848,4144,4144,16848,4147,10192,3421,4148,10192,4148,11055,10192,11055,10191,10191,11055,11056,10191,11056,10190,10190,11056,3417,10190,3417,3418,4148,3421,4153,4148,4153,4150,16851,16852,16853,16851,16854,16855,16851,16855,16852,16852,16855,11076,16852,11076,4170,16852,4170,16853,16853,4170,11064,16853,11064,11063,16853,11063,16851,16851,11063,4154,16851,4154,16854,16854,4154,3423,16854,3423,10196,16854,10196,11079,16854,11079,11078,16854,11078,16855,16855,11078,11077,16855,11077,11076,11079,10196,3424,11079,3424,3427,11064,4170,4167,11064,4167,4156,4156,4167,4162,4156,4162,4159,16856,16857,16858,16856,16858,11090,16856,11090,11089,16856,11089,11081,16856,11081,11082,16856,11082,11083,16856,11083,16857,16857,11083,3429,16857,3429,3430,16857,3430,4179,16857,4179,16858,16858,4179,4176,16858,4176,11090,11081,11089,11080,11080,11089,4173,11080,4173,4171,3433,4185,3432,4185,4182,3432,3432,4182,4180,3435,3436,4186,4184,3438,4183,13760,3466,4183,13760,4183,3438,13760,3438,3441,4183,3466,3467,16859,16862,16863,16859,16863,16864,16860,16859,16864,16863,16862,16865,16863,16865,16866,16864,16863,16866,16866,16865,16867,16866,16867,10242,16866,10242,10243,16866,10243,10244,16866,10244,16864,16864,10244,10245,16864,10245,16860,16860,10245,16861,16860,16861,13761,16860,13761,16859,16859,13761,3443,16859,3443,3446,16859,3446,10227,16859,10227,16862,16862,10227,3449,16862,3449,10236,16862,10236,16865,16865,10236,10237,16865,10237,16867,16867,10237,3452,16867,3452,3458,16867,3458,10242,3458,3452,3455,13761,16861,3464,3464,16861,3461,3461,16861,10245,3470,4191,4178,3470,4178,3469,3469,4178,4181,4178,4191,4177,4177,4191,4188,3473,3476,10255,10255,3476,4194,10255,4194,3472,3472,4194,4192,16868,16870,16871,16869,16868,16871,16869,16871,16872,16869,16872,16873,16871,16870,16874,16871,16874,16875,16871,16875,16876,16872,16871,16876,16872,16876,16877,16873,16872,16877,16873,16877,16878,16875,16874,16879,16875,16879,16880,16875,16880,16881,16876,16875,16881,16877,16876,16881,16877,16881,16882,16877,16882,16883,16878,16877,16883,16880,16879,16884,16881,16880,16884,16881,16884,16885,16882,16881,16885,16882,16885,16883,16883,16885,4209,16883,4209,4206,16883,4206,4203,16883,4203,16878,16878,4203,4200,16878,4200,16873,16873,4200,4197,16873,4197,16869,16869,4197,11117,16869,11117,16868,16868,11117,11116,16868,11116,16870,16870,11116,11115,16870,11115,16874,16874,11115,11114,16874,11114,16879,16879,11114,4195,16879,4195,3478,16879,3478,16884,16884,3478,3479,16884,3479,16885,16885,3479,4209,3482,3485,11145,3482,11145,3481,3481,11145,11144,3481,11144,4221,3481,4221,4218,3481,4218,4210,4210,4218,4215,4210,4215,4212,10303,3512,11150,10303,11150,16886,10303,16886,11147,10303,11147,3487,10303,3487,3488,11147,16886,11146,11146,16886,11148,11146,11148,4222,4222,11148,4224,4224,11148,4227,11148,16886,11149,11149,16886,11150,3494,3497,3493,16887,16888,16889,16888,16890,16891,16889,16888,16891,16889,16891,16892,16889,16892,16893,16891,16890,16894,16891,16894,16895,16891,16895,16896,16892,16891,16896,16892,16896,16897,16893,16892,16897,16895,16894,16898,16895,16898,16899,16895,16899,16900,16896,16895,16900,16897,16896,16900,16897,16900,16901,16898,16902,16903,16899,16898,16903,16900,16899,16903,16900,16903,16904,16901,16900,16904,16903,16902,16905,16904,16903,16905,16904,16905,16906,16904,16906,10294,16904,10294,16901,16901,10294,10295,16901,10295,16897,16897,10295,10296,16897,10296,16893,16893,10296,10297,16893,10297,16889,16889,10297,16887,16887,10297,3502,16887,3502,3503,16887,3503,16888,16888,3503,10284,16888,10284,16890,16890,10284,10285,16890,10285,16894,16894,10285,10286,16894,10286,16898,16898,10286,16902,16902,10286,10287,16902,10287,16905,16905,10287,3506,16905,3506,3509,16905,3509,16906,16906,3509,10293,16906,10293,10294,16907,16908,16909,4230,4228,4233,4233,4228,11154,16907,16909,11155,16907,11155,11154,16907,11154,11151,16907,11151,11152,16907,11152,16908,16908,11152,11153,16908,11153,11163,16908,11163,16909,16909,11163,4239,16909,4239,11156,16909,11156,11155,11156,4239,4236,11163,11153,3514,11163,3514,3515,11151,11154,4228,16910,16911,16912,16912,16911,16913,16912,16913,16914,16914,16913,16915,16914,16915,11169,16914,11169,11168,16914,11168,11167,16914,11167,16912,16912,11167,11166,16912,11166,16910,16910,11166,4240,16910,4240,11165,16910,11165,16911,16911,11165,3517,16911,3517,10313,16911,10313,16913,16913,10313,16915,16915,10313,3518,16915,3518,11170,16915,11170,11169,11170,3518,3521,3524,3532,16917,3524,16917,3523,3523,16917,11175,11175,16917,16918,11175,16918,11174,11174,16918,11188,11174,11188,11173,11173,11188,11187,11173,11187,11172,11172,11187,11186,11172,11186,11171,11171,11186,16916,11171,16916,4238,4238,16916,4237,4237,16916,11177,11177,16916,11185,11177,11185,11184,11177,11184,4242,4242,11184,4245,11185,16916,11186,11188,16918,11189,11189,16918,3533,3533,16918,10327,10327,16918,16917,10327,16917,3532,3527,3530,3526,16920,16922,16923,16919,16920,16923,16919,16923,16921,16922,16925,16926,16923,16922,16926,16924,16923,16926,16921,16923,16924,16924,16926,16927,16927,16926,11195,16927,11195,3535,16927,3535,10331,16927,10331,16924,16924,10331,10332,16924,10332,16921,16921,10332,10333,16921,10333,16919,16919,10333,3536,16919,3536,4246,16919,4246,11190,16919,11190,16920,16920,11190,11191,16920,11191,11192,16920,11192,16922,16922,11192,11193,16922,11193,16925,16925,11193,11194,16925,11194,11195,16925,11195,16926,11210,4261,4256,11210,4256,11204,11210,11204,16928,11210,16928,3539,3539,16928,3538,3538,16928,4244,4244,16928,4243,4243,16928,11197,11197,16928,11202,11197,11202,4250,4250,11202,4253,11202,16928,11203,11203,16928,11204,3542,3559,10355,3542,10355,10339,10339,10355,16930,10339,16930,10338,10338,16930,16929,10338,16929,3541,3541,16929,11212,11212,16929,11215,11212,11215,4262,11215,16929,16930,11215,16930,3560,3560,16930,10355,3545,3548,3556,3545,3556,3557,3545,3557,3544,3551,3554,3550,3563,3566,11230,3563,11230,11229,3563,11229,3562,3562,11229,11228,3562,11228,11218,11218,11228,11227,11218,11227,16931,11218,16931,4260,4260,16931,4257,4257,16931,11224,4257,11224,4264,11224,16931,4267,4267,16931,11227,11230,3566,4270,3569,3572,4271,3569,4271,3568,4271,3572,3578,16932,16933,16934,16933,16938,16939,16934,16933,16939,16936,16935,16940,16937,16936,16940,16939,16938,16940,16935,16939,16940,16940,16938,11234,16940,11234,16937,16937,11234,4269,16937,4269,3580,16937,3580,10379,16937,10379,16936,16936,10379,4279,16936,4279,11241,16936,11241,16935,16935,11241,16939,16939,11241,4276,16939,4276,16934,16934,4276,16932,16932,4276,4273,16932,4273,4268,16932,4268,11231,16932,11231,11232,16932,11232,16933,16933,11232,11233,16933,11233,16938,16938,11233,11234,4279,10379,3581,3584,4297,4291,3584,4291,4285,3584,4285,4282,3584,4282,3583,3583,4282,4280,4285,4291,4288,4291,4297,4294,3587,3593,3586,3586,3593,11265,3586,11265,4298,11265,3593,11277,11265,11277,11266,11266,11277,4300,4300,11277,4309,4300,4309,4303,4303,4309,4306,3599,3648,10401,10401,3648,10449,10401,10449,3598,3598,10449,3643,3643,10449,3645,10413,3605,10454,10413,10454,10453,10413,10453,3601,10413,3601,3602,3601,10453,3651,3601,3651,3649,10454,3605,3654,3608,3663,3655,3608,3655,3607,3655,3663,3657,3657,3663,3660,3611,3672,3610,3610,3672,3669,3610,3669,3664,3664,3669,3666,16941,16942,16943,16942,16945,16946,16943,16942,16946,16943,16946,10465,16943,10465,16941,16941,10465,10464,16941,10464,10419,16941,10419,16942,16942,10419,10420,16942,10420,10421,16942,10421,16944,16942,16944,16945,16945,16944,10470,16945,10470,10469,16945,10469,16946,16946,10469,10468,16946,10468,3675,16946,3675,10465,10470,16944,10471,10471,16944,10421,10471,10421,3614,10471,3614,3678,10419,10464,3613,3613,10464,3673,3617,3681,3679,3617,3679,3616,10493,3696,10484,10493,10484,10483,10493,10483,10494,10494,10483,10482,10494,10482,10481,10494,10481,3620,3620,10481,16947,3620,16947,3619,3619,16947,3682,3682,16947,10480,3682,10480,3687,3682,3687,3684,10480,16947,10481,10484,3696,3690,3690,3696,3693,3623,3626,3622,3622,3626,10497,10497,3626,3708,10497,3708,10496,10496,3708,10504,10496,10504,3697,3697,10504,3699,3699,10504,3705,3699,3705,3702,10437,3632,3711,10437,3711,10513,10437,10513,10512,10437,10512,3629,3629,10512,10511,3629,10511,3628,3628,10511,10510,3628,10510,3709,3711,3632,3635,3638,3732,3726,3638,3726,3723,3638,3723,10523,3638,10523,10445,10445,10523,10522,10445,10522,10444,10444,10522,3720,10444,3720,3637,3637,3720,3712,3712,3720,3717,3712,3717,3714,3726,3732,3729,16948,16949,16950,16948,16950,16951,16948,16951,16952,16948,16952,13756,16948,13756,13755,16948,13755,16949,16949,13755,3703,16949,3703,10534,16949,10534,3735,16949,3735,16950,16950,3735,3733,16950,3733,16951,16951,3733,3640,16951,3640,16952,16952,3640,3641,16952,3641,3644,16952,3644,13756,10534,3703,3704,16953,16955,16956,16953,16956,4863,16953,4863,4860,16953,4860,4857,16953,4857,16954,16953,16954,16955,16955,16954,13758,16955,13758,13759,16955,13759,16956,16956,13759,3646,16956,3646,4866,16956,4866,4863,4866,3646,4284,4284,3646,10451,4284,10451,4283,4283,10451,3647,4283,3647,3650,13758,16954,16958,13758,16958,3701,3701,16958,16957,3701,16957,3700,3700,16957,11958,3700,11958,4855,11958,16957,11959,11959,16957,16958,11959,16958,16954,11959,16954,11960,11960,16954,4857,4800,4798,4803,3653,3656,11869,3653,11869,10457,10457,11869,4277,10457,4277,11244,10457,11244,10456,10456,11244,4278,10456,4278,3652,3652,4278,4281,11869,3656,4798,4798,3656,4803,3659,4806,4804,3659,4804,3658,3662,3665,3661,3661,3665,4824,3661,4824,4807,4807,4824,4809,4809,4824,11888,4809,11888,4812,4812,11888,4821,4812,4821,4815,4815,4821,4818,3668,4827,3667,3667,4827,4825,16959,16961,16962,16959,16962,16963,16960,16959,16963,16960,16963,16964,16962,16961,16966,16962,16966,16967,16963,16962,16967,16963,16967,16968,16964,16963,16968,16964,16968,16969,16964,16969,16970,16965,16964,16970,16968,16967,16971,16968,16971,16972,16969,16968,16972,16969,16972,16973,16969,16973,16974,16970,16969,16974,16972,16971,16975,16972,16975,16976,16973,16972,16976,16974,16973,16976,16974,16976,11896,16974,11896,11895,16974,11895,16970,16970,11895,11894,16970,11894,16965,16965,11894,4830,16965,4830,11891,16965,11891,16960,16965,16960,16964,16960,11891,4828,16960,4828,16959,16959,4828,16961,16961,4828,3670,16961,3670,3671,16961,3671,10466,16961,10466,16966,16966,10466,10467,16966,10467,16971,16966,16971,16967,16971,10467,3674,16971,3674,16975,16975,3674,11900,16975,11900,16976,16976,11900,4833,16976,4833,11896,16980,16979,16986,16980,16986,16987,16981,16980,16987,16983,16982,16990,16983,16990,16991,16984,16983,16991,16985,16984,16991,16986,16985,16991,16979,16985,16986,16987,16986,16992,16988,16987,16992,16989,16988,16992,16990,16989,16992,16991,16990,16992,16986,16991,16992,16990,16982,16989,16989,16982,10472,16989,10472,10473,16989,10473,16988,16988,10473,10474,16988,10474,16981,16988,16981,16987,16981,10474,10475,16981,10475,16978,16981,16978,3683,16981,3683,16980,16980,3683,11910,16980,11910,16977,16980,16977,16979,16979,16977,16985,16985,16977,11904,16985,11904,11903,16985,11903,16984,16984,11903,11902,16984,11902,16983,16983,11902,4834,16983,4834,11901,16983,11901,16982,16982,11901,10472,10472,11901,3676,11904,16977,4836,4836,16977,11910,3683,16978,3680,3680,16978,10475,3680,10475,3677,11922,4845,11920,11922,11920,4837,11922,4837,11923,11923,4837,11913,11923,11913,11924,11924,11913,3685,11924,3685,3686,4837,11920,4839,4839,11920,4842,16993,16995,16996,16994,16998,16999,16995,16994,16999,16995,16999,17000,16996,16995,17000,16996,17000,17001,16998,16997,17003,16998,17003,17004,16999,16998,17004,16999,17004,17005,17000,16999,17005,17000,17005,17006,17001,17000,17006,17001,17006,17007,17002,17001,17007,17004,17003,17010,17004,17010,17011,17005,17004,17011,17005,17011,17012,17006,17005,17012,17006,17012,17013,17007,17006,17013,17007,17013,17014,17008,17015,17016,17009,17008,17016,17010,17009,17016,17003,17009,17010,17011,17010,17017,17011,17017,17018,17012,17011,17018,17013,17012,17018,17013,17018,17019,17014,17013,17019,17016,17015,17022,17017,17016,17022,17010,17016,17017,17018,17017,17023,17019,17018,17023,17020,17019,17023,17021,17020,17023,17022,17021,17023,17017,17022,17023,17022,17015,11926,17022,11926,17021,17021,11926,11927,17021,11927,17020,17020,11927,3688,17020,3688,10485,17020,10485,17014,17020,17014,17019,17014,10485,10486,17014,10486,17007,17007,10486,10487,17007,10487,17002,17002,10487,10488,17002,10488,17001,17001,10488,16996,16996,10488,10489,16996,10489,16993,16993,10489,3689,16993,3689,11932,16993,11932,11931,16993,11931,16995,16995,11931,16994,16994,11931,11930,16994,11930,16997,16994,16997,16998,16997,11930,11929,16997,11929,17009,16997,17009,17003,17009,11929,11928,17009,11928,17008,17008,11928,4846,17008,4846,11925,17008,11925,17015,17015,11925,11926,17024,17025,17026,17024,17026,17027,17024,17028,17029,17024,17029,17025,17026,17025,17031,17026,17031,17032,17029,17033,17034,17025,17029,17034,17025,17034,17030,17025,17030,17031,17031,17030,17036,17031,17036,17037,17032,17031,17037,17033,17038,17039,17034,17033,17039,17034,17039,17040,17030,17034,17040,17030,17040,17035,17030,17035,17036,17039,17038,17042,17039,17042,17043,17040,17039,17043,17040,17043,17044,17035,17040,17044,17035,17044,17041,17042,17045,17046,17043,17042,17046,17043,17046,17047,17044,17043,17047,17044,17047,17041,17041,17047,11934,17041,11934,11935,17041,11935,17036,17041,17036,17035,17036,11935,11936,17036,11936,17037,17037,11936,11937,17037,11937,17032,17032,11937,3691,17032,3691,3692,17032,3692,17027,17032,17027,17026,17027,3692,4819,17027,4819,17024,17024,4819,17028,17028,4819,4820,17028,4820,11943,17028,11943,17033,17028,17033,17029,17033,11943,17038,17038,11943,11942,17038,11942,17042,17042,11942,11941,17042,11941,17045,17045,11941,4848,17045,4848,11921,17045,11921,17046,17046,11921,4844,17046,4844,17047,17047,4844,11933,17047,11933,11934,11921,4848,4843,3695,3698,4854,3695,4854,3694,3694,4854,4817,4817,4854,4816,17052,17051,17053,17052,17053,17054,17054,17053,10515,17054,10515,10516,17054,10516,17055,17054,17055,10540,17054,10540,17052,17052,10540,10539,17052,10539,17051,17051,10539,10538,17051,10538,17050,17051,17050,10507,17051,10507,3707,17051,3707,10514,17051,10514,17053,17053,10514,10515,10507,17050,17049,10507,17049,3706,3706,17049,17048,3706,17048,10535,10535,17048,10536,10535,10536,3741,10535,3741,3738,10535,3738,3736,10536,17048,10537,10537,17048,17049,10537,17049,17050,10537,17050,10538,10540,17055,10541,10541,17055,3744,3744,17055,17056,3744,17056,3747,3747,17056,10517,3747,10517,3713,3713,10517,3710,10517,17056,10516,10516,17056,17055,3716,3748,3715,17057,17059,17060,17059,17058,17064,17060,17059,17064,17061,17060,17064,17062,17061,17064,17063,17062,17064,17058,17063,17064,17063,17058,3745,17063,3745,3746,17063,3746,17062,17062,3746,3718,17062,3718,3719,17062,3719,3759,17062,3759,17061,17061,3759,10562,17061,10562,17060,17060,10562,10561,17060,10561,17057,17057,10561,10560,17057,10560,3756,17057,3756,3753,17057,3753,10557,17057,10557,17059,17059,10557,3750,17059,3750,17058,17058,3750,3745,11309,4338,4332,11309,4332,11310,11310,4332,4330,11310,4330,3725,3725,4330,3724,4332,4338,4335,3728,4347,17065,3728,17065,3727,3727,17065,11312,11312,17065,11311,11311,17065,11313,11311,11313,4339,11313,17065,4341,4341,17065,4344,4344,17065,4347,3731,3734,4348,3731,4348,3730,4348,3734,3737,3740,4350,3739,3739,4350,4345,3739,4345,4346,17068,17067,17070,17069,17068,17070,17071,17070,17073,17069,17070,17071,17072,17071,17074,17072,17074,17075,17071,17073,17074,17075,17074,17076,17075,17076,3749,17075,3749,4353,17075,4353,17072,17072,4353,11321,17072,11321,11320,17072,11320,17071,17071,11320,17069,17069,11320,11319,17069,11319,17068,17068,11319,11318,17068,11318,11317,17068,11317,17067,17067,11317,17066,17067,17066,10543,17067,10543,10544,17067,10544,17070,17070,10544,10545,17070,10545,17073,17073,10545,10546,17073,10546,17074,17074,10546,17076,17076,10546,10547,17076,10547,3743,17076,3743,3749,10543,17066,10542,10542,17066,11316,10542,11316,11315,10542,11315,3742,3742,11315,4351,11316,17066,11317,17079,17078,17080,17079,17080,17081,17080,17082,17083,17081,17080,17083,17081,17083,17084,17082,17085,17086,17083,17082,17086,17083,17086,17087,17084,17083,17087,17086,17085,17088,17086,17088,17087,17087,17088,10559,17087,10559,3752,17087,3752,4362,17087,4362,4359,17087,4359,17084,17084,4359,4356,17084,4356,17081,17081,4356,4336,17081,4336,17079,17079,4336,17077,17079,17077,17078,17078,17077,11333,17078,11333,11332,17078,11332,17080,17080,11332,11331,17080,11331,17082,17082,11331,11330,17082,11330,17085,17085,11330,11329,17085,11329,17088,17088,11329,4354,17088,4354,3751,17088,3751,10559,11333,17077,11334,11334,17077,11314,11334,11314,4340,11314,17077,4337,4337,17077,4336,3755,3761,3754,3754,3761,4363,3764,4360,4361,3764,4361,3763,3767,3770,3766,3766,3770,4358,4358,3770,4357,4357,3770,4365,10581,3776,4366,10581,4366,3772,10581,3772,3773,4366,3776,11351,11351,3776,4374,11351,4374,4371,11351,4371,4368,10591,3785,11358,10591,11358,17089,10591,17089,10590,10590,17089,10583,10590,10583,3779,10583,17089,3778,3778,17089,4375,4375,17089,11358,3788,3825,3826,3788,3826,3787,3787,3826,4389,3787,4389,11360,11360,4389,11375,11360,11375,17091,11360,17091,4373,4373,17091,17090,4373,17090,4372,4372,17090,4377,4377,17090,11366,11366,17090,17091,11366,17091,4386,11366,4386,4380,4380,4386,4383,4386,17091,11375,3791,3823,3790,3799,3802,3820,3799,3820,3798,3820,3802,3811,3811,3802,3805,3811,3805,3808,3829,4390,10638,10638,4390,3828,17094,17093,17099,17094,17099,17100,17095,17094,17100,17095,17100,17101,17097,17096,17102,17097,17102,17103,17098,17097,17103,17098,17103,17104,17099,17105,17106,17100,17099,17106,17100,17106,17107,17101,17100,17107,17102,17101,17107,17096,17101,17102,17103,17102,17108,17103,17108,17109,17104,17103,17109,17106,17105,17110,17107,17106,17110,17108,17107,17110,17102,17107,17108,17109,17108,17111,17108,17110,17111,17111,17110,4388,17111,4388,3831,17111,3831,3832,17111,3832,17109,17109,3832,17104,17104,3832,4398,17104,4398,17098,17098,4398,4395,17098,4395,11390,17098,11390,17097,17097,11390,11389,17097,11389,17096,17096,11389,11388,17096,11388,17101,17101,11388,17095,17095,11388,11387,17095,11387,11386,17095,11386,17094,17094,11386,17093,17093,11386,17092,17093,17092,11378,17093,11378,17099,17099,11378,17105,17105,11378,4388,17105,4388,17110,11378,17092,4387,4387,17092,4392,4392,17092,11385,11385,17092,11386,17113,17112,17115,17113,17115,17116,17114,17113,17116,17114,17116,17117,17114,17117,3835,17114,3835,3838,17114,3838,3841,17114,3841,17113,17113,3841,11403,17113,11403,17112,17112,11403,4399,17112,4399,10647,17112,10647,17115,17115,10647,10648,17115,10648,10649,17115,10649,17116,17116,10649,17117,17117,10649,10650,17117,10650,3835,10647,4399,3834,11403,3841,4401,10670,3847,4410,10670,4410,4407,10670,4407,4404,10670,4404,10669,10669,4404,11412,10669,11412,3844,3844,11412,4402,3844,4402,3843,3850,4411,3849,3853,3856,10684,3853,10684,17118,3853,17118,3852,3852,17118,11425,3852,11425,4409,4409,11425,4408,4408,11425,4413,11425,17118,3865,3865,17118,10684,10684,3856,3862,17119,17123,17120,17119,17120,17121,17121,17120,17124,17121,17124,17125,17122,17121,17125,17124,17123,17126,17120,17123,17124,17124,17126,4418,17124,4418,4414,17124,4414,17125,17125,4414,11426,17125,11426,3867,17125,3867,17122,17122,3867,3868,17122,3868,4427,17122,4427,17121,17121,4427,17119,17119,4427,11438,17119,11438,11437,17119,11437,17123,17123,11437,11434,17123,11434,17126,17126,11434,4421,17126,4421,4418,11434,11437,4424,3871,4428,3870,17127,17128,17129,17127,17129,17130,17127,17130,17131,17127,17131,17132,17127,17132,17133,17127,17133,17128,17129,17128,17135,17129,17135,17136,17129,17136,17137,17130,17129,17137,17130,17137,17138,17131,17130,17138,17133,17139,17140,17128,17133,17140,17128,17140,17134,17128,17134,17135,17140,17139,17141,17140,17141,17142,17134,17140,17142,17134,17142,11440,17134,11440,4426,17134,4426,17135,17135,4426,3873,17135,3873,17136,17136,3873,10687,17136,10687,17137,17137,10687,10688,17137,10688,17138,17138,10688,3874,17138,3874,17131,17131,3874,3877,17131,3877,17132,17132,3877,11445,17132,11445,17139,17132,17139,17133,17139,11445,11444,17139,11444,17141,17141,11444,4430,17141,4430,4425,17141,4425,11439,17141,11439,17142,17142,11439,11440,11457,4439,17143,11457,17143,3880,3880,17143,3879,3879,17143,11448,11448,17143,11454,11448,11454,17144,11448,17144,11447,11447,17144,4431,4431,17144,11449,11449,17144,4436,11449,4436,4433,4436,17144,11454,11454,17143,4439,3883,4448,4445,3883,4445,17146,3883,17146,10696,10696,17146,17145,10696,17145,3882,3882,17145,11458,11458,17145,4440,4440,17145,4442,4442,17145,17146,4442,17146,11461,11461,17146,4445,3886,4449,3885,17147,17149,17148,17148,17149,3888,17148,3888,3889,17148,3889,3892,17148,3892,17147,17147,3892,3898,17147,3898,4454,17147,4454,11474,17147,11474,17149,17149,11474,11473,17149,11473,4451,17149,4451,4446,17149,4446,4447,17149,4447,3888,17150,17151,17152,3912,3913,3901,17150,17152,11489,17150,11489,17153,17150,17153,10720,17150,10720,17151,17151,10720,3901,17151,3901,3913,17151,3913,11493,17151,11493,17152,17152,11493,4463,17152,4463,11489,10720,17153,10719,10719,17153,3900,3900,17153,4455,4455,17153,4457,4457,17153,4460,4460,17153,11489,3904,3910,3903,3916,3931,11494,3916,11494,3915,11494,3931,4475,11494,4475,4464,4464,4475,4466,4466,4475,4469,4469,4475,4472,3922,3925,17155,3922,17155,10746,10746,17155,17154,10746,17154,10745,10745,17154,10756,10745,10756,3921,10756,17154,3928,3928,17154,10752,10752,17154,17155,10752,17155,3925,17156,17157,17158,17156,17158,17159,17156,17159,17160,17156,17161,17157,17158,17157,17163,17158,17163,17164,17158,17164,17165,17159,17158,17165,17159,17165,17166,17159,17166,17167,17160,17159,17167,17157,17161,17168,17157,17168,17162,17157,17162,17163,17163,17162,17170,17163,17170,17171,17164,17163,17171,17162,17168,17172,17162,17172,17169,17162,17169,17170,17169,17172,17174,17169,17174,17173,17169,17173,17170,17170,17173,10766,17170,10766,3934,17170,3934,17171,17171,3934,10776,17171,10776,17164,17164,10776,17165,17165,10776,10777,17165,10777,17166,17166,10777,10778,17166,10778,17167,17167,10778,3937,17167,3937,3940,17167,3940,17160,17160,3940,11518,17160,11518,17156,17156,11518,17161,17161,11518,4483,17161,4483,17168,17168,4483,11511,17168,11511,17172,17172,11511,11510,17172,11510,17174,17174,11510,4476,17174,4476,3933,17174,3933,17173,17173,3933,10766,4476,11510,4480,17175,17177,17178,17175,17178,4492,17175,4492,11530,17175,11530,11529,17175,11529,17177,17177,11529,17176,17177,17176,11522,17177,11522,4484,17177,4484,11521,17177,11521,17178,17178,11521,3981,17178,3981,4492,4492,3981,3986,3981,11521,3942,3981,3942,3978,3978,3942,3943,3978,3943,6365,11522,17176,4486,4486,17176,4489,4489,17176,11529,3946,3967,3970,3946,3970,6366,3946,6366,3945,3949,3954,3962,3949,3962,3948,3948,3962,3965,3957,3960,3956,3973,3976,6364,3973,6364,3972,10837,3992,4504,10837,4504,17179,10837,17179,10836,10836,17179,11538,10836,11538,4495,10836,4495,3989,3989,4495,4493,3989,4493,3988,11538,17179,11539,11539,17179,4498,4498,17179,4501,4501,17179,4504,3997,4007,4008,3997,4008,3994,3994,4008,4505,4505,4008,4507,4000,4005,3999,4011,4510,4508,4011,4508,4010,17180,17182,17181,17181,17182,17184,17181,17184,17183,17181,17183,10844,17181,10844,10845,17181,10845,17180,17180,10845,10846,17180,10846,10894,17180,10894,17182,17182,10894,4035,17182,4035,17184,17184,4035,4513,17184,4513,11550,17184,11550,17183,17183,11550,4511,17183,4511,4013,17183,4013,10844,10894,10846,4032,4032,10846,4014,10908,4041,4516,10908,4516,17186,10908,17186,10900,10908,10900,4038,10900,17186,10899,10899,17186,17185,10899,17185,10898,10898,17185,4037,4037,17185,4514,4514,17185,17186,4514,17186,4516,4516,4041,4519,4044,4520,4043,11569,4522,11562,11569,11562,4517,11569,4517,4518,11569,4518,4046,11569,4046,4047,11562,4522,11566,11562,11566,11563,11563,11566,4499,11563,4499,4500,17188,17187,17189,17188,17189,17190,17188,17190,17191,17190,17189,17192,17190,17192,11582,17190,11582,17191,17191,11582,4531,17191,4531,4528,17191,4528,4525,17191,4525,11573,17191,11573,17188,17188,11573,4523,17188,4523,11571,17188,11571,17187,17187,11571,4049,17187,4049,17189,17189,4049,4050,17189,4050,17192,17192,4050,4537,17192,4537,4534,17192,4534,11582,4053,4538,4052,4056,4546,11592,4056,11592,4535,4056,4535,4055,4055,4535,4536,4535,11592,4540,11592,4546,4543,4059,4062,4547,4059,4547,4058,4065,4558,10934,4558,4555,17193,4558,17193,10934,10934,17193,4544,10934,4544,4545,10934,4545,4064,4544,17193,4549,4549,17193,4552,4552,17193,4555,4559,4067,4561,13732,4079,11629,13732,11629,4068,4068,11629,4576,4068,4576,10940,10940,4576,4573,10940,4573,17194,10940,17194,4067,4067,17194,4561,4561,17194,4564,4564,17194,4567,4567,17194,4570,4570,17194,4573,11629,4079,4089,4089,4079,4080,4070,4071,13733,4071,4074,13733,13733,4074,4077,17195,17196,17197,17195,17197,17198,17196,17199,17200,17197,17196,17200,17197,17200,4091,17197,4091,17198,17198,4091,4094,17198,4094,4582,17198,4582,11640,17198,11640,4579,17198,4579,17195,17195,4579,11635,17195,11635,17196,17196,11635,11634,17196,11634,11633,17196,11633,17199,17199,11633,11632,17199,11632,11631,17199,11631,17200,17200,11631,4091,11631,11632,4577,4582,4094,4585,4097,4588,4586,4097,4586,4096,4100,4594,4589,4100,4589,4099,4589,4594,4591,4105,4108,11005,4105,11005,4102,4102,11005,17202,4102,17202,4595,4595,17202,4597,4597,17202,4600,4600,17202,17201,4600,17201,4603,4603,17201,11007,4603,11007,4111,11007,17201,11006,11006,17201,11005,11005,17201,17202,17203,17207,17208,17204,17203,17208,17204,17208,17209,17208,17207,17210,17208,17210,17211,17209,17208,17211,17209,17211,17212,17212,17211,17213,17212,17213,4618,17212,4618,4615,17212,4615,17209,17209,4615,4612,17209,4612,17204,17204,4612,4609,17204,4609,11676,17204,11676,17203,17203,11676,11675,17203,11675,17207,17207,11675,17206,17207,17206,17210,17210,17206,4113,17210,4113,4116,17210,4116,17213,17210,17213,17211,17213,4116,4626,17213,4626,4621,17213,4621,11690,17213,11690,4618,4113,17206,17205,4113,17205,4604,4604,17205,11672,4604,11672,4606,11672,17205,11673,11673,17205,11674,11674,17205,17206,11674,17206,11675,4119,4627,4118,4121,4122,4625,4640,4637,4643,11706,4643,17214,11706,17214,11707,11707,17214,4631,11707,4631,11708,11708,4631,4622,11708,4622,4122,4122,4622,4625,4631,17214,11700,11700,17214,4634,4634,17214,4637,4637,17214,4643,4124,4125,11711,13728,4139,17216,13728,17216,17217,13728,17217,17215,13728,17215,13729,13729,17215,11711,13729,11711,4125,11711,17215,11710,11710,17215,17217,11710,17217,11709,11709,17217,4644,4644,17217,4143,4143,17217,4140,4140,17217,17216,4140,17216,4139,11022,4131,17218,11022,17218,11014,11022,11014,4128,11014,17218,11013,11013,17218,17219,11013,17219,11012,11012,17219,13731,11012,13731,4127,13731,17219,13730,13730,17219,17218,13730,17218,4131,13730,4131,4137,17220,17221,17223,17220,17223,17222,17220,17222,11714,17220,11714,4641,17220,4641,4642,17220,4642,17221,17221,4642,4145,17221,4145,4146,17221,4146,17223,17223,4146,4149,17223,4149,4649,17223,4649,17222,17222,4649,4646,17222,4646,11714,11066,4155,11723,11066,11723,4650,11066,4650,11065,11065,4650,4151,11065,4151,4152,11723,4155,4652,4652,4155,4655,4655,4155,4658,4158,4664,4659,4158,4659,4157,4659,4664,4661,4161,4676,4160,4160,4676,4673,4160,4673,4665,4665,4673,4667,4667,4673,4670,11758,4691,4688,11758,4688,4685,11758,4685,4682,11758,4682,4679,11758,4679,4677,11758,4677,4166,4166,4677,4163,4169,4172,4697,4169,4697,11759,4169,11759,4168,11759,4697,4694,11759,4694,4692,4697,4172,4700,4175,4187,11779,4175,11779,11093,11093,11779,17224,11093,17224,11092,11092,17224,11773,11092,11773,4705,11092,4705,4701,11092,4701,4174,11773,17224,11774,11774,17224,11779,11774,11779,4708,4190,4193,11118,4190,11118,4189,4189,11118,11119,4189,11119,11781,11781,11119,11120,11781,11120,11121,11781,11121,4709,4709,11121,4713,4713,11121,4196,4199,4724,4198,4198,4724,4721,4198,4721,4718,4198,4718,4714,4739,4736,11796,11796,4736,17227,11796,17227,17226,11796,17226,11797,11797,17226,17225,11797,17225,11798,11798,17225,4201,11798,4201,4202,4201,17225,4725,4725,17225,4727,4727,17225,17226,4727,17226,4730,4730,17226,17227,4730,17227,4733,4733,17227,4736,4205,4213,4214,4205,4214,4745,4205,4745,11801,4205,11801,4204,11801,4745,11800,11800,4745,4742,11800,4742,11799,11799,4742,4740,4208,4211,4207,4226,4229,4225,4217,4225,4746,4217,4746,4216,4746,4225,4229,4220,4223,4219,4231,4232,4744,13720,4251,4252,13720,4252,4748,13720,4748,4743,13720,4743,13721,13721,4743,13722,13722,4743,4744,13722,4744,4232,17229,17228,17230,17229,17230,17231,17229,17231,13723,17229,13723,13724,17229,13724,17228,17228,13724,13725,17228,13725,11157,17228,11157,11158,17228,11158,11159,17228,11159,17230,17230,11159,4235,17230,4235,11179,17230,11179,17231,17231,11179,11199,17231,11199,4249,17231,4249,13723,11199,11179,4241,11157,13725,4234,17232,17233,17234,17234,17233,17235,17234,17235,17236,17236,17235,17237,17236,17237,17238,17238,17237,17239,17238,17239,4263,17238,4263,11820,17238,11820,17236,17236,11820,11819,17236,11819,17234,17234,11819,11818,17234,11818,17232,17232,11818,4754,17232,4754,4751,17232,4751,17233,17233,4751,4749,17233,4749,4254,17233,4254,11205,17233,11205,17235,17235,11205,17237,17237,11205,11206,17237,11206,17239,17239,11206,11207,17239,11207,4263,4263,11207,4255,11820,4263,4757,4757,4263,4760,17242,17241,17243,17242,17243,17244,17242,17244,17245,17243,17246,17247,17244,17243,17247,17246,17248,17249,17247,17246,17249,17247,17249,11850,17247,11850,11849,17247,11849,17244,17244,11849,17245,17245,11849,4788,17245,4788,11845,17245,11845,17242,17242,11845,11844,17242,11844,17241,17241,11844,17240,17241,17240,4761,17241,4761,17243,17243,4761,4265,17243,4265,17246,17246,4265,11226,17246,11226,17248,17248,11226,4266,17248,4266,17249,17249,4266,4272,17249,4272,11850,4761,17240,4767,4767,17240,4772,4772,17240,4777,4777,17240,4780,4780,17240,4785,4785,17240,11844,4797,4794,11868,11868,4794,11861,11868,11861,17251,11868,17251,4275,4275,17251,4274,4274,17251,17250,4274,17250,11853,11853,17250,11859,11853,11859,11858,11853,11858,11852,11852,11858,11857,11852,11857,11856,11852,11856,4789,4789,11856,4791,11859,17250,11860,11860,17250,17251,11860,17251,11861,4287,4867,4286,17252,17253,17256,17252,17256,17254,17252,17254,17255,17255,17254,17257,17255,17257,4898,17255,4898,4895,17255,4895,17252,17252,4895,4890,17252,4890,4887,17252,4887,17253,17253,4887,11846,17253,11846,11847,17253,11847,17256,17256,11847,4787,17256,4787,4790,17256,4790,4872,17256,4872,17254,17254,4872,4869,17254,4869,17257,17257,4869,4864,17257,4864,17258,17257,17258,4898,4898,17258,4901,4901,17258,4865,4901,4865,4289,4901,4289,4290,4865,17258,4864,11846,4887,4786,4293,4904,4292,4292,4904,4902,11268,4299,12033,11268,12033,17259,11268,17259,12024,11268,12024,12023,11268,12023,11267,11267,12023,4905,11267,4905,4296,4296,4905,4295,12024,17259,4907,4907,17259,4910,4910,17259,4913,4913,17259,12033,4302,4321,4322,4302,4322,11300,4302,11300,4301,4301,11300,17260,4301,17260,12035,12035,17260,12042,12035,12042,4919,12035,4919,4914,4914,4919,4916,12042,17260,4325,4325,17260,11300,4305,4318,4304,4304,4318,4319,4308,4311,4307,4307,4311,4316,4328,4331,17261,4328,17261,12043,4328,12043,4327,12043,17261,4922,12043,4922,4920,4922,17261,4925,4925,17261,4331,4925,4331,4928,17263,17262,17264,17263,17264,11352,17263,11352,4367,17263,4367,4931,17263,4931,12053,17263,12053,17262,17262,12053,4929,17262,4929,4333,17262,4333,4334,17262,4334,17264,17264,4334,4355,17264,4355,4364,17264,4364,11352,17265,17266,17267,17265,17268,17269,17265,17269,17266,17267,17266,17271,17269,17268,17272,17269,17272,17273,17269,17273,17274,17266,17269,17274,17266,17274,17270,17266,17270,17271,17271,17270,17276,17271,17276,17277,17270,17274,17278,17270,17278,17275,17270,17275,17276,17276,17275,17280,17276,17280,17281,17277,17276,17281,17275,17279,17280,17281,17280,17282,17281,17282,17283,17281,17283,11336,17281,11336,11337,17281,11337,17277,17277,11337,11338,17277,11338,17271,17271,11338,17267,17267,11338,11339,17267,11339,11340,17267,11340,17265,17265,11340,4342,17265,4342,17268,17268,4342,4343,17268,4343,17272,17272,4343,4349,17272,4349,11322,17272,11322,17273,17273,11322,11323,17273,11323,17274,17274,11323,17278,17278,11323,11324,17278,11324,11325,17278,11325,17279,17278,17279,17275,17279,11325,11326,17279,11326,17282,17279,17282,17280,17282,11326,11327,17282,11327,11328,17282,11328,17283,17283,11328,11335,17283,11335,11336,11335,11328,4352,4937,4934,4376,4370,4376,4369,4369,4376,4932,4932,4376,4934,4379,4952,4949,4379,4949,17284,4379,17284,11368,11368,17284,17285,11368,17285,17286,11368,17286,4378,4378,17286,4938,4938,17286,4940,4940,17286,4943,4943,17286,17285,4943,17285,4946,4946,17285,12077,12077,17285,17284,12077,17284,4949,4382,4955,4953,4382,4953,4381,4385,4391,4384,4384,4391,4958,4384,4958,4956,4958,4391,4961,4961,4391,4967,4961,4967,4964,17288,17291,17292,17288,17292,17293,17287,17288,17293,17287,17293,17289,17287,17289,17290,17290,17289,17295,17293,17292,17296,17293,17296,17297,17289,17293,17297,17289,17297,17294,17289,17294,17295,17295,17294,17299,17294,17298,17299,17299,17298,11395,17299,11395,11396,17299,11396,12099,17299,12099,12098,17299,12098,17295,17295,12098,17290,17290,12098,12097,17290,12097,12096,17290,12096,17287,17287,12096,4970,17287,4970,17288,17288,4970,12094,17288,12094,17291,17291,12094,4968,17291,4968,4393,17291,4393,11391,17291,11391,17292,17292,11391,11392,17292,11392,17296,17296,11392,11393,17296,11393,17297,17297,11393,11394,17297,11394,17298,17297,17298,17294,17298,11394,11395,12099,11396,4394,17301,17300,17302,17301,17302,17303,17302,17304,17305,17303,17302,17305,17305,17304,17306,17305,17306,17307,17305,17307,11414,17305,11414,17303,17303,11414,4403,17303,4403,17301,17301,4403,12105,17301,12105,17300,17300,12105,12104,17300,12104,12100,17300,12100,12101,17300,12101,17302,17302,12101,12102,17302,12102,17304,17304,12102,12103,17304,12103,17306,17306,12103,4396,17306,4396,4397,17306,4397,11406,17306,11406,17307,17307,11406,4400,17307,4400,11414,12100,12104,4971,4406,4412,17309,4406,17309,4405,4405,17309,12107,12107,17309,12106,12106,17309,17308,12106,17308,4969,4969,17308,12108,4969,12108,12095,12095,12108,4965,12095,4965,4966,12108,17308,4417,4417,17308,17309,4417,17309,4412,12112,4978,4962,12112,4962,4963,12112,4963,12109,12112,12109,4420,4420,12109,4419,4962,4978,4973,17310,17311,17312,17312,17311,17313,17312,17313,11436,17312,11436,4423,17312,4423,17310,17310,4423,4429,17310,4429,11450,17310,11450,4432,17310,4432,17311,17311,4432,4981,17311,4981,17313,17313,4981,4979,17313,4979,12114,17313,12114,11436,11436,12114,4422,4435,4993,17314,4435,17314,4434,4434,17314,4982,4982,17314,4984,4984,17314,12125,4984,12125,4987,4987,12125,4990,12125,17314,4993,4438,4441,12130,4438,12130,12129,4438,12129,12128,4438,12128,11456,11456,12128,12127,11456,12127,4437,4437,12127,4994,12130,4441,12131,12131,4441,4999,12131,4999,4996,4444,4450,17315,4444,17315,11462,11462,17315,4443,4443,17315,17316,4443,17316,5000,5000,17316,5002,5002,17316,5005,5005,17316,5010,5010,17316,4450,5010,4450,5015,4450,17316,17315,5024,5021,4456,4453,4456,11476,11476,4456,5021,11476,5021,12162,11476,12162,11475,11475,12162,4452,4452,12162,5018,4452,5018,5016,5027,5025,5030,4459,5036,4458,4458,5036,5033,4458,5033,5025,5025,5033,5030,4462,4465,12181,4462,12181,11492,11492,12181,5045,11492,5045,12177,11492,12177,12176,11492,12176,4461,4461,12176,5037,5037,12176,5039,5039,12176,5042,12181,4465,5048,4468,5056,5049,4468,5049,4467,5049,5056,5053,4471,5059,4470,4470,5059,5057,4474,4479,4473,4473,4479,5060,5060,4479,5062,11523,4485,5065,11523,5065,12208,11523,12208,11515,11523,11515,4482,11515,12208,5046,11515,5046,11514,11514,5046,12183,11514,12183,4481,4481,12183,5047,4481,5047,5063,5063,5047,5052,4488,5082,4487,4487,5082,12227,4487,12227,5066,5066,12227,12216,12216,12227,12226,12216,12226,5068,5068,12226,17317,5068,17317,12220,12220,17317,5071,5071,17317,5076,5076,17317,12225,5076,12225,5079,12225,17317,12226,4491,4494,11533,11533,4494,17318,11533,17318,11532,11532,17318,5083,11532,5083,4490,5083,17318,12234,12234,17318,13714,12234,13714,13713,12234,13713,12235,12235,13713,13712,12235,13712,4526,12235,4526,4527,13714,17318,4494,17319,17320,17322,17319,17322,17321,17319,17321,11540,17319,11540,11541,17319,11541,17320,17320,11541,11567,17320,11567,4521,17320,4521,11575,17320,11575,17322,17322,11575,13715,17322,13715,13716,17322,13716,17321,17321,13716,13717,17321,13717,11540,11540,13717,4496,13715,11575,4524,11567,11541,4497,4503,4506,4502,4502,4506,4509,4502,4509,11551,4502,11551,11565,11565,11551,4512,11565,4512,11564,11564,4512,4515,17323,17324,17325,17323,17326,17327,17323,17327,17324,17327,17326,17328,17327,17328,17329,17327,17329,17330,17324,17327,17330,17324,17330,12229,17324,12229,12230,17324,12230,17325,17325,12230,12237,17325,12237,12238,17325,12238,17323,17323,12238,4529,17323,4529,17326,17326,4529,4530,17326,4530,17328,17328,4530,5088,17328,5088,5085,17328,5085,17329,17329,5085,5080,17329,5080,17330,17330,5080,12228,17330,12228,12229,12237,12230,5081,4533,4539,11583,11583,4539,12245,11583,12245,12243,11583,12243,5089,11583,5089,4532,12243,12245,5091,4542,4548,5103,4542,5103,11593,11593,5103,12258,11593,12258,17331,11593,17331,4541,4541,17331,12246,12246,17331,5092,5092,17331,17332,5092,17332,5094,5094,17332,5097,5097,17332,5100,5100,17332,12257,12257,17332,17331,12257,17331,12258,4551,5106,4550,4550,5106,5104,4554,5109,5107,4554,5107,4553,4557,4560,5110,4557,5110,4556,5110,4560,12277,5110,12277,5114,5114,12277,12276,5114,12276,5117,5117,12276,5120,12283,5129,12279,12283,12279,12280,12283,12280,12284,12284,12280,4562,12284,4562,4563,12279,5129,5126,12279,5126,5121,5121,5126,5123,17334,17333,17337,17334,17337,17338,17335,17334,17338,17335,17338,17339,17333,17336,17337,17338,17337,17340,17338,17340,12285,17338,12285,17339,17339,12285,12286,17339,12286,4565,17339,4565,17335,17335,4565,4566,17335,4566,5144,17335,5144,5141,17335,5141,17334,17334,5141,12297,17334,12297,17333,17333,12297,5138,17333,5138,17336,17336,5138,5135,17336,5135,5132,17336,5132,12288,17336,12288,17337,17337,12288,17340,17340,12288,5130,17340,5130,12285,4569,5145,4568,17341,17343,17344,17342,17341,17344,17342,17344,17345,17344,17343,17346,17344,17346,17347,17345,17344,17347,17345,17347,17348,17347,17346,17349,17347,17349,17348,17348,17349,4572,17348,4572,12310,17348,12310,17345,17345,12310,12309,17345,12309,12308,17345,12308,17342,17342,12308,12307,17342,12307,17341,17341,12307,5150,17341,5150,5147,17341,5147,17343,17343,5147,5142,17343,5142,17346,17346,5142,5143,17346,5143,17349,17349,5143,4571,17349,4571,4572,11639,4578,12317,11639,12317,17350,11639,17350,11638,11638,17350,17351,11638,17351,11637,11637,17351,12312,11637,12312,12313,11637,12313,11636,11636,12313,12314,11636,12314,4575,4575,12314,4574,12312,17351,12311,12311,17351,12315,12311,12315,5151,12315,17351,12316,12316,17351,17350,12316,17350,12317,17352,17354,17355,17355,17354,17357,17355,17357,17358,17358,17357,17360,17358,17360,12334,17358,12334,5165,17358,5165,5162,17358,5162,5159,17358,5159,17355,17355,5159,12325,17355,12325,17352,17352,12325,17353,17352,17353,12319,17352,12319,17354,17354,12319,12320,17354,12320,4580,17354,4580,17357,17357,4580,11641,17357,11641,17360,17360,11641,5168,17360,5168,12334,5168,11641,4581,12319,17353,12318,12318,17353,17356,12318,17356,5149,5149,17356,17359,5149,17359,5148,5148,17359,5153,5153,17359,5156,5156,17359,17356,5156,17356,12325,12325,17356,17353,4584,4587,4583,4583,4587,4590,4583,4590,5169,5169,4590,5171,4593,4596,5172,4593,5172,4592,12342,5174,5166,12342,5166,12336,12342,12336,4598,12342,4598,4599,4598,12336,5167,4598,5167,5170,4602,4605,4601,4601,4605,12344,12344,4605,5175,5175,4605,5180,5175,5180,5177,17361,17363,17364,17362,17361,17364,17362,17364,17365,17363,17367,17368,17364,17363,17368,17364,17368,17369,17365,17364,17369,17365,17369,17370,17366,17365,17370,17366,17370,17371,17367,17372,17373,17368,17367,17373,17368,17373,17374,17369,17368,17374,17369,17374,17375,17369,17375,17370,17370,17375,11679,17370,11679,11680,17370,11680,17371,17371,11680,11681,17371,11681,12356,17371,12356,17366,17366,12356,12355,17366,12355,17362,17366,17362,17365,17362,12355,5186,17362,5186,17361,17361,5186,12351,17361,12351,17363,17363,12351,12350,17363,12350,17367,17367,12350,12349,17367,12349,17372,17372,12349,5183,17372,5183,5181,17372,5181,4607,17372,4607,17373,17373,4607,17374,17374,4607,11677,17374,11677,17375,17375,11677,11678,17375,11678,11679,12356,11681,4608,17376,17378,17379,17376,17379,17380,17376,17380,17381,17376,17381,17377,17380,17379,17382,17380,17382,17383,17381,17380,17383,17381,17383,17384,17383,17382,17385,17383,17385,12365,17383,12365,17384,17384,12365,12364,17384,12364,17381,17381,12364,17377,17377,12364,5192,17377,5192,12360,17377,12360,12359,17377,12359,17376,17376,12359,17378,17378,12359,5189,17378,5189,5187,17378,5187,17379,17379,5187,12357,17379,12357,17382,17382,12357,12358,17382,12358,17385,17385,12358,4610,17385,4610,4611,17385,4611,5195,17385,5195,12365,5201,5198,5204,5204,5198,12371,12371,5198,5196,12371,5196,4613,12371,4613,4614,4617,5219,12374,4617,12374,17386,4617,17386,4616,4616,17386,12372,12372,17386,5210,12372,5210,5207,12372,5207,5205,5210,17386,12373,12373,17386,12374,12374,5219,5213,5213,5219,5216,4620,4630,11691,11691,4630,4619,4619,4630,5220,5220,4630,5222,5222,4630,5225,4633,5234,17387,4633,17387,11701,11701,17387,5226,11701,5226,4632,5226,17387,5228,5228,17387,5234,5228,5234,5231,4636,5240,4635,4635,5240,5235,5235,5240,5237,4638,4639,5241,11715,4645,5243,11715,5243,5241,11715,5241,4639,11725,4651,5252,11725,5252,5246,11725,5246,5244,11725,5244,4647,11725,4647,4648,5246,5252,5249,5258,5255,4654,4654,5255,5253,4654,5253,4653,4657,4660,4669,4657,4669,5261,4657,5261,4656,4656,5261,5259,4669,4660,4668,4663,4666,4662,4672,4680,5264,4672,5264,5262,4672,5262,4671,5264,4680,5267,5267,4680,4681,4675,4678,4674,5282,5279,5285,4684,5300,5297,4684,5297,17389,4684,17389,4683,4683,17389,5270,4683,5270,5268,5270,17389,5248,5248,17389,5247,5247,17389,12464,5247,12464,12434,12434,12464,12463,12434,12463,12435,12435,12463,5294,12435,5294,12436,12436,5294,17388,12436,17388,12437,12437,17388,5288,12437,5288,12458,12437,12458,12438,12438,12458,12439,12439,12458,5285,12439,5285,5276,5276,5285,5279,5288,17388,5291,5291,17388,5294,12464,17389,5297,4687,5301,4686,4690,4693,5303,4690,5303,5298,4690,5298,4689,4689,5298,5299,12481,5309,17390,12481,17390,12482,12482,17390,12475,12482,12475,5304,12482,5304,4696,4696,5304,4695,12475,17390,12476,12476,17390,12479,12476,12479,5306,12479,17390,5309,17391,17393,17394,17392,17391,17394,17394,17393,17395,17394,17395,17396,17394,17396,12499,17394,12499,12498,17394,12498,17392,17392,12498,12497,17392,12497,12486,17392,12486,12485,17392,12485,17391,17391,12485,5310,17391,5310,17393,17393,5310,12483,17393,12483,17395,17395,12483,12484,17395,12484,4699,17395,4699,17396,17396,4699,4704,17396,4704,5321,17396,5321,12499,4699,12484,4698,12486,12497,5312,5312,12497,5318,5312,5318,5315,17397,17400,17401,17397,17401,17402,17398,17397,17402,17398,17402,17403,17401,17400,17404,17401,17404,17405,17401,17405,17406,17402,17401,17406,17403,17402,17406,17405,17404,17407,17406,17405,17407,17406,17407,12519,17406,12519,12518,17406,12518,17403,17403,12518,12517,17403,12517,12514,17403,12514,17398,17398,12514,5324,17398,5324,17397,17397,5324,12509,17397,12509,17400,17400,12509,12508,17400,12508,17399,17400,17399,17404,17404,17399,11776,17404,11776,11777,17404,11777,17407,17407,11777,4707,17407,4707,4712,17407,4712,5330,17407,5330,12519,5330,4712,4717,11776,17399,5322,11776,5322,4706,5322,17399,12508,12514,12517,5327,4719,4720,5331,5329,4722,12522,4723,4726,12522,4723,12522,4722,12522,4726,12521,12521,4726,17408,12521,17408,12520,12520,17408,5339,12520,5339,5336,12520,5336,5333,12520,5333,5328,5339,17408,4726,4729,5345,12537,4729,12537,17409,4729,17409,4728,4728,17409,5340,5340,17409,5342,5342,17409,12537,4732,5351,4731,4731,5351,5346,5346,5351,5348,13708,4752,17410,13708,17410,4735,4735,17410,5352,4735,5352,4734,5352,17410,5354,5354,17410,4753,5354,4753,5357,5357,4753,5360,4753,17410,4752,4737,4738,13709,4738,4741,13709,13709,4741,4747,13709,4747,4750,4756,4768,4771,4756,4771,5366,4756,5366,11823,11823,5366,12550,11823,12550,11822,11822,12550,12549,11822,12549,11821,11821,12549,5363,11821,5363,5361,11821,5361,4755,4759,4766,4758,4776,5369,5367,4776,5367,4773,4779,5372,5370,4779,5370,4778,17412,17413,17414,17414,17413,17415,17414,17415,17416,17414,17416,5393,17414,5393,12581,17414,12581,17412,17412,12581,17411,17412,17411,12561,17412,12561,17413,17413,12561,12560,17413,12560,17415,17415,12560,12559,17415,12559,4784,17415,4784,17416,17416,4784,4886,17416,4886,5396,17416,5396,5393,4784,12559,4781,4781,12559,5373,12561,17411,5375,5375,17411,5378,5378,17411,5381,5381,17411,5387,5381,5387,5384,5387,17411,5390,5390,17411,12581,17417,17418,17419,17418,17420,17421,17419,17418,17421,17419,17421,17422,17421,17420,17423,17421,17423,17424,17422,17421,17424,17424,17423,17425,17424,17425,17426,17426,17425,17427,4878,4875,11978,17426,17427,11983,17426,11983,11982,17426,11982,17424,17424,11982,11981,17424,11981,17422,17422,11981,11980,17422,11980,17419,17419,11980,11979,17419,11979,17417,17417,11979,11978,17417,11978,4873,17417,4873,4792,17417,4792,11862,17417,11862,17418,17418,11862,17420,17420,11862,11863,17420,11863,11864,17420,11864,17423,17423,11864,11865,17423,11865,17425,17425,11865,11866,17425,11866,17427,17427,11866,11867,17427,11867,11984,17427,11984,11983,11984,11867,4793,4873,11978,4875,17428,17431,17430,17431,17433,17434,17430,17431,17434,17430,17434,17432,17434,17433,17435,17434,17435,17436,17432,17434,17436,4795,4796,11991,4796,4799,11991,17432,17436,11996,17432,11996,11995,17432,11995,11994,17432,11994,17430,17430,11994,11993,17430,11993,17428,17428,11993,17429,17428,17429,11986,17428,11986,11987,17428,11987,17431,17431,11987,11988,17431,11988,17433,17433,11988,11989,17433,11989,17435,17435,11989,11990,17435,11990,17437,17435,17437,17436,17436,17437,11997,17436,11997,11996,11997,17437,4811,4811,17437,4810,4810,17437,11991,4810,11991,4799,11991,17437,11990,11986,17429,11985,11985,17429,11992,11985,11992,4879,11992,17429,11993,4802,4805,4801,4801,4805,4808,4876,4877,4881,4881,4877,4884,4814,4853,17442,4814,17442,17441,4814,17441,12003,4814,12003,4813,12003,17441,12002,12002,17441,12001,12001,17441,17440,12001,17440,12000,12000,17440,17438,12000,17438,11999,11999,17438,17439,11999,17439,11998,11998,17439,4856,11998,4856,4884,11998,4884,4877,4856,17439,11963,11963,17439,11962,11962,17439,17438,11962,17438,17440,11962,17440,11961,11961,17440,17442,11961,17442,4853,17442,17440,17441,17443,17444,17445,17445,17446,17447,17447,17446,17448,17447,17448,11945,17447,11945,11946,17447,11946,11947,17447,11947,17445,17445,11947,17443,17443,11947,4822,17443,4822,11889,17443,11889,17444,17444,11889,4823,17444,4823,4826,17444,4826,11893,17444,11893,17446,17444,17446,17445,17446,11893,4829,17446,4829,17448,17448,4829,11949,17448,11949,11948,17448,11948,11945,11945,11948,4851,11945,4851,4849,17449,17451,17452,17450,17449,17452,17450,17452,4838,17450,4838,4852,17450,4852,11950,17450,11950,17449,17449,11950,11951,17449,11951,11897,17449,11897,11898,17449,11898,17451,17451,11898,11899,17451,11899,11905,17451,11905,11906,17451,11906,17452,17452,11906,11907,17452,11907,4838,4838,11907,4835,11905,11899,4832,11897,11951,4831,4841,4847,4850,4841,4850,4840,4859,4885,4858,4862,4868,4861,4861,4868,4883,4883,4868,4882,4874,4880,4871,4871,4880,4870,4889,5397,4888,17453,17454,17455,5405,5402,5408,17455,17454,4894,17455,4894,5408,17455,5408,5402,17455,5402,5399,17455,5399,12597,17455,12597,17453,17453,12597,12596,17453,12596,12595,17453,12595,17454,17454,12595,12594,17454,12594,12593,17454,12593,4891,17454,4891,4894,4891,12593,5395,5395,12593,5394,4897,5409,4896,17457,17456,17458,5411,5406,5414,17457,17458,12027,17457,12027,5417,17457,5417,5414,17457,5414,5406,17457,5406,17456,17456,5406,5407,17456,5407,4899,17456,4899,17458,17458,4899,4900,17458,4900,12026,17458,12026,12027,12026,4900,4903,5417,12027,4906,4909,5423,4908,4908,5423,5418,5418,5423,5420,4912,4915,5424,4912,5424,4911,4918,4921,17459,4918,17459,4917,4917,17459,5422,5422,17459,5421,5421,17459,5426,5426,17459,12627,12627,17459,4921,17460,17462,17463,17462,17461,17466,17462,17466,17467,17463,17462,17467,17464,17468,17469,17461,17464,17469,17461,17469,17465,17461,17465,17466,17466,17465,17470,17466,17470,17471,17467,17466,17471,17467,17471,17472,17468,17473,17474,17469,17468,17474,17470,17469,17474,17465,17469,17470,17471,17470,17475,17471,17475,17476,17472,17471,17476,17474,17473,17477,17475,17474,17477,17470,17474,17475,17475,17477,4924,17475,4924,17476,17476,4924,13704,17476,13704,17472,17472,13704,4944,17472,4944,4945,17472,4945,17467,17467,4945,5438,17467,5438,17463,17463,5438,5435,17463,5435,12639,17463,12639,17460,17460,12639,5432,17460,5432,12635,17460,12635,17461,17460,17461,17462,17461,12635,17464,17464,12635,12634,17464,12634,17468,17468,12634,5429,17468,5429,5427,17468,5427,17473,17473,5427,12628,17473,12628,17477,17477,12628,4923,17477,4923,4924,12055,4930,4941,12055,4941,13707,12055,13707,4927,4927,13707,4926,13707,4941,4942,4941,4930,4933,4936,4939,4935,17478,17481,17479,17478,17479,17480,17480,17479,4948,17480,4948,6362,17480,6362,4974,17480,4974,4977,17480,4977,4980,17480,4980,17478,17478,4980,4983,17478,4983,12647,17478,12647,17481,17481,12647,5439,17481,5439,12079,17481,12079,17479,17479,12079,4948,12079,5439,4947,4951,4954,4957,4951,4957,4950,4950,4957,6363,4960,4972,6361,4960,6361,4959,4986,5443,12650,4986,12650,12649,4986,12649,4985,4985,12649,12648,12648,12649,5436,12648,5436,5437,12659,5452,5446,12659,5446,12654,12659,12654,12660,12660,12654,5444,12660,5444,4989,4989,5444,4988,5446,5452,5449,17482,17483,17484,17482,17484,17485,17482,17486,17483,17484,17483,17488,17484,17488,17489,17484,17489,17490,17485,17484,17490,17485,17490,17491,17485,17491,17492,17486,17493,17494,17486,17494,17495,17483,17486,17495,17483,17495,17487,17483,17487,17488,17488,17487,17497,17493,17499,17500,17494,17493,17500,17494,17500,17501,17495,17494,17501,17495,17501,17502,17487,17495,17502,17487,17502,17496,17487,17496,17497,17500,17499,17504,17500,17504,17505,17501,17500,17505,17501,17505,17506,17502,17501,17506,17502,17506,17507,17496,17502,17507,17496,17507,17503,17496,17503,17497,17497,17503,4992,17497,4992,12132,17497,12132,17488,17488,12132,12133,17488,12133,17489,17489,12133,12134,17489,12134,17490,17490,12134,12135,17490,12135,17491,17491,12135,12136,17491,12136,17492,17492,12136,4995,17492,4995,12665,17492,12665,13916,17492,13916,13915,17492,13915,17485,17485,13915,17482,17482,13915,13914,17482,13914,17486,17486,13914,17493,17493,13914,13913,17493,13913,17498,17493,17498,17499,17499,17498,12664,17499,12664,5453,17499,5453,17504,17504,5453,12661,17504,12661,17505,17505,12661,12662,17505,12662,17506,17506,12662,4991,17506,4991,17507,17507,4991,12126,17507,12126,17503,17503,12126,4992,12664,17498,12665,12665,17498,6422,12665,6422,13916,6422,17498,13912,13912,17498,13913,4998,5001,4997,4997,5001,5469,4997,5469,12684,4997,12684,12668,12668,12684,12683,12668,12683,12667,12667,12683,12682,12667,12682,5451,5451,12682,17508,5451,17508,5450,5450,17508,5455,5455,17508,5458,5458,17508,5463,5463,17508,5466,5466,17508,12682,5004,5472,5470,5004,5470,5003,17509,17510,17511,17509,17512,17510,17511,17510,17514,17511,17514,17515,17510,17512,17516,17510,17516,17513,17510,17513,17514,5020,5028,12165,17514,17513,5009,17514,5009,5019,17514,5019,12165,17514,12165,17515,17515,12165,5028,17515,5028,5029,17515,5029,5488,17515,5488,17511,17511,5488,17509,17509,5488,5485,17509,5485,12698,17509,12698,17512,17512,12698,5482,17512,5482,5477,17512,5477,17516,17516,5477,5473,17516,5473,17513,17513,5473,5006,17513,5006,5009,5014,5017,5011,5022,5023,5026,5032,5040,5491,5032,5491,5489,5032,5489,5031,5491,5040,5041,5035,5038,5034,17518,17517,17519,17518,17519,12179,17518,12179,12210,17518,12210,5064,17518,5064,12218,17518,12218,17517,17517,12218,5067,17517,5067,12707,17517,12707,12706,17517,12706,17519,17519,12706,5492,17519,5492,12178,17519,12178,12179,12178,5492,5043,12210,12179,5044,5055,5058,5061,5055,5061,5054,5070,5497,12222,12222,5497,17520,12222,17520,12709,12222,12709,5069,12709,17520,12708,12708,17520,5487,12708,5487,5490,5487,17520,5486,5486,17520,5494,5494,17520,5497,17521,17522,17523,17521,17523,17524,17521,17524,5517,17521,5517,5514,17521,5514,5511,17521,5511,12726,17521,12726,17522,17522,12726,17525,17522,17525,5075,17522,5075,17523,17523,5075,17524,17524,5075,12752,17524,12752,12733,17524,12733,12732,17524,12732,5517,12733,12752,12751,12733,12751,12734,12734,12751,5531,12734,5531,5525,12734,5525,5520,5525,5531,5528,5075,17525,5072,5072,17525,5498,5498,17525,5502,5502,17525,12724,5502,12724,5505,5505,12724,5508,12724,17525,12725,12725,17525,12726,5078,5084,12755,5078,12755,5077,12755,5084,17526,12755,17526,12754,12754,17526,5534,12754,5534,5532,5534,17526,5096,5096,17526,5095,5095,17526,5084,12244,5090,5086,12244,5086,5087,5086,5090,5093,5099,5543,5098,5098,5543,5535,5535,5543,5540,5535,5540,5537,17527,17528,17529,17527,17529,12769,17527,12769,12768,17527,12768,12261,17527,12261,12262,17527,12262,17528,17528,12262,5102,17528,5102,5105,17528,5105,5108,17528,5108,17529,17529,5108,5113,17529,5113,17530,17529,17530,12770,17529,12770,12769,12770,17530,5546,5546,17530,5549,5549,17530,5552,5552,17530,5555,5555,17530,5113,12261,12768,5101,5101,12768,5544,5116,5570,5567,5116,5567,5564,5116,5564,5561,5116,5561,5558,5116,5558,5556,5116,5556,5115,5119,5122,5588,5119,5588,5583,5119,5583,5118,5118,5583,5580,5118,5580,5575,5118,5575,5571,5125,5591,5124,5591,5589,5124,5592,5127,12803,12290,5131,17531,12290,17531,12804,12290,12804,12803,12290,12803,5128,5128,12803,5127,12804,17531,17532,12804,17532,5236,5236,17532,5233,5233,17532,5232,5232,17532,5954,5954,17532,5131,5131,17532,17531,5134,5948,5133,5133,5948,5952,5952,5948,5949,13693,5154,13171,13693,13171,13170,13693,13170,13694,13694,13170,13169,13694,13169,5137,5137,13169,13168,5137,13168,5136,5136,13168,5945,5136,5945,5946,13171,5154,5956,5956,5154,5155,5140,5146,12298,12298,5146,13695,12298,13695,13696,12298,13696,5139,13695,5146,5152,17533,17536,17537,17533,17537,17538,17534,17533,17538,17534,17538,17539,17537,17536,17540,17537,17540,5157,17537,5157,17538,17538,5157,12328,17538,12328,17539,17539,12328,5158,17539,5158,5968,17539,5968,13186,17539,13186,13185,17539,13185,17534,17534,13185,13184,17534,13184,17533,17533,13184,5965,17533,5965,17535,17533,17535,17536,17536,17535,5959,17536,5959,17540,17540,5959,5957,17540,5957,5157,5959,17535,5962,5962,17535,5965,5161,5178,5179,5161,5179,5182,5161,5182,5160,5160,5182,5969,5164,5173,5176,5164,5176,5163,5185,5188,17541,5185,17541,12354,12354,17541,17542,12354,17542,12353,12353,17542,13188,12353,13188,13189,12353,13189,12352,12352,13189,5967,12352,5967,5184,13188,17542,13187,13187,17542,13190,13187,13190,5966,13190,17542,17541,13190,17541,5188,13197,5971,17544,13197,17544,17543,13197,17543,12362,13197,12362,5191,12362,17543,12361,12361,17543,13191,12361,13191,5190,13191,17543,5964,5964,17543,17544,5964,17544,5963,5963,17544,5971,5194,5197,13211,5194,13211,12368,12368,13211,13210,12368,13210,13209,12368,13209,12367,12367,13209,13208,12367,13208,5193,5193,13208,17545,5193,17545,13199,13199,17545,13206,13199,13206,5974,13199,5974,5972,5974,13206,5977,13206,17545,13207,13207,17545,13208,17547,17551,17552,17548,17547,17552,17548,17552,17553,17548,17553,17554,17546,17548,17554,17546,17554,17549,17546,17549,17550,17550,17549,17556,17549,17555,17556,5199,5200,13217,17556,17555,13226,17556,13226,5983,17556,5983,5980,17556,5980,5978,17556,5978,17550,17550,5978,13212,17550,13212,13213,17550,13213,17546,17546,13213,13214,17546,13214,17548,17548,13214,17547,17547,13214,13215,17547,13215,17551,17551,13215,13216,17551,13216,13217,17551,13217,17557,17551,17557,17552,17552,17557,13230,17552,13230,13229,17552,13229,17553,17553,13229,13228,17553,13228,17554,17554,13228,13227,17554,13227,17555,17554,17555,17549,17555,13227,13226,13230,17557,13231,13231,17557,13217,13231,13217,5200,5202,5203,13237,5203,5206,13237,13237,5206,5995,13237,5995,17558,13237,17558,13236,13236,17558,13235,13235,17558,13248,13235,13248,13247,13235,13247,13234,13234,13247,13246,13234,13246,13233,13233,13246,13232,13232,13246,5989,13232,5989,5986,13232,5986,5984,13248,17558,5992,5992,17558,13254,13254,17558,5995,5209,5996,5208,17560,17559,17564,17560,17564,17565,17561,17560,17565,17561,17565,17566,17562,17561,17566,17562,17566,13258,17562,13258,5993,17562,5993,13255,17562,13255,17561,17561,13255,5994,17561,5994,17560,17560,5994,5211,17560,5211,17559,17559,5211,12375,17559,12375,17564,17564,12375,17563,17564,17563,12878,17564,12878,12879,17564,12879,17565,17565,12879,12880,17565,12880,17566,17566,12880,12881,17566,12881,5668,17566,5668,13258,5668,12881,5665,12878,17563,12376,12878,12376,5664,5664,12376,5212,12376,17563,12375,5215,5935,12873,5215,12873,5214,5214,12873,5662,12873,5935,5661,5661,5935,5931,5931,5935,5930,5218,5221,5217,5217,5221,5941,5217,5941,5936,5936,5941,5938,5224,5227,13158,5224,13158,5942,5224,5942,5223,13158,5227,5950,13158,5950,5947,13158,5947,5944,5230,5953,5951,5230,5951,5229,17569,17568,17570,17569,17570,17571,17569,17571,5584,17569,5584,5587,17569,5587,5590,17569,5590,12806,17569,12806,17568,17568,12806,12445,17568,12445,17570,17570,12445,12446,17570,12446,17572,17570,17572,17571,17571,17572,5599,17571,5599,5594,17571,5594,5584,5599,17572,5604,5604,17572,5275,5275,17572,12446,12445,12806,12444,12444,12806,12807,12444,12807,12443,12443,12807,5238,12443,5238,12442,12442,5238,17567,12442,17567,12441,12441,17567,5239,12441,5239,5242,12441,5242,5245,5239,17567,5238,5254,5273,5251,5251,5273,5271,5251,5271,5250,5256,5257,5274,5274,5257,5263,5257,5260,5263,5266,5269,5265,5265,5269,5272,5615,5610,5618,5278,5618,5277,5277,5618,5610,5277,5610,5607,5277,5607,5605,5280,5281,5619,5284,5621,5616,5284,5616,5617,5284,5617,5283,5287,5633,5630,5287,5630,5627,5287,5627,12841,5287,12841,12460,12460,12841,5624,12460,5624,5286,5286,5624,5622,12860,5645,17573,12860,17573,5634,12860,5634,5289,12860,5289,5290,5634,17573,5636,5636,17573,5639,5639,17573,5645,5639,5645,5642,5293,5648,5292,5292,5648,12861,12861,5648,12862,12861,12862,5646,17574,17575,17576,17574,17576,5657,17574,5657,5654,17574,5654,5651,17574,5651,17575,17575,5651,5649,17575,5649,5295,17575,5295,17576,17576,5295,12467,17576,12467,17578,17576,17578,17577,17576,17577,5657,5657,17577,5305,5305,17577,12478,12478,17577,17578,12478,17578,12477,12477,17578,12468,12477,12468,5302,5302,12468,5296,12468,17578,12467,12488,5311,12877,12488,12877,12876,12488,12876,12487,12487,12876,12875,12487,12875,5308,5308,12875,12874,5308,12874,12480,12480,12874,5663,12480,5663,5307,5307,5663,12872,5307,12872,5658,5658,12872,5660,12877,5311,5666,5314,5672,5313,5313,5672,5667,5667,5672,5669,5317,5684,12884,5317,12884,5673,5317,5673,5316,12884,5684,12885,12885,5684,5681,12885,5681,5675,5675,5681,5678,12512,5323,17580,12512,17580,12511,12511,17580,12501,12511,12501,12502,12511,12502,5320,12501,17580,12500,12500,17580,17579,12500,17579,5319,5319,17579,5685,5685,17579,17580,5685,17580,5323,5326,5332,12896,5326,12896,12516,12516,12896,17581,12516,17581,5325,5325,17581,5683,5683,17581,5682,5682,17581,5687,5687,17581,12896,17582,17583,17584,17582,17584,12899,17582,12899,12898,17582,12898,12897,17582,12897,17583,17583,12897,5334,17583,5334,5335,17583,5335,12907,17583,12907,17584,17584,12907,5693,17584,5693,12900,17584,12900,12899,12900,5693,12901,12901,5693,5690,12897,12898,5688,5338,5341,12909,5338,12909,5337,12909,5341,12915,12909,12915,5694,5694,12915,12914,5694,12914,12910,12910,12914,12913,12910,12913,5696,5696,12913,5699,5699,12913,5702,17586,17585,17587,17586,17587,5714,17586,5714,12929,17586,12929,12928,17586,12928,12918,17586,12918,12919,17586,12919,17585,17585,12919,5343,17585,5343,12538,17585,12538,17587,17587,12538,5344,17587,5344,5717,17587,5717,5714,5717,5344,5347,12918,12928,5711,12918,5711,12917,12917,5711,5708,12917,5708,5703,5703,5708,5705,5350,5353,5720,5350,5720,5718,5350,5718,5349,17588,17589,17590,17590,17589,17591,17590,17591,17592,17592,17591,17593,17592,17593,12934,17592,12934,17590,17590,12934,12933,17590,12933,17588,17588,12933,12932,17588,12932,12930,17588,12930,12931,17588,12931,17589,17589,12931,5713,17589,5713,17591,17591,5713,5721,17591,5721,5355,17591,5355,17593,17593,5355,5356,17593,5356,5729,17593,5729,12934,12934,5729,5726,12930,12932,5723,12930,5723,5712,5359,5362,5358,5358,5362,5732,5358,5732,5730,5365,5368,5371,5365,5371,12562,5365,12562,12552,12552,12562,12563,12552,12563,12551,12551,12563,17594,12551,17594,5364,5364,17594,5733,5733,17594,12944,12944,17594,12564,12944,12564,5374,12564,17594,12563,5377,5735,5376,5376,5735,5727,5376,5727,12945,12945,5727,5728,12945,5728,5731,5380,5755,5752,5380,5752,5738,5380,5738,5379,5379,5738,5736,5738,5752,5749,5738,5749,5741,5741,5749,5744,5383,5756,5382,5386,5758,5753,5386,5753,5385,5385,5753,5754,17595,17596,17597,17595,17597,17598,17595,17598,17599,17596,17600,17601,17599,17598,17602,17599,17602,17603,17601,17600,17604,17601,17604,12971,17601,12971,12970,17601,12970,17596,17596,12970,17597,17597,12970,12969,17597,12969,17598,17598,12969,5763,17598,5763,17602,17602,5763,5745,17602,5745,5748,17602,5748,17605,17602,17605,17603,17603,17605,12981,17603,12981,5775,17603,5775,17599,17599,5775,12978,17599,12978,17595,17595,12978,12977,17595,12977,17596,17596,12977,17600,17600,12977,5772,17600,5772,17604,17604,5772,12975,17604,12975,5766,17604,5766,12971,5766,12975,5769,12981,17605,5389,5389,17605,5388,5388,17605,5759,5759,17605,5748,12602,5398,17607,12602,17607,12601,12601,17607,12988,12601,12988,12987,12601,12987,12600,12600,12987,12986,12600,12986,12599,12599,12986,12985,12599,12985,12598,12598,12985,12984,12598,12984,5392,5392,12984,12584,12584,12984,12983,12584,12983,12982,12584,12982,5391,12982,12983,5776,12988,17607,17606,12988,17606,12989,12989,17606,12976,12989,12976,5771,12976,17606,5770,5770,17606,17607,5770,17607,5398,5401,5412,5400,5412,5413,12997,5412,12997,5400,5400,12997,17608,5400,17608,5768,5768,17608,5781,5768,5781,5778,5768,5778,5767,5781,17608,12997,5403,5404,5410,5416,5419,17609,5416,17609,5415,5415,17609,12998,12998,17609,5428,12998,5428,5782,5782,5428,5784,5428,17609,5425,5425,17609,5419,17611,17610,17613,17610,17614,17612,17610,17612,17613,17612,17614,17615,17612,17615,12637,17612,12637,12638,17612,12638,17613,17613,12638,5431,17613,5431,13012,17613,13012,17611,17611,13012,5796,17611,5796,5793,17611,5793,13008,17611,13008,17610,17610,13008,13007,17610,13007,17614,17614,13007,5790,17614,5790,5787,17614,5787,17615,17615,5787,5785,17615,5785,5430,17615,5430,12637,12652,5442,13014,12652,13014,5433,12652,5433,12640,12652,12640,12651,12651,12640,5434,13014,5442,12656,13014,12656,5797,5797,12656,5445,5797,5445,5799,5799,5445,5802,5448,5454,5805,5448,5805,5803,5448,5803,5447,5457,5808,5456,5456,5808,5806,5462,5817,5814,5462,5814,5811,5462,5811,5459,5459,5811,5809,5465,5832,17616,5465,17616,5818,5465,5818,5464,5818,17616,5820,5820,17616,5823,5823,17616,5829,5823,5829,5826,5829,17616,5832,5468,5471,5476,5468,5476,5841,5468,5841,12688,12688,5841,13052,12688,13052,12687,12687,13052,13051,12687,13051,5838,12687,5838,12686,12686,5838,13045,12686,13045,5467,5467,13045,5833,13045,5838,5835,5841,5476,5844,5481,6354,5506,5481,5506,5507,5481,5507,5845,5481,5845,5478,5845,5507,5847,5847,5507,5850,5484,5493,12699,12699,5493,6357,12699,6357,5483,5483,6357,6355,5496,5501,5495,5495,5501,6358,5504,6353,6356,5504,6356,5503,17617,17618,17619,17619,17618,17620,17619,17620,12728,17619,12728,12729,17619,12729,17617,17617,12729,13074,17617,13074,5856,17617,5856,5853,17617,5853,17618,17618,5853,13070,17618,13070,17620,17620,13070,5851,17620,5851,5509,17620,5509,12727,17620,12727,12728,13074,12729,5859,5859,12729,5510,5513,5860,5512,17623,17622,17624,17623,17624,17625,17623,17625,17626,17623,17626,13081,17623,13081,5868,17623,5868,13078,17623,13078,17622,17622,13078,17621,17622,17621,17624,17624,17621,13076,17624,13076,5858,17624,5858,5515,17624,5515,5516,17624,5516,17625,17625,5516,13089,17625,13089,17627,17625,17627,17626,17626,17627,13082,17626,13082,13081,13082,17627,13083,13083,17627,13088,13083,13088,5877,13083,5877,5871,5871,5877,5874,13088,17627,13089,13076,17621,5857,5857,17621,13077,5857,13077,5865,5857,5865,5862,13077,17621,13078,5519,5889,13093,5519,13093,5878,5519,5878,12737,12737,5878,17628,12737,17628,12736,12736,17628,13091,12736,13091,13092,12736,13092,12735,12735,13092,5518,13091,17628,5878,13093,5889,5886,13093,5886,5880,5880,5886,5883,17629,17631,17632,17629,17632,5890,17629,5890,5521,17629,5521,17630,17629,17630,13658,17629,13658,17631,17631,13658,5631,17631,5631,5632,17631,5632,17632,17632,5632,5635,17632,5635,5897,17632,5897,5890,5890,5897,5894,13658,17630,6336,6336,17630,5524,5524,17630,5521,5527,5538,6337,5527,6337,5526,6337,5538,5539,5530,5533,5536,5530,5536,5529,12773,5545,5628,12773,5628,17634,12773,17634,12772,12772,17634,17633,12772,17633,12771,12771,17633,6335,12771,6335,5542,5542,6335,5541,6335,17633,13660,13660,17633,17634,13660,17634,5629,5629,17634,5628,13665,6339,5625,13665,5625,12843,13665,12843,5548,5548,12843,5547,5547,12843,5626,5551,5559,13666,5551,13666,5550,13666,5559,6342,13666,6342,6340,6342,5559,5560,5554,5557,5553,5563,6348,5562,5562,6348,6343,6343,6348,6345,5566,5576,5579,5566,5579,5565,5565,5579,5595,5565,5595,5598,5565,5598,6349,6349,5598,6351,5569,5574,5568,5582,5593,5581,5603,5606,6352,5603,6352,5600,5609,6346,5608,5608,6346,6347,5608,6347,6350,5611,5614,6344,5614,5620,6344,6344,5620,6341,6341,5620,6338,6338,5620,5623,17635,17636,17637,17635,17637,5917,17635,5917,5914,17635,5914,5908,17635,5908,5905,17635,5905,17636,17636,5905,5900,17636,5900,5898,17636,5898,17637,17637,5898,5637,17637,5637,5638,17637,5638,5917,5908,5914,5911,5641,5918,5640,12863,5647,13135,12863,13135,17638,12863,17638,17639,12863,17639,5644,5644,17639,5643,5643,17639,5916,5916,17639,5915,5915,17639,13133,5915,13133,5920,13133,17639,13134,13134,17639,17638,13134,17638,13135,13135,5647,5650,13135,5650,5923,5653,5932,5929,5653,5929,5652,5652,5929,5926,5652,5926,5924,5656,5659,5655,5655,5659,5933,17640,17641,17642,17640,17643,17644,17640,17644,17641,17642,17641,17646,17643,17647,17648,17644,17643,17648,17644,17648,17649,17644,17649,17650,17641,17644,17650,17641,17650,17645,17641,17645,17646,17647,17651,17652,17648,17647,17652,17648,17652,17653,17649,17648,17653,17649,17653,17654,17650,17649,17654,17650,17654,17655,17645,17650,17655,17651,17656,17657,17652,17651,17657,17652,17657,17658,17653,17652,17658,17653,17658,17659,17654,17653,17659,17657,17656,17660,17657,17660,17661,17658,17657,17661,17658,17661,12887,17658,12887,17659,17659,12887,5674,17659,5674,13267,17659,13267,17654,17654,13267,13266,17654,13266,17655,17655,13266,13265,17655,13265,17645,17645,13265,13264,17645,13264,17646,17646,13264,5998,17646,5998,13262,17646,13262,17642,17642,13262,13251,17642,13251,17640,17640,13251,13252,17640,13252,17643,17643,13252,17647,17647,13252,13253,17647,13253,17651,17651,13253,5991,17651,5991,17656,17656,5991,13261,17656,13261,17660,17660,13261,12886,17660,12886,17661,17661,12886,12887,12886,13261,5670,12886,5670,5671,13251,13262,5990,13273,6004,13269,13273,13269,13270,13273,13270,13274,13274,13270,13271,13274,13271,5677,5677,13271,5676,13269,6004,13268,13268,6004,6001,13268,6001,5999,17663,17666,17667,17663,17667,17668,17662,17663,17668,17662,17668,17664,17662,17664,17665,17665,17664,17670,17666,17671,17672,17667,17666,17672,17667,17672,17673,17668,17667,17673,17668,17673,17674,17664,17668,17674,17664,17674,17669,17664,17669,17670,17670,17669,17676,17673,17672,17677,17673,17677,17678,17674,17673,17678,17674,17678,17679,17669,17674,17679,17669,17679,17675,17669,17675,17676,17676,17675,5689,17676,5689,6010,17676,6010,17670,17670,6010,6007,17670,6007,13279,17670,13279,17665,17665,13279,6005,17665,6005,17662,17662,6005,13276,17662,13276,17663,17663,13276,13277,17663,13277,17666,17666,13277,5679,17666,5679,17671,17671,5679,5680,17671,5680,5686,17671,5686,12902,17671,12902,17672,17672,12902,17677,17677,12902,12903,17677,12903,17678,17678,12903,12904,17678,12904,17679,17679,12904,12905,17679,12905,17675,17675,12905,5689,12911,5695,13285,12911,13285,13284,12911,13284,17680,12911,17680,5692,5692,17680,5691,5691,17680,6011,6011,17680,13284,13285,5695,6013,5698,6026,6014,5698,6014,5697,6014,6026,6021,6014,6021,6016,5701,5704,5700,5700,5704,6029,5700,6029,6027,5707,6032,5706,5706,6032,6030,5710,5722,6041,5710,6041,6038,5710,6038,6035,5710,6035,5709,5709,6035,6033,5716,5719,5715,17682,17683,17685,17682,17685,17684,17684,17685,17686,17686,17685,12937,17686,12937,5725,17686,5725,5734,17686,5734,5737,17686,5737,17684,17684,5737,13314,17684,13314,6055,17684,6055,17682,17682,6055,6052,17682,6052,17681,17682,17681,17683,17683,17681,12935,17683,12935,12936,17683,12936,17685,17685,12936,12937,12935,17681,5724,5724,17681,6047,5724,6047,6042,6042,6047,6044,6047,17681,6052,5740,6058,13315,5740,13315,5739,13315,6058,6056,5743,5762,5742,5742,5762,6059,6059,5762,6321,6059,6321,6061,6061,6321,13640,6061,13640,6064,6064,13640,13639,6064,13639,13323,13323,13639,13638,13323,13638,13324,13324,13638,5821,13324,5821,5822,13324,5822,6067,5751,5757,5750,5765,5777,5788,5765,5788,5789,5765,5789,12974,12974,5789,13649,12974,13649,12973,12973,13649,6324,12973,6324,12972,12972,6324,6322,12972,6322,5764,17687,17688,17689,17687,17690,17691,17687,17691,17688,17689,17688,17693,17691,17690,17694,17691,17694,17695,17691,17695,17696,17688,17691,17696,17688,17696,17692,17688,17692,17693,17696,17695,17698,17696,17698,17699,17692,17696,17699,17692,17699,17697,17692,17697,17693,17693,17697,12996,17693,12996,5773,17693,5773,17689,17689,5773,12979,17689,12979,17687,17687,12979,12980,17687,12980,17690,17690,12980,5774,17690,5774,17694,17694,5774,12990,17694,12990,12991,17694,12991,17695,17695,12991,17698,17698,12991,12992,17698,12992,12993,17698,12993,17699,17699,12993,12994,17699,12994,17697,17697,12994,12995,17697,12995,12996,5780,5783,5779,5779,5783,5786,5792,6330,13653,5792,13653,13652,5792,13652,17701,5792,17701,13010,13010,17701,17700,13010,17700,13009,13009,17700,13650,13009,13650,5791,13650,17700,6325,6325,17700,13651,13651,17700,17701,13651,17701,13652,13653,6330,6327,5795,5798,6331,5795,6331,5794,6331,5798,6333,5801,5804,6334,5801,6334,5800,6334,5804,5810,5810,5804,5807,5813,6328,6332,5813,6332,5812,6332,6328,6329,17703,17702,17704,17703,17704,17705,17703,17705,13642,17703,13642,13643,17703,13643,17702,17702,13643,13654,17702,13654,13655,17702,13655,17704,17704,13655,13656,17704,13656,6326,17704,6326,5816,17704,5816,17705,17705,5816,5819,17705,5819,13642,5816,6326,5815,13654,13643,13644,13654,13644,6323,6323,13644,6320,5825,6075,5824,6075,6072,5824,5824,6072,6068,6076,5827,6078,6078,5827,6081,5828,6081,5827,13046,5834,6087,13046,6087,6084,13046,6084,5831,5831,6084,5830,5830,6084,6082,6087,5834,6096,6087,6096,6093,6087,6093,6090,13356,6102,6099,13356,6099,6097,13356,6097,5836,13356,5836,5837,17707,17706,17711,17707,17711,17712,17708,17707,17712,17708,17712,17713,17709,17708,17713,17709,17713,17714,17706,17715,17710,17706,17710,17711,17711,17710,17717,17711,17717,17718,17712,17711,17718,17712,17718,17719,17713,17712,17719,17713,17719,17720,17714,17713,17720,17710,17715,17721,17710,17721,17716,17710,17716,17717,17720,17719,17722,17720,17722,13366,17720,13366,13365,17720,13365,17714,17714,13365,13364,17714,13364,17709,17709,13364,6105,17709,6105,17708,17708,6105,13360,17708,13360,17707,17707,13360,17706,17706,13360,13359,17706,13359,13358,17706,13358,17715,17715,13358,6103,17715,6103,17721,17721,6103,17723,17721,17723,17716,17716,17723,13918,17716,13918,13919,17716,13919,17717,17717,13919,13920,17717,13920,17718,17718,13920,13921,17718,13921,17719,17719,13921,17722,17722,13921,13056,17722,13056,5840,17722,5840,13366,13056,13921,6423,13056,6423,13055,13055,6423,13917,13055,13917,5839,5839,13917,17723,5839,17723,13357,13357,17723,6103,17723,13917,13918,5843,5846,17725,5843,17725,13369,5843,13369,5842,13369,17725,13368,13368,17725,17724,13368,17724,13367,13367,17724,13370,13367,13370,6106,13370,17724,6108,6108,17724,13372,13372,17724,17725,13372,17725,5846,13072,5852,13374,13072,13374,6109,13072,6109,13373,13072,13373,5849,5849,13373,5848,13374,5852,17726,13374,17726,6111,6111,17726,13376,13376,17726,13378,13376,13378,6117,13376,6117,6114,13378,17726,5852,5855,5861,13379,5855,13379,5854,13379,5861,6118,6118,5861,13389,6118,13389,13380,13380,13389,13388,13380,13388,6126,13380,6126,6120,6120,6126,6123,13623,5869,13084,13623,13084,17727,13623,17727,13624,13624,17727,17728,13624,17728,13625,13625,17728,13395,13625,13395,13394,13625,13394,13626,13626,13394,13393,13626,13393,13627,13627,13393,13392,13627,13392,13628,13628,13392,13390,13628,13390,13391,13628,13391,13629,13629,13391,5863,13629,5863,5864,13390,13392,6127,13395,17728,13396,13396,17728,17727,13396,17727,17729,13396,17729,13397,13397,17729,13086,13397,13086,5870,13086,17729,13085,13085,17729,17727,13085,17727,13084,17730,17731,17732,17730,17732,17733,17730,17733,17734,17730,17734,17735,17730,17735,17736,17730,17736,17731,17732,17731,17738,17736,17735,17739,17736,17739,17740,17736,17740,17741,17731,17736,17741,17731,17741,17737,17731,17737,17738,17738,17737,5866,17738,5866,13079,17738,13079,17732,17732,13079,13080,17732,13080,17733,17733,13080,5867,17733,5867,13630,17733,13630,17734,17734,13630,13631,17734,13631,17735,17735,13631,13632,17735,13632,17739,17739,13632,13633,17739,13633,17740,17740,13633,13634,17740,13634,17741,17741,13634,13635,17741,13635,17737,17737,13635,13636,17737,13636,5866,17742,17743,17744,17742,17744,6426,17742,6426,13401,17742,13401,13402,17742,13402,13403,17742,13403,17743,17743,13403,5872,17743,5872,5873,17743,5873,13412,17743,13412,17744,17744,13412,17745,17744,17745,13922,17744,13922,6426,13922,17745,13923,13923,17745,6134,13923,6134,6131,13923,6131,6124,13923,6124,13924,13924,6124,6125,13924,6125,13398,13924,13398,13925,13925,13398,13399,13925,13399,13926,13926,13399,13400,13926,13400,13401,13926,13401,6426,6134,17745,13411,13411,17745,13412,13094,5879,13415,13094,13415,13414,13094,13414,5875,13094,5875,5876,13414,13415,13413,13413,13415,6137,13413,6137,6135,5882,6315,5901,5882,5901,5881,5881,5901,13416,13416,5901,5904,13416,5904,6138,6138,5904,6143,6138,6143,6140,5885,6318,5884,5884,6318,6316,5888,5893,5887,5887,5893,6319,5896,5899,5895,5895,5899,6317,6317,5899,6314,5907,6146,6144,5907,6144,5906,5910,6149,5909,5909,6149,6147,5913,5919,6150,5913,6150,5912,6150,5919,6154,6154,5919,6163,6154,6163,13429,13429,6163,6160,13429,6160,6157,17747,17748,17749,17747,17749,13932,17747,13932,13931,17747,13931,17746,17747,17746,6166,17747,6166,13443,17747,13443,17748,17748,13443,6164,17748,6164,5921,17748,5921,17749,17749,5921,13137,17749,13137,13932,13932,13137,13933,13933,13137,13138,13933,13138,6427,6427,13138,13139,6427,13139,6175,6427,6175,13929,13929,6175,6172,13929,6172,13445,13929,13445,13930,13930,13445,6169,13930,6169,17746,13930,17746,13931,17746,6169,6166,6175,13139,5925,5925,13139,5922,5928,5934,5937,5928,5937,17755,5928,17755,5927,5927,17755,17754,5927,17754,6176,6176,17754,17753,6176,17753,17752,6176,17752,13451,13451,17752,17751,13451,17751,13452,13452,17751,13457,13452,13457,17750,13452,17750,6180,6180,17750,13455,13455,17750,6186,13455,6186,6183,6186,17750,13457,13457,17751,13458,13458,17751,13459,13459,17751,17752,13459,17752,17753,13459,17753,13460,13460,17753,17754,13460,17754,13461,13461,17754,17755,13461,17755,5937,13159,5943,17761,13159,17761,5940,5940,17761,5939,5939,17761,17762,5939,17762,13466,13466,17762,17760,13466,17760,13465,13465,17760,17759,13465,17759,13464,13464,17759,17758,13464,17758,13463,13463,17758,17757,13463,17757,17756,13463,17756,13462,13462,17756,6187,6187,17756,5958,5958,17756,5955,5955,17756,13175,13175,17756,17757,13175,17757,13174,13174,17757,17758,13174,17758,17759,13174,17759,13173,13173,17759,13172,13172,17759,17760,13172,17760,17762,13172,17762,5943,5943,17762,17761,5961,5970,5973,5961,5973,6184,5961,6184,5960,5960,6184,6185,5976,5979,13469,5976,13469,13468,5976,13468,17763,5976,17763,5975,5975,17763,6182,6182,17763,13456,13456,17763,13467,13456,13467,6181,13467,17763,13468,13469,5979,6189,5982,5985,6190,5982,6190,5981,6190,5985,13473,6190,13473,6192,13263,5997,17764,13263,17764,5987,13263,5987,5988,5987,17764,13474,13474,17764,13483,13474,13483,6193,6193,13483,6201,6193,6201,6198,6193,6198,6195,13483,17764,5997,13483,5997,6000,13281,6006,17767,13281,17767,6003,6003,17767,17765,6003,17765,6002,6002,17765,13484,13484,17765,17766,13484,17766,6202,6202,17766,6207,6202,6207,6204,6207,17766,13488,13488,17766,17765,13488,17765,17767,13488,17767,6210,6210,17767,6006,17768,17769,17770,17770,17769,17771,17770,17771,17772,17770,17772,13495,17770,13495,13494,17770,13494,13493,17770,13493,17768,17768,13493,6211,17768,6211,6008,17768,6008,6009,17768,6009,17769,17769,6009,13286,17769,13286,17771,17771,13286,13287,17771,13287,6012,17771,6012,17772,17772,6012,6218,17772,6218,6158,17772,6158,13495,13495,6158,6159,6218,6012,6015,6020,6221,6017,6017,6221,6219,6025,6028,6022,6022,6028,6222,6222,6028,6034,6034,6028,6031,6037,6235,6232,6037,6232,6220,6037,6220,6036,6220,6232,6217,6217,6232,6156,6156,6232,6229,6156,6229,13430,13430,6229,6226,13430,6226,6155,6040,6043,6238,6040,6238,6039,6039,6238,6236,6046,6244,6045,6045,6244,6241,6045,6241,6239,17774,17773,17775,17774,17775,17776,17774,17776,17777,17776,17775,17778,17776,17778,17779,17777,17776,17779,17777,17779,17780,17777,17780,13543,17777,13543,13542,17777,13542,17774,17774,13542,6256,17774,6256,6253,17774,6253,17773,17773,6253,13540,17773,13540,6247,17773,6247,17775,17775,6247,13537,17775,13537,13536,17775,13536,17778,17778,13536,6245,17778,6245,17779,17779,6245,6048,17779,6048,17780,17780,6048,13544,17780,13544,13543,13544,6048,6051,13544,6051,13545,13545,6051,13546,13546,6051,6265,13546,6265,13547,13547,6265,6259,6259,6265,6262,13540,6253,6250,6054,6057,6266,6054,6266,6053,6266,6057,6060,13575,6283,13557,13575,13557,13556,13575,13556,13576,13576,13556,17781,13576,17781,6063,6063,17781,6062,6062,17781,6263,6062,6263,6264,6263,17781,6268,6268,17781,13556,13557,6283,13558,13558,6283,6280,13558,6280,13559,13559,6280,13571,13559,13571,6249,6249,13571,13541,13541,13571,6277,13541,6277,6248,6066,6071,6085,6066,6085,13327,13327,6085,17783,13327,17783,13326,13326,17783,17782,13326,17782,13579,13326,13579,6065,13579,17782,13578,13578,17782,17783,13578,17783,6086,13578,6086,6284,6284,6086,6286,6086,17783,6085,6085,6071,6310,6074,6077,6073,6077,6311,6073,6080,6083,6309,6080,6309,6079,6295,6292,6298,6089,6298,6088,6088,6298,6287,6287,6298,6292,6287,6292,6289,6092,6299,6091,17785,17784,17786,17785,17786,17787,17787,17786,17788,17787,17788,17789,17789,17788,17790,17789,17790,17791,17791,17790,17792,17791,17792,13603,17791,13603,13602,17791,13602,17789,17789,13602,13601,17789,13601,13600,17789,13600,17787,17787,13600,17785,17785,13600,13599,17785,13599,13598,17785,13598,17784,17784,13598,13377,17784,13377,6113,17784,6113,17786,17786,6113,13586,17786,13586,17788,17788,13586,6301,17788,6301,17790,17790,6301,6296,17790,6296,17792,17792,6296,6297,17792,6297,17793,17792,17793,13603,13603,17793,6098,6098,17793,6095,6095,17793,6094,6094,17793,6297,13377,13598,6112,17794,17795,17796,17794,17796,17797,17796,17795,17799,17796,17799,17800,17796,17800,17801,17797,17796,17801,17797,17801,17802,17795,17803,17798,17795,17798,17799,17798,17803,17805,17798,17805,17804,17804,17805,17806,17804,17806,13361,17804,13361,13362,17804,13362,17798,17798,13362,17799,17799,13362,13363,17799,13363,17800,17800,13363,6104,17800,6104,17801,17801,6104,13371,17801,13371,17802,17802,13371,6107,17802,6107,13375,17802,13375,6110,17802,6110,17797,17797,6110,13604,17797,13604,17794,17794,13604,13605,17794,13605,17795,17795,13605,13606,17795,13606,17803,17803,13606,13607,17803,13607,17805,17805,13607,13608,17805,13608,17806,17806,13608,13609,17806,13609,6101,17806,6101,13361,6101,13609,6100,13381,6119,13589,13381,13589,13587,13381,13587,6115,13381,6115,6116,13587,13589,13588,13587,13588,6304,13587,6304,6302,17807,17809,17810,17808,17807,17810,17808,17810,13592,17808,13592,6307,17808,6307,6305,17808,6305,13590,17808,13590,13591,17808,13591,17807,17807,13591,6121,17807,6121,6122,17807,6122,17809,17809,6122,6130,17809,6130,6141,17809,6141,6145,17809,6145,6148,17809,6148,17810,17810,6148,6153,17810,6153,6225,17810,6225,13592,6145,6141,6142,6133,6136,6139,6133,6139,6132,17812,17811,17814,17811,17813,17814,17814,17813,17815,17814,17815,17816,17814,17816,6213,17814,6213,17812,17812,6213,13499,17812,13499,17811,17811,13499,13490,17811,13490,6209,17811,6209,17813,17813,6209,13496,17813,13496,17815,17815,13496,13497,17815,13497,13498,17815,13498,17816,17816,13498,13444,17816,13444,6165,17816,6165,6213,13444,13498,6162,6162,13498,6161,13490,13499,6208,6168,6214,6167,13504,6196,6197,13504,6197,6205,13504,6205,6206,13504,6206,13500,13504,13500,17817,13504,17817,13505,13505,17817,17818,13505,17818,13506,13506,17818,13446,13506,13446,6171,13446,17818,6170,6170,17818,17817,6170,17817,6212,6212,17817,13500,17819,17823,17820,17819,17820,17821,17822,17821,17824,17822,17824,13454,17822,13454,6179,17822,6179,13470,17822,13470,17821,17821,13470,17819,17819,13470,13471,17819,13471,13472,17819,13472,17823,17823,13472,6188,17823,6188,6191,17823,6191,13508,17823,13508,17820,17820,13508,13509,17820,13509,17821,17821,13509,17824,17824,13509,13510,17824,13510,13454,13454,13510,13453,13453,13510,6173,13453,6173,6174,13508,6191,6194,6200,6203,6199,13594,6278,13593,13594,13593,6227,13594,6227,6228,13593,6278,6308,6308,6278,13573,6308,13573,6291,6291,13573,6279,6291,6279,6290,6231,6242,13538,6231,13538,6230,6230,13538,13539,6230,13539,13595,13595,13539,6246,13595,6246,6276,13538,6242,6243,6234,6237,6240,6234,6240,6233,17825,17826,17827,17825,17827,17828,17825,17828,17829,17827,17826,17830,17827,17830,17831,17827,17831,17832,17828,17827,17832,17830,17833,17834,17831,17830,17834,17831,17834,17835,17832,17831,17835,17832,17835,13562,17832,13562,13563,17832,13563,17828,17828,13563,17829,17829,13563,6251,17829,6251,6252,17829,6252,6274,17829,6274,17825,17825,6274,13566,17825,13566,17826,17826,13566,13565,17826,13565,17830,17830,13565,13564,17830,13564,17833,17833,13564,6271,17833,6271,17834,17834,6271,6269,17834,6269,13560,17834,13560,17835,17835,13560,13561,17835,13561,13562,6255,6275,6254,17838,17837,17840,17838,17840,17841,17838,17841,17842,17836,17838,17842,17836,17842,17839,17840,17845,17846,17841,17840,17846,17841,17846,17847,17842,17841,17847,17842,17847,17848,17839,17842,17848,17839,17848,17843,17839,17843,17844,17844,17843,17850,17846,17845,17851,17847,17846,17851,17847,17851,17852,17847,17852,17853,17848,17847,17853,17843,17848,17853,17843,17853,17849,17843,17849,17850,17850,17849,17854,17850,17854,17855,17852,17851,17856,17852,17856,17857,17853,17852,17857,17854,17853,17857,17849,17853,17854,17855,17854,17858,17857,17856,17859,17858,17857,17859,17854,17857,17858,17858,17859,13553,17858,13553,6258,17858,6258,17855,17855,6258,6272,17855,6272,17850,17850,6272,13567,17850,13567,17844,17844,13567,13568,17844,13568,17839,17839,13568,17836,17836,13568,13569,17836,13569,6273,17836,6273,17838,17838,6273,17837,17837,6273,6257,17837,6257,17840,17840,6257,13548,17840,13548,17845,17845,13548,13549,17845,13549,17851,17851,13549,13550,17851,13550,17856,17856,13550,13551,17856,13551,17859,17859,13551,13552,17859,13552,13553,6261,6267,6270,6261,6270,6260,6282,6285,6288,6282,6288,6281,6293,6294,6306,6294,6300,6306,6306,6300,6303,6385,6393,6384,6393,6394,6397,6393,6397,6384,6388,6391,6387,10042,4003,3296,10042,3296,3297,10042,3297,3299,4002,3300,4004,17904,17860,17861,17904,17861,17862,17915,17863,17932,17915,17932,17931,17915,17931,17916,17916,17931,17867,17916,17867,17865,17867,17931,17894,17894,17931,17932,17894,17932,17866,17866,17932,17864,17864,17932,17863,17860,17864,17861,17861,17864,17863,17925,17868,17934,17925,17934,17926,17926,17934,17933,17926,17933,17870,17870,17933,17935,17870,17935,17895,17895,17935,17936,17895,17936,17869,17869,17936,17866,17866,17936,17894,17894,17936,17933,17894,17933,17934,17894,17934,17867,17867,17934,17868,17933,17936,17935,17868,17865,17867,17864,17869,17866,17873,17871,17897,17897,17871,17896,17897,17896,17872,17869,17872,17895,17895,17872,17896,17895,17896,17870,17870,17896,17871,17929,17874,17939,17929,17939,17938,17929,17938,17930,17930,17938,17937,17930,17937,17876,17876,17937,17900,17900,17937,17938,17900,17938,17899,17899,17938,17939,17899,17939,17875,17875,17939,17898,17898,17939,17874,17872,17875,17897,17897,17875,17898,17897,17898,17873,17873,17898,17874,17941,17942,17943,17906,17877,17940,17906,17940,17941,17906,17941,17905,17905,17941,17943,17905,17943,17879,17879,17943,17903,17903,17943,17942,17903,17942,17878,17878,17942,17901,17901,17942,17902,17902,17942,17941,17902,17941,17940,17902,17940,17877,17875,17878,17899,17899,17878,17901,17899,17901,17900,17900,17901,17902,17900,17902,17876,17876,17902,17877,17878,17860,17903,17903,17860,17904,17903,17904,17879,17879,17904,17862,17944,17945,17948,17948,17945,17949,17945,17946,17949,17949,17946,17950,17946,17947,17950,17950,17947,17951,17952,17948,17953,17948,17949,17953,17953,17949,17954,17949,17950,17954,17954,17950,17955,17950,17951,17955,17952,17953,17956,17953,17954,17956,17887,17880,17947,17887,17947,17946,17887,17946,17886,17886,17946,17945,17886,17945,17944,17886,17944,17882,17882,17944,17910,17910,17944,17948,17910,17948,17952,17910,17952,17909,17909,17952,17956,17909,17956,17881,17881,17956,17907,17907,17956,17955,17907,17955,17908,17908,17955,17951,17908,17951,17880,17880,17951,17947,17955,17956,17954,17879,17881,17905,17905,17881,17907,17905,17907,17906,17906,17907,17908,17906,17908,17877,17877,17908,17880,17914,17883,17912,17914,17912,17913,17913,17912,17911,17913,17911,17885,17885,17911,17884,17881,17884,17909,17909,17884,17911,17909,17911,17910,17910,17911,17912,17910,17912,17882,17882,17912,17883,17884,17862,17885,17885,17862,17861,17885,17863,17913,17913,17863,17915,17913,17915,17914,17914,17915,17916,17914,17916,17883,17883,17916,17865,17958,17957,17959,17959,17957,17960,17960,17957,17961,17962,17958,17963,17958,17959,17963,17963,17959,17964,17959,17960,17964,17964,17960,17965,17928,17888,17965,17928,17965,17961,17928,17961,17927,17927,17961,17890,17890,17961,17919,17919,17961,17957,17919,17957,17918,17918,17957,17958,17918,17958,17917,17917,17958,17962,17917,17962,17889,17889,17962,17886,17886,17962,17963,17886,17963,17964,17886,17964,17887,17887,17964,17965,17887,17965,17888,17961,17965,17960,17888,17880,17887,17882,17889,17886,17893,17891,17922,17893,17922,17924,17924,17922,17921,17924,17921,17923,17923,17921,17920,17923,17920,17892,17889,17892,17917,17917,17892,17920,17917,17920,17918,17918,17920,17921,17918,17921,17919,17919,17921,17922,17919,17922,17890,17890,17922,17891,17892,17868,17923,17923,17868,17925,17923,17925,17924,17924,17925,17926,17924,17926,17893,17893,17926,17870,17893,17871,17891,17891,17871,17873,17890,17874,17927,17927,17874,17929,17927,17929,17928,17928,17929,17930,17928,17930,17888,17888,17930,17876,17860,17878,17864,17864,17878,17869,17869,17878,17875,17869,17875,17872,17863,17885,17861,17868,17892,17889,17868,17889,17882,17868,17882,17865,17865,17882,17883,17871,17893,17870,17874,17890,17891,17874,17891,17873,17877,17880,17888,17877,17888,17876,17862,17884,17881,17862,17881,17879,18013,17966,18008,18013,18008,18043,18013,18043,18044,18013,18044,17968,17968,18044,18021,18021,18044,17967,17967,18044,18009,18009,18044,18043,18009,18043,18008,17990,17969,18011,17990,18011,18010,17990,18010,17991,17991,18010,17970,17991,17970,17971,17966,17970,18008,18008,17970,18010,18008,18010,18009,18009,18010,18011,18009,18011,17967,17967,18011,17969,18015,17972,17973,18015,17973,18012,18015,18012,18014,18014,18012,17974,17970,17973,17971,17971,17973,17972,17973,17966,18012,18012,17966,18013,18012,18013,17974,17974,18013,17968,17998,17975,18017,17998,18017,18045,17998,18045,18030,18030,18045,18046,18030,18046,17999,17999,18046,17977,17977,18046,17976,17976,18046,18016,18016,18046,18045,18016,18045,18017,17974,17976,18014,18014,17976,18016,18014,18016,18015,18015,18016,18017,18015,18017,17972,17972,18017,17975,17980,17978,18047,17980,18047,18018,18018,18047,17979,17979,18047,17978,17976,17979,17977,17977,17979,17978,18022,17981,18048,18022,18048,17983,17983,18048,18020,18020,18048,18019,18020,18019,17982,18019,18048,17981,17979,17982,18018,18018,17982,18019,18018,18019,17980,17980,18019,17981,17982,17968,18020,18020,17968,18021,18020,18021,17983,17983,18021,17967,18006,17984,18023,18006,18023,18049,18006,18049,18007,18007,18049,18024,18007,18024,17986,18024,18049,17985,17985,18049,18023,17983,17985,18022,18022,17985,18023,18022,18023,17981,17981,18023,17984,18026,17987,18050,18026,18050,17991,18026,17991,17989,17991,18050,17990,17990,18050,18025,17990,18025,17988,18025,18050,17987,17985,17988,18024,18024,17988,18025,18024,18025,17986,17986,18025,17987,17971,17989,17991,17988,17969,17990,18041,17992,18027,18041,18027,18051,18041,18051,18042,18042,18051,18028,18042,18028,17994,18028,18051,18027,18028,18027,17993,17989,17993,18026,18026,17993,18027,18026,18027,17987,17987,18027,17992,18053,18052,18054,18055,18052,18053,18032,17995,18052,18032,18052,18055,18032,18055,18031,18031,18055,17999,18031,17999,17997,17999,18055,18030,18030,18055,18053,18030,18053,17998,17998,18053,18054,17998,18054,18029,17998,18029,17996,18029,18054,17995,17995,18054,18052,17993,17996,18028,18028,17996,18029,18028,18029,17994,17994,18029,17995,17977,17997,17999,17996,17975,17998,18036,18000,18034,18036,18034,18033,18036,18033,18035,18035,18033,18056,18035,18056,18002,18002,18056,18001,18001,18056,18033,17997,18001,18031,18031,18001,18033,18031,18033,18032,18032,18033,18034,18032,18034,17995,17995,18034,18000,18001,17978,18002,18002,17978,17980,18057,18058,18059,18059,18058,18060,18040,18003,18057,18040,18057,18039,18039,18057,18059,18039,18059,18005,18005,18059,18007,18007,18059,18060,18007,18060,18006,18006,18060,18037,18006,18037,18004,18037,18060,18058,18037,18058,18038,18038,18058,18003,18003,18058,18057,18002,18004,18035,18035,18004,18037,18035,18037,18036,18036,18037,18038,18036,18038,18000,18000,18038,18003,17986,18005,18007,18004,17984,18006,18005,17992,18039,18039,17992,18041,18039,18041,18040,18040,18041,18042,18040,18042,18003,18003,18042,17994,17966,17973,17970,17969,17988,17967,17967,17988,17983,17983,17988,17985,17972,17975,17993,17972,17993,17989,17972,17989,17971,17993,17975,17996,17968,17982,17974,17974,17982,17979,17974,17979,17976,17978,18001,17977,17977,18001,17997,17981,17984,18004,17981,18004,17980,17980,18004,18002,17987,17992,17986,17986,17992,18005,17995,18000,17994,17994,18000,18003,18132,18061,18119,18132,18119,18133,18133,18119,18120,18133,18120,18134,18134,18120,18062,18134,18062,18063,18176,18177,18178,18094,18064,18122,18094,18122,18177,18094,18177,18151,18151,18177,18176,18151,18176,18095,18095,18176,18066,18066,18176,18065,18065,18176,18178,18065,18178,18121,18121,18178,18122,18122,18178,18177,18061,18065,18119,18119,18065,18121,18119,18121,18120,18120,18121,18122,18120,18122,18062,18062,18122,18064,18158,18067,18180,18158,18180,18179,18158,18179,18159,18159,18179,18124,18159,18124,18069,18124,18179,18123,18123,18179,18180,18123,18180,18068,18068,18180,18067,18065,18068,18066,18066,18068,18067,18072,18070,18126,18072,18126,18125,18072,18125,18127,18127,18125,18071,18068,18071,18123,18123,18071,18125,18123,18125,18124,18124,18125,18126,18124,18126,18069,18069,18126,18070,18136,18073,18182,18136,18182,18181,18136,18181,18135,18135,18181,18131,18135,18131,18075,18131,18181,18130,18130,18181,18182,18130,18182,18129,18129,18182,18128,18129,18128,18074,18128,18182,18073,18071,18074,18127,18127,18074,18128,18127,18128,18072,18072,18128,18073,18074,18061,18129,18129,18061,18132,18129,18132,18130,18130,18132,18133,18130,18133,18131,18131,18133,18134,18131,18134,18075,18075,18134,18063,18078,18076,18138,18078,18138,18140,18140,18138,18137,18140,18137,18139,18139,18137,18077,18075,18077,18135,18135,18077,18137,18135,18137,18136,18136,18137,18138,18136,18138,18073,18073,18138,18076,18081,18079,18144,18144,18079,18142,18144,18142,18143,18143,18142,18141,18143,18141,18080,18077,18080,18139,18139,18080,18141,18139,18141,18140,18140,18141,18142,18140,18142,18078,18078,18142,18079,18166,18082,18146,18166,18146,18167,18167,18146,18145,18167,18145,18084,18084,18145,18083,18080,18083,18143,18143,18083,18145,18143,18145,18144,18144,18145,18146,18144,18146,18081,18081,18146,18082,18087,18085,18086,18083,18086,18084,18084,18086,18085,18086,18063,18087,18087,18063,18062,18174,18088,18089,18174,18089,18147,18174,18147,18175,18175,18147,18148,18175,18148,18090,18087,18089,18085,18085,18089,18088,18152,18091,18183,18152,18183,18093,18093,18183,18095,18095,18183,18151,18151,18183,18184,18151,18184,18094,18094,18184,18149,18094,18149,18092,18149,18184,18150,18150,18184,18091,18091,18184,18183,18089,18092,18147,18147,18092,18149,18147,18149,18148,18148,18149,18150,18148,18150,18090,18090,18150,18091,18066,18093,18095,18092,18064,18094,18098,18096,18185,18098,18185,18154,18154,18185,18153,18154,18153,18097,18153,18185,18096,18093,18097,18152,18152,18097,18153,18152,18153,18091,18091,18153,18096,18161,18099,18186,18161,18186,18160,18160,18186,18157,18160,18157,18101,18157,18186,18156,18156,18186,18187,18156,18187,18100,18100,18187,18155,18155,18187,18099,18099,18187,18186,18097,18100,18154,18154,18100,18155,18154,18155,18098,18098,18155,18099,18100,18067,18156,18156,18067,18158,18156,18158,18157,18157,18158,18159,18157,18159,18101,18101,18159,18069,18189,18188,18190,18190,18188,18191,18191,18188,18192,18192,18188,18193,18193,18188,18194,18194,18188,18189,18106,18102,18191,18106,18191,18192,18106,18192,18105,18105,18192,18193,18105,18193,18104,18104,18193,18165,18165,18193,18194,18165,18194,18164,18164,18194,18189,18164,18189,18103,18103,18189,18162,18162,18189,18190,18162,18190,18163,18163,18190,18191,18163,18191,18102,18101,18103,18160,18160,18103,18162,18160,18162,18161,18161,18162,18163,18161,18163,18099,18099,18163,18102,18103,18082,18164,18164,18082,18166,18164,18166,18165,18165,18166,18167,18165,18167,18104,18104,18167,18084,18109,18107,18106,18109,18106,18169,18169,18106,18105,18169,18105,18168,18168,18105,18108,18107,18102,18106,18104,18108,18105,18112,18110,18171,18112,18171,18173,18173,18171,18170,18173,18170,18172,18172,18170,18111,18108,18111,18168,18168,18111,18170,18168,18170,18169,18169,18170,18171,18169,18171,18109,18109,18171,18110,18111,18088,18172,18172,18088,18174,18172,18174,18173,18173,18174,18175,18173,18175,18112,18112,18175,18090,18115,18113,18114,18112,18114,18110,18110,18114,18113,18114,18096,18115,18115,18096,18098,18115,18107,18113,18113,18107,18109,18118,18116,18117,18081,18117,18079,18079,18117,18116,18117,18070,18118,18118,18070,18072,18118,18076,18116,18116,18076,18078,18061,18074,18071,18061,18071,18068,18061,18068,18065,18064,18092,18087,18064,18087,18062,18087,18092,18089,18067,18100,18097,18067,18097,18066,18066,18097,18093,18070,18117,18082,18070,18082,18069,18069,18082,18101,18101,18082,18103,18082,18117,18081,18073,18076,18118,18073,18118,18072,18063,18086,18083,18063,18083,18080,18063,18080,18077,18063,18077,18075,18079,18116,18078,18085,18088,18111,18085,18111,18084,18084,18111,18108,18084,18108,18104,18091,18096,18090,18090,18096,18114,18090,18114,18112,18099,18102,18107,18099,18107,18115,18099,18115,18098,18110,18113,18109,18228,18225,18229,18225,18226,18229,18229,18226,18230,18227,18228,18232,18232,18228,18233,18228,18229,18233,18233,18229,18234,18229,18230,18234,18230,18231,18234,18233,18234,18235,18204,18195,18226,18204,18226,18225,18204,18225,18205,18205,18225,18228,18205,18228,18227,18205,18227,18197,18197,18227,18232,18197,18232,18222,18222,18232,18223,18223,18232,18235,18223,18235,18224,18224,18235,18231,18224,18231,18196,18196,18231,18211,18211,18231,18230,18211,18230,18195,18195,18230,18226,18231,18235,18234,18235,18232,18233,18238,18236,18239,18236,18237,18239,18209,18198,18238,18209,18238,18239,18209,18239,18210,18210,18239,18237,18210,18237,18200,18200,18237,18214,18214,18237,18213,18213,18237,18236,18213,18236,18199,18199,18236,18212,18212,18236,18238,18212,18238,18198,18195,18199,18211,18211,18199,18212,18211,18212,18196,18196,18212,18198,18241,18240,18242,18242,18240,18243,18241,18242,18244,18217,18201,18241,18217,18241,18244,18217,18244,18203,18203,18244,18205,18205,18244,18242,18205,18242,18204,18204,18242,18243,18204,18243,18202,18202,18243,18215,18215,18243,18240,18215,18240,18216,18216,18240,18241,18216,18241,18201,18199,18202,18213,18213,18202,18215,18213,18215,18214,18214,18215,18216,18214,18216,18200,18200,18216,18201,18197,18203,18205,18202,18195,18204,18248,18245,18249,18245,18246,18249,18249,18246,18250,18246,18247,18250,18248,18249,18252,18252,18249,18253,18249,18250,18253,18210,18206,18245,18210,18245,18248,18210,18248,18209,18209,18248,18251,18209,18251,18208,18208,18251,18221,18221,18251,18252,18221,18252,18220,18220,18252,18253,18220,18253,18219,18219,18253,18250,18219,18250,18207,18207,18250,18247,18207,18247,18218,18218,18247,18246,18218,18246,18206,18206,18246,18245,18252,18251,18248,18203,18207,18217,18217,18207,18218,18217,18218,18201,18201,18218,18206,18207,18197,18219,18219,18197,18222,18219,18222,18220,18220,18222,18223,18220,18223,18221,18221,18223,18224,18221,18224,18208,18208,18224,18196,18200,18206,18210,18208,18198,18209,18195,18202,18199,18198,18208,18196,18201,18206,18200,18197,18207,18203,18275,18254,18342,18275,18342,18423,18275,18423,18276,18276,18423,18422,18276,18422,18256,18256,18422,18374,18374,18422,18424,18374,18424,18375,18375,18424,18255,18255,18424,18343,18343,18424,18423,18343,18423,18342,18423,18424,18422,18387,18257,18345,18387,18345,18344,18387,18344,18259,18259,18344,18258,18254,18258,18342,18342,18258,18344,18342,18344,18343,18343,18344,18345,18343,18345,18255,18255,18345,18257,18262,18260,18346,18346,18260,18261,18258,18261,18259,18259,18261,18260,18396,18263,18426,18396,18426,18397,18397,18426,18425,18397,18425,18350,18397,18350,18265,18350,18425,18349,18349,18425,18348,18348,18425,18426,18348,18426,18347,18348,18347,18264,18347,18426,18263,18261,18264,18346,18346,18264,18347,18346,18347,18262,18262,18347,18263,18268,18266,18353,18268,18353,18352,18268,18352,18354,18354,18352,18351,18354,18351,18267,18264,18267,18348,18348,18267,18351,18348,18351,18349,18349,18351,18352,18349,18352,18350,18350,18352,18353,18350,18353,18265,18265,18353,18266,18271,18269,18355,18271,18355,18356,18356,18355,18270,18267,18270,18354,18354,18270,18355,18354,18355,18268,18268,18355,18269,18430,18427,18428,18359,18272,18427,18359,18427,18358,18358,18427,18430,18358,18430,18429,18358,18429,18274,18274,18429,18276,18276,18429,18430,18276,18430,18275,18275,18430,18431,18275,18431,18273,18273,18431,18357,18357,18431,18428,18357,18428,18272,18272,18428,18427,18428,18431,18430,18270,18273,18356,18356,18273,18357,18356,18357,18271,18271,18357,18272,18256,18274,18276,18273,18254,18275,18279,18277,18281,18281,18277,18363,18363,18277,18432,18363,18432,18362,18362,18432,18360,18362,18360,18280,18280,18360,18278,18360,18432,18361,18361,18432,18277,18274,18278,18358,18358,18278,18360,18358,18360,18359,18359,18360,18361,18359,18361,18272,18272,18361,18277,18434,18433,18435,18435,18433,18436,18284,18282,18281,18284,18281,18434,18284,18434,18286,18286,18434,18435,18286,18435,18436,18286,18436,18285,18285,18436,18280,18285,18280,18283,18280,18436,18362,18362,18436,18433,18362,18433,18363,18363,18433,18434,18363,18434,18281,18282,18279,18281,18278,18283,18280,18401,18287,18286,18401,18286,18289,18289,18286,18285,18289,18285,18288,18287,18284,18286,18283,18288,18285,18292,18290,18364,18364,18290,18291,18288,18291,18289,18289,18291,18290,18295,18293,18367,18367,18293,18365,18367,18365,18366,18366,18365,18294,18291,18294,18364,18364,18294,18365,18364,18365,18292,18292,18365,18293,18438,18437,18439,18335,18296,18369,18335,18369,18438,18335,18438,18414,18414,18438,18439,18414,18439,18415,18415,18439,18437,18415,18437,18370,18415,18370,18336,18336,18370,18298,18370,18437,18297,18297,18437,18368,18368,18437,18438,18368,18438,18369,18294,18297,18366,18366,18297,18368,18366,18368,18367,18367,18368,18369,18367,18369,18295,18295,18369,18296,18301,18299,18373,18373,18299,18371,18373,18371,18372,18372,18371,18300,18297,18300,18370,18370,18300,18371,18370,18371,18298,18298,18371,18299,18300,18256,18372,18372,18256,18374,18372,18374,18373,18373,18374,18375,18373,18375,18301,18301,18375,18255,18418,18302,18303,18418,18303,18376,18418,18376,18419,18419,18376,18304,18301,18303,18299,18299,18303,18302,18307,18305,18379,18379,18305,18440,18379,18440,18378,18378,18440,18377,18378,18377,18306,18377,18440,18305,18303,18306,18376,18376,18306,18377,18376,18377,18304,18304,18377,18305,18310,18308,18381,18310,18381,18383,18383,18381,18380,18383,18380,18382,18382,18380,18309,18306,18309,18378,18378,18309,18380,18378,18380,18379,18379,18380,18381,18379,18381,18307,18307,18381,18308,18313,18311,18385,18313,18385,18386,18386,18385,18384,18386,18384,18312,18309,18312,18382,18382,18312,18384,18382,18384,18383,18383,18384,18385,18383,18385,18310,18310,18385,18311,18312,18257,18386,18386,18257,18387,18386,18387,18313,18313,18387,18259,18313,18260,18311,18311,18260,18262,18403,18314,18388,18403,18388,18389,18403,18389,18402,18402,18389,18390,18402,18390,18316,18388,18314,18315,18310,18315,18308,18308,18315,18314,18398,18317,18393,18398,18393,18441,18398,18441,18319,18319,18441,18395,18395,18441,18394,18394,18441,18442,18394,18442,18318,18318,18442,18391,18391,18442,18392,18392,18442,18441,18392,18441,18393,18315,18318,18388,18388,18318,18391,18388,18391,18389,18389,18391,18392,18389,18392,18390,18390,18392,18393,18390,18393,18316,18316,18393,18317,18318,18263,18394,18394,18263,18396,18394,18396,18395,18395,18396,18397,18395,18397,18319,18319,18397,18265,18322,18320,18400,18400,18320,18399,18400,18399,18321,18319,18321,18398,18398,18321,18399,18398,18399,18317,18317,18399,18320,18321,18287,18400,18400,18287,18401,18400,18401,18322,18322,18401,18289,18322,18290,18320,18320,18290,18292,18407,18323,18405,18407,18405,18406,18406,18405,18404,18406,18404,18325,18325,18404,18324,18316,18324,18402,18402,18324,18404,18402,18404,18403,18403,18404,18405,18403,18405,18314,18314,18405,18323,18324,18293,18325,18325,18293,18295,18328,18326,18443,18328,18443,18411,18411,18443,18410,18410,18443,18408,18410,18408,18327,18408,18443,18409,18409,18443,18326,18325,18327,18406,18406,18327,18408,18406,18408,18407,18407,18408,18409,18407,18409,18323,18323,18409,18326,18421,18329,18413,18421,18413,18412,18421,18412,18331,18331,18412,18330,18327,18330,18410,18410,18330,18412,18410,18412,18411,18411,18412,18413,18411,18413,18328,18328,18413,18329,18338,18332,18445,18338,18445,18444,18338,18444,18337,18337,18444,18336,18337,18336,18334,18336,18444,18415,18415,18444,18445,18415,18445,18414,18414,18445,18335,18335,18445,18332,18335,18332,18333,18330,18333,18331,18331,18333,18332,18298,18334,18336,18333,18296,18335,18447,18448,18449,18420,18339,18447,18420,18447,18449,18420,18449,18341,18341,18449,18417,18417,18449,18448,18417,18448,18416,18416,18448,18446,18416,18446,18340,18340,18446,18337,18337,18446,18448,18337,18448,18447,18337,18447,18338,18338,18447,18339,18339,18332,18338,18334,18340,18337,18340,18302,18416,18416,18302,18418,18416,18418,18417,18417,18418,18419,18417,18419,18341,18341,18419,18304,18341,18329,18420,18420,18329,18421,18420,18421,18339,18339,18421,18331,18328,18305,18326,18326,18305,18307,18284,18266,18282,18282,18266,18268,18279,18269,18277,18277,18269,18271,18254,18273,18267,18254,18267,18264,18254,18264,18261,18254,18261,18258,18267,18273,18270,18257,18312,18255,18255,18312,18301,18301,18312,18309,18301,18309,18306,18301,18306,18303,18260,18313,18259,18263,18318,18315,18263,18315,18262,18262,18315,18311,18311,18315,18310,18266,18284,18287,18266,18287,18321,18266,18321,18265,18265,18321,18319,18269,18279,18282,18269,18282,18268,18272,18277,18271,18256,18300,18291,18256,18291,18274,18274,18291,18288,18274,18288,18278,18278,18288,18283,18291,18300,18294,18294,18300,18297,18290,18322,18289,18320,18292,18317,18293,18324,18316,18293,18316,18292,18292,18316,18317,18333,18330,18296,18296,18330,18327,18296,18327,18295,18295,18327,18325,18340,18334,18302,18299,18302,18298,18298,18302,18334,18329,18341,18328,18305,18328,18304,18304,18328,18341,18308,18314,18323,18308,18323,18307,18307,18323,18326,18331,18332,18339,18511,18450,18542,18511,18542,18519,18511,18519,18452,18519,18542,18451,18451,18542,18504,18504,18542,18450,18545,18543,18546,18543,18544,18546,18546,18544,18547,18548,18545,18549,18545,18546,18549,18546,18547,18549,18549,18547,18550,18548,18549,18551,18549,18550,18551,18494,18453,18550,18494,18550,18547,18494,18547,18502,18502,18547,18544,18502,18544,18503,18503,18544,18495,18495,18544,18543,18495,18543,18455,18455,18543,18457,18457,18543,18506,18506,18543,18545,18506,18545,18548,18506,18548,18456,18456,18548,18551,18456,18551,18454,18454,18551,18505,18505,18551,18550,18505,18550,18453,18450,18454,18504,18504,18454,18505,18504,18505,18451,18451,18505,18453,18460,18458,18457,18460,18457,18462,18462,18457,18506,18462,18506,18507,18507,18506,18461,18461,18506,18456,18461,18456,18459,18458,18455,18457,18454,18459,18456,18552,18553,18554,18541,18463,18462,18541,18462,18553,18541,18553,18552,18541,18552,18465,18465,18552,18508,18508,18552,18554,18508,18554,18461,18508,18461,18464,18461,18554,18507,18507,18554,18553,18507,18553,18462,18463,18460,18462,18459,18464,18461,18512,18466,18555,18512,18555,18510,18512,18510,18468,18510,18555,18467,18467,18555,18509,18509,18555,18466,18464,18467,18508,18508,18467,18509,18508,18509,18465,18465,18509,18466,18467,18450,18510,18510,18450,18511,18510,18511,18468,18468,18511,18452,18540,18469,18556,18540,18556,18473,18540,18473,18471,18473,18556,18515,18515,18556,18557,18515,18557,18514,18514,18557,18513,18514,18513,18472,18472,18513,18470,18513,18557,18469,18469,18557,18556,18468,18470,18512,18512,18470,18513,18512,18513,18466,18466,18513,18469,18530,18474,18473,18530,18473,18558,18530,18558,18531,18531,18558,18559,18531,18559,18476,18476,18559,18516,18516,18559,18472,18516,18472,18475,18472,18559,18514,18514,18559,18558,18514,18558,18515,18515,18558,18473,18474,18471,18473,18470,18475,18472,18535,18477,18517,18535,18517,18479,18479,18517,18478,18475,18478,18516,18516,18478,18517,18516,18517,18476,18476,18517,18477,18520,18480,18518,18520,18518,18482,18518,18480,18481,18478,18481,18479,18479,18481,18480,18481,18452,18518,18518,18452,18519,18518,18519,18482,18482,18519,18451,18538,18483,18560,18538,18560,18539,18539,18560,18523,18539,18523,18485,18523,18560,18522,18522,18560,18561,18522,18561,18484,18484,18561,18521,18521,18561,18483,18483,18561,18560,18482,18484,18520,18520,18484,18521,18520,18521,18480,18480,18521,18483,18562,18563,18564,18564,18563,18565,18526,18486,18563,18526,18563,18562,18526,18562,18490,18526,18490,18488,18490,18562,18503,18503,18562,18564,18503,18564,18502,18502,18564,18565,18502,18565,18524,18502,18524,18489,18489,18524,18487,18524,18565,18525,18525,18565,18563,18525,18563,18486,18484,18487,18522,18522,18487,18524,18522,18524,18523,18523,18524,18525,18523,18525,18485,18485,18525,18486,18493,18491,18490,18493,18490,18495,18495,18490,18503,18491,18488,18490,18487,18492,18489,18455,18493,18495,18492,18453,18494,18493,18458,18491,18491,18458,18460,18532,18496,18566,18532,18566,18498,18498,18566,18529,18529,18566,18528,18528,18566,18527,18528,18527,18497,18527,18566,18496,18488,18497,18526,18526,18497,18527,18526,18527,18486,18486,18527,18496,18497,18474,18528,18528,18474,18530,18528,18530,18529,18529,18530,18531,18529,18531,18498,18498,18531,18476,18537,18499,18533,18537,18533,18536,18536,18533,18500,18536,18500,18534,18536,18534,18501,18498,18500,18532,18532,18500,18533,18532,18533,18496,18496,18533,18499,18500,18477,18534,18534,18477,18535,18534,18535,18501,18501,18535,18479,18501,18483,18536,18536,18483,18538,18536,18538,18537,18537,18538,18539,18537,18539,18499,18499,18539,18485,18471,18463,18540,18540,18463,18541,18540,18541,18469,18469,18541,18465,18450,18467,18464,18450,18464,18459,18450,18459,18454,18453,18492,18451,18451,18492,18487,18451,18487,18482,18482,18487,18484,18458,18493,18455,18463,18471,18491,18463,18491,18460,18491,18471,18488,18488,18471,18474,18488,18474,18497,18466,18469,18465,18452,18481,18470,18452,18470,18468,18470,18481,18475,18475,18481,18478,18477,18500,18498,18477,18498,18476,18480,18483,18501,18480,18501,18479,18486,18496,18485,18485,18496,18499,18494,18502,18489,18494,18489,18492,18658,18657,18659,18620,18567,18658,18620,18658,18631,18620,18631,18569,18631,18658,18659,18631,18659,18632,18632,18659,18657,18632,18657,18568,18568,18657,18608,18608,18657,18607,18607,18657,18658,18607,18658,18567,18638,18570,18660,18638,18660,18572,18572,18660,18612,18612,18660,18611,18611,18660,18661,18611,18661,18571,18571,18661,18609,18609,18661,18610,18610,18661,18660,18610,18660,18570,18567,18571,18607,18607,18571,18609,18607,18609,18608,18608,18609,18610,18608,18610,18568,18568,18610,18570,18663,18662,18664,18664,18662,18665,18666,18663,18667,18663,18664,18667,18667,18664,18668,18664,18665,18668,18667,18668,18669,18599,18573,18662,18599,18662,18663,18599,18663,18666,18599,18666,18600,18600,18666,18669,18600,18669,18575,18575,18669,18616,18616,18669,18615,18615,18669,18668,18615,18668,18574,18574,18668,18665,18574,18665,18613,18613,18665,18614,18614,18665,18662,18614,18662,18573,18669,18666,18667,18571,18574,18611,18611,18574,18613,18611,18613,18612,18612,18613,18614,18612,18614,18572,18572,18614,18573,18621,18576,18670,18621,18670,18671,18621,18671,18578,18578,18671,18619,18619,18671,18617,18619,18617,18577,18617,18671,18670,18617,18670,18618,18618,18670,18576,18574,18577,18615,18615,18577,18617,18615,18617,18616,18616,18617,18618,18616,18618,18575,18575,18618,18576,18577,18567,18619,18619,18567,18620,18619,18620,18578,18578,18620,18569,18581,18579,18622,18581,18622,18623,18623,18622,18580,18578,18580,18621,18621,18580,18622,18621,18622,18576,18576,18622,18579,18673,18672,18674,18652,18582,18672,18652,18672,18673,18652,18673,18584,18584,18673,18626,18626,18673,18625,18625,18673,18674,18625,18674,18583,18583,18674,18624,18624,18674,18672,18624,18672,18582,18580,18583,18623,18623,18583,18624,18623,18624,18581,18581,18624,18582,18675,18676,18677,18677,18676,18678,18634,18585,18678,18634,18678,18676,18634,18676,18633,18633,18676,18587,18587,18676,18675,18587,18675,18630,18630,18675,18629,18629,18675,18677,18629,18677,18627,18629,18627,18586,18627,18677,18678,18627,18678,18628,18628,18678,18585,18583,18586,18625,18625,18586,18627,18625,18627,18626,18626,18627,18628,18626,18628,18584,18584,18628,18585,18586,18569,18629,18629,18569,18631,18629,18631,18630,18630,18631,18632,18630,18632,18587,18587,18632,18568,18680,18679,18681,18680,18681,18682,18592,18588,18636,18592,18636,18682,18592,18682,18640,18640,18682,18681,18640,18681,18639,18639,18681,18679,18639,18679,18591,18591,18679,18590,18590,18679,18637,18637,18679,18680,18637,18680,18589,18589,18680,18635,18635,18680,18682,18635,18682,18636,18587,18589,18633,18633,18589,18635,18633,18635,18634,18634,18635,18636,18634,18636,18585,18585,18636,18588,18589,18570,18637,18637,18570,18638,18637,18638,18590,18590,18638,18572,18685,18684,18686,18684,18683,18686,18687,18685,18688,18685,18686,18688,18688,18686,18689,18687,18688,18690,18655,18593,18690,18655,18690,18656,18656,18690,18688,18656,18688,18689,18656,18689,18595,18595,18689,18642,18642,18689,18686,18642,18686,18683,18642,18683,18641,18641,18683,18594,18594,18683,18591,18591,18683,18684,18591,18684,18639,18639,18684,18685,18639,18685,18640,18640,18685,18687,18640,18687,18592,18592,18687,18690,18592,18690,18593,18593,18588,18592,18590,18594,18591,18645,18596,18692,18645,18692,18600,18645,18600,18598,18600,18692,18691,18600,18691,18599,18599,18691,18643,18599,18643,18597,18643,18691,18644,18644,18691,18692,18644,18692,18596,18594,18597,18641,18641,18597,18643,18641,18643,18642,18642,18643,18644,18642,18644,18595,18595,18644,18596,18575,18598,18600,18597,18573,18599,18654,18601,18646,18654,18646,18693,18654,18693,18694,18654,18694,18653,18653,18694,18603,18603,18694,18648,18648,18694,18693,18648,18693,18647,18647,18693,18602,18602,18693,18646,18598,18602,18645,18645,18602,18646,18645,18646,18596,18596,18646,18601,18651,18604,18650,18651,18650,18649,18651,18649,18606,18606,18649,18605,18602,18605,18647,18647,18605,18649,18647,18649,18648,18648,18649,18650,18648,18650,18603,18603,18650,18604,18605,18579,18606,18606,18579,18581,18606,18582,18651,18651,18582,18652,18651,18652,18604,18604,18652,18584,18603,18593,18653,18653,18593,18655,18653,18655,18654,18654,18655,18656,18654,18656,18601,18601,18656,18595,18567,18577,18571,18571,18577,18574,18570,18589,18587,18570,18587,18568,18573,18597,18572,18572,18597,18590,18590,18597,18594,18576,18579,18605,18576,18605,18575,18575,18605,18598,18598,18605,18602,18569,18586,18580,18569,18580,18578,18580,18586,18583,18582,18606,18581,18585,18588,18604,18585,18604,18584,18604,18588,18603,18603,18588,18593,18596,18601,18595,18728,18724,18729,18724,18725,18729,18725,18726,18729,18725,18723,18726,18718,18695,18724,18718,18724,18697,18697,18724,18728,18697,18728,18707,18707,18728,18721,18721,18728,18729,18721,18729,18726,18721,18726,18708,18708,18726,18727,18708,18727,18696,18696,18727,18712,18712,18727,18726,18712,18726,18723,18712,18723,18711,18711,18723,18725,18711,18725,18695,18695,18725,18724,18731,18730,18732,18732,18730,18733,18731,18732,18734,18734,18732,18735,18734,18735,18736,18709,18698,18736,18709,18736,18735,18709,18735,18722,18722,18735,18733,18722,18733,18710,18710,18733,18730,18710,18730,18700,18700,18730,18715,18715,18730,18731,18715,18731,18699,18699,18731,18713,18713,18731,18734,18713,18734,18714,18714,18734,18736,18714,18736,18698,18733,18735,18732,18695,18699,18711,18711,18699,18713,18711,18713,18712,18712,18713,18714,18712,18714,18696,18696,18714,18698,18719,18701,18737,18719,18737,18703,18703,18737,18717,18717,18737,18716,18717,18716,18702,18716,18737,18701,18699,18702,18715,18715,18702,18716,18715,18716,18700,18700,18716,18701,18702,18695,18717,18717,18695,18718,18717,18718,18703,18703,18718,18697,18740,18738,18741,18741,18738,18742,18743,18739,18744,18739,18740,18744,18744,18740,18745,18740,18741,18745,18741,18742,18745,18745,18742,18746,18743,18744,18747,18747,18744,18748,18744,18745,18748,18745,18746,18748,18748,18746,18749,18747,18748,18750,18748,18749,18750,18710,18704,18738,18710,18738,18740,18710,18740,18722,18722,18740,18739,18722,18739,18709,18709,18739,18743,18709,18743,18706,18706,18743,18747,18706,18747,18708,18708,18747,18750,18708,18750,18721,18721,18750,18749,18721,18749,18707,18707,18749,18746,18707,18746,18705,18705,18746,18742,18705,18742,18720,18720,18742,18704,18704,18742,18738,18703,18705,18719,18719,18705,18720,18719,18720,18701,18701,18720,18704,18696,18706,18708,18705,18697,18707,18700,18704,18710,18706,18698,18709,18699,18695,18702,18696,18698,18706,18700,18701,18704,18703,18697,18705,18788,18785,18789,18785,18786,18789,18789,18786,18790,18786,18787,18790,18788,18789,18792,18789,18790,18792,18790,18791,18792,18760,18751,18785,18760,18785,18788,18760,18788,18761,18761,18788,18792,18761,18792,18791,18761,18791,18753,18753,18791,18779,18779,18791,18790,18779,18790,18780,18780,18790,18787,18780,18787,18752,18752,18787,18766,18766,18787,18786,18766,18786,18765,18765,18786,18785,18765,18785,18751,18794,18793,18795,18795,18793,18796,18794,18795,18797,18797,18795,18798,18798,18795,18799,18795,18796,18799,18783,18754,18799,18783,18799,18796,18783,18796,18784,18784,18796,18793,18784,18793,18756,18756,18793,18770,18770,18793,18794,18770,18794,18769,18769,18794,18797,18769,18797,18755,18755,18797,18767,18767,18797,18798,18767,18798,18768,18768,18798,18799,18768,18799,18754,18751,18755,18765,18765,18755,18767,18765,18767,18766,18766,18767,18768,18766,18768,18752,18752,18768,18754,18803,18800,18804,18800,18801,18804,18804,18801,18805,18806,18803,18807,18803,18804,18807,18807,18804,18808,18804,18805,18808,18774,18757,18800,18774,18800,18803,18774,18803,18773,18773,18803,18806,18773,18806,18759,18759,18806,18761,18761,18806,18807,18761,18807,18808,18761,18808,18760,18760,18808,18802,18760,18802,18758,18758,18802,18771,18771,18802,18805,18771,18805,18801,18771,18801,18772,18772,18801,18800,18772,18800,18757,18805,18802,18808,18755,18758,18769,18769,18758,18771,18769,18771,18770,18770,18771,18772,18770,18772,18756,18756,18772,18757,18753,18759,18761,18758,18751,18760,18811,18809,18812,18809,18810,18812,18782,18762,18810,18782,18810,18809,18782,18809,18781,18781,18809,18811,18781,18811,18778,18781,18778,18764,18778,18811,18777,18777,18811,18812,18777,18812,18763,18763,18812,18775,18775,18812,18776,18776,18812,18810,18776,18810,18762,18759,18763,18773,18773,18763,18775,18773,18775,18774,18774,18775,18776,18774,18776,18757,18757,18776,18762,18763,18753,18777,18777,18753,18779,18777,18779,18778,18778,18779,18780,18778,18780,18764,18764,18780,18752,18764,18754,18781,18781,18754,18783,18781,18783,18782,18782,18783,18784,18782,18784,18762,18762,18784,18756,18751,18758,18755,18754,18764,18752,18757,18762,18756,18753,18763,18759,18848,18846,18849,18846,18847,18849,18822,18813,18845,18822,18845,18835,18835,18845,18847,18835,18847,18846,18835,18846,18836,18836,18846,18848,18836,18848,18823,18823,18848,18843,18823,18843,18815,18843,18848,18844,18844,18848,18849,18844,18849,18814,18814,18849,18847,18814,18847,18829,18829,18847,18845,18829,18845,18813,18827,18816,18852,18827,18852,18851,18827,18851,18828,18828,18851,18818,18818,18851,18832,18832,18851,18850,18832,18850,18831,18831,18850,18817,18817,18850,18830,18830,18850,18852,18830,18852,18816,18852,18850,18851,18813,18817,18829,18829,18817,18830,18829,18830,18814,18814,18830,18816,18854,18853,18855,18855,18853,18856,18857,18853,18854,18854,18855,18859,18859,18855,18860,18857,18854,18861,18861,18854,18858,18858,18854,18859,18858,18859,18863,18861,18858,18864,18864,18858,18862,18862,18858,18863,18838,18819,18857,18838,18857,18861,18838,18861,18864,18838,18864,18837,18837,18864,18821,18821,18864,18862,18821,18862,18823,18823,18862,18863,18823,18863,18836,18836,18863,18835,18835,18863,18860,18835,18860,18822,18822,18860,18856,18822,18856,18820,18820,18856,18833,18833,18856,18853,18833,18853,18834,18834,18853,18857,18834,18857,18819,18856,18860,18855,18860,18863,18859,18817,18820,18831,18831,18820,18833,18831,18833,18832,18832,18833,18834,18832,18834,18818,18818,18834,18819,18815,18821,18823,18820,18813,18822,18865,18866,18867,18867,18866,18868,18867,18868,18869,18869,18868,18870,18828,18824,18866,18828,18866,18865,18828,18865,18827,18827,18865,18867,18827,18867,18869,18827,18869,18826,18826,18869,18842,18842,18869,18870,18842,18870,18841,18841,18870,18825,18825,18870,18868,18825,18868,18839,18839,18868,18866,18839,18866,18840,18840,18866,18824,18821,18825,18837,18837,18825,18839,18837,18839,18838,18838,18839,18840,18838,18840,18819,18819,18840,18824,18825,18815,18841,18841,18815,18843,18841,18843,18842,18842,18843,18844,18842,18844,18826,18826,18844,18814,18818,18824,18828,18826,18816,18827,18813,18820,18817,18816,18826,18814,18824,18818,18819,18821,18815,18825,18996,18993,18997,18993,18994,18997,18997,18994,18998,18994,18995,18998,18996,18997,18999,18999,18997,19000,18997,18998,19000,18999,19000,19001,18941,18871,18993,18941,18993,18996,18941,18996,18942,18942,18996,18999,18942,18999,18873,18873,18999,19001,18873,19001,18889,18889,19001,18947,18947,19001,19000,18947,19000,18998,18947,18998,18890,18890,18998,18995,18890,18995,18872,18872,18995,18934,18934,18995,18994,18934,18994,18933,18933,18994,18993,18933,18993,18871,19003,19002,19004,18910,18874,18936,18910,18936,19002,18910,19002,18956,18956,19002,19003,18956,19003,18911,18911,19003,18937,18911,18937,18876,18937,19003,19004,18937,19004,18875,18875,19004,18935,18935,19004,19002,18935,19002,18936,18871,18875,18933,18933,18875,18935,18933,18935,18934,18934,18935,18936,18934,18936,18872,18872,18936,18874,18943,18877,19005,18943,19005,19006,18943,19006,18879,18879,19006,18940,18940,19006,19005,18940,19005,18939,18939,19005,18938,18939,18938,18878,18938,19005,18877,18875,18878,18937,18937,18878,18938,18937,18938,18876,18876,18938,18877,18878,18871,18939,18939,18871,18941,18939,18941,18940,18940,18941,18942,18940,18942,18879,18879,18942,18873,18965,18880,18944,18965,18944,18966,18966,18944,18881,18966,18881,18882,18879,18881,18943,18943,18881,18944,18943,18944,18877,18877,18944,18880,18974,18883,18945,18974,18945,18885,18945,18883,18884,18881,18884,18882,18882,18884,18883,19008,19007,19009,19010,19008,19011,19008,19009,19011,19010,19011,19012,18892,18886,19012,18892,19012,19011,18892,19011,19009,18892,19009,18891,18891,19009,19007,18891,19007,18888,18888,19007,18890,18890,19007,18947,18947,19007,19008,18947,19008,19010,18947,19010,18889,18889,19010,18887,18887,19010,18946,18946,19010,19012,18946,19012,18886,18884,18887,18945,18945,18887,18946,18945,18946,18885,18885,18946,18886,18872,18888,18890,18887,18873,18889,18895,18893,19014,18895,19014,18949,18949,19014,19013,18949,19013,18948,18948,19013,18891,18948,18891,18894,18891,19013,18892,18892,19013,19014,18892,19014,18893,18893,18886,18892,18888,18894,18891,18980,18896,18951,18980,18951,18898,18898,18951,18950,18898,18950,18952,18952,18950,18897,18894,18897,18948,18948,18897,18950,18948,18950,18949,18949,18950,18951,18949,18951,18895,18895,18951,18896,18983,18899,19015,18983,19015,18955,18983,18955,18984,18984,18955,18903,18984,18903,18901,18955,19015,18954,18954,19015,19016,18954,19016,18902,18902,19016,18953,18902,18953,18900,18953,19016,18899,18899,19016,19015,18897,18900,18952,18952,18900,18953,18952,18953,18898,18898,18953,18899,18987,18904,18903,18987,18903,18955,18987,18955,19018,18987,19018,18988,18988,19018,19017,18988,19017,18906,18906,19017,18902,18906,18902,18905,18902,19017,18954,18954,19017,19018,18954,19018,18955,18904,18901,18903,18900,18905,18902,18958,18907,19019,18958,19019,18956,18958,18956,18957,18957,18956,18911,18957,18911,18909,18956,19019,18910,18910,19019,18907,18910,18907,18908,18905,18908,18906,18906,18908,18907,18876,18909,18911,18908,18874,18910,19020,19021,19022,18991,18912,18960,18991,18960,19020,18991,19020,18992,18992,19020,19022,18992,19022,18914,18914,19022,18961,18961,19022,19021,18961,19021,18913,18913,19021,18959,18959,19021,18960,18960,19021,19020,18909,18913,18957,18957,18913,18959,18957,18959,18958,18958,18959,18960,18958,18960,18907,18907,18960,18912,18967,18915,19023,18967,19023,18964,18967,18964,18917,18964,19023,18963,18963,19023,18962,18963,18962,18916,18962,19023,18915,18913,18916,18961,18961,18916,18962,18961,18962,18914,18914,18962,18915,18916,18880,18963,18963,18880,18965,18963,18965,18964,18964,18965,18966,18964,18966,18917,18917,18966,18882,18920,18918,18969,18969,18918,18968,18969,18968,18919,18917,18919,18967,18967,18919,18968,18967,18968,18915,18915,18968,18918,18976,18921,18970,18976,18970,19025,18976,19025,18975,18975,19025,19024,18975,19024,18923,18923,19024,18971,18971,19024,19025,18971,19025,18922,18922,19025,18970,18919,18922,18969,18969,18922,18970,18969,18970,18920,18920,18970,18921,18926,18924,18972,18926,18972,18973,18973,18972,18925,18922,18925,18971,18971,18925,18972,18971,18972,18923,18923,18972,18924,18925,18883,18973,18973,18883,18974,18973,18974,18926,18926,18974,18885,18926,18893,18924,18924,18893,18895,18982,18927,18978,18982,18978,19026,18982,19026,18981,18981,19026,18979,18981,18979,18929,18979,19026,18928,18928,19026,18977,18977,19026,18978,18923,18928,18975,18975,18928,18977,18975,18977,18976,18976,18977,18978,18976,18978,18921,18921,18978,18927,18928,18896,18979,18979,18896,18980,18979,18980,18929,18929,18980,18898,18929,18899,18981,18981,18899,18983,18981,18983,18982,18982,18983,18984,18982,18984,18927,18927,18984,18901,18990,18930,18931,18990,18931,18985,18990,18985,18989,18989,18985,18986,18989,18986,18932,18920,18931,18918,18918,18931,18930,18931,18904,18985,18985,18904,18987,18985,18987,18986,18986,18987,18988,18986,18988,18932,18932,18988,18906,18932,18912,18989,18989,18912,18991,18989,18991,18990,18990,18991,18992,18990,18992,18930,18930,18992,18914,18871,18878,18875,18874,18908,18872,18872,18908,18888,18888,18908,18894,18894,18908,18897,18897,18908,18905,18897,18905,18900,18877,18880,18876,18876,18880,18909,18909,18880,18916,18909,18916,18913,18873,18887,18881,18873,18881,18879,18881,18887,18884,18883,18925,18919,18883,18919,18882,18882,18919,18917,18919,18925,18922,18886,18893,18885,18885,18893,18926,18896,18928,18923,18896,18923,18924,18896,18924,18895,18899,18929,18898,18904,18931,18920,18904,18920,18927,18904,18927,18901,18927,18920,18921,18907,18912,18932,18907,18932,18906,18915,18918,18930,18915,18930,18914]], ["vp",1280,695,176.14,233.415] ] /*

* Copyright (c) 1989-2011 The Regents of the University of California.
* All rights reserved.
*
* Redistribution and use in source and binary forms are permitted
* provided that the above copyright notice and this paragraph are
* duplicated in all such forms and that any documentation,
* advertising materials, and other materials related to such
* distribution and use acknowledge that the software was developed
* by the University of California, San Francisco.  The name of the
* University may not be used to endorse or promote products derived
* from this software without specific prior written permission.
* THIS SOFTWARE IS PROVIDED ``AS IS AND WITHOUT ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
* $Id: vsphere.c,v 1.3 89/11/09 15:45:26 conrad Exp $
*/

/*

* vsphere:
*	Convert X-Y coordinates into a 4x4 rotation matrix
*/

function vsphere(fxy, txy) { var i; var d1, d2; var f, t, a, g, u; var m1, m2;

/* * First construct the unit vectors and computing * the normal unit vectors. If we cross from outside * the sphere to inside the sphere (or vice versa), then * we ignore the transition because the discontinuity * tends to make molecules jump. */ d1 = fxy.x * fxy.x + fxy.y * fxy.y; d2 = txy.x * txy.x + txy.y * txy.y; if (d1 > 1 && d2 < 1) throw "outside to inside"; if (d2 > 1 && d1 < 1) throw "inside to outside"; if (d1 < 1) { f = new Vec3(fxy.x, fxy.y, Math.sqrt(1 - d1)); } else { d1 = Math.sqrt(d1); f = new Vec3(fxy.x / d1, fxy.y / d1, 0); } if (d2 < 1) { t = new Vec3(txy.x, txy.y, Math.sqrt(1 - d2)); } else { d2 = Math.sqrt(d2); t = new Vec3(txy.x / d2, txy.y / d2, 0); }

/* * If the positions normalize to the same place we just punt. * We don't even bother to put in the identity matrix. */ if (f[0] == t[0] && f[1] == t[1] && f[2] == t[2]) throw "no change";

a = f.cross(t); a.$unit(); var m; g = a.cross(f); /* Don't need to normalize these since the */ u = a.cross(t); /* cross product of normal unit vectors is */ /* a unit vector */

/* * Now assemble them into the inverse matrix (to go from * the from-vector to xyz-space) and the transform matrix * (to go from xyz-space to to-vector). The product of * the inverse and transformation matrices is the rotation * matrix. */ m1 = new Mat4( t[0], a[0], u[0], 0, t[1], a[1], u[1], 0, t[2], a[2], u[2], 0, 0, 0, 0, 1); m2 = new Mat4( f[0], f[1], f[2], 0, a[0], a[1], a[2], 0, g[0], g[1], g[2], 0, 0, 0, 0, 1); m = m1.mulMat4(m2); return m; } // Copyright © 2011 Regents of the University of California. // All rights reserved. This software provided pursuant to a // license agreement containing restrictions on its disclosure, // duplication and use. This notice must be embedded in or // attached to all copies, including partial copies, of the // software or any revisions or derivations thereof. // 'use strict'; // vi: sw=2:

function webGLStart() {

 var mouse_position;
 var canvas_name = 'molview';
 if (!PhiloGL.hasWebGL()) {
   return;
 }
 // from http://paulirish.com/2011/requestanimationframe-for-smart-animating/
 // shim layer with setTimeout fallback
 window.requestAnimFrame = (function() {
   return window.requestAnimationFrame
   || window.webkitRequestAnimationFrame
   || window.mozRequestAnimationFrame
   || window.oRequestAnimationFrame
   || window.msRequestAnimationFrame
   || function(/* function */ callback, /* DOMElement */ element) {

window.setTimeout(callback, 0);

      };
 })();
 // from http://www.jspatterns.com/category/patterns/code-reuse/
 function inherit(ChildClass, ParentClass) {
   var Chain = function () {};
   Chain.prototype = ParentClass.prototype;
   ChildClass.prototype = new Chain();
   ChildClass.prototype.constructor = ChildClass;
 }
 // grab some utility functions from PhiloGL
 function $() {};
 $.extend = function (to, from) {
   for (var p in from) {
     to[p] = from[p];
   }
   return to;
 };
 $.type = (function () {
   var oString = Object.prototype.toString,

type = function (e) { var t = oString.call(e); return t.substr(8, t.length - 9).toLowerCase(); };

   return function (elem) {
     var elemType = type(elem);
     if (elemType != 'object') {

return elemType;

     }
     if (elem.$$family) return elem.$$family;
     return (elem && elem.nodeName && elem.nodeType == 1) ? 'element' : elemType;
   };
 })();
 (function () {
   function detach(elem) {
     var type = $.type(elem), ans;
     if (type == 'object') {

ans = {}; for (var p in elem) { ans[p] = detach(elem[p]); } return ans;

     } else if (type == 'array') {

ans = []; for (var i = 0, l = elem.length; i < l; i++) { ans[i] = detach(elem[i]); } return ans;

     } else {

return elem;

     }
   }
   $.merge = function () {
     var mix = {};
     for (var i = 0, l = arguments.length; i < l; i++){

var object = arguments[i]; if ($.type(object) != 'object') continue; for (var key in object){ var op = object[key], mp = mix[key]; if (mp && $.type(op) == 'object' && $.type(mp) == 'object') { mix[key] = $.merge(mp, op); } else{ mix[key] = detach(op); } }

     }
     return mix;
   };
 })();
 PhiloGL.unpack();
 // create Spheres subclass of O3D.Model
 function Spheres(opt) {
   opt = $.merge({
     program: 'offset'
   }, opt || {});
   O3D.Model.call(this, opt);
   this.ProtoSpheres = {};
   this.spheres = {}
   this.render = Spheres.prototype.render;
 }
 inherit(Spheres, O3D.Model);
 $.extend(Spheres.prototype, {
     // disable normal object methods and do everything in render method
     setUniforms: function () {},
     setAttributes: function () {},
     setShininess: function () {},
     setReflection: function () {},
     setVertices: function () {},
     setColors: function () {},
     setPickingColors: function () {},
     setNormals: function () {},
     setTextures: function () {},
     setTexCoords: function () {},
     setIndices: function () {},
     unsetAttributes: function () {},
     unsetVertices: function () {},
     unsetColors: function () {},
     unsetPickingColors: function () {},
     unsetNormals: function () {},
     unsetTexCoords: function () {},
     unsetIndices: function () {},
     add: function (scene, radius, position, color) {

var sphere = this.ProtoSpheres[radius]; if (sphere == undefined) { sphere = new O3D.Sphere({ radius: radius, nlat: 10, nlong: 10, program: 'offset' }); this.ProtoSpheres[radius] = sphere; sphere.id = "sphere-" + radius; scene.defineBuffers(sphere); } var data = this.spheres[radius]; if (data == undefined) { data = this.spheres[radius] = []; } data.push([position, color]);

     },
     render: function (gl, program, camera) {

var offset = program.attributes['offset']; var color = program.attributes['color']; var obj; for (var radius in this.spheres) { obj = this.ProtoSpheres[radius]; obj.setUniforms(program); obj.setAttributes(program); obj.setShininess(program); obj.setReflection(program); obj.setVertices(program); obj.setColors(program); obj.setPickingColors(program); obj.setNormals(program); obj.setTextures(program); obj.setTexCoords(program); obj.setIndices(program);

var data = this.spheres[radius]; for (var i = 0, l = data.length; i < l; ++i) { gl.vertexAttrib3fv(offset, data[i][0]); gl.vertexAttrib4fv(color, data[i][1]); if (obj.indices) { gl.drawElements((obj.drawType !== undefined)  ? gl.get(obj.drawType) : gl.TRIANGLES, obj.indices.length, gl.UNSIGNED_SHORT, 0); } else { gl.drawArrays((obj.drawType !== undefined)  ? gl.get(obj.drawType) : gl.TRIANGLES, 0, obj.vertices.length / 3); } }

obj.unsetAttributes(program); obj.unsetVertices(program); obj.unsetColors(program); obj.unsetPickingColors(program); obj.unsetNormals(program); obj.unsetTexCoords(program); obj.unsetIndices(program); }

     },
 });
 // create Cylinder subclass of O3D.Model
 function Cylinders(opt) {
   opt = $.merge({
     program: 'cylinder'
   }, opt || {});
   O3D.Model.call(this, opt);
   this.ProtoCylinders = {};
   this.cylinders = {}
   this.render = Cylinders.prototype.render;
 }
 inherit(Cylinders, O3D.Model);
 $.extend(Cylinders.prototype, {
     // disable normal object methods and do everything in render method
     setUniforms: function () {},
     setAttributes: function () {},
     setShininess: function () {},
     setReflection: function () {},
     setVertices: function () {},
     setColors: function () {},
     setPickingColors: function () {},
     setNormals: function () {},
     setTextures: function () {},
     setTexCoords: function () {},
     setIndices: function () {},
     unsetAttributes: function () {},
     unsetVertices: function () {},
     unsetColors: function () {},
     unsetPickingColors: function () {},
     unsetNormals: function () {},
     unsetTexCoords: function () {},
     unsetIndices: function () {},
     add: function (scene, radius, height, mat4x3, color) {

var cylinder = this.ProtoCylinders[radius]; if (cylinder == undefined) { cylinder = new O3D.Cylinder({ radius: radius, nvertical: 2, nradial: 10, program: 'cylinder' }); this.ProtoCylinders[radius] = cylinder; cylinder.id = "cylinder-" + radius; scene.defineBuffers(cylinder); } var data = this.cylinders[radius]; if (data == undefined) { data = this.cylinders[radius] = []; } data.push([height, mat4x3, color]);

     },
     render: function (gl, program, camera) {

var yscale = program.attributes['yscale']; var transformX = program.attributes['transformX']; var transformY = program.attributes['transformY']; var transformZ = program.attributes['transformZ']; var color = program.attributes['color']; var obj; for (var radius in this.cylinders) { obj = this.ProtoCylinders[radius]; obj.setUniforms(program); obj.setAttributes(program); obj.setShininess(program); obj.setReflection(program); obj.setVertices(program); obj.setColors(program); obj.setPickingColors(program); obj.setNormals(program); obj.setTextures(program); obj.setTexCoords(program); obj.setIndices(program);

var data = this.cylinders[radius]; for (var i = 0, l = data.length; i < l; ++i) { gl.vertexAttrib1f(yscale, data[i][0]); gl.vertexAttrib4fv(transformX, data[i][1][0]); gl.vertexAttrib4fv(transformY, data[i][1][1]); gl.vertexAttrib4fv(transformZ, data[i][1][2]); gl.vertexAttrib4fv(color, data[i][2]); if (obj.indices) { gl.drawElements((obj.drawType !== undefined)  ? gl.get(obj.drawType) : gl.TRIANGLES, obj.indices.length, gl.UNSIGNED_SHORT, 0); } else { gl.drawArrays((obj.drawType !== undefined)  ? gl.get(obj.drawType) : gl.TRIANGLES, 0, obj.vertices.length / 3); } }

obj.unsetAttributes(program); obj.unsetVertices(program); obj.unsetColors(program); obj.unsetPickingColors(program); obj.unsetNormals(program); obj.unsetTexCoords(program); obj.unsetIndices(program); }

     },
 });
 function buildScene(app, json) {
   var gl = app.gl;
   var camera = app.camera;
   var scene = app.scene;
   var lights = scene.config.lights;
   var seenLight = false;
   var index;
   var spheres, cylinders;
   var model;

camera.wheelScale = 1;

   for (index in json) {
     var item = json[index];
     switch (item[0]) {
     case 's': // sphere

if (!spheres) { spheres = new Spheres; scene.add(spheres); } spheres.add(scene, item[1], item[2], item[3]); break;

     case 'c': // cylinder

if (!cylinders) { cylinders = new Cylinders; scene.add(cylinders); } cylinders.add(scene, item[1], item[2], item[3], item[4]); break;

     case 'p':

model = new O3D.Model({ program: 'nolight', drawType: "POINTS", vertices: item[1], colors: item[2] }); scene.add(model); break;

     case 'l':

model = new O3D.Model({ program: 'nolight', drawType: "LINES", vertices: item[1], colors: item[2] }); scene.add(model); break;

     case 'il':

model = new O3D.Model({ program: 'nolight', drawType: "LINES", vertices: item[1], colors: item[2], indices: item[3] }); scene.add(model); break;

     case 't':
     case 'ts':

model = new O3D.Model({ program: 'default', drawType: (item[0] == 't') ? "TRIANGLES" : "TRIANGLE_STRIP", vertices: item[1], normals: item[2], colors: item[3], indices: item[4] }); scene.add(model); break;

     case 'bg': // background color

gl.clearColor(item[1], item[2], item[3], 1); break;

     case 'vp': { // viewport

var canvas = app.canvas; canvas.width = item[1]; canvas.height = item[2]; camera.near = item[3]; camera.far = item[4]; camera.aspect = item[1] / item[2]; camera.wheelScale = camera.near / 5; if (camera.type == 'ortho') { // figure out fov camera.fov = Math.atan(camera.orthoParams[3] / camera.near) * 360 / Math.PI; } }; break;

     case 'la': // ambient light

if (!seenLight) { lights.enable = true; lights.ambient = { r: 0, g: 0, b: 0 }; lights.directional = { color: { r: 0, g: 0, b: 0 }, direction: { x: item[4], y: item[5], z: item[6] } }; lights.points = []; seenLight = true; }; lights.ambient.r += item[1] lights.ambient.g += item[2] lights.ambient.b += item[3] break;

     case 'ld': // directional light

if (!seenLight) { lights.enable = true; lights.ambient = { r: 0, g: 0, b: 0 }; lights.directional = { color: { r: 0, g: 0, b: 0 }, direction: { x: item[4], y: item[5], z: item[6] } }; lights.points = []; seenLight = true; } var p = camera.target; var dir = new Vec3(-item[4], -item[5], -item[6]); dir.$scale(p.sub(camera.position).norm()); lights.points.push({ diffuse: { r: item[1], g: item[2], b: item[3] }, specular: { r: 1.0, g: 1.0, b: 1.0 }, position: p.add(dir.scale(10)) }); break;

     case 'eyepos': // eye postion (look at eye position)

camera.position = new Vec3(item[1], item[2], item[3]); break;

     case 'up': // up vector (look at up direction)

camera.up = new Vec3(item[1], item[2], item[3]); break;

     case 'cofr': // center of rotation (look at point)

camera.target = new Vec3(item[1], item[2], item[3]); break;

     case 'ortho': // orthographic viewpoint

camera.type = 'ortho'; camera.orthoParams = [item[1], item[2], item[3], item[4]] break;

     case 'persp': // perspective viewpoint

camera.fov = item[1]; break;

     }
   }
   camera.update();
 }
 function loadJSON(url, app) {
   new IO.XHR({
     url: url,
     onSuccess: function (text) {

var json = JSON.parse(text); buildScene(app, json);

     }
   }).send();
   /*
   console.log('call JSONP');
   IO.JSONP({
     url: url,
     callbackKey: 'loadModel',
     onComplete: function(json) {
       console.log(json);

buildScene(app, json);

     }
   });
   */
 }
 function draw(app) {
   var gl = app.gl,

scene = app.scene, canvas = app.canvas;

   gl.viewport(0, 0, +canvas.width, +canvas.height);
   gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT);
   scene.render();
 }
 //Create application
 new PhiloGL(canvas_name, {
   program: [{
     id: 'default',
     from: 'defaults',
     vs: 'Default',
     fs: 'Default'
   },{
     id: 'offset',
     from: 'ids',
     vs: 'offset.vs',
     fs: 'default.fs',
     noCache: true		// TODO: false for production version
   },{
     id: 'cylinder',
     from: 'ids',
     vs: 'cylinder.vs',
     fs: 'default.fs',
   },{
     id: 'nolight',
     from: 'ids',
     vs: 'nolight.vs',
     fs: 'default.fs',
   }],
   /*
   context: {
     debug: true
   },
   */
   camera: {
     position: {
       x: 0, y: 0, z: -7
     }
   },
   events: {
     onDragStart: function (e) {

var canvas = this.canvas; var radius = 0.9 * 0.5 * Math.min(canvas.width, canvas.height); mouse_position = { x: e.x / radius, y: e.y / radius };

     },
     onDragMove: function (e) {

var canvas = this.canvas; var radius = 0.9 * 0.5 * Math.min(canvas.width, canvas.height); var new_position = { x: e.x / radius, y: e.y / radius }; try { var rotMat = vsphere(mouse_position, new_position); var camera = this.camera; var matrix = new Mat4; matrix.$translate(camera.target[0], camera.target[1], camera.target[2]); matrix.$mulMat4(rotMat); matrix.$translate(-camera.target[0], -camera.target[1], -camera.target[2]); for (var i = 0, models = this.scene.models, l = models.length; i < l; ++i) { var elem = models[i]; elem.matrix = matrix.mulMat4(elem.matrix); } } catch (err) { }

       mouse_position = new_position;

var self = this; requestAnimFrame(function () { draw(self); });

     },
     onMouseWheel: function (e) {
       e.stop();
       var camera = this.camera;

adjust = e.wheel * camera.wheelScale; if (camera.near + adjust > 0) { camera.position.z += adjust; camera.near += adjust; camera.far += adjust; }

       camera.update();

var self = this; requestAnimFrame(function () { draw(self); });

     }
   },
   onError: function (info) {
     alert("There was an error creating the app. " + info);
   },
   onLoad: function (app) {
     //Unpack app properties
     //app.gl = WebGLDebugUtils.makeDebugContext(app.gl);
     var gl = app.gl,
         scene = app.scene,
         canvas = app.canvas;
     var DEBUG_COUNT = 0;		// 0 to disable
     //Basic gl setup
     gl.clearColor(0.0, 0.0, 0.0, 1.0);
     gl.clearDepth(1.0);
     gl.enable(gl.DEPTH_TEST);
     gl.depthFunc(gl.LEQUAL);
     //Add objects to the scene
     //loadJSON('/gregc/one-cpk.json', app)
     //loadJSON('/gregc/mtx-cpk.json', app)
     //loadJSON('/gregc/3k9f-cpk.json', app)
     buildScene(app, json);
     requestAnimFrame(function () { draw(app); });
   }
 });

} </script>


They won't hurt us, Donny. These men are cowards. Fine, Dude. As if it's impossible to get some nail polish, apply it to someone else's toe. Donny was a good bowler, and a good man. He was… He was one of us. He was a man who loved the outdoors, and bowling, and as a surfer explored the beaches of southern California from Redondo to Calabassos. And he was an avid bowler. And a good friend. He died—he died as so many of his generation, before his time. In your wisdom you took him, Lord. As you took so many bright flowering young men, at Khe San and Lan Doc.

Look, I've got certain information, certain things have come to light, and uh, has it ever occurred to you, man, that given the nature of all this new shit, that, uh, instead of running around blaming me, that this whole thing might just be, not, you know, not just such a simple, but uh—you know? Your goons'll be able to get it off him, mean he's only fifteen and he's flunking social studies. So if you'll just write me a check for my ten per cent… of half a million… fifty grand.

Whose toe was it, Walter? Is this yours, Larry? Is this your homework, Larry? Your "revolution" is over, Mr. Lebowski! Condolences! The bums lost! Hello, Pilar? My name is Walter Sobchak, we spoke on the phone, this is my associate Jeffrey Lebowski. Blow on them. Strong men also cry… Strong men also cry. Our basic freedoms. Uh, yeah. Probably a vagrant, slept in the car. Or perhaps just used it as a toilet, and moved on.

Fuckin' A. No ma'am, I didn't mean to give the impression that we're police exactly. We're hoping that it will not be necessary to call the police. Hey, man, if my fucking ex-wife asked me to take care of her fucking dog while she and her boyfriend went to Honolulu, I'd tell her to go fuck herself. They finally did it. They killed my fucking car.